Vous n'avez aucun ami.
- {% else %}
+ {% else %}
Paramètres
- - Accueil
+ - Accueil
- Paramètres
diff --git a/Sources/src/console/Console.php b/Sources/src/console/Console.php
index 359b75bc..47327048 100755
--- a/Sources/src/console/Console.php
+++ b/Sources/src/console/Console.php
@@ -9,8 +9,9 @@ use Model\RelationshipRequest;
use Model\Role;
use Model\Training;
use Model\User;
-use Stub\StubData;
use Manager\DataManager;
+use Stub\StubData;
+
$model = new Model(); // Couche d'accès au model
function clearScreen()
@@ -54,7 +55,11 @@ function displayProfileMenu()
echo "1. Informations de l'utilisateur\n";
echo "2. Historique d'activité\n";
echo "3. Liste d'amis\n";
- echo "4. Importer des données (FIT/GPX/TCX)/Manuel\n";
+ echo "4. Paramètres de confidentialité et visibilité\n";
+ echo "5. Ajouter une activité\n";
+ // Importer des données (FIT/GPX/TCX)/Manuel
+ // Synchroniser l'appareil de fréquence cardiaque
+ // Synchroniser l'app mobile
echo "0. Retour au menu principal\n";
echo "Choisissez une option: ";
}
@@ -89,7 +94,6 @@ function displaySocialManagementMenu() {
echo "1. Rechercher des coach\n";
echo "2. Rechercher des athletes\n";
echo "3. Gérer la liste d'amis\n";
-
echo "4. Options de partage\n";
echo "0. Retour au menu principal\n";
echo "Choisissez une option: ";
@@ -787,7 +791,6 @@ while (true) {
switch ($choice) {
case '1': // Se connecter
-
if($model->userMgr->login("john.doe@example.com", "password123"))
$loggedIn = true;
@@ -868,4 +871,5 @@ while (true) {
}
}
}
+
?>
\ No newline at end of file
diff --git a/Sources/src/data/core/database/ActivityEntity.php b/Sources/src/data/core/database/ActivityEntity.php
new file mode 100644
index 00000000..7f14956e
--- /dev/null
+++ b/Sources/src/data/core/database/ActivityEntity.php
@@ -0,0 +1,127 @@
+idActivity;
+ }
+
+ public function getType() {
+ return $this->type;
+ }
+
+ public function getDate() {
+ return $this->date;
+ }
+
+ public function getHeureDebut() {
+ return $this->heureDebut;
+ }
+
+ public function getHeureFin() {
+ return $this->heureFin;
+ }
+
+ public function getEffortRessenti() {
+ return $this->effortRessenti;
+ }
+
+ public function getVariability() {
+ return $this->variabilite;
+ }
+
+ public function getVariance() {
+ return $this->variance;
+ }
+
+ public function getEcartType() {
+ return $this->ecartType;
+ }
+
+ public function getMoyenne() {
+ return $this->moyenne;
+ }
+
+ public function getMaximum() {
+ return $this->maximum;
+ }
+
+ public function getMinimum() {
+ return $this->minimum;
+ }
+
+ public function getTemperatureMoyenne() {
+ return $this->temperatureMoyenne;
+ }
+
+ // Setters
+ public function setIdActivity($idActivity) {
+ $this->idActivity = $idActivity;
+ }
+
+ public function setType($type) {
+ $this->type = $type;
+ }
+
+ public function setDate($date) {
+ $this->date = $date;
+ }
+
+ public function setHeureDebut($heureDebut) {
+ $this->heureDebut = $heureDebut;
+ }
+
+ public function setHeureFin($heureFin) {
+ $this->heureFin = $heureFin;
+ }
+
+ public function setEffortRessenti($effortRessenti) {
+ $this->effortRessenti = $effortRessenti;
+ }
+
+ public function setVariabilite($variabilite) {
+ $this->variabilite = $variabilite;
+ }
+
+ public function setVariance($variance) {
+ $this->variance = $variance;
+ }
+
+ public function setEcartType($ecartType) {
+ $this->ecartType = $ecartType;
+ }
+
+ public function setMoyenne($moyenne) {
+ $this->moyenne = $moyenne;
+ }
+
+ public function setMaximum($maximum) {
+ $this->maximum = $maximum;
+ }
+
+ public function setMinimum($minimum) {
+ $this->minimum = $minimum;
+ }
+
+ public function setTemperatureMoyenne($temperatureMoyenne) {
+ $this->temperatureMoyenne = $temperatureMoyenne;
+ }
+}
+
+?>
diff --git a/Sources/src/data/core/database/ActivityGateway.php b/Sources/src/data/core/database/ActivityGateway.php
new file mode 100644
index 00000000..8cec5ead
--- /dev/null
+++ b/Sources/src/data/core/database/ActivityGateway.php
@@ -0,0 +1,124 @@
+connection = $connection;
+ }
+
+ public function getActivity() {
+ $query = "SELECT * FROM Activite";
+ return $this->connection->executeWithErrorHandling($query);
+ }
+
+ public function getActivityById(int $activityId) {
+ $query = "SELECT * FROM Activite WHERE idActivite = :id";
+ $params = [':id' => $activityId];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getActivityByType(string $type) {
+ $query = "SELECT * FROM Activite WHERE type = :type";
+ $params = [':type' => [$type, PDO::PARAM_STR]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getActivityByDate(string $date) {
+ $query = "SELECT * FROM Activite WHERE date = :date";
+ $params = [':date' => [$date, PDO::PARAM_STR]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getActivityByTimeRange(string $startTime, string $endTime) {
+ $query = "SELECT * FROM Activite WHERE heureDebut >= :startTime AND heureFin <= :endTime";
+ $params = [
+ ':startTime' => [$startTime, PDO::PARAM_STR],
+ ':endTime' => [$endTime, PDO::PARAM_STR]
+ ];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getActivityByEffort(int $effortRessenti) {
+ $query = "SELECT * FROM Activite WHERE effortRessenti = :effort";
+ $params = [':effort' => [$effortRessenti, PDO::PARAM_INT]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getActivityByVariability(int $variabilite) {
+ $query = "SELECT * FROM Activite WHERE variabilite = :variability";
+ $params = [':variability' => [$variabilite, PDO::PARAM_INT]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getActivityByTemperature(int $temperatureMoyenne) {
+ $query = "SELECT * FROM Activite WHERE temperatureMoyenne = :temperature";
+ $params = [':temperature' => [$temperatureMoyenne, PDO::PARAM_INT]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function addActivity(ActivityEntity $activity) {
+ $query = "INSERT INTO Activite (idactivite, type, date, heurededebut, heuredefin, effortressent, variabilite, variance, ecarttype, moyenne, maximum, minimum, temperaturemoyenne, athleteid, sourceid)
+ VALUES (:idactivite, :type, :date, :heureDebut, :heureDeFin, :effortRessenti, :variabilite, :variance, :ecartType, :moyenne, :maximum, :minimum, :temperatureMoyenne, :athleteid, :sourceid)";
+ $params = [
+ ':idactivite' => $activity->getIdActivity(),
+ ':type' => $activity->getType(),
+ ':date' => $activity->getDate()->format('Y-m-d'), // Format date pour SQL
+ ':heureDebut' => $activity->getHeureDebut()->format('H:i:s'), // Format heure pour SQL
+ ':heureDeFin' => $activity->getHeureFin()->format('H:i:s'), // Format heure pour SQL
+ ':effortRessenti' => $activity->getEffortRessenti(),
+ ':variabilite' => $activity->getVariability(),
+ ':variance' => $activity->getVariance(),
+ ':ecartType' => $activity->getEcartType(),
+ ':moyenne' => $activity->getMoyenne(),
+ ':maximum' => $activity->getMaximum(),
+ ':minimum' => $activity->getMinimum(),
+ ':temperatureMoyenne' => $activity->getTemperatureMoyenne(),
+ ':athleteid' => 1,
+ ':sourceid' => 1,
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function updateActivity(ActivityEntity $oldActivity, ActivityEntity $newActivity) {
+ $query = "UPDATE Activite
+ SET type = :type, date = :date, heureDebut = :heureDebut, heureDeFin = :heureDeFin,
+ effortRessenti = :effortRessenti, variabilite = :variabilite, variance = :variance, ecartType = :ecartType, moyenne = :moyenne, maximum = :maximum, minimum = :minimum, temperatureMoyenne = :temperatureMoyenne
+ WHERE idActivite = :idActivite";
+
+ $params = [
+ ':idActivite' => $oldActivity->getIdActivity(),
+ ':type' => $newActivity->getType(),
+ ':date' => $newActivity->getDate()->format('Y-m-d'), // Format date pour SQL
+ ':heureDebut' => $newActivity->getHeureDebut()->format('H:i:s'), // Format heure pour SQL
+ ':heureDeFin' => $newActivity->getHeureFin()->format('H:i:s'), // Format heure pour SQL
+ ':effortRessenti' => $newActivity->getEffortRessenti(),
+ ':variabilite' => $newActivity->getVariabilite(),
+ ':variance' => $newActivity->getVariance(),
+ ':ecartType' => $newActivity->getEcartType(),
+ ':moyenne' => $newActivity->getMoyenne(),
+ ':maximum' => $newActivity->getMaximum(),
+ ':minimum' => $newActivity->getMinimum(),
+ ':temperatureMoyenne' => $newActivity->getTemperatureMoyenne(),
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function deleteActivity(int $idActivity) {
+ $query = "DELETE FROM Activite WHERE idActivite = :idActivity";
+
+ $params = [
+ ':idActivity' => $idActivity,
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+}
+
+?>
diff --git a/Sources/src/data/core/database/ActivityMapper.php b/Sources/src/data/core/database/ActivityMapper.php
new file mode 100644
index 00000000..87cc27e1
--- /dev/null
+++ b/Sources/src/data/core/database/ActivityMapper.php
@@ -0,0 +1,127 @@
+setIdActivity($activityData['idactivite']);
+ }
+
+ if (isset($activityData['type'])) {
+ $activity->setType($activityData['type']);
+ }
+
+ if (isset($activityData['date'])) {
+ $activity->setDate($activityData['date']);
+ }
+
+ if (isset($activityData['heurededebut'])) {
+ $activity->setHeureDebut($activityData['heurededebut']);
+ }
+
+ if (isset($activityData['heuredefin'])) {
+ $activity->setHeureFin($activityData['heuredefin']);
+ }
+
+ if (isset($activityData['effortressent'])) {
+ $activity->setEffortRessenti($activityData['effortressent']);
+ }
+
+ if (isset($activityData['variabilite'])) {
+ $activity->setVariabilite($activityData['variabilite']);
+ }
+
+ if (isset($activityData['variance'])) {
+ $activity->setVariance($activityData['variance']);
+ }
+
+ if (isset($activityData['ecarttype'])) {
+ $activity->setEcartType($activityData['ecarttype']);
+ }
+
+ if (isset($activityData['moyenne'])) {
+ $activity->setMoyenne($activityData['moyenne']);
+ }
+
+ if (isset($activityData['maximum'])) {
+ $activity->setMaximum($activityData['maximum']);
+ }
+
+ if (isset($activityData['minimum'])) {
+ $activity->setMinimum($activityData['minimum']);
+ }
+
+ if (isset($activityData['temperaturemoyenne'])) {
+ $activity->setTemperatureMoyenne($activityData['temperaturemoyenne']);
+ }
+
+ $activityEntities[] = $activity;
+ }
+ return $activityEntities;
+ }
+
+ /**
+ * @throws \Exception
+ */
+ public function ActivityEntityToModel(ActivityEntity $activiteEntity):Activity {
+ $date = new DateTime($activiteEntity->getDate());
+ $heureDebut = new \DateTime($activiteEntity->getHeureDebut());
+ $heureFin = new \DateTime($activiteEntity->getHeureFin());
+ $effortRessenti = intval($activiteEntity->getEffortRessenti());
+ $variability = floatval($activiteEntity->getVariability());
+ $variance = floatval($activiteEntity->getVariance());
+ $ecartType = floatval($activiteEntity->getEcartType());
+
+ $act = new Activity(
+ $activiteEntity->getIdActivity(),
+ $activiteEntity->getType(),
+ $date,
+ $heureDebut,
+ $heureFin,
+ $effortRessenti,
+ $variability,
+ $variance,
+ $ecartType,
+ $activiteEntity->getMoyenne(),
+ $activiteEntity->getMaximum(),
+ $activiteEntity->getMinimum(),
+ $activiteEntity->getTemperatureMoyenne(),
+ 'false'
+ );
+
+ return $act;
+ }
+ //public function ActivityToEntity(Activity model): ActivityEntity;
+
+ public function activityToEntity(Activity $act):ActivityEntity{
+
+ $actEntity = new ActivityEntity();
+ $actEntity->setIdActivity($act->getIdActivity());
+ $actEntity->setType($act->getType());
+ $actEntity->setDate($act->getDate());
+ $actEntity->setHeureDebut($act->getHeureDebut());
+ $actEntity->setHeureFin($act->getHeureFin());
+ $actEntity->setEffortRessenti($act->getEffortRessenti());
+ $actEntity->setVariabilite($act->getVariability());
+ $actEntity->setVariance($act->getVariance());
+ $actEntity->setEcartType($act->getStandardDeviation());
+ $actEntity->setMoyenne($act->getAverage());
+ $actEntity->setMaximum($act->getMaximum());
+ $actEntity->setMinimum($act->getMinimum());
+ $actEntity->setTemperatureMoyenne($act->getAvrTemperature());
+
+ return $actEntity;
+ }
+}
+
+?>
diff --git a/Sources/src/data/core/database/AnalyzeEntity.php b/Sources/src/data/core/database/AnalyzeEntity.php
new file mode 100644
index 00000000..4560f7b7
--- /dev/null
+++ b/Sources/src/data/core/database/AnalyzeEntity.php
@@ -0,0 +1,79 @@
+idFc;
+ }
+ public function getAltitude()
+ {
+ return $this->altitude;
+ }
+ public function getTime()
+ {
+ return $this->temps;
+ }
+ public function getTemperature()
+ {
+ return $this->temperature;
+ }
+ public function getBpm()
+ {
+ return $this->bpm;
+ }
+ public function getLongitude()
+ {
+ return $this->longitude;
+ }
+ public function getLatitude()
+ {
+ return $this->latitude;
+ }
+ public function getIdActivity()
+ {
+ return $this->idactivity;
+ }
+ public function setIdFC($idFc)
+ {
+ $this->idFc = $idFc;
+ }
+ public function setAltitude($altitude)
+ {
+ $this->altitude = $altitude;
+ }
+ public function setTime($time)
+ {
+ $this->time = $time;
+ }
+ public function setTemperature($temperature)
+ {
+ $this->temperature = $temperature;
+ }
+ public function setBpm($bpm)
+ {
+ $this->bpm = $bpm;
+ }
+ public function setLongitude($longitude)
+ {
+ $this->longitude = $longitude;
+ }
+ public function setLatitude($latitude)
+ {
+ $this->latitude = $latitude;
+ }
+ public function setIdActivity($idactivity)
+ {
+ $this->idactivity = $idactivity;
+ }
+}
\ No newline at end of file
diff --git a/Sources/src/data/core/database/AnalyzeGateway.php b/Sources/src/data/core/database/AnalyzeGateway.php
new file mode 100644
index 00000000..7dd7666a
--- /dev/null
+++ b/Sources/src/data/core/database/AnalyzeGateway.php
@@ -0,0 +1,24 @@
+connection = $connection;
+ }
+
+ public function getFrequenceCardiaque() {
+ $query = "SELECT * FROM FrequenceCardiaque";
+ return $this->connection->executeWithErrorHandling($query);
+ }
+ public function getFrequenceCardiaqueByIdActivity(int $activityId)
+ {
+ $query = "SELECT * FROM FrequenceCardiaque WHERE activiteid = :id";
+ $params = [':id' => $activityId];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+}
\ No newline at end of file
diff --git a/Sources/src/data/core/database/AnalyzeMapper.php b/Sources/src/data/core/database/AnalyzeMapper.php
new file mode 100644
index 00000000..33077162
--- /dev/null
+++ b/Sources/src/data/core/database/AnalyzeMapper.php
@@ -0,0 +1,125 @@
+setIdActivity($analyzeData['idactivite']);
+ }
+
+ if (isset($analyzeData['type'])) {
+ $analyze->setType($analyzeData['type']);
+ }
+
+ if (isset($analyzeData['date'])) {
+ $analyze->setDate($analyzeData['date']);
+ }
+
+ if (isset($analyzeData['heurededebut'])) {
+ $analyze->setHeureDebut($analyzeData['heurededebut']);
+ }
+
+ if (isset($analyzeData['heuredefin'])) {
+ $analyze->setHeureFin($analyzeData['heuredefin']);
+ }
+
+ if (isset($analyzeData['effortressent'])) {
+ $analyze->setEffortRessenti($analyzeData['effortressent']);
+ }
+
+ if (isset($analyzeData['variabilite'])) {
+ $analyze->setVariabilite($analyzeData['variabilite']);
+ }
+
+ if (isset($analyzeData['variance'])) {
+ $analyze->setVariance($analyzeData['variance']);
+ }
+
+ if (isset($analyzeData['ecarttype'])) {
+ $analyze->setEcartType($analyzeData['ecarttype']);
+ }
+
+ if (isset($analyzeData['moyenne'])) {
+ $analyze->setMoyenne($analyzeData['moyenne']);
+ }
+
+ if (isset($analyzeData['maximum'])) {
+ $analyze->setMaximum($analyzeData['maximum']);
+ }
+
+ if (isset($analyzeData['minimum'])) {
+ $analyze->setMinimum($analyzeData['minimum']);
+ }
+
+ if (isset($analyzeData['temperaturemoyenne'])) {
+ $analyze->setTemperatureMoyenne($analyzeData['temperaturemoyenne']);
+ }
+
+ $analyzeEntities[] = $analyze;
+ }
+ return $analyzeEntities;
+ }
+
+ /**
+ * @throws \Exception
+ */
+// public function ActivityEntityToModel(ActivityEntity $activiteEntity):Activity {
+// $date = new DateTime($activiteEntity->getDate());
+// $heureDebut = new \DateTime($activiteEntity->getHeureDebut());
+// $heureFin = new \DateTime($activiteEntity->getHeureFin());
+// $effortRessenti = intval($activiteEntity->getEffortRessenti());
+// $variability = floatval($activiteEntity->getVariability());
+// $variance = floatval($activiteEntity->getVariance());
+// $ecartType = floatval($activiteEntity->getEcartType());
+//
+// $act = new Activity(
+// $activiteEntity->getIdActivity(),
+// $activiteEntity->getType(),
+// $date,
+// $heureDebut,
+// $heureFin,
+// $effortRessenti,
+// $variability,
+// $variance,
+// $ecartType,
+// $activiteEntity->getMoyenne(),
+// $activiteEntity->getMaximum(),
+// $activiteEntity->getMinimum(),
+// $activiteEntity->getTemperatureMoyenne(),
+// 'false'
+// );
+//
+// return $act;
+// }
+ //public function ActivityToEntity(Activity model): ActivityEntity;
+
+// public function activityToEntity( $act):ActivityEntity{
+//
+// $act = new ActivityEntity();
+// $act->setIdActivity($act->getIdActivity()());
+// $act->setType($act->getType());
+// $act->setDate($act->getDate());
+// $act->setHeureDebut($act->getHeureDebut());
+// $act->setHeureFin($act->getHeureFin());
+// $act->setEffortRessenti($act->getEffortRessenti());
+// $act->setVariabilite($act->getVariability());
+// $act->setVariance($act->getVariance());
+// $act->setEcartType($act->getEcartType());
+// $act->setMoyenne($act->getMoyenne());
+// $act->setMaximum($act->getMaximum());
+// $act->setMinimum($act->getMinimum());
+// $act->setTemperatureMoyenne($act->getTemperatureMoyenne());
+//
+// return $act;
+// }
+}
\ No newline at end of file
diff --git a/Sources/src/data/core/database/AthleteEntity.php b/Sources/src/data/core/database/AthleteEntity.php
new file mode 100644
index 00000000..6711b5c6
--- /dev/null
+++ b/Sources/src/data/core/database/AthleteEntity.php
@@ -0,0 +1,110 @@
+idAthlete;
+ }
+
+ public function getNom() {
+ return $this->nom;
+ }
+
+ public function getPrenom() {
+ return $this->prenom;
+ }
+
+ public function getUsername(){
+ return $this->username;
+ }
+
+ public function getEmail() {
+ return $this->email;
+ }
+
+ public function getSexe() {
+ return $this->sexe;
+ }
+
+ public function getTaille() {
+ return $this->taille;
+ }
+
+ public function getPoids() {
+ return $this->poids;
+ }
+
+ public function getMotDePasse() {
+ return $this->motDePasse;
+ }
+
+ public function getDateNaissance() {
+ return $this->dateNaissance;
+ }
+
+ public function getIsCoach(){
+ return $this->isCoach;
+ }
+
+
+ // Setters
+ public function setIdAthlete($idAthlete) {
+ $this->idAthlete = $idAthlete;
+ }
+
+ public function setNom($nom) {
+ $this->nom = $nom;
+ }
+
+ public function setPrenom($prenom) {
+ $this->prenom = $prenom;
+ }
+
+ public function setUsername($username){
+ $this->username = $username;
+ }
+
+ public function setEmail($email) {
+ $this->email = $email;
+ }
+
+ public function setSexe($sexe) {
+ $this->sexe = $sexe;
+ }
+
+ public function setTaille($taille) {
+ $this->taille = $taille;
+ }
+
+ public function setPoids($poids) {
+ $this->poids = $poids;
+ }
+
+ public function setMotDePasse($motDePasse) {
+ $this->motDePasse = $motDePasse;
+ }
+
+ public function setDateNaissance($dateNaissance) {
+ $this->dateNaissance = $dateNaissance;
+ }
+
+ public function setIsCoach($isCoach){
+ $this->isCoach = $isCoach;
+ }
+}
+
+?>
diff --git a/Sources/src/data/core/database/AthleteGateway.php b/Sources/src/data/core/database/AthleteGateway.php
new file mode 100644
index 00000000..a6677c89
--- /dev/null
+++ b/Sources/src/data/core/database/AthleteGateway.php
@@ -0,0 +1,177 @@
+connection = $connection;
+ }
+
+ public function getAthlete(): array
+ {
+ $query = "SELECT * FROM Athlete WHERE isCoach=FALSE";
+ $res = $this->connection->executeWithErrorHandling($query);
+ return $res;
+ }
+
+ public function getAthleteById(int $userId): array
+ {
+ $query = "SELECT * FROM Athlete WHERE idAthlete = :id AND isCoach=FALSE";
+ $params = [':id' => $userId];
+// log::dd($params);
+ $res = $this->connection->executeWithErrorHandling($query, $params);
+ return $res;
+ }
+
+ public function getAthleteByName(string $name): array
+ {
+ $query = "SELECT * FROM Athlete WHERE nom = :name AND isCoach=FALSE";
+ $params = [':name' => $name];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getAthleteByFirstName(string $firstName): array
+ {
+ $query = "SELECT * FROM Athlete WHERE prenom = :firstName AND isCoach=FALSE";
+ $params = [':firstName' => $firstName];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getAthleteByEmail(string $email): array
+ {
+ $query = "SELECT * FROM Athlete WHERE email = :email AND isCoach=FALSE";
+ $params = [':email' => $email];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getAthleteByGender(string $gender): array
+ {
+ $query = "SELECT * FROM Athlete WHERE sexe = :gender AND isCoach=FALSE";
+ $params = [':gender' => $gender];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getAthleteByHeight(int $height): array
+ {
+ $query = "SELECT * FROM Athlete WHERE taille = :height AND isCoach=FALSE";
+ $params = [':height' => [$height, PDO::PARAM_INT]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getAthleteByWeight(int $weight): array
+ {
+ $query = "SELECT * FROM Athlete WHERE poids = :weight AND isCoach=FALSE";
+ $params = [':weight' => [$weight, PDO::PARAM_INT]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getAthleteByBirthDate(string $birthdate): array
+ {
+ $query = "SELECT * FROM Athlete WHERE dateNaissance = :birthdate AND isCoach=FALSE";
+ $params = [':birthdate' => [$birthdate, PDO::PARAM_STR]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getListIdFriends(int $idAthlete): array
+ {
+ $query = "SELECT idAthlete1, idAthlete2 FROM Friendship WHERE idAthlete1 = :idAthlete OR idAthlete2= :idAthlete";
+
+ $params = [
+ ':idAthlete' => $idAthlete,
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getListActivity(int $idAthlete): array
+ {
+ $query = "SELECT count(ac.idActivite) AS nbActivite, EXTRACT(MONTH FROM ac.date) AS mois
+ FROM Athlete at, Activite ac
+ WHERE at.idAthlete = :idAthlete
+ AND ac.date > CURRENT_DATE - INTERVAL '1 YEAR'
+ AND ac.athleteId = at.idAthlete
+ GROUP BY mois";
+
+ $params = [
+ ':idAthlete' => $idAthlete,
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+
+ public function addAthlete(AthleteEntity $athlete): array
+ {
+ $query = "INSERT INTO Athlete (nom, prenom, email, sexe, taille, poids, motDePasse, dateNaissance, isCoach)
+ VALUES (:nom, :prenom, :email, :sexe, :taille, :poids, :motDePasse, :dateNaissance, :isCoach)";
+
+ $params = [
+ ':nom' => $athlete->getNom(),
+ ':prenom' => $athlete->getPrenom(),
+ ':email' => $athlete->getEmail(),
+ ':sexe' => $athlete->getSexe(),
+ ':taille' => $athlete->getTaille(),
+ ':poids' => $athlete->getPoids(),
+ ':motDePasse' => $athlete->getMotDePasse(),
+ ':dateNaissance' => $athlete->getDateNaissance(),
+ ':isCoach' => $athlete->getIsCoach(),
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function updateAthlete(AthleteEntity $oldAthlete, AthleteEntity $newAthlete): array
+ {
+ $query = "UPDATE Athlete
+ SET nom = :nom, prenom = :prenom, email = :email, sexe = :sexe,
+ taille = :taille, poids = :poids, motDePasse = :motDePasse, dateNaissance = :dateNaissance, isCoach = :isCoach
+ WHERE idAthlete = :idAthlete";
+
+ $params = [
+ ':idAthlete' => $oldAthlete->getIdAthlete(),
+ ':nom' => $newAthlete->getNom(),
+ ':prenom' => $newAthlete->getPrenom(),
+ ':email' => $newAthlete->getEmail(),
+ ':sexe' => $newAthlete->getSexe(),
+ ':taille' => $newAthlete->getTaille(),
+ ':poids' => $newAthlete->getPoids(),
+ ':motDePasse' => $newAthlete->getMotDePasse(),
+ ':dateNaissance' => $newAthlete->getDateNaissance(),
+ ':isCoach' => $newAthlete->getIsCoach(),
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function deleteAthlete(int $idAthlete): array
+ {
+ $query = "DELETE FROM Athlete WHERE idAthlete = :idAthlete";
+
+ $params = [
+ ':idAthlete' => $idAthlete,
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+
+
+}
+
+
+// Exemple d'utilisation
+//$dsn = "pgsql:host=localhost;port=5432;dbname=mydatabase;user=myuser;password=mypassword";
+//$connection = new Connection($dsn);
+//$gateway = new AthleteGateway($connection);
+
+//$allAth = $gateway->getAthlete();
+//print_r($allAth);
+
+//$singleAth = $gateway->getAthleteById(1);
+//print_r($singleAth);
+
+?>
diff --git a/Sources/src/data/core/database/AthleteMapper.php b/Sources/src/data/core/database/AthleteMapper.php
new file mode 100644
index 00000000..08b39822
--- /dev/null
+++ b/Sources/src/data/core/database/AthleteMapper.php
@@ -0,0 +1,111 @@
+setIdAthlete($athleteData['idathlete']);
+ }
+
+ if (isset($athleteData['nom'])) {
+ $athlete->setNom($athleteData['nom']);
+ }
+
+ if (isset($athleteData['prenom'])) {
+ $athlete->setPrenom($athleteData['prenom']);
+ }
+
+ if (isset($athleteData['username'])) {
+ $athlete->setUsername($athleteData['username']);
+ }
+
+ if (isset($athleteData['email'])) {
+ $athlete->setEmail($athleteData['email']);
+ }
+
+ if (isset($athleteData['sexe'])) {
+ $athlete->setSexe($athleteData['sexe']);
+ }
+
+ if (isset($athleteData['taille'])) {
+ $athlete->setTaille($athleteData['taille']);
+ }
+
+ if (isset($athleteData['poids'])) {
+ $athlete->setPoids($athleteData['poids']);
+ }
+
+ if (isset($athleteData['motdepasse'])) {
+ $athlete->setMotDePasse($athleteData['motdepasse']);
+ }
+
+ if (isset($athleteData['datenaissance'])) {
+ $athlete->setDateNaissance($athleteData['datenaissance']);
+ }
+
+ if (isset($athleteData['iscoach'])) {
+ $athlete->setIsCoach($athleteData['iscoach']);
+ }
+
+ $athleteEntities[] = $athlete;
+ }
+
+ return $athleteEntities;
+ }
+
+ public function athleteEntityToModel(AthleteEntity $athleteEntity): User {
+ $role = new Athlete(); // Utilisez la classe Athlete
+ $date = new DateTime($athleteEntity->getDateNaissance());
+ $poids = floatval($athleteEntity->getPoids());
+ $taille = floatval($athleteEntity->getTaille());
+
+ $user = new User(
+ $athleteEntity->getIdAthlete(),
+ $athleteEntity->getNom(),
+ $athleteEntity->getPrenom(),
+ $athleteEntity->getUsername(),
+ $athleteEntity->getEmail(),
+ $athleteEntity->getMotDePasse(),
+ $athleteEntity->getSexe(),
+ $taille,
+ $poids,
+ $date,
+ $role
+ );
+
+ return $user;
+ }
+
+ public function athleteToEntity(User $user):AthleteEntity{
+
+ $ath = new AthleteEntity();
+ $ath->setIdAthlete($user->getId());
+ $ath->setNom($user->getNom());
+ $ath->setPrenom($user->getPrenom());
+ $ath->setUsername($user->getUsername());
+ $ath->setEmail($user->getEmail());
+ $ath->setSexe($user->getSexe());
+ $ath->setTaille($user->getTaille());
+ $ath->setPoids($user->getPoids());
+ $ath->setMotDePasse($user->getMotDePasse());
+ $ath->setDateNaissance($user->getDateNaissance());
+ $ath->setIsCoach(FALSE);
+ $ath->setCoachId(NULL);
+
+ return $ath;
+ }
+
+}
+
+?>
diff --git a/Sources/src/data/core/database/CoachEntity.php b/Sources/src/data/core/database/CoachEntity.php
new file mode 100644
index 00000000..a1648402
--- /dev/null
+++ b/Sources/src/data/core/database/CoachEntity.php
@@ -0,0 +1,29 @@
+idCoach;
+ }
+
+ public function getAthleteId() {
+ return $this->athleteId;
+ }
+
+ // Setters
+ public function setIdCoach($idCoach) {
+ $this->idCoach = $idCoach;
+ }
+
+ public function setAthleteId($athleteId) {
+ $this->athleteId = $athleteId;
+ }
+
+}
+
+?>
diff --git a/Sources/src/data/core/database/CoachGateway.php b/Sources/src/data/core/database/CoachGateway.php
new file mode 100644
index 00000000..63fc9875
--- /dev/null
+++ b/Sources/src/data/core/database/CoachGateway.php
@@ -0,0 +1,112 @@
+connection = $connection;
+ }
+
+ public function getCoach(): array
+ {
+ $query = "SELECT * FROM Coach";
+ return $this->connection->executeWithErrorHandling($query);
+ }
+
+ public function getCoachById(int $userId): array
+ {
+ $query = "SELECT * FROM Coach WHERE idCoach = :id";
+ $params = [':id' => [$userId, PDO::PARAM_INT]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getAthleteByCoachId(int $coachId): array
+ {
+ $query = "SELECT * FROM Athlete a, Coach c WHERE a.coachId = :id AND a.isCoach = TRUE";
+ $params = [':id' => [$coachId, PDO::PARAM_INT]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getCoachByName(string $name): array
+ {
+ $query = "SELECT * FROM Coach c, Athlete a WHERE c.athleteId = a.idAthlete AND a.nom = :name";
+ $params = [':name' => [$name, PDO::PARAM_STR]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getCoachByFirstName(string $firstName): array
+ {
+ $query = "SELECT * FROM Coach c, Athlete a WHERE c.athleteId = a.idAthlete AND a.prenom = :firstName";
+ $params = [':firstName' => [$firstName, PDO::PARAM_STR]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getCoachByEmail(string $email): array
+ {
+ $query = "SELECT * FROM Coach c, Athlete a WHERE c.athleteId = a.idAthlete AND a.email = :email";
+ $params = [':email' => [$email, PDO::PARAM_STR]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getCoachByGender(string $gender): array
+ {
+ $query = "SELECT * FROM Coach c, Athlete a WHERE c.athleteId = a.idAthlete AND a.sexe = :gender";
+ $params = [':gender' => [$gender, PDO::PARAM_STR]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getCoachByHeight(int $height): array
+ {
+ $query = "SELECT * FROM Coach c, Athlete a WHERE c.athleteId = a.idAthlete AND a.taille = :height";
+ $params = [':height' => [$height, PDO::PARAM_INT]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function getCoachByBirthDate(string $birthdate): array
+ {
+ $query = "SELECT * FROM Coach c, Athlete a WHERE c.athleteId = a.idAthlete AND a.dateNaissance = :birthdate";
+ $params = [':birthdate' => [$birthdate, PDO::PARAM_STR]];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function addCoach(CoachEntity $coach): array
+ {
+ $query = "INSERT INTO Coach (athleteId)
+ VALUES (:athleteId)";
+
+ $params = [
+ ':athleteId' => $coach->getAthleteId(),
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function updateCoach(CoachEntity $oldCoach, CoachEntity $newCoach): array
+ {
+ $query = "UPDATE Coach
+ SET athleteId = :athleteId
+ WHERE idCoach = :idCoach";
+
+ $params = [
+ ':idCoach' => $oldCoach->getIdCoach(),
+ ':athleteId' => $newCoach->getAthleteId(),
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+ public function deleteCoach(int $idCoach): array
+ {
+ $query = "DELETE FROM Coach WHERE idCoach = :idCoach";
+
+ $params = [
+ ':idCoach' => $idCoach,
+ ];
+
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+
+}
\ No newline at end of file
diff --git a/Sources/src/data/core/database/CoachMapper.php b/Sources/src/data/core/database/CoachMapper.php
new file mode 100644
index 00000000..f3fd48ec
--- /dev/null
+++ b/Sources/src/data/core/database/CoachMapper.php
@@ -0,0 +1,70 @@
+setIdCoach($coachData['idCoach']);
+ }
+
+ if (isset($coachData['athleteId'])) {
+ $coach->setAthleteId($coachData['athleteId']);
+ }
+
+ $coachEntities[] = $coach;
+ }
+
+ return $coachEntities;
+ }
+
+ public function CoachEntityToModel(CoachEntity $coachEntity):User{
+ $role = new CoachAthlete();
+
+ $idCoach = $coachEntity->getIdCoach();
+
+ $ath = getAthleteByCoachId($idCoach);
+ $athlete = athleteSqlToEntity($ath);
+
+ $dateSpecific = $athlete->getDateNaissance();
+ $date = new DateTime($dateSpecific);
+
+ $user = new User(
+ $coachEntity->getIdCoach(),
+ $athlete->getNom(),
+ $athlete->getPrenom(),
+ $athlete->getEmail(),
+ $athlete->getMotDePasse(),
+ $athlete->getSexe(),
+ $athlete->getTaille(),
+ $athlete->getPoids(),
+ $athlete->getDateNaissance(),
+ $date,
+ $role
+ );
+
+ return $user;
+ }
+
+ public function CoachToEntity(User $user):CoachEntity{
+
+ $coach = new CoachEntity();
+ $coach->setIdCoach($user->getId());
+ $coach->setAthleteId($user->getId());
+
+ return $coach;
+ }
+}
+?>
+
diff --git a/Sources/src/data/core/database/Connexion.php b/Sources/src/data/core/database/Connexion.php
new file mode 100644
index 00000000..1b3d898c
--- /dev/null
+++ b/Sources/src/data/core/database/Connexion.php
@@ -0,0 +1,50 @@
+setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
+ } catch (\PDOException $e) {
+ // Log error or handle it as needed
+ throw new \PDOException("Error connecting to the database: " . $e->getMessage());
+ }
+ }
+
+ public function executeQuery(string $query, array $parameters = []) {
+ $this->stmt = $this->prepare($query);
+ foreach ($parameters as $name => $value) {
+ $dataType = is_numeric($value) ? \PDO::PARAM_INT : \PDO::PARAM_STR;
+ $bindValueResult = $this->stmt->bindValue($name, $value, $dataType);
+ if (!$bindValueResult) {
+ // Gérez l'erreur, par exemple, en lançant une exception.
+ throw new \PDOException('Failed to bind value for parameter ' . $name);
+ }
+ }
+ return $this->stmt->execute();
+ }
+
+ public function executeWithErrorHandling(string $query, array $params = []): array {
+ try {
+ $this->beginTransaction();
+ $this->executeQuery($query, $params);
+ $this->commit();
+ return $this->getResults();
+ } catch (\PDOException $e) {
+ $this->rollBack();
+ throw new \PDOException('Unexpected error on database client: ' . $e->getMessage());
+ }
+ }
+
+ public function getResults(): array {
+ return $this->stmt->fetchAll(\PDO::FETCH_ASSOC);
+ }
+}
+?>
\ No newline at end of file
diff --git a/Sources/src/data/core/database/EntrainementEntity.php b/Sources/src/data/core/database/EntrainementEntity.php
new file mode 100644
index 00000000..82340c2c
--- /dev/null
+++ b/Sources/src/data/core/database/EntrainementEntity.php
@@ -0,0 +1,71 @@
+idEntrainement;
+ }
+ public function getDate()
+ {
+ return $this->date;
+ }
+ public function getDescription()
+ {
+ return $this->description;
+ }
+ public function getLatitude()
+ {
+ return $this->latitude;
+ }
+ public function getLongitude()
+ {
+ return $this->longitude;
+ }
+ public function getFeedback()
+ {
+ return $this->feedback;
+ }
+ public function getCoachId()
+ {
+ return $this->coachId;
+ }
+ public function setIdEntrainement($idEntrainement)
+ {
+ $this->idEntrainement = $idEntrainement;
+ }
+ public function setDate($date)
+ {
+ $this->date = $date;
+ }
+ public function setDescription($description)
+ {
+ $this->description = $description;
+ }
+ public function setLatitude($latitude)
+ {
+ $this->latitude = $latitude;
+ }
+ public function setLongitude($longitude)
+ {
+ $this->longitude = $longitude;
+ }
+ public function setFeedback($feedback)
+ {
+ $this->feedback = $feedback;
+ }
+ public function setCoachId($coachId)
+ {
+ $this->coachId = $coachId;
+ }
+}
\ No newline at end of file
diff --git a/Sources/src/data/core/database/EntrainementGateway.php b/Sources/src/data/core/database/EntrainementGateway.php
new file mode 100644
index 00000000..b0b5bf3a
--- /dev/null
+++ b/Sources/src/data/core/database/EntrainementGateway.php
@@ -0,0 +1,21 @@
+connection = $connection;
+ }
+
+ public function getEntrainements(): array
+ {
+ $query = "SELECT * FROM Entrainement";
+ $res = $this->connection->executeWithErrorHandling($query);
+ return $res;
+ }
+}
\ No newline at end of file
diff --git a/Sources/src/data/core/database/EntrainementMapper.php b/Sources/src/data/core/database/EntrainementMapper.php
new file mode 100644
index 00000000..25911d7f
--- /dev/null
+++ b/Sources/src/data/core/database/EntrainementMapper.php
@@ -0,0 +1,82 @@
+setIdEntrainement($entrainementData['identrainement']);
+ }
+
+ if (isset($entrainementData['date'])) {
+ $entrainement->setDate($entrainementData['date']);
+ }
+
+ if (isset($entrainementData['description'])) {
+ $entrainement->setDescription($entrainementData['description']);
+ }
+
+ if (isset($entrainementData['latitude'])) {
+ $entrainement->setLatitude($entrainementData['latitude']);
+ }
+
+ if (isset($entrainementData['longitude'])) {
+ $entrainement->setLongitude($entrainementData['longitude']);
+ }
+
+ if (isset($entrainementData['feedback'])) {
+ $entrainement->setFeedback($entrainementData['feedback']);
+ }
+
+ if (isset($entrainementData['athleteid'])) {
+ $entrainement->setCoachId($entrainementData['athleteid']);
+ }
+
+ $entrainementEntities[] = $entrainement;
+ }
+
+ return $entrainementEntities;
+ }
+
+ public function entrainementEntityToModel(EntrainementEntity $entrainementEntity): Training {
+ $date = new DateTime($entrainementEntity->getDate());
+ $idTraining = intval($entrainementEntity->getIdEntrainement());
+ $latitude = floatval($entrainementEntity->getLatitude());
+ $longitude = floatval($entrainementEntity->getLongitude());
+
+ return new Training(
+ $idTraining,
+ $date,
+ $latitude,
+ $longitude,
+ $entrainementEntity->getDescription(),
+ $entrainementEntity->getFeedback()
+ );
+ }
+
+ public function entrainementToEntity(Training $training):EntrainementEntity{
+
+ $train = new EntrainementEntity();
+ $train->setIdEntrainement($training->getId());
+ $train->setDate($training->getDate());
+ $train->setDescription($training->getDescription());
+ $train->setLatitude($training->getLatitude());
+ $train->setLongitude($training->getLongitude());
+ $train->setFeedback($training->getFeedback());
+ $train->setCoachId(1);
+
+ return $train;
+ }
+}
\ No newline at end of file
diff --git a/Sources/src/data/core/database/NotificationEntity.php b/Sources/src/data/core/database/NotificationEntity.php
new file mode 100644
index 00000000..69ecfbf9
--- /dev/null
+++ b/Sources/src/data/core/database/NotificationEntity.php
@@ -0,0 +1,64 @@
+idNotif;
+ }
+ public function getMessage()
+ {
+ return $this->message;
+ }
+ public function getDate()
+ {
+ return $this->date;
+ }
+ public function getStatut()
+ {
+ return $this->statut;
+ }
+ public function getUrgence()
+ {
+ return $this->urgence;
+ }
+ public function getIdAthlete()
+ {
+ return $this->idAthlete;
+ }
+ public function setIdNotif($idNotif)
+ {
+ $this->idNotif = $idNotif;
+ }
+ public function setMessage($message)
+ {
+ $this->message = $message;
+ }
+ public function setDate($date)
+ {
+ $this->date = $date;
+ }
+ public function setStatut($statut)
+ {
+ $this->statut = $statut;
+ }
+ public function setUrgence($urgence)
+ {
+ $this->urgence = $urgence;
+ }
+ public function setIdAthlete($idAthlete)
+ {
+ $this->idAthlete = $idAthlete;
+ }
+}
\ No newline at end of file
diff --git a/Sources/src/data/core/database/NotificationGateway.php b/Sources/src/data/core/database/NotificationGateway.php
new file mode 100644
index 00000000..c10e68e9
--- /dev/null
+++ b/Sources/src/data/core/database/NotificationGateway.php
@@ -0,0 +1,27 @@
+connection = $connection;
+ }
+
+ public function getNotifications(): array
+ {
+ $query = "SELECT * FROM Notification";
+ $res = $this->connection->executeWithErrorHandling($query);
+ return $res;
+ }
+
+ public function addNotification(NotificationEntity $notif){
+ $query = "INSERT INTO Notification (idnotif, message, date, statut, urgence, athleteid) VALUES (:idnotif, :message, :date, :statut, :urgence, :idAthlete)";
+ $params = [':idnotif' => $notif->getIdNotif(), ':message'=>$notif->getMessage(), ':date'=>$notif->getDate(), ':statut'=>$notif->getStatut(), ':urgence'=>$notif->getUrgence(), ':idAthlete'=>$notif->getIdAthlete()];
+ return $this->connection->executeWithErrorHandling($query, $params);
+ }
+}
\ No newline at end of file
diff --git a/Sources/src/data/core/database/NotificationMapper.php b/Sources/src/data/core/database/NotificationMapper.php
new file mode 100644
index 00000000..51622e96
--- /dev/null
+++ b/Sources/src/data/core/database/NotificationMapper.php
@@ -0,0 +1,74 @@
+setIdNotif($notificationData['idnotif']);
+ }
+
+ if (isset($notificationData['message'])) {
+ $notification->setMessage($notificationData['message']);
+ }
+
+ if (isset($notificationData['date'])) {
+ $notification->setDate($notificationData['date']);
+ }
+
+ if (isset($notificationData['statut'])) {
+ $notification->setStatut($notificationData['statut']);
+ }
+
+ if (isset($notificationData['urgence'])) {
+ $notification->setUrgence($notificationData['urgence']);
+ }
+
+ if (isset($notificationData['athleteid'])) {
+ $notification->setIdAthlete($notificationData['athleteid']);
+ }
+
+ $notificationEntities[] = $notification;
+ }
+
+ return $notificationEntities;
+ }
+
+ public function notificationEntityToModel(NotificationEntity $notificationEntity): Notification
+ {
+ $date = new DateTime($notificationEntity->getDate());
+ return new Notification(
+ $notificationEntity->getIdNotif(),
+ $notificationEntity->getMessage(),
+ $date,
+ $notificationEntity->getStatut(),
+ $notificationEntity->getUrgence(),
+ $notificationEntity->getIdAthlete()
+ );
+ }
+
+ public function notificationToEntity(Notification $notification): NotificationEntity
+ {
+ $notif = new NotificationEntity();
+ $notif->setIdNotif($notification->getId());
+ $notif->setMessage($notification->getMessage());
+ $notif->setDate($notification->getDate()->format('Y-m-d H:i:s'));
+ $notif->setStatut($notification->getStatut());
+ $notif->setUrgence($notification->getUrgence());
+ $notif->setIdAthlete($notification->getToUserId());
+
+ return $notif;
+ }
+}
\ No newline at end of file
diff --git a/Sources/src/data/core/database/data/athlete.sql b/Sources/src/data/core/database/data/athlete.sql
new file mode 100644
index 00000000..51c2b19a
--- /dev/null
+++ b/Sources/src/data/core/database/data/athlete.sql
@@ -0,0 +1,6 @@
+INSERT INTO Athlete (idAthlete, username, nom, prenom, email, sexe, taille, poids, motDePasse, dateNaissance, isCoach) VALUES
+ (1, 'johnD63', 'Doe', 'John', 'john.doe@example.com', 'M', 1.80, 70, 'password123', '1990-01-01', FALSE),
+ (2, 'janeS03', 'Smith', 'Jane', 'jane.smith@example.com', 'F', 1.65, 60, 'password456', '1992-02-02', TRUE),
+ (3, 'bryanO', 'OConner', 'Bryan', 'bryan.oconner@example.com', 'M', 1.88, 86, 'password789', '1973-09-12', FALSE),
+ (4, 'dominicT', 'Toretto', 'Dominic', 'dominic.toretto@example.com', 'M', 1.83, 94, 'password987', '1967-07-18', TRUE),
+ (5, 'miaT', 'Toretto', 'Mia', 'mia.toretto@example.com', 'F', 1.70, 56, 'password654', '1980-04-26', FALSE);
\ No newline at end of file
diff --git a/Sources/src/data/core/database/data/frequenceCardiaque.sql b/Sources/src/data/core/database/data/frequenceCardiaque.sql
new file mode 100644
index 00000000..a602a401
--- /dev/null
+++ b/Sources/src/data/core/database/data/frequenceCardiaque.sql
@@ -0,0 +1,21 @@
+INSERT INTO FrequenceCardiaque VALUES(1, 100, '08:15:00', 15, 130, 45.75771709151474, 3.113484980409329, 1);
+INSERT INTO FrequenceCardiaque VALUES
+ (2, ROUND(RANDOM() * 10 + 90), '08:16:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75772709151474, 3.113494980409329, 1),
+ (3, ROUND(RANDOM() * 10 + 90), '08:17:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75773709151474, 3.113504980409329, 1),
+ (4, ROUND(RANDOM() * 10 + 90), '08:18:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75774709151474, 3.113514980409329, 1),
+ (5, ROUND(RANDOM() * 10 + 90), '08:19:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75775709151474, 3.113524980409329, 1),
+ (6, ROUND(RANDOM() * 10 + 90), '08:20:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75776709151474, 3.113534980409329, 1),
+ (7, ROUND(RANDOM() * 10 + 90), '08:21:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75777709151474, 3.113544980409329, 1),
+ (8, ROUND(RANDOM() * 10 + 90), '08:22:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75778709151474, 3.113554980409329, 1),
+ (9, ROUND(RANDOM() * 10 + 90), '08:23:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75779709151474, 3.113564980409329, 1),
+ (10, ROUND(RANDOM() * 10 + 90), '08:24:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75780709151474, 3.113574980409329, 1),
+ (11, ROUND(RANDOM() * 10 + 90), '08:25:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75781709151474, 3.113584980409329, 1),
+ (12, ROUND(RANDOM() * 10 + 90), '08:26:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75782709151474, 3.113594980409329, 1),
+ (13, ROUND(RANDOM() * 10 + 90), '08:27:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75783709151474, 3.113604980409329, 1),
+ (14, ROUND(RANDOM() * 10 + 90), '08:28:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75784709151474, 3.113614980409329, 1),
+ (15, ROUND(RANDOM() * 10 + 90), '08:29:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75785709151474, 3.113624980409329, 1),
+ (16, ROUND(RANDOM() * 10 + 90), '08:30:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75786709151474, 3.113634980409329, 1),
+ (17, ROUND(RANDOM() * 10 + 90), '08:31:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75787709151474, 3.113644980409329, 1),
+ (18, ROUND(RANDOM() * 10 + 90), '08:32:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75788709151474, 3.113654980409329, 1),
+ (19, ROUND(RANDOM() * 10 + 90), '08:33:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75789709151474, 3.113664980409329, 1),
+ (20, ROUND(RANDOM() * 10 + 90), '08:34:00', ROUND(RANDOM() * 5 + 10), ROUND(RANDOM() * 20 + 110), 45.75790709151474, 3.113674980409329, 1);
\ No newline at end of file
diff --git a/Sources/src/data/core/database/data/friendship.sql b/Sources/src/data/core/database/data/friendship.sql
new file mode 100644
index 00000000..da8b2a52
--- /dev/null
+++ b/Sources/src/data/core/database/data/friendship.sql
@@ -0,0 +1,29 @@
+INSERT INTO Friendship (idAthlete1, idAthlete2, debut) VALUES
+ (3, 4, '2023-01-01'),
+ (3, 5, '2023-01-12');
+
+INSERT INTO Notification (idNotif, message, date, statut, urgence, athleteId) VALUES
+ (1, 'Training session at 10 AM', '2023-03-10', TRUE, 1, 1),
+ (2, 'Training session at 3 PM', '2023-05-10', TRUE, 1, 2);
+
+INSERT INTO Statistique (idStatistique, poids, fcMoyenne, fcMax, caloriesBruleesMoy, date, athleteId) VALUES
+ (1, 70, 80, 150, 500, '2023-03-10', 1),
+ (2, 86, 95, 170, 896, '2023-04-13', 3);
+
+INSERT INTO Entrainement (idEntrainement, date, description, latitude, longitude, feedback, athleteId) VALUES
+ (1, '2023-03-10', 'Long run in the park', 40.7128, -74.0060, 'Good effort', 1),
+ (2, '2023-04-13', 'Long run in the forest', 44.7128, -70.0060, 'Pretty good effort', 3);
+
+INSERT INTO Participe (athleteId, entrainementId) VALUES
+ (1, 1),
+ (3, 2);
+
+INSERT INTO SourceDonnee (idSource, type, modele, precision2, athleteId) VALUES
+ (1, 'Heart Rate Monitor', 'HRM-Pro', 98.5, 1);
+
+INSERT INTO Activite (idActivite, type, date, heureDeDebut, heureDeFin, effortRessent, variabilite, variance, ecartType, moyenne, maximum, minimum, temperatureMoyenne, athleteId, sourceId) VALUES
+ (1, 'Running', '2023-03-10', '08:00:00', '09:00:00', 3, 0.5, 1, 0.1, 140, 160, 120, 20, 1, 1),
+ (2, 'Running Forest', '2023-04-13', '10:00:00', '12:00:00', 5, 0.5, 1, 0.1, 140, 160, 120, 20, 1, 1);
+
+INSERT INTO FrequenceCardiaque (idFc, altitude, temps, temperature, bpm, longitude, latitude, activiteId) VALUES
+ (1, 100, '08:15:00', 15, 130, -74.0060, 40.7128, 1);
\ No newline at end of file
diff --git a/Sources/src/data/core/database/data/tables.sql b/Sources/src/data/core/database/data/tables.sql
new file mode 100644
index 00000000..2a8f0ab3
--- /dev/null
+++ b/Sources/src/data/core/database/data/tables.sql
@@ -0,0 +1,107 @@
+DROP TABLE IF EXISTS Athlete, Friendship, Notification, Statistique, Entrainement, Participe, SourceDonnee, Activite, FrequenceCardiaque CASCADE;
+
+CREATE TABLE Athlete (
+ idAthlete SERIAL PRIMARY KEY,
+ nom VARCHAR(255),
+ prenom VARCHAR(255),
+ email VARCHAR(255) UNIQUE,
+ sexe CHAR(1),
+ taille DECIMAL,
+ poids DECIMAL,
+ motDePasse VARCHAR(255),
+ dateNaissance DATE,
+ isCoach BOOLEAN
+);
+
+CREATE TABLE Friendship (
+ idAthlete1 INT,
+ idAthlete2 INT,
+ debut DATE,
+ PRIMARY KEY (idAthlete1, idAthlete2),
+ FOREIGN KEY (idAthlete1) REFERENCES Athlete(idAthlete),
+ FOREIGN KEY (idAthlete2) REFERENCES Athlete(idAthlete)
+);
+
+CREATE TABLE Notification (
+ idNotif INT PRIMARY KEY,
+ message TEXT,
+ date DATE,
+ statut BOOLEAN,
+ urgence INT,
+ athleteId INT,
+ FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete)
+);
+
+CREATE TABLE Statistique (
+ idStatistique INT PRIMARY KEY,
+ poids DECIMAL,
+ fcMoyenne DECIMAL,
+ fcMax DECIMAL,
+ caloriesBruleesMoy DECIMAL,
+ date DATE,
+ athleteId INT,
+ FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete)
+);
+
+CREATE TABLE Entrainement (
+ idEntrainement INT PRIMARY KEY,
+ date DATE,
+ description TEXT,
+ latitude DECIMAL,
+ longitude DECIMAL,
+ feedback TEXT,
+ athleteId INT,
+ FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete)
+);
+
+CREATE TABLE Participe (
+ athleteId INT,
+ entrainementId INT,
+ PRIMARY KEY (athleteId, entrainementId),
+ FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete),
+ FOREIGN KEY (entrainementId) REFERENCES Entrainement(idEntrainement)
+);
+
+CREATE TABLE SourceDonnee (
+ idSource INT PRIMARY KEY,
+ type VARCHAR(255),
+ modele VARCHAR(255),
+ precision2 DECIMAL,
+ athleteId INT,
+ FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete)
+);
+
+CREATE TABLE Activite (
+ idActivite INT PRIMARY KEY,
+ type VARCHAR(255),
+ date DATE,
+ heureDeDebut TIME,
+ heureDeFin TIME,
+ effortRessent DECIMAL,
+ variabilite DECIMAL,
+ variance DECIMAL,
+ ecartType DECIMAL,
+ moyenne DECIMAL,
+ maximum DECIMAL,
+ minimum DECIMAL,
+ temperatureMoyenne DECIMAL,
+ athleteId INT,
+ sourceId INT,
+ FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete),
+ FOREIGN KEY (sourceId) REFERENCES SourceDonnee(idSource)
+);
+
+CREATE TABLE FrequenceCardiaque (
+ idFc INT PRIMARY KEY,
+ altitude DECIMAL,
+ temps TIME,
+ temperature DECIMAL,
+ bpm INT,
+ longitude DECIMAL,
+ latitude DECIMAL,
+ activiteId INT,
+ FOREIGN KEY (activiteId) REFERENCES Activite(idActivite)
+);
+
+\i athlete.sql
+\i friendship.sql
\ No newline at end of file
diff --git a/Sources/src/data/core/database/db.sql b/Sources/src/data/core/database/db.sql
deleted file mode 100644
index f0e29770..00000000
--- a/Sources/src/data/core/database/db.sql
+++ /dev/null
@@ -1,158 +0,0 @@
--- Athlete Table
-CREATE TABLE Athlete (
- idAthlete SERIAL PRIMARY KEY,
- nom VARCHAR(255),
- prenom VARCHAR(255),
- email VARCHAR(255) UNIQUE,
- sexe CHAR(1),
- taille DECIMAL,
- poids DECIMAL,
- motDePasse VARCHAR(255),
- dateNaissance DATE
-);
-
--- Friendship Table
-CREATE TABLE Friendship (
- idAthlete1 INT,
- idAthlete2 INT,
- debut DATE,
- PRIMARY KEY (idAthlete1, idAthlete2),
- FOREIGN KEY (idAthlete1) REFERENCES Athlete (idAthlete),
- FOREIGN KEY (idAthlete2) REFERENCES Athlete (idAthlete)
-);
-
--- Notification Table
-CREATE TABLE Notification (
- idNotif SERIAL PRIMARY KEY,
- message TEXT,
- date DATE,
- statut BOOLEAN,
- urgence INT,
- athleteId INT,
- FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete)
-);
-
--- Coach Table
-CREATE TABLE Coach (
- idCoach SERIAL PRIMARY KEY,
- athleteId INT,
- FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete)
-);
-
--- Statistique Table
-CREATE TABLE Statistique (
- idStatistique SERIAL PRIMARY KEY,
- poids DECIMAL,
- fcMoyenne DECIMAL,
- fcMax DECIMAL,
- caloriesBruleesMoy DECIMAL,
- date DATE,
- athleteId INT,
- FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete)
-);
-
--- Entrainement Table
-CREATE TABLE Entrainement (
- idEntrainement SERIAL PRIMARY KEY,
- date DATE,
- description TEXT,
- latitude DECIMAL,
- longitude DECIMAL,
- feedback TEXT,
- coachId INT,
- FOREIGN KEY (coachId) REFERENCES Coach (idCoach)
-);
-
--- Participe Table
-CREATE TABLE Participe (
- athleteId INT,
- entrainementId INT,
- PRIMARY KEY (athleteId, entrainementId),
- FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete),
- FOREIGN KEY (entrainementId) REFERENCES Entrainement (idEntrainement)
-);
-
--- SourceDonnee Table
-CREATE TABLE SourceDonnee (
- idSource SERIAL PRIMARY KEY,
- type VARCHAR(255),
- modele VARCHAR(255),
- precision DECIMAL,
- athleteId INT,
- FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete)
-);
-
--- Activite Table
-CREATE TABLE Activite (
- idActivite SERIAL PRIMARY KEY,
- type VARCHAR(255),
- date DATE,
- heureDeDebut TIME,
- heureDeFin TIME,
- effortRessent DECIMAL,
- variabilite DECIMAL,
- variance DECIMAL,
- ecartType DECIMAL,
- moyenne DECIMAL,
- maximum DECIMAL,
- minimum DECIMAL,
- temperatureMoyenne DECIMAL,
- athleteId INT,
- sourceId INT,
- FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete),
- FOREIGN KEY (sourceId) REFERENCES SourceDonnee (idSource)
-);
-
--- FrequenceCardiaque Table
-CREATE TABLE FrequenceCardiaque (
- idFc SERIAL PRIMARY KEY,
- altitude DECIMAL,
- temps TIME,
- temperature DECIMAL,
- bpm INT,
- longitude DECIMAL,
- latitude DECIMAL,
- activiteId INT,
- FOREIGN KEY (activiteId) REFERENCES Activite (idActivite)
-);
-
--- Insertion de données dans la table Athlete
-INSERT INTO Athlete (nom, prenom, email, sexe, taille, poids, motDePasse, dateNaissance) VALUES
-('Doe', 'John', 'john.doe@example.com', 'M', 1.80, 70, 'password123', '1990-01-01'),
-('Smith', 'Jane', 'jane.smith@example.com', 'F', 1.65, 60, 'password456', '1992-02-02');
-
--- Insertion de données dans la table Friendship
-INSERT INTO Friendship (idAthlete1, idAthlete2, debut) VALUES
-(1, 2, '2023-01-01');
-
--- Insertion de données dans la table Notification
-INSERT INTO Notification (message, date, statut, urgence, athleteId) VALUES
-('Training session at 10 AM', '2023-03-10', TRUE, 1, 1);
-
--- Insertion de données dans la table Coach
-INSERT INTO Coach (athleteId) VALUES
-(1);
-
--- Insertion de données dans la table Statistique
-INSERT INTO Statistique (poids, fcMoyenne, fcMax, caloriesBruleesMoy, date, athleteId) VALUES
-(70, 80, 150, 500, '2023-03-10', 1);
-
--- Insertion de données dans la table Entrainement
-INSERT INTO Entrainement (date, description, latitude, longitude, feedback, coachId) VALUES
-('2023-03-12', 'Long run in the park', 40.7128, -74.0060, 'Good effort', 1);
-
--- Insertion de données dans la table Participe
-INSERT INTO Participe (athleteId, entrainementId) VALUES
-(1, 1);
-
--- Insertion de données dans la table SourceDonnee
-INSERT INTO SourceDonnee (type, modele, precision, athleteId) VALUES
-('Heart Rate Monitor', 'HRM-Pro', 98.5, 1);
-
--- Insertion de données dans la table Activite
-INSERT INTO Activite (type, date, heureDeDebut, heureDeFin, effortRessent, variabilite, variance, ecartType, moyenne, maximum, minimum, temperatureMoyenne, athleteId, sourceId) VALUES
-('Running', '2023-03-10', '08:00:00', '09:00:00', 7, 0.5, 1, 0.1, 140, 160, 120, 20, 1, 1);
-
--- Insertion de données dans la table FrequenceCardiaque
-INSERT INTO FrequenceCardiaque (altitude, temps, temperature, bpm, longitude, latitude, activiteId) VALUES
-(100, '08:15:00', 15, 130, -74.0060, 40.7128, 1);
diff --git a/Sources/src/data/core/network/IAuthService.php b/Sources/src/data/core/network/IAuthService.php
index 9c3e05bd..eee78c2d 100644
--- a/Sources/src/data/core/network/IAuthService.php
+++ b/Sources/src/data/core/network/IAuthService.php
@@ -26,7 +26,7 @@ interface IAuthService {
* @param string $emailUser The emailUser of the user.
* @param string $password The password of the user.
*
- * @return bool True if authentication is successful, false otherwise.
+ * @return ?User True if authentication is successful, false otherwise.
*/
public function login(string $emailUser, string $password): bool;
diff --git a/Sources/src/data/model/Activity.php b/Sources/src/data/model/Activity.php
index a25e33fc..b0e6fc59 100644
--- a/Sources/src/data/model/Activity.php
+++ b/Sources/src/data/model/Activity.php
@@ -17,7 +17,7 @@ namespace Model;
*/
class Activity
{
- private static int $lastId = 0;
+ private static int $lastId = 100;
private int $idActivity;
private String $type;
private \DateTime $date;
@@ -53,6 +53,7 @@ class Activity
* @throws \Exception Si l'effort ressenti n'est pas compris entre 0 et 5.
*/
public function __construct(
+ int $idActivity,
String $type,
\DateTime $date,
\DateTime $heureDebut,
diff --git a/Sources/src/data/model/Athlete.php b/Sources/src/data/model/Athlete.php
index 9d4bf4c4..0a863d91 100644
--- a/Sources/src/data/model/Athlete.php
+++ b/Sources/src/data/model/Athlete.php
@@ -61,6 +61,4 @@ class Athlete extends Role {
}
-
-
?>
\ No newline at end of file
diff --git a/Sources/src/data/model/Notification.php b/Sources/src/data/model/Notification.php
index 7472632a..85dbfcaf 100644
--- a/Sources/src/data/model/Notification.php
+++ b/Sources/src/data/model/Notification.php
@@ -2,8 +2,41 @@
namespace Model;
+use DateTime;
+
class Notification
{
+ private int $idNotif;
+ private string $message;
+ private \DateTime $date;
+ private bool $statut;
+ private string $urgence;
+ private int $toUserId;
+ /**
+ * @param string $type
+ * @param string $message
+ */
+ public function __construct(
+ int $idNotif,
+ string $message,
+ DateTime $date,
+ string $statut,
+ string $urgence,
+ int $toUserId
+ )
+ {
+ $this->idNotif = $idNotif;
+ $this->message = $message;
+ $this->date = $date;
+ $this->statut = $statut;
+ $this->urgence = $urgence;
+ $this->toUserId =$toUserId;
+ }
+
+ public function getId(){ return $this->idNotif;}
+ public function getDate(){ return $this->date;}
+ public function getStatut(){ return $this->statut;}
+ public function getUrgence(){ return $this->urgence;}
/**
* @return string
*/
@@ -36,10 +69,6 @@ class Notification
$this->message = $message;
}
- private string $type;
- private string $message;
- private int $toUserId;
-
/**
* @return int
*/
@@ -55,16 +84,6 @@ class Notification
{
$this->toUserId = $toUserId;
}
- /**
- * @param string $type
- * @param string $message
- */
- public function __construct(int $toUserId,string $type, string $message)
- {
- $this->type = $type;
- $this->toUserId =$toUserId;
- $this->message = $message;
- }
public function __toString(): string
{
return var_export($this, true);
diff --git a/Sources/src/data/model/Observable.php b/Sources/src/data/model/Observable.php
index a3aa3d0e..6cc478e6 100644
--- a/Sources/src/data/model/Observable.php
+++ b/Sources/src/data/model/Observable.php
@@ -21,4 +21,5 @@ abstract class Observable {
$observer->update($this);
}
}
-}
\ No newline at end of file
+}
+?>
\ No newline at end of file
diff --git a/Sources/src/data/model/Observer.php b/Sources/src/data/model/Observer.php
index ca7c152d..0a6e6005 100644
--- a/Sources/src/data/model/Observer.php
+++ b/Sources/src/data/model/Observer.php
@@ -5,4 +5,5 @@ namespace Model;
interface Observer
{
public function update(Observable $observable);
-}
\ No newline at end of file
+}
+?>
\ No newline at end of file
diff --git a/Sources/src/data/model/Role.php b/Sources/src/data/model/Role.php
index 9f99f71f..4f0e0688 100644
--- a/Sources/src/data/model/Role.php
+++ b/Sources/src/data/model/Role.php
@@ -1,12 +1,34 @@
usersList;
@@ -30,8 +52,19 @@ abstract class Role {
return false;
}
+ /**
+ * Vérifie si un utilisateur peut être ajouté au rôle.
+ *
+ * @param User $user L'utilisateur à vérifier.
+ * @return bool True si l'utilisateur peut être ajouté, sinon false.
+ */
public abstract function CheckAdd(User $user) : bool;
-
+ /**
+ * Ajoute un utilisateur à la liste des utilisateurs associés au rôle.
+ *
+ * @param User $user L'utilisateur à ajouter.
+ * @return bool True si l'ajout est réussi, sinon false.
+ */
public function addUser(User $user): bool
{
if($this->CheckAdd($user)){
@@ -41,8 +74,10 @@ abstract class Role {
return false;
}
/**
- * @param User $user
- * @return bool
+ * Supprime un utilisateur de la liste des utilisateurs associés au rôle.
+ *
+ * @param User $user L'utilisateur à supprimer.
+ * @return bool True si la suppression est réussie, sinon false.
*/
public function removeUser(User $user): bool
{
@@ -55,7 +90,12 @@ abstract class Role {
}
return false;
}
-
+ /**
+ * Ajoute un entraînement à la liste des entraînements associés au rôle.
+ *
+ * @param Training $training L'entraînement à ajouter.
+ * @return bool True si l'ajout est réussi, sinon false.
+ */
public function addTraining(Training $training)
{
$this->trainingList [] = $training;
@@ -65,9 +105,5 @@ abstract class Role {
{
return $this->trainingList;
}
-
}
-
-
-
?>
\ No newline at end of file
diff --git a/Sources/src/data/model/Training.php b/Sources/src/data/model/Training.php
index 98291d77..dc2fbd3e 100644
--- a/Sources/src/data/model/Training.php
+++ b/Sources/src/data/model/Training.php
@@ -33,7 +33,13 @@ class Training
return $this->date;
}
public function getLocation(): String {
- return $this->longitude . $this->latitude;
+ return $this->longitude . ", " . $this->latitude;
+ }
+ public function getLatitude(): float {
+ return $this->latitude;
+ }
+ public function getLongitude(): float {
+ return $this->longitude;
}
public function getDescription(): String
{
diff --git a/Sources/src/data/model/User.php b/Sources/src/data/model/User.php
index 54534011..82b20401 100644
--- a/Sources/src/data/model/User.php
+++ b/Sources/src/data/model/User.php
@@ -1,18 +1,25 @@
id = $id;
$this->nom = $nom;
@@ -68,7 +78,11 @@ class User{
unset($this->notifications[$index]);
}
}
-
+ /**
+ * Obtient l'identifiant de l'utilisateur.
+ *
+ * @return int L'identifiant de l'utilisateur.
+ */
public function getId(): int {
return $this->id;
}
@@ -88,92 +102,213 @@ class User{
$this->username = $username;
}
+ /**
+ * Définit l'identifiant de l'utilisateur.
+ *
+ * @param int $id Le nouvel identifiant de l'utilisateur.
+ */
public function setId(int $id): void {
$this->id = $id;
}
+ /**
+ * Obtient le nom d'utilisateur de l'utilisateur.
+ *
+ * @return string Le nom d'utilisateur de l'utilisateur.
+ */
public function getNom(): string {
return $this->nom;
}
+ /**
+ * Définit le nom de l'utilisateur.
+ *
+ * @param string $nom Le nouveau nom de l'utilisateur.
+ */
public function setNom(string $nom): void {
$this->nom = $nom;
}
+ /**
+ * Obtient le prénom de l'utilisateur.
+ *
+ * @return string Le prénom de l'utilisateur.
+ */
public function getPrenom(): string {
return $this->prenom;
}
+ /**
+ * Définit le prénom de l'utilisateur.
+ *
+ * @param string $prenom Le nouveau prénom de l'utilisateur.
+ */
public function setPrenom(string $prenom): void {
$this->prenom = $prenom;
}
+ /**
+ * Obtient l'adresse e-mail de l'utilisateur.
+ *
+ * @return string L'adresse e-mail de l'utilisateur.
+ */
public function getEmail(): string {
return $this->email;
}
+ /**
+ * Définit l'adresse e-mail de l'utilisateur.
+ *
+ * @param string $email La nouvelle adresse e-mail de l'utilisateur.
+ */
public function setEmail(string $email): void {
$this->email = $email;
}
-
- /**
- * @return string hashed password used to authenticate the user.
+
+ /**
+ * Obtient le mot de passe haché de l'utilisateur.
+ *
+ * @return string Le mot de passe haché de l'utilisateur.
*/
public function getMotDePasse(): string {
return $this->motDePasse;
}
+ /**
+ * Définit le mot de passe haché de l'utilisateur.
+ *
+ * @param string $motDePasse Le nouveau mot de passe haché de l'utilisateur.
+ */
public function setMotDePasse(string $motDePasse): void {
$this->motDePasse = $motDePasse;
}
+ /**
+ * Obtient le sexe de l'utilisateur.
+ *
+ * @return string Le sexe de l'utilisateur.
+ */
public function getSexe(): string {
return $this->sexe;
}
+ /**
+ * Définit le sexe de l'utilisateur.
+ *
+ * @param string $sexe Le nouveau sexe de l'utilisateur.
+ */
public function setSexe(string $sexe): void {
$this->sexe = $sexe;
}
+ /**
+ * Obtient la taille de l'utilisateur.
+ *
+ * @return float La taille de l'utilisateur.
+ */
public function getTaille(): float {
return $this->taille;
}
+ /**
+ * Définit la taille de l'utilisateur.
+ *
+ * @param float $taille La nouvelle taille de l'utilisateur.
+ */
public function setTaille(float $taille): void {
$this->taille = $taille;
}
+ /**
+ * Obtient le poids de l'utilisateur.
+ *
+ * @return float Le poids de l'utilisateur.
+ */
public function getPoids(): float {
return $this->poids;
}
+ /**
+ * Définit le poids de l'utilisateur.
+ *
+ * @param float $poids Le nouveau poids de l'utilisateur.
+ */
public function setPoids(float $poids): void {
$this->poids = $poids;
}
+ /**
+ * Obtient la date de naissance de l'utilisateur.
+ *
+ * @return \DateTime La date de naissance de l'utilisateur.
+ */
public function getDateNaissance(): \DateTime {
return $this->dateNaissance;
}
+ /**
+ * Définit la date de naissance de l'utilisateur.
+ *
+ * @param \DateTime $dateNaissance La nouvelle date de naissance de l'utilisateur.
+ */
public function setDateNaissance(\DateTime $dateNaissance): void {
$this->dateNaissance = $dateNaissance;
}
+ /**
+ * Obtient le rôle de l'utilisateur.
+ *
+ * @return Role Le rôle de l'utilisateur.
+ */
public function getRole(): Role {
return $this->role;
}
+ /**
+ * Définit le rôle de l'utilisateur.
+ *
+ * @param Role $role Le nouveau rôle de l'utilisateur.
+ */
public function setRole(Role $role): void {
$this->role = $role;
}
- public function isValidPassword(string $password) {
- // TODO: Not implemented Hasher le mot de passe this not the responsability of the user this is not SOLID
+ /**
+ * Vérifie si le mot de passe fourni est valide.
+ *
+ * @param string $password Le mot de passe à vérifier.
+ * @return bool True si le mot de passe est valide, sinon false.
+ */
+ public function isValidPassword(string $password): bool {
+ // TODO: Implémenter la vérification du mot de passe (hachage).
return $this->motDePasse === $password;
}
+ /**
+ * Obtient une représentation textuelle de l'utilisateur.
+ *
+ * @return string La représentation textuelle de l'utilisateur.
+ */
public function __toString() {
return "Athlete [ID: {$this->id}, Username : $this->username, Nom: {$this->nom}, Prénom: {$this->prenom}, Email: {$this->email}]";
}
+
+ /**
+ * Donne la liste des amis de l'utilisateur
+ *
+ * @return string Les amis de l'utilisateur.
+ */
+ public function getListFriend(): array {
+ return $this->listFriend;
+ }
-}
\ No newline at end of file
+ /**
+ * Ajoute un utilisateur a sa liste d'amis.
+ *
+ * @param User L'utilisateur a ajouter.
+ */
+ public function addFriend(User $user){
+ array_push($this->listFriend, $user);
+ }
+}
+?>
\ No newline at end of file
diff --git a/Sources/src/data/model/fitFileReader/fitFiles/biking.fit b/Sources/src/data/model/fitFileReader/fitFiles/biking.fit
new file mode 100644
index 00000000..f1dd4fe1
Binary files /dev/null and b/Sources/src/data/model/fitFileReader/fitFiles/biking.fit differ
diff --git a/Sources/src/data/model/fitFileReader/fitFiles/cycling.fit b/Sources/src/data/model/fitFileReader/fitFiles/cycling.fit
new file mode 100644
index 00000000..f63df29a
Binary files /dev/null and b/Sources/src/data/model/fitFileReader/fitFiles/cycling.fit differ
diff --git a/Sources/src/data/model/fitFileReader/fitFiles/power.fit b/Sources/src/data/model/fitFileReader/fitFiles/power.fit
new file mode 100644
index 00000000..7ebd96a1
Binary files /dev/null and b/Sources/src/data/model/fitFileReader/fitFiles/power.fit differ
diff --git a/Sources/src/data/model/fitFileReader/fitFiles/swim.fit b/Sources/src/data/model/fitFileReader/fitFiles/swim.fit
new file mode 100644
index 00000000..6ba7f561
Binary files /dev/null and b/Sources/src/data/model/fitFileReader/fitFiles/swim.fit differ
diff --git a/Sources/src/data/model/fitFileSaver/jsonFiles/ActivitySave.json b/Sources/src/data/model/fitFileSaver/jsonFiles/ActivitySave.json
new file mode 100644
index 00000000..912d686a
--- /dev/null
+++ b/Sources/src/data/model/fitFileSaver/jsonFiles/ActivitySave.json
@@ -0,0 +1,27408 @@
+{
+ "timestamps": [
+ 1437474517,
+ 1437474518,
+ 1437474519,
+ 1437474520,
+ 1437474521,
+ 1437474522,
+ 1437474523,
+ 1437474524,
+ 1437474525,
+ 1437474526,
+ 1437474527,
+ 1437474528,
+ 1437474529,
+ 1437474530,
+ 1437474532,
+ 1437474533,
+ 1437474534,
+ 1437474535,
+ 1437474536,
+ 1437474537,
+ 1437474538,
+ 1437474539,
+ 1437474540,
+ 1437474541,
+ 1437474542,
+ 1437474543,
+ 1437474544,
+ 1437474545,
+ 1437474546,
+ 1437474547,
+ 1437474548,
+ 1437474549,
+ 1437474550,
+ 1437474551,
+ 1437474552,
+ 1437474553,
+ 1437474554,
+ 1437474555,
+ 1437474556,
+ 1437474557,
+ 1437474558,
+ 1437474559,
+ 1437474560,
+ 1437474561,
+ 1437474562,
+ 1437474563,
+ 1437474564,
+ 1437474566,
+ 1437474567,
+ 1437474568,
+ 1437474569,
+ 1437474570,
+ 1437474571,
+ 1437474572,
+ 1437474573,
+ 1437474574,
+ 1437474575,
+ 1437474576,
+ 1437474577,
+ 1437474578,
+ 1437474579,
+ 1437474580,
+ 1437474581,
+ 1437474582,
+ 1437474583,
+ 1437474584,
+ 1437474585,
+ 1437474586,
+ 1437474587,
+ 1437474588,
+ 1437474589,
+ 1437474590,
+ 1437474591,
+ 1437474592,
+ 1437474593,
+ 1437474594,
+ 1437474595,
+ 1437474596,
+ 1437474597,
+ 1437474598,
+ 1437474599,
+ 1437474600,
+ 1437474601,
+ 1437474603,
+ 1437474604,
+ 1437474605,
+ 1437474606,
+ 1437474607,
+ 1437474608,
+ 1437474609,
+ 1437474610,
+ 1437474611,
+ 1437474612,
+ 1437474613,
+ 1437474614,
+ 1437474615,
+ 1437474616,
+ 1437474617,
+ 1437474618,
+ 1437474619,
+ 1437474620,
+ 1437474621,
+ 1437474622,
+ 1437474623,
+ 1437474624,
+ 1437474626,
+ 1437474627,
+ 1437474628,
+ 1437474629,
+ 1437474630,
+ 1437474631,
+ 1437474632,
+ 1437474633,
+ 1437474634,
+ 1437474635,
+ 1437474636,
+ 1437474637,
+ 1437474638,
+ 1437474639,
+ 1437474640,
+ 1437474641,
+ 1437474642,
+ 1437474643,
+ 1437474644,
+ 1437474645,
+ 1437474646,
+ 1437474647,
+ 1437474648,
+ 1437474649,
+ 1437474650,
+ 1437474652,
+ 1437474653,
+ 1437474654,
+ 1437474655,
+ 1437474656,
+ 1437474657,
+ 1437474658,
+ 1437474659,
+ 1437474660,
+ 1437474661,
+ 1437474662,
+ 1437474663,
+ 1437474664,
+ 1437474665,
+ 1437474666,
+ 1437474667,
+ 1437474668,
+ 1437474669,
+ 1437474670,
+ 1437474671,
+ 1437474672,
+ 1437474673,
+ 1437474674,
+ 1437474675,
+ 1437474676,
+ 1437474677,
+ 1437474678,
+ 1437474679,
+ 1437474681,
+ 1437474682,
+ 1437474683,
+ 1437474684,
+ 1437474685,
+ 1437474686,
+ 1437474687,
+ 1437474688,
+ 1437474689,
+ 1437474690,
+ 1437474691,
+ 1437474692,
+ 1437474693,
+ 1437474694,
+ 1437474695,
+ 1437474696,
+ 1437474697,
+ 1437474698,
+ 1437474699,
+ 1437474700,
+ 1437474701,
+ 1437474702,
+ 1437474703,
+ 1437474705,
+ 1437474706,
+ 1437474707,
+ 1437474708,
+ 1437474709,
+ 1437474710,
+ 1437474711,
+ 1437474712,
+ 1437474713,
+ 1437474714,
+ 1437474715,
+ 1437474716,
+ 1437474717,
+ 1437474718,
+ 1437474719,
+ 1437474720,
+ 1437474721,
+ 1437474722,
+ 1437474723,
+ 1437474724,
+ 1437474725,
+ 1437474726,
+ 1437474727,
+ 1437474728,
+ 1437474729,
+ 1437474730,
+ 1437474732,
+ 1437474733,
+ 1437474734,
+ 1437474735,
+ 1437474736,
+ 1437474737,
+ 1437474738,
+ 1437474739,
+ 1437474740,
+ 1437474741,
+ 1437474742,
+ 1437474743,
+ 1437474744,
+ 1437474745,
+ 1437474746,
+ 1437474747,
+ 1437474748,
+ 1437474749,
+ 1437474750,
+ 1437474751,
+ 1437474752,
+ 1437474753,
+ 1437474754,
+ 1437474755,
+ 1437474756,
+ 1437474757,
+ 1437474758,
+ 1437474760,
+ 1437474761,
+ 1437474762,
+ 1437474763,
+ 1437474764,
+ 1437474765,
+ 1437474766,
+ 1437474767,
+ 1437474768,
+ 1437474769,
+ 1437474770,
+ 1437474771,
+ 1437474772,
+ 1437474773,
+ 1437474774,
+ 1437474775,
+ 1437474776,
+ 1437474777,
+ 1437474778,
+ 1437474779,
+ 1437474780,
+ 1437474781,
+ 1437474782,
+ 1437474783,
+ 1437474785,
+ 1437474786,
+ 1437474787,
+ 1437474788,
+ 1437474789,
+ 1437474790,
+ 1437474791,
+ 1437474792,
+ 1437474793,
+ 1437474794,
+ 1437474795,
+ 1437474796,
+ 1437474797,
+ 1437474798,
+ 1437474799,
+ 1437474800,
+ 1437474801,
+ 1437474802,
+ 1437474803,
+ 1437474804,
+ 1437474805,
+ 1437474806,
+ 1437474808,
+ 1437474809,
+ 1437474810,
+ 1437474811,
+ 1437474812,
+ 1437474813,
+ 1437474814,
+ 1437474815,
+ 1437474816,
+ 1437474817,
+ 1437474818,
+ 1437474819,
+ 1437474820,
+ 1437474821,
+ 1437474822,
+ 1437474823,
+ 1437474824,
+ 1437474825,
+ 1437474827,
+ 1437474828,
+ 1437474829,
+ 1437474830,
+ 1437474831,
+ 1437474832,
+ 1437474833,
+ 1437474834,
+ 1437474835,
+ 1437474836,
+ 1437474837,
+ 1437474838,
+ 1437474839,
+ 1437474840,
+ 1437474841,
+ 1437474842,
+ 1437474843,
+ 1437474844,
+ 1437474845,
+ 1437474846,
+ 1437474847,
+ 1437474848,
+ 1437474849,
+ 1437474850,
+ 1437474851,
+ 1437474852,
+ 1437474853,
+ 1437474854,
+ 1437474855,
+ 1437474856,
+ 1437474857,
+ 1437474859,
+ 1437474860,
+ 1437474861,
+ 1437474862,
+ 1437474863,
+ 1437474864,
+ 1437474865,
+ 1437474866,
+ 1437474867,
+ 1437474868,
+ 1437474869,
+ 1437474870,
+ 1437474871,
+ 1437474872,
+ 1437474873,
+ 1437474874,
+ 1437474875,
+ 1437474876,
+ 1437474877,
+ 1437474878,
+ 1437474879,
+ 1437474880,
+ 1437474881,
+ 1437474882,
+ 1437474883,
+ 1437474884,
+ 1437474885,
+ 1437474886,
+ 1437474887,
+ 1437474888,
+ 1437474890,
+ 1437474891,
+ 1437474892,
+ 1437474893,
+ 1437474894,
+ 1437474895,
+ 1437474896,
+ 1437474897,
+ 1437474898,
+ 1437474899,
+ 1437474900,
+ 1437474901,
+ 1437474902,
+ 1437474903,
+ 1437474904,
+ 1437474905,
+ 1437474906,
+ 1437474907,
+ 1437474908,
+ 1437474909,
+ 1437474910,
+ 1437474911,
+ 1437474912,
+ 1437474913,
+ 1437474914,
+ 1437474915,
+ 1437474916,
+ 1437474917,
+ 1437474918,
+ 1437474919,
+ 1437474920,
+ 1437474921,
+ 1437474923,
+ 1437474924,
+ 1437474925,
+ 1437474926,
+ 1437474927,
+ 1437474928,
+ 1437474929,
+ 1437474930,
+ 1437474931,
+ 1437474932,
+ 1437474933,
+ 1437474934,
+ 1437474935,
+ 1437474936,
+ 1437474937,
+ 1437474938,
+ 1437474939,
+ 1437474940,
+ 1437474941,
+ 1437474942,
+ 1437474943,
+ 1437474944,
+ 1437474945,
+ 1437474946,
+ 1437474947,
+ 1437474948,
+ 1437474949,
+ 1437474950,
+ 1437474951,
+ 1437474952,
+ 1437474953,
+ 1437474954,
+ 1437474955,
+ 1437474956,
+ 1437474957,
+ 1437474958,
+ 1437474959,
+ 1437474960,
+ 1437474962,
+ 1437474963,
+ 1437474964,
+ 1437474965,
+ 1437474966,
+ 1437474967,
+ 1437474968,
+ 1437474969,
+ 1437474970,
+ 1437474971,
+ 1437474972,
+ 1437474973,
+ 1437474974,
+ 1437474975,
+ 1437474976,
+ 1437474977,
+ 1437474978,
+ 1437474979,
+ 1437474980,
+ 1437474981,
+ 1437474982,
+ 1437474983,
+ 1437474984,
+ 1437474985,
+ 1437474986,
+ 1437474987,
+ 1437474988,
+ 1437474989,
+ 1437474990,
+ 1437474992,
+ 1437474993,
+ 1437474994,
+ 1437474995,
+ 1437474996,
+ 1437474997,
+ 1437474998,
+ 1437474999,
+ 1437475000,
+ 1437475001,
+ 1437475002,
+ 1437475003,
+ 1437475004,
+ 1437475005,
+ 1437475006,
+ 1437475007,
+ 1437475008,
+ 1437475009,
+ 1437475010,
+ 1437475012,
+ 1437475013,
+ 1437475014,
+ 1437475015,
+ 1437475016,
+ 1437475017,
+ 1437475018,
+ 1437475019,
+ 1437475020,
+ 1437475021,
+ 1437475022,
+ 1437475023,
+ 1437475024,
+ 1437475025,
+ 1437475026,
+ 1437475027,
+ 1437475029,
+ 1437475030,
+ 1437475031,
+ 1437475032,
+ 1437475033,
+ 1437475034,
+ 1437475035,
+ 1437475036,
+ 1437475037,
+ 1437475038,
+ 1437475039,
+ 1437475040,
+ 1437475041,
+ 1437475042,
+ 1437475043,
+ 1437475044,
+ 1437475045,
+ 1437475046,
+ 1437475047,
+ 1437475048,
+ 1437475049,
+ 1437475050,
+ 1437475051,
+ 1437475052,
+ 1437475054,
+ 1437475055,
+ 1437475056,
+ 1437475057,
+ 1437475058,
+ 1437475059,
+ 1437475060,
+ 1437475061,
+ 1437475062,
+ 1437475063,
+ 1437475064,
+ 1437475065,
+ 1437475066,
+ 1437475067,
+ 1437475068,
+ 1437475069,
+ 1437475070,
+ 1437475071,
+ 1437475072,
+ 1437475073,
+ 1437475074,
+ 1437475075,
+ 1437475076,
+ 1437475077,
+ 1437475078,
+ 1437475079,
+ 1437475080,
+ 1437475081,
+ 1437475083,
+ 1437475084,
+ 1437475085,
+ 1437475086,
+ 1437475087,
+ 1437475088,
+ 1437475089,
+ 1437475090,
+ 1437475091,
+ 1437475092,
+ 1437475093,
+ 1437475094,
+ 1437475095,
+ 1437475096,
+ 1437475097,
+ 1437475098,
+ 1437475099,
+ 1437475100,
+ 1437475101,
+ 1437475102,
+ 1437475103,
+ 1437475104,
+ 1437475105,
+ 1437475106,
+ 1437475107,
+ 1437475108,
+ 1437475109,
+ 1437475110,
+ 1437475112,
+ 1437475113,
+ 1437475114,
+ 1437475115,
+ 1437475116,
+ 1437475117,
+ 1437475118,
+ 1437475119,
+ 1437475120,
+ 1437475121,
+ 1437475122,
+ 1437475123,
+ 1437475124,
+ 1437475125,
+ 1437475126,
+ 1437475127,
+ 1437475128,
+ 1437475129,
+ 1437475130,
+ 1437475131,
+ 1437475132,
+ 1437475133,
+ 1437475134,
+ 1437475135,
+ 1437475136,
+ 1437475137,
+ 1437475138,
+ 1437475139,
+ 1437475140,
+ 1437475141,
+ 1437475142,
+ 1437475143,
+ 1437475145,
+ 1437475146,
+ 1437475147,
+ 1437475148,
+ 1437475149,
+ 1437475150,
+ 1437475151,
+ 1437475152,
+ 1437475153,
+ 1437475154,
+ 1437475155,
+ 1437475156,
+ 1437475157,
+ 1437475158,
+ 1437475159,
+ 1437475160,
+ 1437475161,
+ 1437475162,
+ 1437475163,
+ 1437475164,
+ 1437475165,
+ 1437475166,
+ 1437475167,
+ 1437475168,
+ 1437475169,
+ 1437475170,
+ 1437475171,
+ 1437475173,
+ 1437475174,
+ 1437475175,
+ 1437475176,
+ 1437475177,
+ 1437475178,
+ 1437475179,
+ 1437475180,
+ 1437475181,
+ 1437475182,
+ 1437475183,
+ 1437475184,
+ 1437475185,
+ 1437475186,
+ 1437475187,
+ 1437475188,
+ 1437475189,
+ 1437475190,
+ 1437475191,
+ 1437475192,
+ 1437475193,
+ 1437475194,
+ 1437475195,
+ 1437475196,
+ 1437475197,
+ 1437475198,
+ 1437475200,
+ 1437475201,
+ 1437475202,
+ 1437475203,
+ 1437475204,
+ 1437475205,
+ 1437475206,
+ 1437475207,
+ 1437475208,
+ 1437475209,
+ 1437475210,
+ 1437475211,
+ 1437475212,
+ 1437475213,
+ 1437475214,
+ 1437475215,
+ 1437475216,
+ 1437475217,
+ 1437475218,
+ 1437475219,
+ 1437475220,
+ 1437475221,
+ 1437475222,
+ 1437475223,
+ 1437475224,
+ 1437475225,
+ 1437475226,
+ 1437475227,
+ 1437475228,
+ 1437475230,
+ 1437475231,
+ 1437475232,
+ 1437475233,
+ 1437475234,
+ 1437475235,
+ 1437475236,
+ 1437475237,
+ 1437475238,
+ 1437475239,
+ 1437475240,
+ 1437475241,
+ 1437475242,
+ 1437475243,
+ 1437475244,
+ 1437475245,
+ 1437475246,
+ 1437475247,
+ 1437475248,
+ 1437475249,
+ 1437475250,
+ 1437475251,
+ 1437475252,
+ 1437475253,
+ 1437475254,
+ 1437475255,
+ 1437475256,
+ 1437475257,
+ 1437475258,
+ 1437475259,
+ 1437475260,
+ 1437475261,
+ 1437475262,
+ 1437475263,
+ 1437475264,
+ 1437475265,
+ 1437475266,
+ 1437475267,
+ 1437475269,
+ 1437475270,
+ 1437475271,
+ 1437475272,
+ 1437475273,
+ 1437475274,
+ 1437475275,
+ 1437475276,
+ 1437475277,
+ 1437475278,
+ 1437475279,
+ 1437475280,
+ 1437475281,
+ 1437475282,
+ 1437475283,
+ 1437475284,
+ 1437475285,
+ 1437475286,
+ 1437475287,
+ 1437475288,
+ 1437475289,
+ 1437475290,
+ 1437475291,
+ 1437475292,
+ 1437475293,
+ 1437475294,
+ 1437475295,
+ 1437475296,
+ 1437475297,
+ 1437475298,
+ 1437475299,
+ 1437475300,
+ 1437475301,
+ 1437475302,
+ 1437475303,
+ 1437475304,
+ 1437475305,
+ 1437475306,
+ 1437475308,
+ 1437475309,
+ 1437475310,
+ 1437475311,
+ 1437475312,
+ 1437475313,
+ 1437475314,
+ 1437475315,
+ 1437475316,
+ 1437475317,
+ 1437475318,
+ 1437475319,
+ 1437475320,
+ 1437475321,
+ 1437475322,
+ 1437475323,
+ 1437475324,
+ 1437475325,
+ 1437475326,
+ 1437475327,
+ 1437475328,
+ 1437475329,
+ 1437475330,
+ 1437475331,
+ 1437475332,
+ 1437475333,
+ 1437475334,
+ 1437475335,
+ 1437475336,
+ 1437475337,
+ 1437475338,
+ 1437475339,
+ 1437475340,
+ 1437475342,
+ 1437475343,
+ 1437475344,
+ 1437475345,
+ 1437475346,
+ 1437475347,
+ 1437475348,
+ 1437475349,
+ 1437475350,
+ 1437475351,
+ 1437475352,
+ 1437475353,
+ 1437475354,
+ 1437475355,
+ 1437475356,
+ 1437475357,
+ 1437475358,
+ 1437475359,
+ 1437475360,
+ 1437475361,
+ 1437475362,
+ 1437475363,
+ 1437475364,
+ 1437475365,
+ 1437475366,
+ 1437475367,
+ 1437475368,
+ 1437475369,
+ 1437475371,
+ 1437475372,
+ 1437475373,
+ 1437475374,
+ 1437475375,
+ 1437475376,
+ 1437475377,
+ 1437475378,
+ 1437475379,
+ 1437475380,
+ 1437475381,
+ 1437475382,
+ 1437475383,
+ 1437475384,
+ 1437475385,
+ 1437475386,
+ 1437475387,
+ 1437475388,
+ 1437475389,
+ 1437475390,
+ 1437475391,
+ 1437475392,
+ 1437475393,
+ 1437475394,
+ 1437475395,
+ 1437475396,
+ 1437475397,
+ 1437475398,
+ 1437475400,
+ 1437475401,
+ 1437475402,
+ 1437475403,
+ 1437475404,
+ 1437475405,
+ 1437475406,
+ 1437475407,
+ 1437475408,
+ 1437475409,
+ 1437475410,
+ 1437475411,
+ 1437475412,
+ 1437475413,
+ 1437475414,
+ 1437475415,
+ 1437475416,
+ 1437475417,
+ 1437475418,
+ 1437475419,
+ 1437475420,
+ 1437475421,
+ 1437475422,
+ 1437475423,
+ 1437475424,
+ 1437475425,
+ 1437475426,
+ 1437475427,
+ 1437475428,
+ 1437475429,
+ 1437475430,
+ 1437475431,
+ 1437475433,
+ 1437475434,
+ 1437475435,
+ 1437475436,
+ 1437475437,
+ 1437475438,
+ 1437475439,
+ 1437475440,
+ 1437475441,
+ 1437475442,
+ 1437475443,
+ 1437475444,
+ 1437475445,
+ 1437475446,
+ 1437475447,
+ 1437475448,
+ 1437475449,
+ 1437475450,
+ 1437475451,
+ 1437475452,
+ 1437475453,
+ 1437475454,
+ 1437475455,
+ 1437475456,
+ 1437475457,
+ 1437475458,
+ 1437475459,
+ 1437475460,
+ 1437475461,
+ 1437475462,
+ 1437475463,
+ 1437475464,
+ 1437475466,
+ 1437475467,
+ 1437475468,
+ 1437475469,
+ 1437475470,
+ 1437475471,
+ 1437475472,
+ 1437475473,
+ 1437475474,
+ 1437475475,
+ 1437475476,
+ 1437475477,
+ 1437475478,
+ 1437475479,
+ 1437475480,
+ 1437475481,
+ 1437475482,
+ 1437475483,
+ 1437475484,
+ 1437475485,
+ 1437475486,
+ 1437475487,
+ 1437475488,
+ 1437475489,
+ 1437475490,
+ 1437475491,
+ 1437475492,
+ 1437475493,
+ 1437475494,
+ 1437475495,
+ 1437475496,
+ 1437475497,
+ 1437475498,
+ 1437475499,
+ 1437475500,
+ 1437475501,
+ 1437475502,
+ 1437475503,
+ 1437475504,
+ 1437475505,
+ 1437475506,
+ 1437475507,
+ 1437475508,
+ 1437475510,
+ 1437475511,
+ 1437475512,
+ 1437475513,
+ 1437475514,
+ 1437475515,
+ 1437475516,
+ 1437475517,
+ 1437475518,
+ 1437475519,
+ 1437475520,
+ 1437475521,
+ 1437475522,
+ 1437475523,
+ 1437475524,
+ 1437475525,
+ 1437475526,
+ 1437475527,
+ 1437475528,
+ 1437475529,
+ 1437475530,
+ 1437475531,
+ 1437475532,
+ 1437475533,
+ 1437475534,
+ 1437475535,
+ 1437475536,
+ 1437475537,
+ 1437475538,
+ 1437475539,
+ 1437475540,
+ 1437475541,
+ 1437475542,
+ 1437475543,
+ 1437475544,
+ 1437475545,
+ 1437475546,
+ 1437475547,
+ 1437475548,
+ 1437475549,
+ 1437475551,
+ 1437475552,
+ 1437475553,
+ 1437475554,
+ 1437475555,
+ 1437475556,
+ 1437475557,
+ 1437475558,
+ 1437475559,
+ 1437475560,
+ 1437475561,
+ 1437475562,
+ 1437475563,
+ 1437475564,
+ 1437475565,
+ 1437475566,
+ 1437475567,
+ 1437475568,
+ 1437475569,
+ 1437475570,
+ 1437475571,
+ 1437475572,
+ 1437475573,
+ 1437475574,
+ 1437475575,
+ 1437475576,
+ 1437475577,
+ 1437475578,
+ 1437475580,
+ 1437475581,
+ 1437475582,
+ 1437475583,
+ 1437475584,
+ 1437475585,
+ 1437475586,
+ 1437475587,
+ 1437475588,
+ 1437475589,
+ 1437475590,
+ 1437475591,
+ 1437475592,
+ 1437475593,
+ 1437475594,
+ 1437475595,
+ 1437475596,
+ 1437475597,
+ 1437475598,
+ 1437475599,
+ 1437475600,
+ 1437475601,
+ 1437475602,
+ 1437475603,
+ 1437475604,
+ 1437475605,
+ 1437475606,
+ 1437475607,
+ 1437475608,
+ 1437475610,
+ 1437475611,
+ 1437475612,
+ 1437475613,
+ 1437475614,
+ 1437475615,
+ 1437475616,
+ 1437475617,
+ 1437475618,
+ 1437475619,
+ 1437475620,
+ 1437475621,
+ 1437475622,
+ 1437475623,
+ 1437475624,
+ 1437475625,
+ 1437475626,
+ 1437475627,
+ 1437475628,
+ 1437475629,
+ 1437475630,
+ 1437475631,
+ 1437475632,
+ 1437475633,
+ 1437475634,
+ 1437475636,
+ 1437475637,
+ 1437475638,
+ 1437475639,
+ 1437475640,
+ 1437475641,
+ 1437475642,
+ 1437475643,
+ 1437475644,
+ 1437475645,
+ 1437475646,
+ 1437475647,
+ 1437475648,
+ 1437475649,
+ 1437475650,
+ 1437475651,
+ 1437475652,
+ 1437475653,
+ 1437475654,
+ 1437475655,
+ 1437475656,
+ 1437475657,
+ 1437475658,
+ 1437475659,
+ 1437475660,
+ 1437475662,
+ 1437475663,
+ 1437475664,
+ 1437475665,
+ 1437475666,
+ 1437475667,
+ 1437475668,
+ 1437475669,
+ 1437475670,
+ 1437475671,
+ 1437475672,
+ 1437475673,
+ 1437475674,
+ 1437475675,
+ 1437475676,
+ 1437475677,
+ 1437475678,
+ 1437475679,
+ 1437475680,
+ 1437475681,
+ 1437475682,
+ 1437475683,
+ 1437475684,
+ 1437475685,
+ 1437475686,
+ 1437475687,
+ 1437475688,
+ 1437475689,
+ 1437475690,
+ 1437475691,
+ 1437475693,
+ 1437475694,
+ 1437475695,
+ 1437475696,
+ 1437475697,
+ 1437475698,
+ 1437475699,
+ 1437475700,
+ 1437475701,
+ 1437475702,
+ 1437475703,
+ 1437475704,
+ 1437475705,
+ 1437475706,
+ 1437475707,
+ 1437475708,
+ 1437475709,
+ 1437475710,
+ 1437475711,
+ 1437475712,
+ 1437475713,
+ 1437475714,
+ 1437475715,
+ 1437475716,
+ 1437475717,
+ 1437475718,
+ 1437475719,
+ 1437475720,
+ 1437475721,
+ 1437475722,
+ 1437475724,
+ 1437475725,
+ 1437475726,
+ 1437475727,
+ 1437475728,
+ 1437475729,
+ 1437475730,
+ 1437475731,
+ 1437475732,
+ 1437475733,
+ 1437475734,
+ 1437475735,
+ 1437475736,
+ 1437475737,
+ 1437475738,
+ 1437475739,
+ 1437475740,
+ 1437475741,
+ 1437475742,
+ 1437475743,
+ 1437475744,
+ 1437475745,
+ 1437475746,
+ 1437475747,
+ 1437475748,
+ 1437475749,
+ 1437475750,
+ 1437475751,
+ 1437475752,
+ 1437475753,
+ 1437475754,
+ 1437475755,
+ 1437475756,
+ 1437475758,
+ 1437475759,
+ 1437475760,
+ 1437475761,
+ 1437475762,
+ 1437475763,
+ 1437475764,
+ 1437475765,
+ 1437475766,
+ 1437475767,
+ 1437475768,
+ 1437475769,
+ 1437475770,
+ 1437475771,
+ 1437475772,
+ 1437475773,
+ 1437475774,
+ 1437475775,
+ 1437475776,
+ 1437475777,
+ 1437475778,
+ 1437475779,
+ 1437475780,
+ 1437475781,
+ 1437475782,
+ 1437475783,
+ 1437475784,
+ 1437475785,
+ 1437475786,
+ 1437475787,
+ 1437475788,
+ 1437475789,
+ 1437475791,
+ 1437475792,
+ 1437475793,
+ 1437475794,
+ 1437475795,
+ 1437475796,
+ 1437475797,
+ 1437475798,
+ 1437475799,
+ 1437475800,
+ 1437475801,
+ 1437475802,
+ 1437475803,
+ 1437475804,
+ 1437475805,
+ 1437475806,
+ 1437475807,
+ 1437475808,
+ 1437475809,
+ 1437475810,
+ 1437475811,
+ 1437475812,
+ 1437475813,
+ 1437475814,
+ 1437475815,
+ 1437475816,
+ 1437475817,
+ 1437475818,
+ 1437475819,
+ 1437475821,
+ 1437475822,
+ 1437475823,
+ 1437475824,
+ 1437475825,
+ 1437475826,
+ 1437475827,
+ 1437475828,
+ 1437475829,
+ 1437475830,
+ 1437475831,
+ 1437475832,
+ 1437475833,
+ 1437475834,
+ 1437475835,
+ 1437475836,
+ 1437475837,
+ 1437475838,
+ 1437475839,
+ 1437475840,
+ 1437475841,
+ 1437475842,
+ 1437475843,
+ 1437475844,
+ 1437475845,
+ 1437475846,
+ 1437475847,
+ 1437475848,
+ 1437475849,
+ 1437475850,
+ 1437475852,
+ 1437475853,
+ 1437475854,
+ 1437475855,
+ 1437475856,
+ 1437475857,
+ 1437475858,
+ 1437475859,
+ 1437475860,
+ 1437475861,
+ 1437475862,
+ 1437475863,
+ 1437475864,
+ 1437475865,
+ 1437475866,
+ 1437475867,
+ 1437475868,
+ 1437475869,
+ 1437475870,
+ 1437475871,
+ 1437475872,
+ 1437475873,
+ 1437475874,
+ 1437475875,
+ 1437475876,
+ 1437475878,
+ 1437475879,
+ 1437475880,
+ 1437475881,
+ 1437475882,
+ 1437475883,
+ 1437475884,
+ 1437475885,
+ 1437475886,
+ 1437475887,
+ 1437475888,
+ 1437475889,
+ 1437475890,
+ 1437475891,
+ 1437475892,
+ 1437475893,
+ 1437475894,
+ 1437475895,
+ 1437475896,
+ 1437475897,
+ 1437475898,
+ 1437475899,
+ 1437475900,
+ 1437475901,
+ 1437475902,
+ 1437475903,
+ 1437475905,
+ 1437475906,
+ 1437475907,
+ 1437475908,
+ 1437475909,
+ 1437475910,
+ 1437475911,
+ 1437475912,
+ 1437475913,
+ 1437475914,
+ 1437475915,
+ 1437475916,
+ 1437475917,
+ 1437475918,
+ 1437475919,
+ 1437475920,
+ 1437475921,
+ 1437475922,
+ 1437475923,
+ 1437475924,
+ 1437475925,
+ 1437475926,
+ 1437475927,
+ 1437475928,
+ 1437475929,
+ 1437475930,
+ 1437475931,
+ 1437475932,
+ 1437475933,
+ 1437475934,
+ 1437475935,
+ 1437475936,
+ 1437475938,
+ 1437475939,
+ 1437475940,
+ 1437475941,
+ 1437475942,
+ 1437475943,
+ 1437475944,
+ 1437475945,
+ 1437475946,
+ 1437475947,
+ 1437475948,
+ 1437475949,
+ 1437475950,
+ 1437475951,
+ 1437475952,
+ 1437475953,
+ 1437475954,
+ 1437475955,
+ 1437475956,
+ 1437475957,
+ 1437475958,
+ 1437475959,
+ 1437475960,
+ 1437475961,
+ 1437475962,
+ 1437475963,
+ 1437475964,
+ 1437475965,
+ 1437475967,
+ 1437475968,
+ 1437475969,
+ 1437475970,
+ 1437475971,
+ 1437475972,
+ 1437475973,
+ 1437475974,
+ 1437475975,
+ 1437475976,
+ 1437475977,
+ 1437475978,
+ 1437475979,
+ 1437475980,
+ 1437475981,
+ 1437475982,
+ 1437475983,
+ 1437475984,
+ 1437475985,
+ 1437475986,
+ 1437475987,
+ 1437475988,
+ 1437475989,
+ 1437475990,
+ 1437475991,
+ 1437475992,
+ 1437475993,
+ 1437475994,
+ 1437475995,
+ 1437475997,
+ 1437475998,
+ 1437475999,
+ 1437476000,
+ 1437476001,
+ 1437476002,
+ 1437476003,
+ 1437476004,
+ 1437476005,
+ 1437476006,
+ 1437476007,
+ 1437476008,
+ 1437476009,
+ 1437476010,
+ 1437476011,
+ 1437476012,
+ 1437476013,
+ 1437476014,
+ 1437476015,
+ 1437476016,
+ 1437476017,
+ 1437476019,
+ 1437476020,
+ 1437476021,
+ 1437476022,
+ 1437476023,
+ 1437476024,
+ 1437476025,
+ 1437476026,
+ 1437476027,
+ 1437476028,
+ 1437476029,
+ 1437476030,
+ 1437476031,
+ 1437476032,
+ 1437476033,
+ 1437476034,
+ 1437476035,
+ 1437476036,
+ 1437476037,
+ 1437476038,
+ 1437476039,
+ 1437476040,
+ 1437476041,
+ 1437476042,
+ 1437476043,
+ 1437476044,
+ 1437476045,
+ 1437476047,
+ 1437476048,
+ 1437476049,
+ 1437476050,
+ 1437476051,
+ 1437476052,
+ 1437476053,
+ 1437476054,
+ 1437476055,
+ 1437476056,
+ 1437476057,
+ 1437476058,
+ 1437476059,
+ 1437476060,
+ 1437476061,
+ 1437476062,
+ 1437476063,
+ 1437476064,
+ 1437476065,
+ 1437476066,
+ 1437476067,
+ 1437476068,
+ 1437476069,
+ 1437476070,
+ 1437476071,
+ 1437476072,
+ 1437476073,
+ 1437476074,
+ 1437476075,
+ 1437476076,
+ 1437476077,
+ 1437476079,
+ 1437476080,
+ 1437476081,
+ 1437476082,
+ 1437476083,
+ 1437476084,
+ 1437476085,
+ 1437476086,
+ 1437476087,
+ 1437476088,
+ 1437476089,
+ 1437476090,
+ 1437476091,
+ 1437476092,
+ 1437476093,
+ 1437476094,
+ 1437476095,
+ 1437476096,
+ 1437476097,
+ 1437476098,
+ 1437476099,
+ 1437476100,
+ 1437476101,
+ 1437476102,
+ 1437476103,
+ 1437476104,
+ 1437476105,
+ 1437476106,
+ 1437476107,
+ 1437476108,
+ 1437476109,
+ 1437476110,
+ 1437476112,
+ 1437476113,
+ 1437476114,
+ 1437476115,
+ 1437476116,
+ 1437476117,
+ 1437476118,
+ 1437476119,
+ 1437476120,
+ 1437476121,
+ 1437476122,
+ 1437476123,
+ 1437476124,
+ 1437476125,
+ 1437476126,
+ 1437476127,
+ 1437476128,
+ 1437476129,
+ 1437476130,
+ 1437476131,
+ 1437476132,
+ 1437476133,
+ 1437476134,
+ 1437476135,
+ 1437476136,
+ 1437476137,
+ 1437476138,
+ 1437476139,
+ 1437476140,
+ 1437476141,
+ 1437476142,
+ 1437476143,
+ 1437476144,
+ 1437476146,
+ 1437476147,
+ 1437476148,
+ 1437476149,
+ 1437476150,
+ 1437476151,
+ 1437476152,
+ 1437476153,
+ 1437476154,
+ 1437476155,
+ 1437476156,
+ 1437476157,
+ 1437476158,
+ 1437476159,
+ 1437476160,
+ 1437476161,
+ 1437476162,
+ 1437476163,
+ 1437476164,
+ 1437476165,
+ 1437476166,
+ 1437476167,
+ 1437476168,
+ 1437476169,
+ 1437476170,
+ 1437476171,
+ 1437476172,
+ 1437476173,
+ 1437476174,
+ 1437476175,
+ 1437476176,
+ 1437476177,
+ 1437476179,
+ 1437476180,
+ 1437476181,
+ 1437476182,
+ 1437476183,
+ 1437476184,
+ 1437476185,
+ 1437476186,
+ 1437476187,
+ 1437476188,
+ 1437476189,
+ 1437476190,
+ 1437476191,
+ 1437476192,
+ 1437476193,
+ 1437476194,
+ 1437476195,
+ 1437476196,
+ 1437476197,
+ 1437476198,
+ 1437476199,
+ 1437476200,
+ 1437476201,
+ 1437476202,
+ 1437476203,
+ 1437476204,
+ 1437476205,
+ 1437476206,
+ 1437476207,
+ 1437476208,
+ 1437476209,
+ 1437476211,
+ 1437476212,
+ 1437476213,
+ 1437476214,
+ 1437476215,
+ 1437476216,
+ 1437476217,
+ 1437476218,
+ 1437476219,
+ 1437476220,
+ 1437476221,
+ 1437476222,
+ 1437476223,
+ 1437476224,
+ 1437476225,
+ 1437476226,
+ 1437476227,
+ 1437476228,
+ 1437476229,
+ 1437476230,
+ 1437476231,
+ 1437476232,
+ 1437476233,
+ 1437476234,
+ 1437476235,
+ 1437476236,
+ 1437476237,
+ 1437476238,
+ 1437476239,
+ 1437476240,
+ 1437476241,
+ 1437476242,
+ 1437476243,
+ 1437476244,
+ 1437476245,
+ 1437476246,
+ 1437476248,
+ 1437476249,
+ 1437476250,
+ 1437476251,
+ 1437476252,
+ 1437476253,
+ 1437476254,
+ 1437476255,
+ 1437476256,
+ 1437476257,
+ 1437476258,
+ 1437476259,
+ 1437476260,
+ 1437476261,
+ 1437476262,
+ 1437476263,
+ 1437476264,
+ 1437476265,
+ 1437476266,
+ 1437476267,
+ 1437476268,
+ 1437476269,
+ 1437476270,
+ 1437476271,
+ 1437476272,
+ 1437476274,
+ 1437476275,
+ 1437476276,
+ 1437476277,
+ 1437476278,
+ 1437476279,
+ 1437476280,
+ 1437476281,
+ 1437476282,
+ 1437476283,
+ 1437476284,
+ 1437476285,
+ 1437476286,
+ 1437476287,
+ 1437476288,
+ 1437476289,
+ 1437476290,
+ 1437476291,
+ 1437476292,
+ 1437476293,
+ 1437476295,
+ 1437476296,
+ 1437476297,
+ 1437476298,
+ 1437476299,
+ 1437476300,
+ 1437476301,
+ 1437476302,
+ 1437476303,
+ 1437476304,
+ 1437476305,
+ 1437476306,
+ 1437476307,
+ 1437476308,
+ 1437476309,
+ 1437476310,
+ 1437476311,
+ 1437476312,
+ 1437476313,
+ 1437476314,
+ 1437476315,
+ 1437476316,
+ 1437476317,
+ 1437476318,
+ 1437476319,
+ 1437476320,
+ 1437476321,
+ 1437476323,
+ 1437476324,
+ 1437476325,
+ 1437476326,
+ 1437476327,
+ 1437476328,
+ 1437476329,
+ 1437476330,
+ 1437476331,
+ 1437476332,
+ 1437476333,
+ 1437476334,
+ 1437476335,
+ 1437476338,
+ 1437476339,
+ 1437476340,
+ 1437476341,
+ 1437476342,
+ 1437476343,
+ 1437476344,
+ 1437476345,
+ 1437476346,
+ 1437476347,
+ 1437476348,
+ 1437476349,
+ 1437476350,
+ 1437476351,
+ 1437476352,
+ 1437476353,
+ 1437476354,
+ 1437476355,
+ 1437476356,
+ 1437476357,
+ 1437476358,
+ 1437476360,
+ 1437476361,
+ 1437476362,
+ 1437476363,
+ 1437476364,
+ 1437476365,
+ 1437476366,
+ 1437476367,
+ 1437476368,
+ 1437476369,
+ 1437476370,
+ 1437476371,
+ 1437476372,
+ 1437476373,
+ 1437476374,
+ 1437476375,
+ 1437476376,
+ 1437476377,
+ 1437476378,
+ 1437476379,
+ 1437476380,
+ 1437476381,
+ 1437476382,
+ 1437476383,
+ 1437476384,
+ 1437476385,
+ 1437476386,
+ 1437476387,
+ 1437476389,
+ 1437476390,
+ 1437476391,
+ 1437476392,
+ 1437476393,
+ 1437476394,
+ 1437476395,
+ 1437476396,
+ 1437476397,
+ 1437476398,
+ 1437476399,
+ 1437476400,
+ 1437476401,
+ 1437476402,
+ 1437476403,
+ 1437476404,
+ 1437476405,
+ 1437476406,
+ 1437476407,
+ 1437476408,
+ 1437476410,
+ 1437476411,
+ 1437476412,
+ 1437476413,
+ 1437476414,
+ 1437476415,
+ 1437476416,
+ 1437476417,
+ 1437476418,
+ 1437476419,
+ 1437476420,
+ 1437476421,
+ 1437476422,
+ 1437476423,
+ 1437476424,
+ 1437476425,
+ 1437476426,
+ 1437476427,
+ 1437476428,
+ 1437476429,
+ 1437476430,
+ 1437476431,
+ 1437476432,
+ 1437476433,
+ 1437476434,
+ 1437476435,
+ 1437476436,
+ 1437476437,
+ 1437476438,
+ 1437476439,
+ 1437476441,
+ 1437476442,
+ 1437476443,
+ 1437476444,
+ 1437476445,
+ 1437476446,
+ 1437476447,
+ 1437476448,
+ 1437476449,
+ 1437476450,
+ 1437476451,
+ 1437476452,
+ 1437476453,
+ 1437476454,
+ 1437476455,
+ 1437476456,
+ 1437476457,
+ 1437476458,
+ 1437476459,
+ 1437476460,
+ 1437476461,
+ 1437476462,
+ 1437476463,
+ 1437476464,
+ 1437476465,
+ 1437476467,
+ 1437476468,
+ 1437476469,
+ 1437476470,
+ 1437476471,
+ 1437476472,
+ 1437476473,
+ 1437476474,
+ 1437476475,
+ 1437476476,
+ 1437476477,
+ 1437476478,
+ 1437476479,
+ 1437476480,
+ 1437476481,
+ 1437476482,
+ 1437476483,
+ 1437476484,
+ 1437476485,
+ 1437476486,
+ 1437476487,
+ 1437476488,
+ 1437476490,
+ 1437476491,
+ 1437476492,
+ 1437476493,
+ 1437476494,
+ 1437476495,
+ 1437476496,
+ 1437476497,
+ 1437476498,
+ 1437476499,
+ 1437476500,
+ 1437476501,
+ 1437476502,
+ 1437476503,
+ 1437476504,
+ 1437476505,
+ 1437476506,
+ 1437476507,
+ 1437476508,
+ 1437476509,
+ 1437476510,
+ 1437476511,
+ 1437476512,
+ 1437476513,
+ 1437476514,
+ 1437476515,
+ 1437476516,
+ 1437476517,
+ 1437476518,
+ 1437476519,
+ 1437476521,
+ 1437476522,
+ 1437476523,
+ 1437476524,
+ 1437476525,
+ 1437476526,
+ 1437476527,
+ 1437476528,
+ 1437476529,
+ 1437476530,
+ 1437476531,
+ 1437476532,
+ 1437476533,
+ 1437476534,
+ 1437476535,
+ 1437476536,
+ 1437476537,
+ 1437476538,
+ 1437476539,
+ 1437476540,
+ 1437476541,
+ 1437476542,
+ 1437476543,
+ 1437476544,
+ 1437476545,
+ 1437476547,
+ 1437476548,
+ 1437476549,
+ 1437476550,
+ 1437476551,
+ 1437476552,
+ 1437476553,
+ 1437476554,
+ 1437476555,
+ 1437476556,
+ 1437476557,
+ 1437476558,
+ 1437476559,
+ 1437476560,
+ 1437476561,
+ 1437476562,
+ 1437476563,
+ 1437476564,
+ 1437476565,
+ 1437476566,
+ 1437476567,
+ 1437476568,
+ 1437476569,
+ 1437476570,
+ 1437476571,
+ 1437476572,
+ 1437476573,
+ 1437476574,
+ 1437476576,
+ 1437476577,
+ 1437476578,
+ 1437476579,
+ 1437476580,
+ 1437476581,
+ 1437476582,
+ 1437476583,
+ 1437476584,
+ 1437476585,
+ 1437476586,
+ 1437476587,
+ 1437476588,
+ 1437476589,
+ 1437476590,
+ 1437476591,
+ 1437476592,
+ 1437476593,
+ 1437476594,
+ 1437476595,
+ 1437476596,
+ 1437476597,
+ 1437476598,
+ 1437476599,
+ 1437476601,
+ 1437476602,
+ 1437476603,
+ 1437476604,
+ 1437476605,
+ 1437476606,
+ 1437476607,
+ 1437476608,
+ 1437476609,
+ 1437476610,
+ 1437476611,
+ 1437476612,
+ 1437476613,
+ 1437476614,
+ 1437476615,
+ 1437476616,
+ 1437476617,
+ 1437476618,
+ 1437476619,
+ 1437476620,
+ 1437476621,
+ 1437476622,
+ 1437476623,
+ 1437476624,
+ 1437476625,
+ 1437476627,
+ 1437476628,
+ 1437476629,
+ 1437476630,
+ 1437476631,
+ 1437476632,
+ 1437476633,
+ 1437476634,
+ 1437476635,
+ 1437476636,
+ 1437476637,
+ 1437476638,
+ 1437476639,
+ 1437476640,
+ 1437476641,
+ 1437476642,
+ 1437476643,
+ 1437476644,
+ 1437476645,
+ 1437476646,
+ 1437476647,
+ 1437476648,
+ 1437476649,
+ 1437476650,
+ 1437476651,
+ 1437476652,
+ 1437476653,
+ 1437476654,
+ 1437476655,
+ 1437476656,
+ 1437476658,
+ 1437476659,
+ 1437476660,
+ 1437476661,
+ 1437476662,
+ 1437476663,
+ 1437476664,
+ 1437476665,
+ 1437476666,
+ 1437476667,
+ 1437476668,
+ 1437476669,
+ 1437476670,
+ 1437476671,
+ 1437476672,
+ 1437476673,
+ 1437476674,
+ 1437476675,
+ 1437476676,
+ 1437476677,
+ 1437476678,
+ 1437476679,
+ 1437476680,
+ 1437476681,
+ 1437476682,
+ 1437476683,
+ 1437476684,
+ 1437476685,
+ 1437476686,
+ 1437476687,
+ 1437476688,
+ 1437476689,
+ 1437476690,
+ 1437476691,
+ 1437476692,
+ 1437476694,
+ 1437476695,
+ 1437476696,
+ 1437476697,
+ 1437476698,
+ 1437476699,
+ 1437476700,
+ 1437476701,
+ 1437476702,
+ 1437476703,
+ 1437476704,
+ 1437476705,
+ 1437476706,
+ 1437476707,
+ 1437476708,
+ 1437476709,
+ 1437476710,
+ 1437476711,
+ 1437476712,
+ 1437476713,
+ 1437476714,
+ 1437476715,
+ 1437476716,
+ 1437476717,
+ 1437476718,
+ 1437476719,
+ 1437476720,
+ 1437476721,
+ 1437476723,
+ 1437476724,
+ 1437476725,
+ 1437476726,
+ 1437476727,
+ 1437476728,
+ 1437476729,
+ 1437476730,
+ 1437476731,
+ 1437476732,
+ 1437476733,
+ 1437476734,
+ 1437476735,
+ 1437476736,
+ 1437476737,
+ 1437476738,
+ 1437476739,
+ 1437476740,
+ 1437476741,
+ 1437476742,
+ 1437476743,
+ 1437476744,
+ 1437476745,
+ 1437476746,
+ 1437476747,
+ 1437476748,
+ 1437476749,
+ 1437476750,
+ 1437476751,
+ 1437476752,
+ 1437476753,
+ 1437476755,
+ 1437476756,
+ 1437476757,
+ 1437476758,
+ 1437476759,
+ 1437476760,
+ 1437476761,
+ 1437476762,
+ 1437476763,
+ 1437476764,
+ 1437476765,
+ 1437476766,
+ 1437476767,
+ 1437476768,
+ 1437476769,
+ 1437476770,
+ 1437476771,
+ 1437476772,
+ 1437476773,
+ 1437476774,
+ 1437476775,
+ 1437476776,
+ 1437476777,
+ 1437476778,
+ 1437476779,
+ 1437476780,
+ 1437476781,
+ 1437476782,
+ 1437476783,
+ 1437476784,
+ 1437476785,
+ 1437476786,
+ 1437476787,
+ 1437476788,
+ 1437476789,
+ 1437476791,
+ 1437476792,
+ 1437476793,
+ 1437476794,
+ 1437476795,
+ 1437476796,
+ 1437476797,
+ 1437476798,
+ 1437476799,
+ 1437476800,
+ 1437476801,
+ 1437476802,
+ 1437476803,
+ 1437476804,
+ 1437476805,
+ 1437476806,
+ 1437476807,
+ 1437476808,
+ 1437476809,
+ 1437476810,
+ 1437476811,
+ 1437476812,
+ 1437476813,
+ 1437476814,
+ 1437476815,
+ 1437476816,
+ 1437476817,
+ 1437476818,
+ 1437476819,
+ 1437476820,
+ 1437476821,
+ 1437476822,
+ 1437476824,
+ 1437476825,
+ 1437476826,
+ 1437476827,
+ 1437476828,
+ 1437476829,
+ 1437476830,
+ 1437476831,
+ 1437476832,
+ 1437476833,
+ 1437476834,
+ 1437476835,
+ 1437476836,
+ 1437476837,
+ 1437476838,
+ 1437476839,
+ 1437476840,
+ 1437476841,
+ 1437476842,
+ 1437476843,
+ 1437476844,
+ 1437476845,
+ 1437476846,
+ 1437476847,
+ 1437476848,
+ 1437476849,
+ 1437476850,
+ 1437476851,
+ 1437476852,
+ 1437476854,
+ 1437476855,
+ 1437476856,
+ 1437476857,
+ 1437476858,
+ 1437476859,
+ 1437476860,
+ 1437476861,
+ 1437476862,
+ 1437476863,
+ 1437476864,
+ 1437476865,
+ 1437476866,
+ 1437476867,
+ 1437476868,
+ 1437476869,
+ 1437476870,
+ 1437476871,
+ 1437476872,
+ 1437476873,
+ 1437476874,
+ 1437476875,
+ 1437476876,
+ 1437476877,
+ 1437476878,
+ 1437476879,
+ 1437476880,
+ 1437476881,
+ 1437476882,
+ 1437476883,
+ 1437476884,
+ 1437476886,
+ 1437476887,
+ 1437476888,
+ 1437476889,
+ 1437476890,
+ 1437476891,
+ 1437476892,
+ 1437476893,
+ 1437476894,
+ 1437476895,
+ 1437476896,
+ 1437476897,
+ 1437476898,
+ 1437476899,
+ 1437476900,
+ 1437476901,
+ 1437476902,
+ 1437476903,
+ 1437476904,
+ 1437476905,
+ 1437476906,
+ 1437476907,
+ 1437476908,
+ 1437476910,
+ 1437476911,
+ 1437476912,
+ 1437476913,
+ 1437476914,
+ 1437476915,
+ 1437476916,
+ 1437476917,
+ 1437476918,
+ 1437476919,
+ 1437476920,
+ 1437476921,
+ 1437476922,
+ 1437476923,
+ 1437476924,
+ 1437476925,
+ 1437476926,
+ 1437476927,
+ 1437476928,
+ 1437476929,
+ 1437476930,
+ 1437476931,
+ 1437476932,
+ 1437476933,
+ 1437476934,
+ 1437476935,
+ 1437476936,
+ 1437476938,
+ 1437476939,
+ 1437476940,
+ 1437476941,
+ 1437476942,
+ 1437476943,
+ 1437476944,
+ 1437476945,
+ 1437476946,
+ 1437476947,
+ 1437476948,
+ 1437476949,
+ 1437476950,
+ 1437476951,
+ 1437476952,
+ 1437476953,
+ 1437476954,
+ 1437476955,
+ 1437476956,
+ 1437476957,
+ 1437476958,
+ 1437476959,
+ 1437476960,
+ 1437476961,
+ 1437476962,
+ 1437476963,
+ 1437476964,
+ 1437476965,
+ 1437476966,
+ 1437476967,
+ 1437476969,
+ 1437476970,
+ 1437476971,
+ 1437476972,
+ 1437476973,
+ 1437476974,
+ 1437476975,
+ 1437476976,
+ 1437476977,
+ 1437476978,
+ 1437476979,
+ 1437476980,
+ 1437476981,
+ 1437476982,
+ 1437476983,
+ 1437476984,
+ 1437476985,
+ 1437476986,
+ 1437476987,
+ 1437476988,
+ 1437476989,
+ 1437476990,
+ 1437476991,
+ 1437476992,
+ 1437476993,
+ 1437476994,
+ 1437476996,
+ 1437476997,
+ 1437476998,
+ 1437476999,
+ 1437477000,
+ 1437477001,
+ 1437477002,
+ 1437477003,
+ 1437477004,
+ 1437477005,
+ 1437477006,
+ 1437477007,
+ 1437477008,
+ 1437477009,
+ 1437477010,
+ 1437477011,
+ 1437477012,
+ 1437477013,
+ 1437477014,
+ 1437477015,
+ 1437477016,
+ 1437477017,
+ 1437477018,
+ 1437477019,
+ 1437477020,
+ 1437477022,
+ 1437477023,
+ 1437477024,
+ 1437477025,
+ 1437477026,
+ 1437477027,
+ 1437477028,
+ 1437477029,
+ 1437477030,
+ 1437477031,
+ 1437477032,
+ 1437477033,
+ 1437477034,
+ 1437477035,
+ 1437477036,
+ 1437477037,
+ 1437477038,
+ 1437477039,
+ 1437477040,
+ 1437477041,
+ 1437477042,
+ 1437477043,
+ 1437477044,
+ 1437477045,
+ 1437477046,
+ 1437477047,
+ 1437477048,
+ 1437477050,
+ 1437477051,
+ 1437477052,
+ 1437477053,
+ 1437477054,
+ 1437477055,
+ 1437477056,
+ 1437477057,
+ 1437477058,
+ 1437477059,
+ 1437477060,
+ 1437477061,
+ 1437477062,
+ 1437477063,
+ 1437477064,
+ 1437477065,
+ 1437477066,
+ 1437477067,
+ 1437477068,
+ 1437477069,
+ 1437477070,
+ 1437477071,
+ 1437477072,
+ 1437477073,
+ 1437477075,
+ 1437477076,
+ 1437477077,
+ 1437477078,
+ 1437477079,
+ 1437477080,
+ 1437477081,
+ 1437477082,
+ 1437477083,
+ 1437477084,
+ 1437477085,
+ 1437477086,
+ 1437477087,
+ 1437477088,
+ 1437477089,
+ 1437477090,
+ 1437477091,
+ 1437477092,
+ 1437477093,
+ 1437477094,
+ 1437477095,
+ 1437477096,
+ 1437477097,
+ 1437477098,
+ 1437477099,
+ 1437477100,
+ 1437477101,
+ 1437477102,
+ 1437477103,
+ 1437477104,
+ 1437477105,
+ 1437477106,
+ 1437477107,
+ 1437477109,
+ 1437477110,
+ 1437477111,
+ 1437477112,
+ 1437477113,
+ 1437477114,
+ 1437477115,
+ 1437477116,
+ 1437477117,
+ 1437477118,
+ 1437477119,
+ 1437477120,
+ 1437477121,
+ 1437477122,
+ 1437477123,
+ 1437477124,
+ 1437477125,
+ 1437477126,
+ 1437477127,
+ 1437477128,
+ 1437477129,
+ 1437477130,
+ 1437477131,
+ 1437477132,
+ 1437477133,
+ 1437477134,
+ 1437477135,
+ 1437477136,
+ 1437477137,
+ 1437477138,
+ 1437477139,
+ 1437477140,
+ 1437477141,
+ 1437477143,
+ 1437477144,
+ 1437477145,
+ 1437477146,
+ 1437477147,
+ 1437477148,
+ 1437477149,
+ 1437477150,
+ 1437477151,
+ 1437477152,
+ 1437477153,
+ 1437477154,
+ 1437477155,
+ 1437477156,
+ 1437477157,
+ 1437477158,
+ 1437477159,
+ 1437477160,
+ 1437477161,
+ 1437477162,
+ 1437477163,
+ 1437477164,
+ 1437477165,
+ 1437477166,
+ 1437477167,
+ 1437477168,
+ 1437477169,
+ 1437477170,
+ 1437477171,
+ 1437477172,
+ 1437477173,
+ 1437477174,
+ 1437477175,
+ 1437477176,
+ 1437477178,
+ 1437477179,
+ 1437477180,
+ 1437477181,
+ 1437477182,
+ 1437477183,
+ 1437477184,
+ 1437477185,
+ 1437477186,
+ 1437477187,
+ 1437477188,
+ 1437477189,
+ 1437477190,
+ 1437477191,
+ 1437477192,
+ 1437477193,
+ 1437477194,
+ 1437477195,
+ 1437477196,
+ 1437477197,
+ 1437477198,
+ 1437477199,
+ 1437477200,
+ 1437477201,
+ 1437477202,
+ 1437477203,
+ 1437477204,
+ 1437477205,
+ 1437477206,
+ 1437477207,
+ 1437477208,
+ 1437477209,
+ 1437477210,
+ 1437477211,
+ 1437477212,
+ 1437477213,
+ 1437477215,
+ 1437477216,
+ 1437477217,
+ 1437477218,
+ 1437477219,
+ 1437477220,
+ 1437477221,
+ 1437477222,
+ 1437477223,
+ 1437477224,
+ 1437477225,
+ 1437477226,
+ 1437477227,
+ 1437477228,
+ 1437477229,
+ 1437477230,
+ 1437477231,
+ 1437477232,
+ 1437477233,
+ 1437477234,
+ 1437477235,
+ 1437477236,
+ 1437477237,
+ 1437477238,
+ 1437477239,
+ 1437477240,
+ 1437477241,
+ 1437477242,
+ 1437477243,
+ 1437477244,
+ 1437477245,
+ 1437477247,
+ 1437477248,
+ 1437477249,
+ 1437477250,
+ 1437477251,
+ 1437477252,
+ 1437477253,
+ 1437477254,
+ 1437477255,
+ 1437477256,
+ 1437477257,
+ 1437477258,
+ 1437477259,
+ 1437477260,
+ 1437477261,
+ 1437477262,
+ 1437477263,
+ 1437477264,
+ 1437477265,
+ 1437477266,
+ 1437477267,
+ 1437477268,
+ 1437477270,
+ 1437477271,
+ 1437477272,
+ 1437477273,
+ 1437477274,
+ 1437477275,
+ 1437477276,
+ 1437477277,
+ 1437477278,
+ 1437477279,
+ 1437477280,
+ 1437477281,
+ 1437477282,
+ 1437477283,
+ 1437477284,
+ 1437477285,
+ 1437477286,
+ 1437477287,
+ 1437477288,
+ 1437477289,
+ 1437477290,
+ 1437477291,
+ 1437477292,
+ 1437477294,
+ 1437477295,
+ 1437477296,
+ 1437477297,
+ 1437477298,
+ 1437477299,
+ 1437477300,
+ 1437477301,
+ 1437477302,
+ 1437477303,
+ 1437477304,
+ 1437477305,
+ 1437477306,
+ 1437477307,
+ 1437477308,
+ 1437477309,
+ 1437477310,
+ 1437477311,
+ 1437477312,
+ 1437477313,
+ 1437477314,
+ 1437477315,
+ 1437477316,
+ 1437477317,
+ 1437477318,
+ 1437477319,
+ 1437477321,
+ 1437477322,
+ 1437477323,
+ 1437477324,
+ 1437477325,
+ 1437477326,
+ 1437477327,
+ 1437477328,
+ 1437477329,
+ 1437477330,
+ 1437477331,
+ 1437477332,
+ 1437477333,
+ 1437477334,
+ 1437477335,
+ 1437477336,
+ 1437477337,
+ 1437477338,
+ 1437477339,
+ 1437477340,
+ 1437477341,
+ 1437477342,
+ 1437477343,
+ 1437477345,
+ 1437477346,
+ 1437477347,
+ 1437477348,
+ 1437477349,
+ 1437477350,
+ 1437477351,
+ 1437477352,
+ 1437477353,
+ 1437477354,
+ 1437477355,
+ 1437477356,
+ 1437477376,
+ 1437477377,
+ 1437477378,
+ 1437477379,
+ 1437477380,
+ 1437477381,
+ 1437477383,
+ 1437477384,
+ 1437477385,
+ 1437477386,
+ 1437477387,
+ 1437477388,
+ 1437477392,
+ 1437477393,
+ 1437477394,
+ 1437477395,
+ 1437477397,
+ 1437477398,
+ 1437477399,
+ 1437477400,
+ 1437477401,
+ 1437477402,
+ 1437477403,
+ 1437477404,
+ 1437477405,
+ 1437477406,
+ 1437477407,
+ 1437477408,
+ 1437477411,
+ 1437477412,
+ 1437477413,
+ 1437477414,
+ 1437477415,
+ 1437477417,
+ 1437477418,
+ 1437477419,
+ 1437477420,
+ 1437477421,
+ 1437477422,
+ 1437477423,
+ 1437477428,
+ 1437477429,
+ 1437477430,
+ 1437477432,
+ 1437477433,
+ 1437477434,
+ 1437477435,
+ 1437477436,
+ 1437477437,
+ 1437477438,
+ 1437477439,
+ 1437477440,
+ 1437477441,
+ 1437477442,
+ 1437477443,
+ 1437477444,
+ 1437477445,
+ 1437477446,
+ 1437477447,
+ 1437477448,
+ 1437477449,
+ 1437477450,
+ 1437477451,
+ 1437477452,
+ 1437477453,
+ 1437477454,
+ 1437477455,
+ 1437477456,
+ 1437477457,
+ 1437477458,
+ 1437477459,
+ 1437477461,
+ 1437477465,
+ 1437477466,
+ 1437477467,
+ 1437477468,
+ 1437477469,
+ 1437477470,
+ 1437477471,
+ 1437477472,
+ 1437477473,
+ 1437477474,
+ 1437477475,
+ 1437477476,
+ 1437477477,
+ 1437477478,
+ 1437477479,
+ 1437477480,
+ 1437477481,
+ 1437477482,
+ 1437477483,
+ 1437477484,
+ 1437477485,
+ 1437477486,
+ 1437477487,
+ 1437477488,
+ 1437477489,
+ 1437477490,
+ 1437477491,
+ 1437477492,
+ 1437477493,
+ 1437477494,
+ 1437477495,
+ 1437477496,
+ 1437477497,
+ 1437477498,
+ 1437477500,
+ 1437477501,
+ 1437477502,
+ 1437477503,
+ 1437477504,
+ 1437477505,
+ 1437477506,
+ 1437477507,
+ 1437477508,
+ 1437477509,
+ 1437477510,
+ 1437477511,
+ 1437477512,
+ 1437477513,
+ 1437477514,
+ 1437477515,
+ 1437477516,
+ 1437477517,
+ 1437477518,
+ 1437477519,
+ 1437477520,
+ 1437477521,
+ 1437477522,
+ 1437477523,
+ 1437477524,
+ 1437477525,
+ 1437477526,
+ 1437477527,
+ 1437477528,
+ 1437477529,
+ 1437477530,
+ 1437477532,
+ 1437477533,
+ 1437477534,
+ 1437477535,
+ 1437477536,
+ 1437477537,
+ 1437477538,
+ 1437477539,
+ 1437477540,
+ 1437477541,
+ 1437477542,
+ 1437477543,
+ 1437477544,
+ 1437477545,
+ 1437477546,
+ 1437477547,
+ 1437477548,
+ 1437477549,
+ 1437477550,
+ 1437477551,
+ 1437477552,
+ 1437477553,
+ 1437477555,
+ 1437477556,
+ 1437477557,
+ 1437477558,
+ 1437477559,
+ 1437477560,
+ 1437477561,
+ 1437477562,
+ 1437477563,
+ 1437477564,
+ 1437477565,
+ 1437477566,
+ 1437477567,
+ 1437477568,
+ 1437477569,
+ 1437477570,
+ 1437477571,
+ 1437477572,
+ 1437477573,
+ 1437477574,
+ 1437477575,
+ 1437477576,
+ 1437477577,
+ 1437477578,
+ 1437477580,
+ 1437477581,
+ 1437477582,
+ 1437477583,
+ 1437477584,
+ 1437477585,
+ 1437477586,
+ 1437477587,
+ 1437477588,
+ 1437477589,
+ 1437477590,
+ 1437477591,
+ 1437477592,
+ 1437477593,
+ 1437477594,
+ 1437477595,
+ 1437477596,
+ 1437477597,
+ 1437477598,
+ 1437477599,
+ 1437477600,
+ 1437477601,
+ 1437477604,
+ 1437477605,
+ 1437477607,
+ 1437477608,
+ 1437477609,
+ 1437477610,
+ 1437477611,
+ 1437477612,
+ 1437477613,
+ 1437477614,
+ 1437477615,
+ 1437477616,
+ 1437477617,
+ 1437477618,
+ 1437477619,
+ 1437477620,
+ 1437477621,
+ 1437477622,
+ 1437477623,
+ 1437477624,
+ 1437477625,
+ 1437477626,
+ 1437477627,
+ 1437477628,
+ 1437477629,
+ 1437477630,
+ 1437477631,
+ 1437477632,
+ 1437477633,
+ 1437477634,
+ 1437477635,
+ 1437477636,
+ 1437477638,
+ 1437477639,
+ 1437477640,
+ 1437477641,
+ 1437477642,
+ 1437477643,
+ 1437477644,
+ 1437477645,
+ 1437477646,
+ 1437477647,
+ 1437477648,
+ 1437477649,
+ 1437477650,
+ 1437477651,
+ 1437477652,
+ 1437477653,
+ 1437477654,
+ 1437477655,
+ 1437477656,
+ 1437477657,
+ 1437477658,
+ 1437477659,
+ 1437477660,
+ 1437477661,
+ 1437477662,
+ 1437477663,
+ 1437477664,
+ 1437477665,
+ 1437477666,
+ 1437477667,
+ 1437477668,
+ 1437477669,
+ 1437477671,
+ 1437477672,
+ 1437477673,
+ 1437477674,
+ 1437477676,
+ 1437477677,
+ 1437477678,
+ 1437477679,
+ 1437477680,
+ 1437477681,
+ 1437477682,
+ 1437477683,
+ 1437477684,
+ 1437477685,
+ 1437477688,
+ 1437477689,
+ 1437477690,
+ 1437477691,
+ 1437477692,
+ 1437477693,
+ 1437477695,
+ 1437477696,
+ 1437477697,
+ 1437477698,
+ 1437477699,
+ 1437477700,
+ 1437477701,
+ 1437477702,
+ 1437477703,
+ 1437477704,
+ 1437477705,
+ 1437477706
+ ],
+ "latitudes": {
+ "1437474517": -11.63576,
+ "1437474518": -11.63576,
+ "1437474519": -11.63575,
+ "1437474520": -11.63574,
+ "1437474521": -11.63573,
+ "1437474522": -11.63573,
+ "1437474523": -11.63572,
+ "1437474524": -11.63572,
+ "1437474525": -11.63572,
+ "1437474526": -11.63572,
+ "1437474527": -11.63572,
+ "1437474528": -11.63572,
+ "1437474529": -11.63572,
+ "1437474530": -11.63571,
+ "1437474532": -11.6357,
+ "1437474533": -11.63569,
+ "1437474534": -11.63568,
+ "1437474535": -11.63567,
+ "1437474536": -11.63566,
+ "1437474537": -11.63565,
+ "1437474538": -11.63564,
+ "1437474539": -11.63563,
+ "1437474540": -11.63561,
+ "1437474541": -11.6356,
+ "1437474542": -11.6356,
+ "1437474543": -11.63559,
+ "1437474544": -11.63558,
+ "1437474545": -11.63557,
+ "1437474546": -11.63556,
+ "1437474547": -11.63554,
+ "1437474548": -11.63553,
+ "1437474549": -11.63552,
+ "1437474550": -11.63551,
+ "1437474551": -11.6355,
+ "1437474552": -11.63549,
+ "1437474553": -11.63549,
+ "1437474554": -11.63549,
+ "1437474555": -11.63549,
+ "1437474556": -11.63551,
+ "1437474557": -11.63552,
+ "1437474558": -11.63554,
+ "1437474559": -11.63557,
+ "1437474560": -11.63562,
+ "1437474561": -11.63567,
+ "1437474562": -11.63573,
+ "1437474563": -11.63579,
+ "1437474564": -11.63586,
+ "1437474566": -11.63593,
+ "1437474567": -11.63601,
+ "1437474568": -11.63608,
+ "1437474569": -11.63616,
+ "1437474570": -11.63624,
+ "1437474571": -11.63632,
+ "1437474572": -11.6364,
+ "1437474573": -11.63648,
+ "1437474574": -11.63657,
+ "1437474575": -11.63666,
+ "1437474576": -11.63675,
+ "1437474577": -11.63683,
+ "1437474578": -11.63691,
+ "1437474579": -11.637,
+ "1437474580": -11.63708,
+ "1437474581": -11.63717,
+ "1437474582": -11.63725,
+ "1437474583": -11.63732,
+ "1437474584": -11.63738,
+ "1437474585": -11.63741,
+ "1437474586": -11.63742,
+ "1437474587": -11.63739,
+ "1437474588": -11.63734,
+ "1437474589": -11.63728,
+ "1437474590": -11.63721,
+ "1437474591": -11.63713,
+ "1437474592": -11.63705,
+ "1437474593": -11.63697,
+ "1437474594": -11.63689,
+ "1437474595": -11.63681,
+ "1437474596": -11.63672,
+ "1437474597": -11.63665,
+ "1437474598": -11.63659,
+ "1437474599": -11.63655,
+ "1437474600": -11.63655,
+ "1437474601": -11.6366,
+ "1437474603": -11.63668,
+ "1437474604": -11.63677,
+ "1437474605": -11.63686,
+ "1437474606": -11.63696,
+ "1437474607": -11.63706,
+ "1437474608": -11.63715,
+ "1437474609": -11.63725,
+ "1437474610": -11.63735,
+ "1437474611": -11.63746,
+ "1437474612": -11.63756,
+ "1437474613": -11.63766,
+ "1437474614": -11.63776,
+ "1437474615": -11.63786,
+ "1437474616": -11.63796,
+ "1437474617": -11.63806,
+ "1437474618": -11.63815,
+ "1437474619": -11.63825,
+ "1437474620": -11.63835,
+ "1437474621": -11.63843,
+ "1437474622": -11.63847,
+ "1437474623": -11.63847,
+ "1437474624": -11.63844,
+ "1437474626": -11.63841,
+ "1437474627": -11.63838,
+ "1437474628": -11.63834,
+ "1437474629": -11.63828,
+ "1437474630": -11.6382,
+ "1437474631": -11.63811,
+ "1437474632": -11.63802,
+ "1437474633": -11.63795,
+ "1437474634": -11.63792,
+ "1437474635": -11.63791,
+ "1437474636": -11.63791,
+ "1437474637": -11.63791,
+ "1437474638": -11.63792,
+ "1437474639": -11.63792,
+ "1437474640": -11.63792,
+ "1437474641": -11.63793,
+ "1437474642": -11.63793,
+ "1437474643": -11.63793,
+ "1437474644": -11.63794,
+ "1437474645": -11.63794,
+ "1437474646": -11.63794,
+ "1437474647": -11.63794,
+ "1437474648": -11.63794,
+ "1437474649": -11.63794,
+ "1437474650": -11.63795,
+ "1437474652": -11.63795,
+ "1437474653": -11.63795,
+ "1437474654": -11.63795,
+ "1437474655": -11.63795,
+ "1437474656": -11.63796,
+ "1437474657": -11.63797,
+ "1437474658": -11.63799,
+ "1437474659": -11.638,
+ "1437474660": -11.63802,
+ "1437474661": -11.63804,
+ "1437474662": -11.63806,
+ "1437474663": -11.63808,
+ "1437474664": -11.63811,
+ "1437474665": -11.63814,
+ "1437474666": -11.63817,
+ "1437474667": -11.63822,
+ "1437474668": -11.63826,
+ "1437474669": -11.63829,
+ "1437474670": -11.63832,
+ "1437474671": -11.63834,
+ "1437474672": -11.63836,
+ "1437474673": -11.63838,
+ "1437474674": -11.63839,
+ "1437474675": -11.6384,
+ "1437474676": -11.63841,
+ "1437474677": -11.63842,
+ "1437474678": -11.63844,
+ "1437474679": -11.63845,
+ "1437474681": -11.63846,
+ "1437474682": -11.63847,
+ "1437474683": -11.63848,
+ "1437474684": -11.63849,
+ "1437474685": -11.6385,
+ "1437474686": -11.63851,
+ "1437474687": -11.63852,
+ "1437474688": -11.63853,
+ "1437474689": -11.63854,
+ "1437474690": -11.63855,
+ "1437474691": -11.63856,
+ "1437474692": -11.63857,
+ "1437474693": -11.63858,
+ "1437474694": -11.63859,
+ "1437474695": -11.6386,
+ "1437474696": -11.63861,
+ "1437474697": -11.63862,
+ "1437474698": -11.63863,
+ "1437474699": -11.63864,
+ "1437474700": -11.63865,
+ "1437474701": -11.63866,
+ "1437474702": -11.63867,
+ "1437474703": -11.63868,
+ "1437474705": -11.63869,
+ "1437474706": -11.6387,
+ "1437474707": -11.63871,
+ "1437474708": -11.63872,
+ "1437474709": -11.63873,
+ "1437474710": -11.63874,
+ "1437474711": -11.63875,
+ "1437474712": -11.63876,
+ "1437474713": -11.63877,
+ "1437474714": -11.63878,
+ "1437474715": -11.63879,
+ "1437474716": -11.6388,
+ "1437474717": -11.63881,
+ "1437474718": -11.63882,
+ "1437474719": -11.63884,
+ "1437474720": -11.63885,
+ "1437474721": -11.63887,
+ "1437474722": -11.63888,
+ "1437474723": -11.63889,
+ "1437474724": -11.63891,
+ "1437474725": -11.63892,
+ "1437474726": -11.63893,
+ "1437474727": -11.63894,
+ "1437474728": -11.63896,
+ "1437474729": -11.63897,
+ "1437474730": -11.63898,
+ "1437474732": -11.639,
+ "1437474733": -11.63901,
+ "1437474734": -11.63903,
+ "1437474735": -11.63905,
+ "1437474736": -11.63907,
+ "1437474737": -11.63909,
+ "1437474738": -11.63912,
+ "1437474739": -11.63915,
+ "1437474740": -11.63918,
+ "1437474741": -11.63921,
+ "1437474742": -11.63926,
+ "1437474743": -11.63931,
+ "1437474744": -11.63936,
+ "1437474745": -11.63942,
+ "1437474746": -11.63948,
+ "1437474747": -11.63954,
+ "1437474748": -11.63958,
+ "1437474749": -11.63961,
+ "1437474750": -11.63963,
+ "1437474751": -11.63963,
+ "1437474752": -11.63963,
+ "1437474753": -11.63961,
+ "1437474754": -11.6396,
+ "1437474755": -11.63958,
+ "1437474756": -11.63956,
+ "1437474757": -11.63954,
+ "1437474758": -11.63952,
+ "1437474760": -11.6395,
+ "1437474761": -11.63948,
+ "1437474762": -11.63947,
+ "1437474763": -11.63945,
+ "1437474764": -11.63943,
+ "1437474765": -11.63942,
+ "1437474766": -11.6394,
+ "1437474767": -11.63938,
+ "1437474768": -11.63937,
+ "1437474769": -11.63935,
+ "1437474770": -11.63934,
+ "1437474771": -11.63932,
+ "1437474772": -11.63931,
+ "1437474773": -11.63929,
+ "1437474774": -11.63927,
+ "1437474775": -11.63926,
+ "1437474776": -11.63925,
+ "1437474777": -11.63923,
+ "1437474778": -11.63922,
+ "1437474779": -11.6392,
+ "1437474780": -11.63918,
+ "1437474781": -11.63917,
+ "1437474782": -11.63915,
+ "1437474783": -11.63914,
+ "1437474785": -11.63912,
+ "1437474786": -11.63911,
+ "1437474787": -11.63909,
+ "1437474788": -11.63908,
+ "1437474789": -11.63906,
+ "1437474790": -11.63905,
+ "1437474791": -11.63904,
+ "1437474792": -11.63902,
+ "1437474793": -11.63901,
+ "1437474794": -11.639,
+ "1437474795": -11.63898,
+ "1437474796": -11.63897,
+ "1437474797": -11.63896,
+ "1437474798": -11.63895,
+ "1437474799": -11.63894,
+ "1437474800": -11.63893,
+ "1437474801": -11.63892,
+ "1437474802": -11.63892,
+ "1437474803": -11.63892,
+ "1437474804": -11.63892,
+ "1437474805": -11.63893,
+ "1437474806": -11.63895,
+ "1437474808": -11.63899,
+ "1437474809": -11.63904,
+ "1437474810": -11.6391,
+ "1437474811": -11.63916,
+ "1437474812": -11.63922,
+ "1437474813": -11.63928,
+ "1437474814": -11.63935,
+ "1437474815": -11.63941,
+ "1437474816": -11.63948,
+ "1437474817": -11.63954,
+ "1437474818": -11.63961,
+ "1437474819": -11.63967,
+ "1437474820": -11.63973,
+ "1437474821": -11.63979,
+ "1437474822": -11.63985,
+ "1437474823": -11.63992,
+ "1437474824": -11.63998,
+ "1437474825": -11.64004,
+ "1437474827": -11.6401,
+ "1437474828": -11.64016,
+ "1437474829": -11.64022,
+ "1437474830": -11.64029,
+ "1437474831": -11.64036,
+ "1437474832": -11.64042,
+ "1437474833": -11.64049,
+ "1437474834": -11.64056,
+ "1437474835": -11.64062,
+ "1437474836": -11.64069,
+ "1437474837": -11.64076,
+ "1437474838": -11.64083,
+ "1437474839": -11.6409,
+ "1437474840": -11.64098,
+ "1437474841": -11.64105,
+ "1437474842": -11.64113,
+ "1437474843": -11.6412,
+ "1437474844": -11.64128,
+ "1437474845": -11.64136,
+ "1437474846": -11.64144,
+ "1437474847": -11.64153,
+ "1437474848": -11.64161,
+ "1437474849": -11.6417,
+ "1437474850": -11.64179,
+ "1437474851": -11.64189,
+ "1437474852": -11.64199,
+ "1437474853": -11.64209,
+ "1437474854": -11.64219,
+ "1437474855": -11.6423,
+ "1437474856": -11.64241,
+ "1437474857": -11.64253,
+ "1437474859": -11.64265,
+ "1437474860": -11.64276,
+ "1437474861": -11.64287,
+ "1437474862": -11.64298,
+ "1437474863": -11.64309,
+ "1437474864": -11.6432,
+ "1437474865": -11.64331,
+ "1437474866": -11.64341,
+ "1437474867": -11.64352,
+ "1437474868": -11.64363,
+ "1437474869": -11.64373,
+ "1437474870": -11.64383,
+ "1437474871": -11.64394,
+ "1437474872": -11.64404,
+ "1437474873": -11.64414,
+ "1437474874": -11.64424,
+ "1437474875": -11.64434,
+ "1437474876": -11.64444,
+ "1437474877": -11.64454,
+ "1437474878": -11.64463,
+ "1437474879": -11.64473,
+ "1437474880": -11.64482,
+ "1437474881": -11.64491,
+ "1437474882": -11.645,
+ "1437474883": -11.64508,
+ "1437474884": -11.64516,
+ "1437474885": -11.64522,
+ "1437474886": -11.64529,
+ "1437474887": -11.64535,
+ "1437474888": -11.6454,
+ "1437474890": -11.64545,
+ "1437474891": -11.64549,
+ "1437474892": -11.64553,
+ "1437474893": -11.64555,
+ "1437474894": -11.64557,
+ "1437474895": -11.64558,
+ "1437474896": -11.64557,
+ "1437474897": -11.64554,
+ "1437474898": -11.64549,
+ "1437474899": -11.64543,
+ "1437474900": -11.64535,
+ "1437474901": -11.64528,
+ "1437474902": -11.6452,
+ "1437474903": -11.64513,
+ "1437474904": -11.64505,
+ "1437474905": -11.64497,
+ "1437474906": -11.6449,
+ "1437474907": -11.64483,
+ "1437474908": -11.64477,
+ "1437474909": -11.64471,
+ "1437474910": -11.64466,
+ "1437474911": -11.64462,
+ "1437474912": -11.64459,
+ "1437474913": -11.64457,
+ "1437474914": -11.64456,
+ "1437474915": -11.64456,
+ "1437474916": -11.64456,
+ "1437474917": -11.64456,
+ "1437474918": -11.64457,
+ "1437474919": -11.64458,
+ "1437474920": -11.64459,
+ "1437474921": -11.6446,
+ "1437474923": -11.64461,
+ "1437474924": -11.64462,
+ "1437474925": -11.64463,
+ "1437474926": -11.64464,
+ "1437474927": -11.64464,
+ "1437474928": -11.64462,
+ "1437474929": -11.64459,
+ "1437474930": -11.6445,
+ "1437474931": -11.64438,
+ "1437474932": -11.64426,
+ "1437474933": -11.64415,
+ "1437474934": -11.64406,
+ "1437474935": -11.64397,
+ "1437474936": -11.64388,
+ "1437474937": -11.6438,
+ "1437474938": -11.64372,
+ "1437474939": -11.64364,
+ "1437474940": -11.64356,
+ "1437474941": -11.64349,
+ "1437474942": -11.64342,
+ "1437474943": -11.64335,
+ "1437474944": -11.64328,
+ "1437474945": -11.64322,
+ "1437474946": -11.64316,
+ "1437474947": -11.64311,
+ "1437474948": -11.64306,
+ "1437474949": -11.64301,
+ "1437474950": -11.64296,
+ "1437474951": -11.64291,
+ "1437474952": -11.64285,
+ "1437474953": -11.6428,
+ "1437474954": -11.64274,
+ "1437474955": -11.64269,
+ "1437474956": -11.64263,
+ "1437474957": -11.64258,
+ "1437474958": -11.64251,
+ "1437474959": -11.64245,
+ "1437474960": -11.64237,
+ "1437474962": -11.64229,
+ "1437474963": -11.6422,
+ "1437474964": -11.6421,
+ "1437474965": -11.642,
+ "1437474966": -11.6419,
+ "1437474967": -11.64179,
+ "1437474968": -11.64169,
+ "1437474969": -11.64158,
+ "1437474970": -11.64147,
+ "1437474971": -11.64136,
+ "1437474972": -11.64125,
+ "1437474973": -11.64114,
+ "1437474974": -11.64103,
+ "1437474975": -11.64093,
+ "1437474976": -11.64082,
+ "1437474977": -11.64071,
+ "1437474978": -11.6406,
+ "1437474979": -11.6405,
+ "1437474980": -11.64039,
+ "1437474981": -11.64029,
+ "1437474982": -11.64018,
+ "1437474983": -11.64007,
+ "1437474984": -11.63996,
+ "1437474985": -11.63985,
+ "1437474986": -11.63974,
+ "1437474987": -11.63963,
+ "1437474988": -11.63951,
+ "1437474989": -11.63939,
+ "1437474990": -11.63927,
+ "1437474992": -11.63914,
+ "1437474993": -11.63902,
+ "1437474994": -11.6389,
+ "1437474995": -11.63877,
+ "1437474996": -11.63866,
+ "1437474997": -11.63856,
+ "1437474998": -11.63849,
+ "1437474999": -11.63845,
+ "1437475000": -11.63842,
+ "1437475001": -11.6384,
+ "1437475002": -11.63838,
+ "1437475003": -11.63837,
+ "1437475004": -11.63836,
+ "1437475005": -11.63836,
+ "1437475006": -11.63836,
+ "1437475007": -11.63836,
+ "1437475008": -11.63838,
+ "1437475009": -11.63842,
+ "1437475010": -11.6385,
+ "1437475012": -11.63865,
+ "1437475013": -11.6388,
+ "1437475014": -11.63896,
+ "1437475015": -11.6391,
+ "1437475016": -11.63926,
+ "1437475017": -11.6394,
+ "1437475018": -11.63956,
+ "1437475019": -11.6397,
+ "1437475020": -11.63985,
+ "1437475021": -11.64001,
+ "1437475022": -11.64016,
+ "1437475023": -11.64031,
+ "1437475024": -11.64047,
+ "1437475025": -11.64062,
+ "1437475026": -11.6408,
+ "1437475027": -11.64094,
+ "1437475029": -11.64112,
+ "1437475030": -11.64127,
+ "1437475031": -11.64141,
+ "1437475032": -11.64156,
+ "1437475033": -11.6417,
+ "1437475034": -11.64184,
+ "1437475035": -11.64197,
+ "1437475036": -11.64211,
+ "1437475037": -11.64225,
+ "1437475038": -11.64239,
+ "1437475039": -11.64253,
+ "1437475040": -11.64267,
+ "1437475041": -11.6428,
+ "1437475042": -11.64293,
+ "1437475043": -11.64305,
+ "1437475044": -11.64317,
+ "1437475045": -11.6433,
+ "1437475046": -11.64341,
+ "1437475047": -11.64352,
+ "1437475048": -11.64363,
+ "1437475049": -11.64374,
+ "1437475050": -11.64385,
+ "1437475051": -11.64396,
+ "1437475052": -11.64406,
+ "1437475054": -11.64416,
+ "1437475055": -11.64426,
+ "1437475056": -11.64437,
+ "1437475057": -11.64448,
+ "1437475058": -11.64458,
+ "1437475059": -11.64469,
+ "1437475060": -11.64479,
+ "1437475061": -11.6449,
+ "1437475062": -11.645,
+ "1437475063": -11.6451,
+ "1437475064": -11.6452,
+ "1437475065": -11.6453,
+ "1437475066": -11.6454,
+ "1437475067": -11.6455,
+ "1437475068": -11.6456,
+ "1437475069": -11.6457,
+ "1437475070": -11.6458,
+ "1437475071": -11.6459,
+ "1437475072": -11.646,
+ "1437475073": -11.6461,
+ "1437475074": -11.64621,
+ "1437475075": -11.64631,
+ "1437475076": -11.64641,
+ "1437475077": -11.64652,
+ "1437475078": -11.64662,
+ "1437475079": -11.64674,
+ "1437475080": -11.64686,
+ "1437475081": -11.64697,
+ "1437475083": -11.64705,
+ "1437475084": -11.64711,
+ "1437475085": -11.64716,
+ "1437475086": -11.6472,
+ "1437475087": -11.64724,
+ "1437475088": -11.64731,
+ "1437475089": -11.64732,
+ "1437475090": -11.64735,
+ "1437475091": -11.64738,
+ "1437475092": -11.64739,
+ "1437475093": -11.64742,
+ "1437475094": -11.64744,
+ "1437475095": -11.64747,
+ "1437475096": -11.6475,
+ "1437475097": -11.64752,
+ "1437475098": -11.64755,
+ "1437475099": -11.64758,
+ "1437475100": -11.64762,
+ "1437475101": -11.64765,
+ "1437475102": -11.6477,
+ "1437475103": -11.64775,
+ "1437475104": -11.64781,
+ "1437475105": -11.64788,
+ "1437475106": -11.64796,
+ "1437475107": -11.64803,
+ "1437475108": -11.64812,
+ "1437475109": -11.6482,
+ "1437475110": -11.64829,
+ "1437475112": -11.64838,
+ "1437475113": -11.64846,
+ "1437475114": -11.64855,
+ "1437475115": -11.64864,
+ "1437475116": -11.64873,
+ "1437475117": -11.64882,
+ "1437475118": -11.6489,
+ "1437475119": -11.64898,
+ "1437475120": -11.64905,
+ "1437475121": -11.64912,
+ "1437475122": -11.64919,
+ "1437475123": -11.64926,
+ "1437475124": -11.64933,
+ "1437475125": -11.6494,
+ "1437475126": -11.64947,
+ "1437475127": -11.64953,
+ "1437475128": -11.6496,
+ "1437475129": -11.64968,
+ "1437475130": -11.64975,
+ "1437475131": -11.64983,
+ "1437475132": -11.6499,
+ "1437475133": -11.64998,
+ "1437475134": -11.65005,
+ "1437475135": -11.65013,
+ "1437475136": -11.65021,
+ "1437475137": -11.6503,
+ "1437475138": -11.65038,
+ "1437475139": -11.65047,
+ "1437475140": -11.65055,
+ "1437475141": -11.65063,
+ "1437475142": -11.65068,
+ "1437475143": -11.65072,
+ "1437475145": -11.65074,
+ "1437475146": -11.65075,
+ "1437475147": -11.65075,
+ "1437475148": -11.65076,
+ "1437475149": -11.65077,
+ "1437475150": -11.65079,
+ "1437475151": -11.65083,
+ "1437475152": -11.6509,
+ "1437475153": -11.65097,
+ "1437475154": -11.65105,
+ "1437475155": -11.65113,
+ "1437475156": -11.65121,
+ "1437475157": -11.6513,
+ "1437475158": -11.65137,
+ "1437475159": -11.65143,
+ "1437475160": -11.65147,
+ "1437475161": -11.6515,
+ "1437475162": -11.65149,
+ "1437475163": -11.65146,
+ "1437475164": -11.65139,
+ "1437475165": -11.65128,
+ "1437475166": -11.65116,
+ "1437475167": -11.65104,
+ "1437475168": -11.65092,
+ "1437475169": -11.65081,
+ "1437475170": -11.65072,
+ "1437475171": -11.65071,
+ "1437475173": -11.65074,
+ "1437475174": -11.65079,
+ "1437475175": -11.65085,
+ "1437475176": -11.6509,
+ "1437475177": -11.65092,
+ "1437475178": -11.65089,
+ "1437475179": -11.65083,
+ "1437475180": -11.65074,
+ "1437475181": -11.65062,
+ "1437475182": -11.65052,
+ "1437475183": -11.65044,
+ "1437475184": -11.65036,
+ "1437475185": -11.65029,
+ "1437475186": -11.65022,
+ "1437475187": -11.65015,
+ "1437475188": -11.65008,
+ "1437475189": -11.65001,
+ "1437475190": -11.64994,
+ "1437475191": -11.64986,
+ "1437475192": -11.64979,
+ "1437475193": -11.64971,
+ "1437475194": -11.64963,
+ "1437475195": -11.64953,
+ "1437475196": -11.64943,
+ "1437475197": -11.64933,
+ "1437475198": -11.64925,
+ "1437475200": -11.64919,
+ "1437475201": -11.64914,
+ "1437475202": -11.64909,
+ "1437475203": -11.64904,
+ "1437475204": -11.649,
+ "1437475205": -11.64896,
+ "1437475206": -11.64892,
+ "1437475207": -11.64888,
+ "1437475208": -11.64885,
+ "1437475209": -11.64881,
+ "1437475210": -11.64877,
+ "1437475211": -11.64872,
+ "1437475212": -11.64866,
+ "1437475213": -11.64857,
+ "1437475214": -11.64847,
+ "1437475215": -11.64839,
+ "1437475216": -11.64832,
+ "1437475217": -11.64826,
+ "1437475218": -11.6482,
+ "1437475219": -11.64815,
+ "1437475220": -11.6481,
+ "1437475221": -11.64805,
+ "1437475222": -11.648,
+ "1437475223": -11.64795,
+ "1437475224": -11.6479,
+ "1437475225": -11.64784,
+ "1437475226": -11.64778,
+ "1437475227": -11.6477,
+ "1437475228": -11.64761,
+ "1437475230": -11.64751,
+ "1437475231": -11.64742,
+ "1437475232": -11.64734,
+ "1437475233": -11.64727,
+ "1437475234": -11.64719,
+ "1437475235": -11.6471,
+ "1437475236": -11.64701,
+ "1437475237": -11.64692,
+ "1437475238": -11.64684,
+ "1437475239": -11.64675,
+ "1437475240": -11.64667,
+ "1437475241": -11.64658,
+ "1437475242": -11.6465,
+ "1437475243": -11.64641,
+ "1437475244": -11.64633,
+ "1437475245": -11.64624,
+ "1437475246": -11.64616,
+ "1437475247": -11.64608,
+ "1437475248": -11.646,
+ "1437475249": -11.64592,
+ "1437475250": -11.64583,
+ "1437475251": -11.64575,
+ "1437475252": -11.64567,
+ "1437475253": -11.64558,
+ "1437475254": -11.64552,
+ "1437475255": -11.64547,
+ "1437475256": -11.64542,
+ "1437475257": -11.64533,
+ "1437475258": -11.64523,
+ "1437475259": -11.64516,
+ "1437475260": -11.6451,
+ "1437475261": -11.64505,
+ "1437475262": -11.64501,
+ "1437475263": -11.64497,
+ "1437475264": -11.64494,
+ "1437475265": -11.64491,
+ "1437475266": -11.64487,
+ "1437475267": -11.64484,
+ "1437475269": -11.64482,
+ "1437475270": -11.64479,
+ "1437475271": -11.64476,
+ "1437475272": -11.64474,
+ "1437475273": -11.64472,
+ "1437475274": -11.64469,
+ "1437475275": -11.64467,
+ "1437475276": -11.64465,
+ "1437475277": -11.64463,
+ "1437475278": -11.64461,
+ "1437475279": -11.64459,
+ "1437475280": -11.64457,
+ "1437475281": -11.64454,
+ "1437475282": -11.64452,
+ "1437475283": -11.6445,
+ "1437475284": -11.64448,
+ "1437475285": -11.64446,
+ "1437475286": -11.64444,
+ "1437475287": -11.64442,
+ "1437475288": -11.6444,
+ "1437475289": -11.64437,
+ "1437475290": -11.64435,
+ "1437475291": -11.64433,
+ "1437475292": -11.6443,
+ "1437475293": -11.64428,
+ "1437475294": -11.64425,
+ "1437475295": -11.64423,
+ "1437475296": -11.6442,
+ "1437475297": -11.64416,
+ "1437475298": -11.64413,
+ "1437475299": -11.6441,
+ "1437475300": -11.64406,
+ "1437475301": -11.64401,
+ "1437475302": -11.64396,
+ "1437475303": -11.64391,
+ "1437475304": -11.64386,
+ "1437475305": -11.6438,
+ "1437475306": -11.64374,
+ "1437475308": -11.64368,
+ "1437475309": -11.64361,
+ "1437475310": -11.64353,
+ "1437475311": -11.64345,
+ "1437475312": -11.64337,
+ "1437475313": -11.64329,
+ "1437475314": -11.6432,
+ "1437475315": -11.6431,
+ "1437475316": -11.64301,
+ "1437475317": -11.64291,
+ "1437475318": -11.64281,
+ "1437475319": -11.64271,
+ "1437475320": -11.64264,
+ "1437475321": -11.64261,
+ "1437475322": -11.64261,
+ "1437475323": -11.64263,
+ "1437475324": -11.64266,
+ "1437475325": -11.64271,
+ "1437475326": -11.64276,
+ "1437475327": -11.64283,
+ "1437475328": -11.64293,
+ "1437475329": -11.64304,
+ "1437475330": -11.64315,
+ "1437475331": -11.64326,
+ "1437475332": -11.64336,
+ "1437475333": -11.64344,
+ "1437475334": -11.64345,
+ "1437475335": -11.6434,
+ "1437475336": -11.64334,
+ "1437475337": -11.64326,
+ "1437475338": -11.64319,
+ "1437475339": -11.64312,
+ "1437475340": -11.64305,
+ "1437475342": -11.64297,
+ "1437475343": -11.64288,
+ "1437475344": -11.64278,
+ "1437475345": -11.64271,
+ "1437475346": -11.64261,
+ "1437475347": -11.64254,
+ "1437475348": -11.64247,
+ "1437475349": -11.64241,
+ "1437475350": -11.64235,
+ "1437475351": -11.64227,
+ "1437475352": -11.64217,
+ "1437475353": -11.64207,
+ "1437475354": -11.64198,
+ "1437475355": -11.64192,
+ "1437475356": -11.6419,
+ "1437475357": -11.64188,
+ "1437475358": -11.64186,
+ "1437475359": -11.64181,
+ "1437475360": -11.64175,
+ "1437475361": -11.64168,
+ "1437475362": -11.6416,
+ "1437475363": -11.64151,
+ "1437475364": -11.6414,
+ "1437475365": -11.64128,
+ "1437475366": -11.64117,
+ "1437475367": -11.64108,
+ "1437475368": -11.641,
+ "1437475369": -11.64093,
+ "1437475371": -11.64087,
+ "1437475372": -11.64082,
+ "1437475373": -11.64077,
+ "1437475374": -11.64075,
+ "1437475375": -11.64074,
+ "1437475376": -11.64077,
+ "1437475377": -11.64084,
+ "1437475378": -11.64094,
+ "1437475379": -11.64105,
+ "1437475380": -11.64115,
+ "1437475381": -11.64123,
+ "1437475382": -11.64124,
+ "1437475383": -11.64121,
+ "1437475384": -11.64119,
+ "1437475385": -11.64119,
+ "1437475386": -11.64124,
+ "1437475387": -11.64132,
+ "1437475388": -11.64141,
+ "1437475389": -11.6415,
+ "1437475390": -11.64159,
+ "1437475391": -11.64168,
+ "1437475392": -11.64176,
+ "1437475393": -11.64182,
+ "1437475394": -11.64183,
+ "1437475395": -11.64178,
+ "1437475396": -11.6417,
+ "1437475397": -11.64163,
+ "1437475398": -11.64156,
+ "1437475400": -11.64152,
+ "1437475401": -11.64153,
+ "1437475402": -11.64156,
+ "1437475403": -11.64159,
+ "1437475404": -11.64156,
+ "1437475405": -11.64149,
+ "1437475406": -11.64141,
+ "1437475407": -11.64132,
+ "1437475408": -11.64123,
+ "1437475409": -11.64114,
+ "1437475410": -11.64105,
+ "1437475411": -11.64096,
+ "1437475412": -11.64086,
+ "1437475413": -11.64077,
+ "1437475414": -11.64068,
+ "1437475415": -11.64059,
+ "1437475416": -11.64052,
+ "1437475417": -11.64047,
+ "1437475418": -11.64041,
+ "1437475419": -11.64036,
+ "1437475420": -11.64031,
+ "1437475421": -11.64027,
+ "1437475422": -11.64022,
+ "1437475423": -11.64018,
+ "1437475424": -11.64014,
+ "1437475425": -11.6401,
+ "1437475426": -11.64007,
+ "1437475427": -11.64003,
+ "1437475428": -11.63999,
+ "1437475429": -11.63995,
+ "1437475430": -11.63991,
+ "1437475431": -11.63987,
+ "1437475433": -11.63983,
+ "1437475434": -11.63979,
+ "1437475435": -11.63974,
+ "1437475436": -11.63969,
+ "1437475437": -11.63964,
+ "1437475438": -11.63959,
+ "1437475439": -11.63953,
+ "1437475440": -11.63947,
+ "1437475441": -11.63941,
+ "1437475442": -11.63933,
+ "1437475443": -11.63924,
+ "1437475444": -11.63915,
+ "1437475445": -11.63906,
+ "1437475446": -11.63896,
+ "1437475447": -11.63886,
+ "1437475448": -11.63876,
+ "1437475449": -11.63866,
+ "1437475450": -11.63856,
+ "1437475451": -11.63845,
+ "1437475452": -11.63835,
+ "1437475453": -11.63825,
+ "1437475454": -11.63815,
+ "1437475455": -11.63805,
+ "1437475456": -11.63795,
+ "1437475457": -11.63785,
+ "1437475458": -11.63776,
+ "1437475459": -11.63767,
+ "1437475460": -11.63758,
+ "1437475461": -11.63749,
+ "1437475462": -11.6374,
+ "1437475463": -11.63732,
+ "1437475464": -11.63724,
+ "1437475466": -11.63716,
+ "1437475467": -11.63709,
+ "1437475468": -11.63701,
+ "1437475469": -11.63694,
+ "1437475470": -11.63687,
+ "1437475471": -11.6368,
+ "1437475472": -11.63674,
+ "1437475473": -11.63667,
+ "1437475474": -11.63661,
+ "1437475475": -11.63655,
+ "1437475476": -11.63649,
+ "1437475477": -11.63644,
+ "1437475478": -11.63639,
+ "1437475479": -11.63634,
+ "1437475480": -11.63631,
+ "1437475481": -11.63627,
+ "1437475482": -11.63624,
+ "1437475483": -11.63622,
+ "1437475484": -11.6362,
+ "1437475485": -11.63619,
+ "1437475486": -11.63618,
+ "1437475487": -11.63617,
+ "1437475488": -11.63617,
+ "1437475489": -11.63617,
+ "1437475490": -11.63617,
+ "1437475491": -11.63617,
+ "1437475492": -11.63617,
+ "1437475493": -11.63617,
+ "1437475494": -11.63616,
+ "1437475495": -11.63615,
+ "1437475496": -11.63614,
+ "1437475497": -11.63613,
+ "1437475498": -11.63612,
+ "1437475499": -11.63611,
+ "1437475500": -11.63609,
+ "1437475501": -11.63608,
+ "1437475502": -11.63606,
+ "1437475503": -11.63604,
+ "1437475504": -11.63603,
+ "1437475505": -11.63601,
+ "1437475506": -11.63599,
+ "1437475507": -11.63596,
+ "1437475508": -11.63594,
+ "1437475510": -11.63592,
+ "1437475511": -11.6359,
+ "1437475512": -11.63588,
+ "1437475513": -11.63586,
+ "1437475514": -11.63584,
+ "1437475515": -11.63581,
+ "1437475516": -11.63579,
+ "1437475517": -11.63577,
+ "1437475518": -11.63575,
+ "1437475519": -11.63573,
+ "1437475520": -11.63571,
+ "1437475521": -11.63569,
+ "1437475522": -11.63567,
+ "1437475523": -11.63565,
+ "1437475524": -11.63563,
+ "1437475525": -11.63561,
+ "1437475526": -11.63559,
+ "1437475527": -11.63557,
+ "1437475528": -11.63556,
+ "1437475529": -11.63554,
+ "1437475530": -11.63553,
+ "1437475531": -11.63552,
+ "1437475532": -11.63551,
+ "1437475533": -11.6355,
+ "1437475534": -11.6355,
+ "1437475535": -11.63549,
+ "1437475536": -11.6355,
+ "1437475537": -11.6355,
+ "1437475538": -11.63551,
+ "1437475539": -11.63552,
+ "1437475540": -11.63554,
+ "1437475541": -11.63556,
+ "1437475542": -11.63559,
+ "1437475543": -11.63562,
+ "1437475544": -11.63566,
+ "1437475545": -11.6357,
+ "1437475546": -11.63575,
+ "1437475547": -11.6358,
+ "1437475548": -11.63585,
+ "1437475549": -11.6359,
+ "1437475551": -11.63595,
+ "1437475552": -11.63601,
+ "1437475553": -11.63607,
+ "1437475554": -11.63612,
+ "1437475555": -11.63618,
+ "1437475556": -11.63624,
+ "1437475557": -11.6363,
+ "1437475558": -11.63636,
+ "1437475559": -11.63642,
+ "1437475560": -11.63648,
+ "1437475561": -11.63655,
+ "1437475562": -11.63661,
+ "1437475563": -11.63667,
+ "1437475564": -11.63673,
+ "1437475565": -11.63679,
+ "1437475566": -11.63685,
+ "1437475567": -11.63691,
+ "1437475568": -11.63697,
+ "1437475569": -11.63703,
+ "1437475570": -11.63709,
+ "1437475571": -11.63714,
+ "1437475572": -11.6372,
+ "1437475573": -11.63725,
+ "1437475574": -11.6373,
+ "1437475575": -11.63734,
+ "1437475576": -11.63738,
+ "1437475577": -11.63741,
+ "1437475578": -11.63742,
+ "1437475580": -11.63741,
+ "1437475581": -11.63739,
+ "1437475582": -11.63736,
+ "1437475583": -11.63732,
+ "1437475584": -11.63728,
+ "1437475585": -11.63723,
+ "1437475586": -11.63718,
+ "1437475587": -11.63712,
+ "1437475588": -11.63707,
+ "1437475589": -11.63702,
+ "1437475590": -11.63697,
+ "1437475591": -11.63692,
+ "1437475592": -11.63687,
+ "1437475593": -11.63682,
+ "1437475594": -11.63677,
+ "1437475595": -11.63672,
+ "1437475596": -11.63669,
+ "1437475597": -11.63666,
+ "1437475598": -11.63664,
+ "1437475599": -11.63662,
+ "1437475600": -11.63661,
+ "1437475601": -11.63661,
+ "1437475602": -11.63661,
+ "1437475603": -11.63661,
+ "1437475604": -11.63661,
+ "1437475605": -11.63661,
+ "1437475606": -11.63661,
+ "1437475607": -11.6366,
+ "1437475608": -11.6366,
+ "1437475610": -11.63659,
+ "1437475611": -11.63658,
+ "1437475612": -11.63657,
+ "1437475613": -11.63657,
+ "1437475614": -11.63656,
+ "1437475615": -11.63656,
+ "1437475616": -11.63656,
+ "1437475617": -11.63656,
+ "1437475618": -11.63656,
+ "1437475619": -11.63657,
+ "1437475620": -11.63659,
+ "1437475621": -11.6366,
+ "1437475622": -11.63662,
+ "1437475623": -11.63664,
+ "1437475624": -11.63666,
+ "1437475625": -11.63669,
+ "1437475626": -11.63672,
+ "1437475627": -11.63675,
+ "1437475628": -11.63678,
+ "1437475629": -11.63681,
+ "1437475630": -11.63685,
+ "1437475631": -11.63688,
+ "1437475632": -11.63692,
+ "1437475633": -11.63696,
+ "1437475634": -11.63701,
+ "1437475636": -11.63705,
+ "1437475637": -11.6371,
+ "1437475638": -11.63714,
+ "1437475639": -11.63719,
+ "1437475640": -11.63724,
+ "1437475641": -11.63729,
+ "1437475642": -11.63735,
+ "1437475643": -11.6374,
+ "1437475644": -11.63745,
+ "1437475645": -11.63751,
+ "1437475646": -11.63756,
+ "1437475647": -11.63761,
+ "1437475648": -11.63767,
+ "1437475649": -11.63773,
+ "1437475650": -11.63779,
+ "1437475651": -11.63784,
+ "1437475652": -11.6379,
+ "1437475653": -11.63796,
+ "1437475654": -11.63802,
+ "1437475655": -11.63808,
+ "1437475656": -11.63814,
+ "1437475657": -11.6382,
+ "1437475658": -11.63826,
+ "1437475659": -11.63832,
+ "1437475660": -11.63838,
+ "1437475662": -11.63843,
+ "1437475663": -11.63846,
+ "1437475664": -11.63847,
+ "1437475665": -11.63847,
+ "1437475666": -11.63846,
+ "1437475667": -11.63845,
+ "1437475668": -11.63844,
+ "1437475669": -11.63842,
+ "1437475670": -11.63839,
+ "1437475671": -11.63837,
+ "1437475672": -11.63834,
+ "1437475673": -11.63831,
+ "1437475674": -11.63826,
+ "1437475675": -11.6382,
+ "1437475676": -11.63814,
+ "1437475677": -11.63809,
+ "1437475678": -11.63804,
+ "1437475679": -11.638,
+ "1437475680": -11.63796,
+ "1437475681": -11.63794,
+ "1437475682": -11.63793,
+ "1437475683": -11.63793,
+ "1437475684": -11.63792,
+ "1437475685": -11.63792,
+ "1437475686": -11.63792,
+ "1437475687": -11.63792,
+ "1437475688": -11.63792,
+ "1437475689": -11.63793,
+ "1437475690": -11.63793,
+ "1437475691": -11.63793,
+ "1437475693": -11.63793,
+ "1437475694": -11.63793,
+ "1437475695": -11.63793,
+ "1437475696": -11.63793,
+ "1437475697": -11.63794,
+ "1437475698": -11.63794,
+ "1437475699": -11.63794,
+ "1437475700": -11.63794,
+ "1437475701": -11.63795,
+ "1437475702": -11.63795,
+ "1437475703": -11.63795,
+ "1437475704": -11.63795,
+ "1437475705": -11.63795,
+ "1437475706": -11.63795,
+ "1437475707": -11.63795,
+ "1437475708": -11.63795,
+ "1437475709": -11.63795,
+ "1437475710": -11.63795,
+ "1437475711": -11.63795,
+ "1437475712": -11.63795,
+ "1437475713": -11.63795,
+ "1437475714": -11.63795,
+ "1437475715": -11.63795,
+ "1437475716": -11.63795,
+ "1437475717": -11.63795,
+ "1437475718": -11.63795,
+ "1437475719": -11.63795,
+ "1437475720": -11.63795,
+ "1437475721": -11.63795,
+ "1437475722": -11.63795,
+ "1437475724": -11.63795,
+ "1437475725": -11.63796,
+ "1437475726": -11.63796,
+ "1437475727": -11.63796,
+ "1437475728": -11.63796,
+ "1437475729": -11.63796,
+ "1437475730": -11.63797,
+ "1437475731": -11.63797,
+ "1437475732": -11.63798,
+ "1437475733": -11.63798,
+ "1437475734": -11.63799,
+ "1437475735": -11.63799,
+ "1437475736": -11.63799,
+ "1437475737": -11.638,
+ "1437475738": -11.63801,
+ "1437475739": -11.63801,
+ "1437475740": -11.63802,
+ "1437475741": -11.63803,
+ "1437475742": -11.63805,
+ "1437475743": -11.63806,
+ "1437475744": -11.63808,
+ "1437475745": -11.6381,
+ "1437475746": -11.63812,
+ "1437475747": -11.63814,
+ "1437475748": -11.63816,
+ "1437475749": -11.63819,
+ "1437475750": -11.63822,
+ "1437475751": -11.63824,
+ "1437475752": -11.63826,
+ "1437475753": -11.63827,
+ "1437475754": -11.63829,
+ "1437475755": -11.6383,
+ "1437475756": -11.63831,
+ "1437475758": -11.63832,
+ "1437475759": -11.63833,
+ "1437475760": -11.63834,
+ "1437475761": -11.63835,
+ "1437475762": -11.63836,
+ "1437475763": -11.63837,
+ "1437475764": -11.63838,
+ "1437475765": -11.63839,
+ "1437475766": -11.6384,
+ "1437475767": -11.6384,
+ "1437475768": -11.63841,
+ "1437475769": -11.63842,
+ "1437475770": -11.63842,
+ "1437475771": -11.63843,
+ "1437475772": -11.63844,
+ "1437475773": -11.63845,
+ "1437475774": -11.63845,
+ "1437475775": -11.63846,
+ "1437475776": -11.63847,
+ "1437475777": -11.63848,
+ "1437475778": -11.63849,
+ "1437475779": -11.6385,
+ "1437475780": -11.63851,
+ "1437475781": -11.63851,
+ "1437475782": -11.63852,
+ "1437475783": -11.63853,
+ "1437475784": -11.63853,
+ "1437475785": -11.63854,
+ "1437475786": -11.63854,
+ "1437475787": -11.63855,
+ "1437475788": -11.63855,
+ "1437475789": -11.63856,
+ "1437475791": -11.63857,
+ "1437475792": -11.63857,
+ "1437475793": -11.63858,
+ "1437475794": -11.63858,
+ "1437475795": -11.63859,
+ "1437475796": -11.63859,
+ "1437475797": -11.6386,
+ "1437475798": -11.63861,
+ "1437475799": -11.63861,
+ "1437475800": -11.63862,
+ "1437475801": -11.63863,
+ "1437475802": -11.63863,
+ "1437475803": -11.63864,
+ "1437475804": -11.63864,
+ "1437475805": -11.63865,
+ "1437475806": -11.63866,
+ "1437475807": -11.63866,
+ "1437475808": -11.63867,
+ "1437475809": -11.63868,
+ "1437475810": -11.63868,
+ "1437475811": -11.63869,
+ "1437475812": -11.6387,
+ "1437475813": -11.6387,
+ "1437475814": -11.63871,
+ "1437475815": -11.63872,
+ "1437475816": -11.63872,
+ "1437475817": -11.63873,
+ "1437475818": -11.63873,
+ "1437475819": -11.63874,
+ "1437475821": -11.63875,
+ "1437475822": -11.63875,
+ "1437475823": -11.63876,
+ "1437475824": -11.63876,
+ "1437475825": -11.63877,
+ "1437475826": -11.63878,
+ "1437475827": -11.63878,
+ "1437475828": -11.63879,
+ "1437475829": -11.6388,
+ "1437475830": -11.6388,
+ "1437475831": -11.63881,
+ "1437475832": -11.63881,
+ "1437475833": -11.63882,
+ "1437475834": -11.63883,
+ "1437475835": -11.63883,
+ "1437475836": -11.63884,
+ "1437475837": -11.63885,
+ "1437475838": -11.63885,
+ "1437475839": -11.63886,
+ "1437475840": -11.63887,
+ "1437475841": -11.63887,
+ "1437475842": -11.63888,
+ "1437475843": -11.63889,
+ "1437475844": -11.63889,
+ "1437475845": -11.6389,
+ "1437475846": -11.63891,
+ "1437475847": -11.63891,
+ "1437475848": -11.63892,
+ "1437475849": -11.63893,
+ "1437475850": -11.63894,
+ "1437475852": -11.63894,
+ "1437475853": -11.63895,
+ "1437475854": -11.63896,
+ "1437475855": -11.63896,
+ "1437475856": -11.63897,
+ "1437475857": -11.63898,
+ "1437475858": -11.63899,
+ "1437475859": -11.639,
+ "1437475860": -11.639,
+ "1437475861": -11.63901,
+ "1437475862": -11.63902,
+ "1437475863": -11.63903,
+ "1437475864": -11.63904,
+ "1437475865": -11.63905,
+ "1437475866": -11.63905,
+ "1437475867": -11.63906,
+ "1437475868": -11.63907,
+ "1437475869": -11.63908,
+ "1437475870": -11.6391,
+ "1437475871": -11.63911,
+ "1437475872": -11.63912,
+ "1437475873": -11.63913,
+ "1437475874": -11.63915,
+ "1437475875": -11.63917,
+ "1437475876": -11.63919,
+ "1437475878": -11.63921,
+ "1437475879": -11.63924,
+ "1437475880": -11.63927,
+ "1437475881": -11.63931,
+ "1437475882": -11.63934,
+ "1437475883": -11.63938,
+ "1437475884": -11.63943,
+ "1437475885": -11.63947,
+ "1437475886": -11.63951,
+ "1437475887": -11.63955,
+ "1437475888": -11.63959,
+ "1437475889": -11.63961,
+ "1437475890": -11.63963,
+ "1437475891": -11.63963,
+ "1437475892": -11.63963,
+ "1437475893": -11.63963,
+ "1437475894": -11.63962,
+ "1437475895": -11.63961,
+ "1437475896": -11.6396,
+ "1437475897": -11.63959,
+ "1437475898": -11.63959,
+ "1437475899": -11.63958,
+ "1437475900": -11.63957,
+ "1437475901": -11.63956,
+ "1437475902": -11.63955,
+ "1437475903": -11.63954,
+ "1437475905": -11.63954,
+ "1437475906": -11.63953,
+ "1437475907": -11.63952,
+ "1437475908": -11.63951,
+ "1437475909": -11.63951,
+ "1437475910": -11.6395,
+ "1437475911": -11.63949,
+ "1437475912": -11.63948,
+ "1437475913": -11.63947,
+ "1437475914": -11.63947,
+ "1437475915": -11.63946,
+ "1437475916": -11.63945,
+ "1437475917": -11.63944,
+ "1437475918": -11.63943,
+ "1437475919": -11.63942,
+ "1437475920": -11.63941,
+ "1437475921": -11.6394,
+ "1437475922": -11.6394,
+ "1437475923": -11.63939,
+ "1437475924": -11.63938,
+ "1437475925": -11.63937,
+ "1437475926": -11.63936,
+ "1437475927": -11.63935,
+ "1437475928": -11.63934,
+ "1437475929": -11.63933,
+ "1437475930": -11.63932,
+ "1437475931": -11.63932,
+ "1437475932": -11.63931,
+ "1437475933": -11.6393,
+ "1437475934": -11.63929,
+ "1437475935": -11.63929,
+ "1437475936": -11.63928,
+ "1437475938": -11.63927,
+ "1437475939": -11.63927,
+ "1437475940": -11.63926,
+ "1437475941": -11.63925,
+ "1437475942": -11.63925,
+ "1437475943": -11.63924,
+ "1437475944": -11.63923,
+ "1437475945": -11.63922,
+ "1437475946": -11.63922,
+ "1437475947": -11.63921,
+ "1437475948": -11.6392,
+ "1437475949": -11.63919,
+ "1437475950": -11.63918,
+ "1437475951": -11.63918,
+ "1437475952": -11.63917,
+ "1437475953": -11.63916,
+ "1437475954": -11.63915,
+ "1437475955": -11.63915,
+ "1437475956": -11.63914,
+ "1437475957": -11.63913,
+ "1437475958": -11.63912,
+ "1437475959": -11.63912,
+ "1437475960": -11.63911,
+ "1437475961": -11.6391,
+ "1437475962": -11.63909,
+ "1437475963": -11.63909,
+ "1437475964": -11.63909,
+ "1437475965": -11.63908,
+ "1437475967": -11.63908,
+ "1437475968": -11.63907,
+ "1437475969": -11.63907,
+ "1437475970": -11.63907,
+ "1437475971": -11.63906,
+ "1437475972": -11.63905,
+ "1437475973": -11.63905,
+ "1437475974": -11.63904,
+ "1437475975": -11.63903,
+ "1437475976": -11.63903,
+ "1437475977": -11.63902,
+ "1437475978": -11.63902,
+ "1437475979": -11.63901,
+ "1437475980": -11.639,
+ "1437475981": -11.639,
+ "1437475982": -11.63899,
+ "1437475983": -11.63899,
+ "1437475984": -11.63898,
+ "1437475985": -11.63898,
+ "1437475986": -11.63897,
+ "1437475987": -11.63896,
+ "1437475988": -11.63896,
+ "1437475989": -11.63896,
+ "1437475990": -11.63895,
+ "1437475991": -11.63895,
+ "1437475992": -11.63895,
+ "1437475993": -11.63895,
+ "1437475994": -11.63895,
+ "1437475995": -11.63895,
+ "1437475997": -11.63895,
+ "1437475998": -11.63895,
+ "1437475999": -11.63895,
+ "1437476000": -11.63895,
+ "1437476001": -11.63895,
+ "1437476002": -11.63896,
+ "1437476003": -11.63897,
+ "1437476004": -11.63899,
+ "1437476005": -11.63901,
+ "1437476006": -11.63904,
+ "1437476007": -11.63907,
+ "1437476008": -11.63911,
+ "1437476009": -11.63916,
+ "1437476010": -11.63921,
+ "1437476011": -11.63926,
+ "1437476012": -11.6393,
+ "1437476013": -11.63935,
+ "1437476014": -11.63939,
+ "1437476015": -11.63942,
+ "1437476016": -11.63946,
+ "1437476017": -11.6395,
+ "1437476019": -11.63953,
+ "1437476020": -11.63957,
+ "1437476021": -11.6396,
+ "1437476022": -11.63963,
+ "1437476023": -11.63966,
+ "1437476024": -11.63969,
+ "1437476025": -11.63972,
+ "1437476026": -11.63975,
+ "1437476027": -11.63978,
+ "1437476028": -11.63981,
+ "1437476029": -11.63984,
+ "1437476030": -11.63987,
+ "1437476031": -11.6399,
+ "1437476032": -11.63993,
+ "1437476033": -11.63996,
+ "1437476034": -11.63999,
+ "1437476035": -11.64003,
+ "1437476036": -11.64006,
+ "1437476037": -11.6401,
+ "1437476038": -11.64013,
+ "1437476039": -11.64017,
+ "1437476040": -11.6402,
+ "1437476041": -11.64024,
+ "1437476042": -11.64028,
+ "1437476043": -11.64032,
+ "1437476044": -11.64036,
+ "1437476045": -11.6404,
+ "1437476047": -11.64044,
+ "1437476048": -11.64049,
+ "1437476049": -11.64053,
+ "1437476050": -11.64057,
+ "1437476051": -11.64062,
+ "1437476052": -11.64067,
+ "1437476053": -11.64072,
+ "1437476054": -11.64077,
+ "1437476055": -11.64083,
+ "1437476056": -11.64088,
+ "1437476057": -11.64093,
+ "1437476058": -11.64099,
+ "1437476059": -11.64105,
+ "1437476060": -11.6411,
+ "1437476061": -11.64116,
+ "1437476062": -11.64122,
+ "1437476063": -11.64129,
+ "1437476064": -11.64135,
+ "1437476065": -11.64141,
+ "1437476066": -11.64148,
+ "1437476067": -11.64155,
+ "1437476068": -11.64162,
+ "1437476069": -11.64169,
+ "1437476070": -11.64176,
+ "1437476071": -11.64184,
+ "1437476072": -11.64191,
+ "1437476073": -11.642,
+ "1437476074": -11.64208,
+ "1437476075": -11.64217,
+ "1437476076": -11.64225,
+ "1437476077": -11.64234,
+ "1437476079": -11.64244,
+ "1437476080": -11.64253,
+ "1437476081": -11.64261,
+ "1437476082": -11.6427,
+ "1437476083": -11.64279,
+ "1437476084": -11.64287,
+ "1437476085": -11.64295,
+ "1437476086": -11.64303,
+ "1437476087": -11.64312,
+ "1437476088": -11.64319,
+ "1437476089": -11.64327,
+ "1437476090": -11.64335,
+ "1437476091": -11.64343,
+ "1437476092": -11.6435,
+ "1437476093": -11.64358,
+ "1437476094": -11.64365,
+ "1437476095": -11.64372,
+ "1437476096": -11.64379,
+ "1437476097": -11.64386,
+ "1437476098": -11.64394,
+ "1437476099": -11.644,
+ "1437476100": -11.64407,
+ "1437476101": -11.64414,
+ "1437476102": -11.64421,
+ "1437476103": -11.64428,
+ "1437476104": -11.64435,
+ "1437476105": -11.64441,
+ "1437476106": -11.64448,
+ "1437476107": -11.64455,
+ "1437476108": -11.64461,
+ "1437476109": -11.64467,
+ "1437476110": -11.64474,
+ "1437476112": -11.6448,
+ "1437476113": -11.64487,
+ "1437476114": -11.64493,
+ "1437476115": -11.64499,
+ "1437476116": -11.64504,
+ "1437476117": -11.6451,
+ "1437476118": -11.64515,
+ "1437476119": -11.64519,
+ "1437476120": -11.64524,
+ "1437476121": -11.64528,
+ "1437476122": -11.64533,
+ "1437476123": -11.64537,
+ "1437476124": -11.6454,
+ "1437476125": -11.64544,
+ "1437476126": -11.64546,
+ "1437476127": -11.64549,
+ "1437476128": -11.64551,
+ "1437476129": -11.64553,
+ "1437476130": -11.64554,
+ "1437476131": -11.64555,
+ "1437476132": -11.64555,
+ "1437476133": -11.64554,
+ "1437476134": -11.64552,
+ "1437476135": -11.64548,
+ "1437476136": -11.64544,
+ "1437476137": -11.64539,
+ "1437476138": -11.64533,
+ "1437476139": -11.64528,
+ "1437476140": -11.64522,
+ "1437476141": -11.64516,
+ "1437476142": -11.6451,
+ "1437476143": -11.64504,
+ "1437476144": -11.64498,
+ "1437476146": -11.64493,
+ "1437476147": -11.64487,
+ "1437476148": -11.64482,
+ "1437476149": -11.64477,
+ "1437476150": -11.64473,
+ "1437476151": -11.64468,
+ "1437476152": -11.64465,
+ "1437476153": -11.64461,
+ "1437476154": -11.64459,
+ "1437476155": -11.64457,
+ "1437476156": -11.64456,
+ "1437476157": -11.64455,
+ "1437476158": -11.64454,
+ "1437476159": -11.64454,
+ "1437476160": -11.64455,
+ "1437476161": -11.64455,
+ "1437476162": -11.64455,
+ "1437476163": -11.64456,
+ "1437476164": -11.64457,
+ "1437476165": -11.64458,
+ "1437476166": -11.64459,
+ "1437476167": -11.6446,
+ "1437476168": -11.64461,
+ "1437476169": -11.64462,
+ "1437476170": -11.64462,
+ "1437476171": -11.64462,
+ "1437476172": -11.64461,
+ "1437476173": -11.64458,
+ "1437476174": -11.64451,
+ "1437476175": -11.6444,
+ "1437476176": -11.6443,
+ "1437476177": -11.6442,
+ "1437476179": -11.64411,
+ "1437476180": -11.64403,
+ "1437476181": -11.64395,
+ "1437476182": -11.64388,
+ "1437476183": -11.64381,
+ "1437476184": -11.64375,
+ "1437476185": -11.64369,
+ "1437476186": -11.64363,
+ "1437476187": -11.64358,
+ "1437476188": -11.64353,
+ "1437476189": -11.64348,
+ "1437476190": -11.64343,
+ "1437476191": -11.64338,
+ "1437476192": -11.64333,
+ "1437476193": -11.64328,
+ "1437476194": -11.64324,
+ "1437476195": -11.6432,
+ "1437476196": -11.64316,
+ "1437476197": -11.64311,
+ "1437476198": -11.64307,
+ "1437476199": -11.64303,
+ "1437476200": -11.643,
+ "1437476201": -11.64296,
+ "1437476202": -11.64292,
+ "1437476203": -11.64288,
+ "1437476204": -11.64284,
+ "1437476205": -11.6428,
+ "1437476206": -11.64275,
+ "1437476207": -11.64271,
+ "1437476208": -11.64267,
+ "1437476209": -11.64262,
+ "1437476211": -11.64257,
+ "1437476212": -11.64252,
+ "1437476213": -11.64246,
+ "1437476214": -11.6424,
+ "1437476215": -11.64234,
+ "1437476216": -11.64227,
+ "1437476217": -11.64219,
+ "1437476218": -11.64211,
+ "1437476219": -11.64203,
+ "1437476220": -11.64195,
+ "1437476221": -11.64186,
+ "1437476222": -11.64177,
+ "1437476223": -11.64168,
+ "1437476224": -11.64158,
+ "1437476225": -11.64149,
+ "1437476226": -11.64139,
+ "1437476227": -11.64129,
+ "1437476228": -11.6412,
+ "1437476229": -11.6411,
+ "1437476230": -11.641,
+ "1437476231": -11.6409,
+ "1437476232": -11.64081,
+ "1437476233": -11.64071,
+ "1437476234": -11.64062,
+ "1437476235": -11.64052,
+ "1437476236": -11.64042,
+ "1437476237": -11.64033,
+ "1437476238": -11.64023,
+ "1437476239": -11.64014,
+ "1437476240": -11.64004,
+ "1437476241": -11.63994,
+ "1437476242": -11.63984,
+ "1437476243": -11.63974,
+ "1437476244": -11.63963,
+ "1437476245": -11.63953,
+ "1437476246": -11.63943,
+ "1437476248": -11.63931,
+ "1437476249": -11.63921,
+ "1437476250": -11.63909,
+ "1437476251": -11.63899,
+ "1437476252": -11.63887,
+ "1437476253": -11.63877,
+ "1437476254": -11.63867,
+ "1437476255": -11.63858,
+ "1437476256": -11.63851,
+ "1437476257": -11.63847,
+ "1437476258": -11.63844,
+ "1437476259": -11.63842,
+ "1437476260": -11.6384,
+ "1437476261": -11.63839,
+ "1437476262": -11.63837,
+ "1437476263": -11.63836,
+ "1437476264": -11.63836,
+ "1437476265": -11.63835,
+ "1437476266": -11.63836,
+ "1437476267": -11.63837,
+ "1437476268": -11.63838,
+ "1437476269": -11.63842,
+ "1437476270": -11.63848,
+ "1437476271": -11.63858,
+ "1437476272": -11.63872,
+ "1437476274": -11.63886,
+ "1437476275": -11.63901,
+ "1437476276": -11.63915,
+ "1437476277": -11.6393,
+ "1437476278": -11.63944,
+ "1437476279": -11.63957,
+ "1437476280": -11.63971,
+ "1437476281": -11.63985,
+ "1437476282": -11.63998,
+ "1437476283": -11.64012,
+ "1437476284": -11.64026,
+ "1437476285": -11.64039,
+ "1437476286": -11.64053,
+ "1437476287": -11.64067,
+ "1437476288": -11.6408,
+ "1437476289": -11.64094,
+ "1437476290": -11.64107,
+ "1437476291": -11.64121,
+ "1437476292": -11.64134,
+ "1437476293": -11.64146,
+ "1437476295": -11.64159,
+ "1437476296": -11.64171,
+ "1437476297": -11.64183,
+ "1437476298": -11.64195,
+ "1437476299": -11.64208,
+ "1437476300": -11.64219,
+ "1437476301": -11.64231,
+ "1437476302": -11.64243,
+ "1437476303": -11.64254,
+ "1437476304": -11.64265,
+ "1437476305": -11.64276,
+ "1437476306": -11.64286,
+ "1437476307": -11.64297,
+ "1437476308": -11.64307,
+ "1437476309": -11.64317,
+ "1437476310": -11.64326,
+ "1437476311": -11.64335,
+ "1437476312": -11.64344,
+ "1437476313": -11.64352,
+ "1437476314": -11.6436,
+ "1437476315": -11.64368,
+ "1437476316": -11.64376,
+ "1437476317": -11.64384,
+ "1437476318": -11.64391,
+ "1437476319": -11.64398,
+ "1437476320": -11.64405,
+ "1437476321": -11.64412,
+ "1437476323": -11.64418,
+ "1437476324": -11.64424,
+ "1437476325": -11.64429,
+ "1437476326": -11.64434,
+ "1437476327": -11.64438,
+ "1437476328": -11.64441,
+ "1437476329": -11.64444,
+ "1437476330": -11.64446,
+ "1437476331": -11.64447,
+ "1437476332": -11.64448,
+ "1437476333": -11.64448,
+ "1437476334": -11.64448,
+ "1437476335": -11.64448,
+ "1437476338": -11.64448,
+ "1437476339": -11.64448,
+ "1437476340": -11.64449,
+ "1437476341": -11.64449,
+ "1437476342": -11.6445,
+ "1437476343": -11.64451,
+ "1437476344": -11.64453,
+ "1437476345": -11.64454,
+ "1437476346": -11.64456,
+ "1437476347": -11.64458,
+ "1437476348": -11.6446,
+ "1437476349": -11.64462,
+ "1437476350": -11.64465,
+ "1437476351": -11.64467,
+ "1437476352": -11.64469,
+ "1437476353": -11.64472,
+ "1437476354": -11.64475,
+ "1437476355": -11.64477,
+ "1437476356": -11.6448,
+ "1437476357": -11.64483,
+ "1437476358": -11.64486,
+ "1437476360": -11.64489,
+ "1437476361": -11.64492,
+ "1437476362": -11.64495,
+ "1437476363": -11.64498,
+ "1437476364": -11.64501,
+ "1437476365": -11.64505,
+ "1437476366": -11.64508,
+ "1437476367": -11.64511,
+ "1437476368": -11.64515,
+ "1437476369": -11.64518,
+ "1437476370": -11.64521,
+ "1437476371": -11.64525,
+ "1437476372": -11.64528,
+ "1437476373": -11.64531,
+ "1437476374": -11.64535,
+ "1437476375": -11.64538,
+ "1437476376": -11.64542,
+ "1437476377": -11.64546,
+ "1437476378": -11.64549,
+ "1437476379": -11.64553,
+ "1437476380": -11.64556,
+ "1437476381": -11.6456,
+ "1437476382": -11.64564,
+ "1437476383": -11.64568,
+ "1437476384": -11.64571,
+ "1437476385": -11.64575,
+ "1437476386": -11.64579,
+ "1437476387": -11.64583,
+ "1437476389": -11.64587,
+ "1437476390": -11.64591,
+ "1437476391": -11.64595,
+ "1437476392": -11.64599,
+ "1437476393": -11.64603,
+ "1437476394": -11.64608,
+ "1437476395": -11.64613,
+ "1437476396": -11.64618,
+ "1437476397": -11.64623,
+ "1437476398": -11.64628,
+ "1437476399": -11.64633,
+ "1437476400": -11.64639,
+ "1437476401": -11.64645,
+ "1437476402": -11.64652,
+ "1437476403": -11.64658,
+ "1437476404": -11.64665,
+ "1437476405": -11.64673,
+ "1437476406": -11.64681,
+ "1437476407": -11.64689,
+ "1437476408": -11.64696,
+ "1437476410": -11.64702,
+ "1437476411": -11.64707,
+ "1437476412": -11.64712,
+ "1437476413": -11.64715,
+ "1437476414": -11.64718,
+ "1437476415": -11.6472,
+ "1437476416": -11.64723,
+ "1437476417": -11.64725,
+ "1437476418": -11.64727,
+ "1437476419": -11.64729,
+ "1437476420": -11.6473,
+ "1437476421": -11.64732,
+ "1437476422": -11.64733,
+ "1437476423": -11.64735,
+ "1437476424": -11.64736,
+ "1437476425": -11.64737,
+ "1437476426": -11.64738,
+ "1437476427": -11.64739,
+ "1437476428": -11.6474,
+ "1437476429": -11.64741,
+ "1437476430": -11.64742,
+ "1437476431": -11.64743,
+ "1437476432": -11.64744,
+ "1437476433": -11.64745,
+ "1437476434": -11.64746,
+ "1437476435": -11.64747,
+ "1437476436": -11.64747,
+ "1437476437": -11.64748,
+ "1437476438": -11.64749,
+ "1437476439": -11.6475,
+ "1437476441": -11.6475,
+ "1437476442": -11.64751,
+ "1437476443": -11.64752,
+ "1437476444": -11.64753,
+ "1437476445": -11.64754,
+ "1437476446": -11.64755,
+ "1437476447": -11.64756,
+ "1437476448": -11.64757,
+ "1437476449": -11.64759,
+ "1437476450": -11.64761,
+ "1437476451": -11.64762,
+ "1437476452": -11.64765,
+ "1437476453": -11.64767,
+ "1437476454": -11.6477,
+ "1437476455": -11.64774,
+ "1437476456": -11.64777,
+ "1437476457": -11.64781,
+ "1437476458": -11.64785,
+ "1437476459": -11.6479,
+ "1437476460": -11.64796,
+ "1437476461": -11.64802,
+ "1437476462": -11.64809,
+ "1437476463": -11.64816,
+ "1437476464": -11.64823,
+ "1437476465": -11.6483,
+ "1437476467": -11.64838,
+ "1437476468": -11.64846,
+ "1437476469": -11.64855,
+ "1437476470": -11.64864,
+ "1437476471": -11.64872,
+ "1437476472": -11.6488,
+ "1437476473": -11.64888,
+ "1437476474": -11.64897,
+ "1437476475": -11.64905,
+ "1437476476": -11.64913,
+ "1437476477": -11.6492,
+ "1437476478": -11.64927,
+ "1437476479": -11.64935,
+ "1437476480": -11.64943,
+ "1437476481": -11.64951,
+ "1437476482": -11.64959,
+ "1437476483": -11.64967,
+ "1437476484": -11.64975,
+ "1437476485": -11.64984,
+ "1437476486": -11.64992,
+ "1437476487": -11.65001,
+ "1437476488": -11.6501,
+ "1437476490": -11.65019,
+ "1437476491": -11.65028,
+ "1437476492": -11.65038,
+ "1437476493": -11.65047,
+ "1437476494": -11.65057,
+ "1437476495": -11.65065,
+ "1437476496": -11.6507,
+ "1437476497": -11.65073,
+ "1437476498": -11.65074,
+ "1437476499": -11.65076,
+ "1437476500": -11.65076,
+ "1437476501": -11.65077,
+ "1437476502": -11.65079,
+ "1437476503": -11.65084,
+ "1437476504": -11.65091,
+ "1437476505": -11.65099,
+ "1437476506": -11.65109,
+ "1437476507": -11.65119,
+ "1437476508": -11.65129,
+ "1437476509": -11.65138,
+ "1437476510": -11.65144,
+ "1437476511": -11.65149,
+ "1437476512": -11.65151,
+ "1437476513": -11.65149,
+ "1437476514": -11.65144,
+ "1437476515": -11.65133,
+ "1437476516": -11.6512,
+ "1437476517": -11.65107,
+ "1437476518": -11.65093,
+ "1437476519": -11.65081,
+ "1437476521": -11.65074,
+ "1437476522": -11.65074,
+ "1437476523": -11.65078,
+ "1437476524": -11.65084,
+ "1437476525": -11.6509,
+ "1437476526": -11.65094,
+ "1437476527": -11.6509,
+ "1437476528": -11.65082,
+ "1437476529": -11.6507,
+ "1437476530": -11.65057,
+ "1437476531": -11.65046,
+ "1437476532": -11.65038,
+ "1437476533": -11.65028,
+ "1437476534": -11.65019,
+ "1437476535": -11.65009,
+ "1437476536": -11.65001,
+ "1437476537": -11.64992,
+ "1437476538": -11.64983,
+ "1437476539": -11.64973,
+ "1437476540": -11.64963,
+ "1437476541": -11.64951,
+ "1437476542": -11.64938,
+ "1437476543": -11.64927,
+ "1437476544": -11.6492,
+ "1437476545": -11.64914,
+ "1437476547": -11.64907,
+ "1437476548": -11.64902,
+ "1437476549": -11.64897,
+ "1437476550": -11.64892,
+ "1437476551": -11.64888,
+ "1437476552": -11.64884,
+ "1437476553": -11.64878,
+ "1437476554": -11.64873,
+ "1437476555": -11.64866,
+ "1437476556": -11.64855,
+ "1437476557": -11.64844,
+ "1437476558": -11.64836,
+ "1437476559": -11.64829,
+ "1437476560": -11.64822,
+ "1437476561": -11.64816,
+ "1437476562": -11.6481,
+ "1437476563": -11.64805,
+ "1437476564": -11.64799,
+ "1437476565": -11.64794,
+ "1437476566": -11.64787,
+ "1437476567": -11.6478,
+ "1437476568": -11.64773,
+ "1437476569": -11.64764,
+ "1437476570": -11.64753,
+ "1437476571": -11.64744,
+ "1437476572": -11.64735,
+ "1437476573": -11.64727,
+ "1437476574": -11.64718,
+ "1437476576": -11.64709,
+ "1437476577": -11.647,
+ "1437476578": -11.64691,
+ "1437476579": -11.64682,
+ "1437476580": -11.64673,
+ "1437476581": -11.64665,
+ "1437476582": -11.64656,
+ "1437476583": -11.64648,
+ "1437476584": -11.6464,
+ "1437476585": -11.64632,
+ "1437476586": -11.64623,
+ "1437476587": -11.64615,
+ "1437476588": -11.64607,
+ "1437476589": -11.646,
+ "1437476590": -11.64592,
+ "1437476591": -11.64584,
+ "1437476592": -11.64576,
+ "1437476593": -11.64568,
+ "1437476594": -11.64561,
+ "1437476595": -11.64554,
+ "1437476596": -11.64549,
+ "1437476597": -11.64545,
+ "1437476598": -11.6454,
+ "1437476599": -11.64532,
+ "1437476601": -11.64524,
+ "1437476602": -11.64517,
+ "1437476603": -11.64513,
+ "1437476604": -11.64509,
+ "1437476605": -11.64505,
+ "1437476606": -11.64502,
+ "1437476607": -11.64499,
+ "1437476608": -11.64496,
+ "1437476609": -11.64494,
+ "1437476610": -11.64491,
+ "1437476611": -11.64489,
+ "1437476612": -11.64486,
+ "1437476613": -11.64484,
+ "1437476614": -11.64481,
+ "1437476615": -11.64479,
+ "1437476616": -11.64476,
+ "1437476617": -11.64474,
+ "1437476618": -11.64472,
+ "1437476619": -11.64469,
+ "1437476620": -11.64467,
+ "1437476621": -11.64465,
+ "1437476622": -11.64463,
+ "1437476623": -11.6446,
+ "1437476624": -11.64458,
+ "1437476625": -11.64456,
+ "1437476627": -11.64453,
+ "1437476628": -11.6445,
+ "1437476629": -11.64448,
+ "1437476630": -11.64445,
+ "1437476631": -11.64443,
+ "1437476632": -11.6444,
+ "1437476633": -11.64438,
+ "1437476634": -11.64435,
+ "1437476635": -11.64432,
+ "1437476636": -11.64429,
+ "1437476637": -11.64426,
+ "1437476638": -11.64423,
+ "1437476639": -11.6442,
+ "1437476640": -11.64417,
+ "1437476641": -11.64413,
+ "1437476642": -11.64409,
+ "1437476643": -11.64403,
+ "1437476644": -11.64397,
+ "1437476645": -11.64391,
+ "1437476646": -11.64383,
+ "1437476647": -11.64376,
+ "1437476648": -11.64368,
+ "1437476649": -11.64359,
+ "1437476650": -11.64349,
+ "1437476651": -11.64339,
+ "1437476652": -11.64329,
+ "1437476653": -11.64318,
+ "1437476654": -11.64307,
+ "1437476655": -11.64296,
+ "1437476656": -11.64284,
+ "1437476658": -11.64273,
+ "1437476659": -11.64264,
+ "1437476660": -11.6426,
+ "1437476661": -11.64259,
+ "1437476662": -11.64261,
+ "1437476663": -11.64266,
+ "1437476664": -11.64273,
+ "1437476665": -11.64279,
+ "1437476666": -11.64289,
+ "1437476667": -11.64301,
+ "1437476668": -11.64313,
+ "1437476669": -11.64325,
+ "1437476670": -11.64337,
+ "1437476671": -11.64345,
+ "1437476672": -11.64341,
+ "1437476673": -11.64334,
+ "1437476674": -11.64326,
+ "1437476675": -11.64317,
+ "1437476676": -11.64308,
+ "1437476677": -11.64298,
+ "1437476678": -11.64286,
+ "1437476679": -11.64276,
+ "1437476680": -11.64266,
+ "1437476681": -11.64256,
+ "1437476682": -11.64247,
+ "1437476683": -11.6424,
+ "1437476684": -11.64231,
+ "1437476685": -11.64221,
+ "1437476686": -11.64209,
+ "1437476687": -11.64197,
+ "1437476688": -11.64192,
+ "1437476689": -11.6419,
+ "1437476690": -11.64187,
+ "1437476691": -11.64183,
+ "1437476692": -11.64177,
+ "1437476694": -11.64169,
+ "1437476695": -11.64161,
+ "1437476696": -11.6415,
+ "1437476697": -11.64138,
+ "1437476698": -11.64125,
+ "1437476699": -11.64113,
+ "1437476700": -11.64102,
+ "1437476701": -11.64094,
+ "1437476702": -11.64088,
+ "1437476703": -11.64084,
+ "1437476704": -11.6408,
+ "1437476705": -11.64076,
+ "1437476706": -11.64077,
+ "1437476707": -11.64084,
+ "1437476708": -11.64094,
+ "1437476709": -11.64105,
+ "1437476710": -11.64117,
+ "1437476711": -11.64125,
+ "1437476712": -11.64126,
+ "1437476713": -11.64123,
+ "1437476714": -11.64121,
+ "1437476715": -11.64122,
+ "1437476716": -11.64128,
+ "1437476717": -11.64137,
+ "1437476718": -11.64146,
+ "1437476719": -11.64155,
+ "1437476720": -11.64164,
+ "1437476721": -11.64173,
+ "1437476723": -11.64181,
+ "1437476724": -11.64183,
+ "1437476725": -11.64177,
+ "1437476726": -11.6417,
+ "1437476727": -11.64162,
+ "1437476728": -11.64155,
+ "1437476729": -11.64152,
+ "1437476730": -11.64154,
+ "1437476731": -11.64158,
+ "1437476732": -11.64152,
+ "1437476733": -11.64142,
+ "1437476734": -11.64132,
+ "1437476735": -11.64122,
+ "1437476736": -11.64111,
+ "1437476737": -11.641,
+ "1437476738": -11.64088,
+ "1437476739": -11.64076,
+ "1437476740": -11.64066,
+ "1437476741": -11.64056,
+ "1437476742": -11.64048,
+ "1437476743": -11.64041,
+ "1437476744": -11.64035,
+ "1437476745": -11.64029,
+ "1437476746": -11.64023,
+ "1437476747": -11.64018,
+ "1437476748": -11.64013,
+ "1437476749": -11.64009,
+ "1437476750": -11.64004,
+ "1437476751": -11.63999,
+ "1437476752": -11.63995,
+ "1437476753": -11.6399,
+ "1437476755": -11.63985,
+ "1437476756": -11.6398,
+ "1437476757": -11.63974,
+ "1437476758": -11.63968,
+ "1437476759": -11.63961,
+ "1437476760": -11.63954,
+ "1437476761": -11.63947,
+ "1437476762": -11.63938,
+ "1437476763": -11.63927,
+ "1437476764": -11.63916,
+ "1437476765": -11.63905,
+ "1437476766": -11.63893,
+ "1437476767": -11.63882,
+ "1437476768": -11.63869,
+ "1437476769": -11.63857,
+ "1437476770": -11.63845,
+ "1437476771": -11.63832,
+ "1437476772": -11.63819,
+ "1437476773": -11.63806,
+ "1437476774": -11.63794,
+ "1437476775": -11.63782,
+ "1437476776": -11.6377,
+ "1437476777": -11.63758,
+ "1437476778": -11.63747,
+ "1437476779": -11.63735,
+ "1437476780": -11.63725,
+ "1437476781": -11.63714,
+ "1437476782": -11.63704,
+ "1437476783": -11.63693,
+ "1437476784": -11.63683,
+ "1437476785": -11.63674,
+ "1437476786": -11.63664,
+ "1437476787": -11.63655,
+ "1437476788": -11.63646,
+ "1437476789": -11.63638,
+ "1437476791": -11.63629,
+ "1437476792": -11.63621,
+ "1437476793": -11.63613,
+ "1437476794": -11.63606,
+ "1437476795": -11.636,
+ "1437476796": -11.63593,
+ "1437476797": -11.63588,
+ "1437476798": -11.63584,
+ "1437476799": -11.63579,
+ "1437476800": -11.63575,
+ "1437476801": -11.6357,
+ "1437476802": -11.63567,
+ "1437476803": -11.63563,
+ "1437476804": -11.6356,
+ "1437476805": -11.63557,
+ "1437476806": -11.63555,
+ "1437476807": -11.63553,
+ "1437476808": -11.63551,
+ "1437476809": -11.6355,
+ "1437476810": -11.6355,
+ "1437476811": -11.63551,
+ "1437476812": -11.63552,
+ "1437476813": -11.63555,
+ "1437476814": -11.63558,
+ "1437476815": -11.63562,
+ "1437476816": -11.63567,
+ "1437476817": -11.63572,
+ "1437476818": -11.63579,
+ "1437476819": -11.63585,
+ "1437476820": -11.63592,
+ "1437476821": -11.636,
+ "1437476822": -11.63607,
+ "1437476824": -11.63615,
+ "1437476825": -11.63623,
+ "1437476826": -11.63631,
+ "1437476827": -11.63639,
+ "1437476828": -11.63647,
+ "1437476829": -11.63655,
+ "1437476830": -11.63662,
+ "1437476831": -11.6367,
+ "1437476832": -11.63678,
+ "1437476833": -11.63685,
+ "1437476834": -11.63693,
+ "1437476835": -11.637,
+ "1437476836": -11.63708,
+ "1437476837": -11.63715,
+ "1437476838": -11.63722,
+ "1437476839": -11.63729,
+ "1437476840": -11.63735,
+ "1437476841": -11.63739,
+ "1437476842": -11.6374,
+ "1437476843": -11.63741,
+ "1437476844": -11.63738,
+ "1437476845": -11.63733,
+ "1437476846": -11.63726,
+ "1437476847": -11.63719,
+ "1437476848": -11.63711,
+ "1437476849": -11.63702,
+ "1437476850": -11.63694,
+ "1437476851": -11.63686,
+ "1437476852": -11.63678,
+ "1437476854": -11.6367,
+ "1437476855": -11.63663,
+ "1437476856": -11.63657,
+ "1437476857": -11.63654,
+ "1437476858": -11.63655,
+ "1437476859": -11.6366,
+ "1437476860": -11.63668,
+ "1437476861": -11.63677,
+ "1437476862": -11.63686,
+ "1437476863": -11.63695,
+ "1437476864": -11.63704,
+ "1437476865": -11.63714,
+ "1437476866": -11.63723,
+ "1437476867": -11.63732,
+ "1437476868": -11.63742,
+ "1437476869": -11.63752,
+ "1437476870": -11.63762,
+ "1437476871": -11.63772,
+ "1437476872": -11.63781,
+ "1437476873": -11.63792,
+ "1437476874": -11.63801,
+ "1437476875": -11.63812,
+ "1437476876": -11.63822,
+ "1437476877": -11.63832,
+ "1437476878": -11.63842,
+ "1437476879": -11.63848,
+ "1437476880": -11.63849,
+ "1437476881": -11.63847,
+ "1437476882": -11.63845,
+ "1437476883": -11.6384,
+ "1437476884": -11.63835,
+ "1437476886": -11.6383,
+ "1437476887": -11.63821,
+ "1437476888": -11.63811,
+ "1437476889": -11.63802,
+ "1437476890": -11.63795,
+ "1437476891": -11.63792,
+ "1437476892": -11.63792,
+ "1437476893": -11.63792,
+ "1437476894": -11.63793,
+ "1437476895": -11.63793,
+ "1437476896": -11.63793,
+ "1437476897": -11.63794,
+ "1437476898": -11.63794,
+ "1437476899": -11.63795,
+ "1437476900": -11.63796,
+ "1437476901": -11.63796,
+ "1437476902": -11.63794,
+ "1437476903": -11.63793,
+ "1437476904": -11.63793,
+ "1437476905": -11.63793,
+ "1437476906": -11.63793,
+ "1437476907": -11.63793,
+ "1437476908": -11.63794,
+ "1437476910": -11.63794,
+ "1437476911": -11.63795,
+ "1437476912": -11.63796,
+ "1437476913": -11.63798,
+ "1437476914": -11.63799,
+ "1437476915": -11.63801,
+ "1437476916": -11.63803,
+ "1437476917": -11.63806,
+ "1437476918": -11.63808,
+ "1437476919": -11.63811,
+ "1437476920": -11.63815,
+ "1437476921": -11.63819,
+ "1437476922": -11.63824,
+ "1437476923": -11.63827,
+ "1437476924": -11.6383,
+ "1437476925": -11.63833,
+ "1437476926": -11.63835,
+ "1437476927": -11.63836,
+ "1437476928": -11.63838,
+ "1437476929": -11.63839,
+ "1437476930": -11.6384,
+ "1437476931": -11.63841,
+ "1437476932": -11.63842,
+ "1437476933": -11.63843,
+ "1437476934": -11.63844,
+ "1437476935": -11.63845,
+ "1437476936": -11.63846,
+ "1437476938": -11.63847,
+ "1437476939": -11.63848,
+ "1437476940": -11.63849,
+ "1437476941": -11.6385,
+ "1437476942": -11.63851,
+ "1437476943": -11.63852,
+ "1437476944": -11.63853,
+ "1437476945": -11.63854,
+ "1437476946": -11.63855,
+ "1437476947": -11.63856,
+ "1437476948": -11.63857,
+ "1437476949": -11.63858,
+ "1437476950": -11.63859,
+ "1437476951": -11.6386,
+ "1437476952": -11.6386,
+ "1437476953": -11.63861,
+ "1437476954": -11.63862,
+ "1437476955": -11.63863,
+ "1437476956": -11.63864,
+ "1437476957": -11.63865,
+ "1437476958": -11.63865,
+ "1437476959": -11.63866,
+ "1437476960": -11.63867,
+ "1437476961": -11.63868,
+ "1437476962": -11.63869,
+ "1437476963": -11.6387,
+ "1437476964": -11.6387,
+ "1437476965": -11.63871,
+ "1437476966": -11.63872,
+ "1437476967": -11.63873,
+ "1437476969": -11.63874,
+ "1437476970": -11.63875,
+ "1437476971": -11.63876,
+ "1437476972": -11.63877,
+ "1437476973": -11.63878,
+ "1437476974": -11.63878,
+ "1437476975": -11.63879,
+ "1437476976": -11.6388,
+ "1437476977": -11.63881,
+ "1437476978": -11.63882,
+ "1437476979": -11.63883,
+ "1437476980": -11.63884,
+ "1437476981": -11.63885,
+ "1437476982": -11.63886,
+ "1437476983": -11.63887,
+ "1437476984": -11.63888,
+ "1437476985": -11.63889,
+ "1437476986": -11.6389,
+ "1437476987": -11.63891,
+ "1437476988": -11.63892,
+ "1437476989": -11.63894,
+ "1437476990": -11.63894,
+ "1437476991": -11.63896,
+ "1437476992": -11.63897,
+ "1437476993": -11.63898,
+ "1437476994": -11.63899,
+ "1437476996": -11.63901,
+ "1437476997": -11.63902,
+ "1437476998": -11.63904,
+ "1437476999": -11.63906,
+ "1437477000": -11.63908,
+ "1437477001": -11.6391,
+ "1437477002": -11.63912,
+ "1437477003": -11.63915,
+ "1437477004": -11.63918,
+ "1437477005": -11.63921,
+ "1437477006": -11.63925,
+ "1437477007": -11.6393,
+ "1437477008": -11.63935,
+ "1437477009": -11.6394,
+ "1437477010": -11.63946,
+ "1437477011": -11.63952,
+ "1437477012": -11.63957,
+ "1437477013": -11.6396,
+ "1437477014": -11.63962,
+ "1437477015": -11.63963,
+ "1437477016": -11.63963,
+ "1437477017": -11.63962,
+ "1437477018": -11.6396,
+ "1437477019": -11.63958,
+ "1437477020": -11.63956,
+ "1437477022": -11.63955,
+ "1437477023": -11.63953,
+ "1437477024": -11.63951,
+ "1437477025": -11.63949,
+ "1437477026": -11.63948,
+ "1437477027": -11.63946,
+ "1437477028": -11.63944,
+ "1437477029": -11.63943,
+ "1437477030": -11.63941,
+ "1437477031": -11.63939,
+ "1437477032": -11.63937,
+ "1437477033": -11.63936,
+ "1437477034": -11.63934,
+ "1437477035": -11.63932,
+ "1437477036": -11.63931,
+ "1437477037": -11.63929,
+ "1437477038": -11.63927,
+ "1437477039": -11.63925,
+ "1437477040": -11.63924,
+ "1437477041": -11.63922,
+ "1437477042": -11.6392,
+ "1437477043": -11.63919,
+ "1437477044": -11.63917,
+ "1437477045": -11.63916,
+ "1437477046": -11.63914,
+ "1437477047": -11.63913,
+ "1437477048": -11.63911,
+ "1437477050": -11.6391,
+ "1437477051": -11.63908,
+ "1437477052": -11.63907,
+ "1437477053": -11.63905,
+ "1437477054": -11.63903,
+ "1437477055": -11.63902,
+ "1437477056": -11.639,
+ "1437477057": -11.63899,
+ "1437477058": -11.63897,
+ "1437477059": -11.63896,
+ "1437477060": -11.63895,
+ "1437477061": -11.63894,
+ "1437477062": -11.63894,
+ "1437477063": -11.63893,
+ "1437477064": -11.63893,
+ "1437477065": -11.63894,
+ "1437477066": -11.63895,
+ "1437477067": -11.63898,
+ "1437477068": -11.63901,
+ "1437477069": -11.63906,
+ "1437477070": -11.63912,
+ "1437477071": -11.63918,
+ "1437477072": -11.63924,
+ "1437477073": -11.6393,
+ "1437477075": -11.63936,
+ "1437477076": -11.63943,
+ "1437477077": -11.63949,
+ "1437477078": -11.63955,
+ "1437477079": -11.63961,
+ "1437477080": -11.63968,
+ "1437477081": -11.63974,
+ "1437477082": -11.6398,
+ "1437477083": -11.63986,
+ "1437477084": -11.63992,
+ "1437477085": -11.63998,
+ "1437477086": -11.64005,
+ "1437477087": -11.64011,
+ "1437477088": -11.64017,
+ "1437477089": -11.64024,
+ "1437477090": -11.6403,
+ "1437477091": -11.64036,
+ "1437477092": -11.64043,
+ "1437477093": -11.6405,
+ "1437477094": -11.64056,
+ "1437477095": -11.64063,
+ "1437477096": -11.6407,
+ "1437477097": -11.64077,
+ "1437477098": -11.64084,
+ "1437477099": -11.64091,
+ "1437477100": -11.64098,
+ "1437477101": -11.64105,
+ "1437477102": -11.64113,
+ "1437477103": -11.64121,
+ "1437477104": -11.64129,
+ "1437477105": -11.64137,
+ "1437477106": -11.64145,
+ "1437477107": -11.64154,
+ "1437477109": -11.64162,
+ "1437477110": -11.64171,
+ "1437477111": -11.6418,
+ "1437477112": -11.6419,
+ "1437477113": -11.642,
+ "1437477114": -11.64211,
+ "1437477115": -11.64222,
+ "1437477116": -11.64233,
+ "1437477117": -11.64245,
+ "1437477118": -11.64257,
+ "1437477119": -11.64268,
+ "1437477120": -11.64279,
+ "1437477121": -11.64291,
+ "1437477122": -11.64301,
+ "1437477123": -11.64312,
+ "1437477124": -11.64323,
+ "1437477125": -11.64334,
+ "1437477126": -11.64345,
+ "1437477127": -11.64355,
+ "1437477128": -11.64366,
+ "1437477129": -11.64377,
+ "1437477130": -11.64387,
+ "1437477131": -11.64398,
+ "1437477132": -11.64408,
+ "1437477133": -11.64418,
+ "1437477134": -11.64428,
+ "1437477135": -11.64439,
+ "1437477136": -11.64448,
+ "1437477137": -11.64459,
+ "1437477138": -11.64468,
+ "1437477139": -11.64478,
+ "1437477140": -11.64488,
+ "1437477141": -11.64497,
+ "1437477143": -11.64505,
+ "1437477144": -11.64513,
+ "1437477145": -11.6452,
+ "1437477146": -11.64526,
+ "1437477147": -11.64532,
+ "1437477148": -11.64538,
+ "1437477149": -11.64543,
+ "1437477150": -11.64547,
+ "1437477151": -11.64551,
+ "1437477152": -11.64553,
+ "1437477153": -11.64555,
+ "1437477154": -11.64557,
+ "1437477155": -11.64557,
+ "1437477156": -11.64555,
+ "1437477157": -11.6455,
+ "1437477158": -11.64545,
+ "1437477159": -11.64538,
+ "1437477160": -11.6453,
+ "1437477161": -11.64522,
+ "1437477162": -11.64514,
+ "1437477163": -11.64506,
+ "1437477164": -11.64498,
+ "1437477165": -11.6449,
+ "1437477166": -11.64483,
+ "1437477167": -11.64476,
+ "1437477168": -11.6447,
+ "1437477169": -11.64465,
+ "1437477170": -11.6446,
+ "1437477171": -11.64457,
+ "1437477172": -11.64456,
+ "1437477173": -11.64455,
+ "1437477174": -11.64454,
+ "1437477175": -11.64454,
+ "1437477176": -11.64455,
+ "1437477178": -11.64455,
+ "1437477179": -11.64456,
+ "1437477180": -11.64458,
+ "1437477181": -11.64459,
+ "1437477182": -11.6446,
+ "1437477183": -11.64461,
+ "1437477184": -11.64462,
+ "1437477185": -11.64462,
+ "1437477186": -11.6446,
+ "1437477187": -11.64457,
+ "1437477188": -11.64447,
+ "1437477189": -11.64433,
+ "1437477190": -11.64421,
+ "1437477191": -11.6441,
+ "1437477192": -11.644,
+ "1437477193": -11.64391,
+ "1437477194": -11.64382,
+ "1437477195": -11.64373,
+ "1437477196": -11.64364,
+ "1437477197": -11.64356,
+ "1437477198": -11.64347,
+ "1437477199": -11.64339,
+ "1437477200": -11.64331,
+ "1437477201": -11.64324,
+ "1437477202": -11.64317,
+ "1437477203": -11.64311,
+ "1437477204": -11.64305,
+ "1437477205": -11.64299,
+ "1437477206": -11.64293,
+ "1437477207": -11.64287,
+ "1437477208": -11.64282,
+ "1437477209": -11.64276,
+ "1437477210": -11.64269,
+ "1437477211": -11.64263,
+ "1437477212": -11.64257,
+ "1437477213": -11.6425,
+ "1437477215": -11.64242,
+ "1437477216": -11.64233,
+ "1437477217": -11.64224,
+ "1437477218": -11.64214,
+ "1437477219": -11.64203,
+ "1437477220": -11.64193,
+ "1437477221": -11.64182,
+ "1437477222": -11.6417,
+ "1437477223": -11.64159,
+ "1437477224": -11.64148,
+ "1437477225": -11.64136,
+ "1437477226": -11.64125,
+ "1437477227": -11.64113,
+ "1437477228": -11.64102,
+ "1437477229": -11.64091,
+ "1437477230": -11.6408,
+ "1437477231": -11.64068,
+ "1437477232": -11.64057,
+ "1437477233": -11.64045,
+ "1437477234": -11.64034,
+ "1437477235": -11.64022,
+ "1437477236": -11.64011,
+ "1437477237": -11.63999,
+ "1437477238": -11.63987,
+ "1437477239": -11.63976,
+ "1437477240": -11.63964,
+ "1437477241": -11.63951,
+ "1437477242": -11.63938,
+ "1437477243": -11.63926,
+ "1437477244": -11.63913,
+ "1437477245": -11.63901,
+ "1437477247": -11.63888,
+ "1437477248": -11.63876,
+ "1437477249": -11.63864,
+ "1437477250": -11.63854,
+ "1437477251": -11.63848,
+ "1437477252": -11.63844,
+ "1437477253": -11.63841,
+ "1437477254": -11.63839,
+ "1437477255": -11.63838,
+ "1437477256": -11.63837,
+ "1437477257": -11.63836,
+ "1437477258": -11.63836,
+ "1437477259": -11.63836,
+ "1437477260": -11.63838,
+ "1437477261": -11.63841,
+ "1437477262": -11.63847,
+ "1437477263": -11.6386,
+ "1437477264": -11.63876,
+ "1437477265": -11.63892,
+ "1437477266": -11.63909,
+ "1437477267": -11.63925,
+ "1437477268": -11.6394,
+ "1437477270": -11.63955,
+ "1437477271": -11.63971,
+ "1437477272": -11.63986,
+ "1437477273": -11.64002,
+ "1437477274": -11.64018,
+ "1437477275": -11.64033,
+ "1437477276": -11.6405,
+ "1437477277": -11.64066,
+ "1437477278": -11.64081,
+ "1437477279": -11.64097,
+ "1437477280": -11.64112,
+ "1437477281": -11.64127,
+ "1437477282": -11.64142,
+ "1437477283": -11.64157,
+ "1437477284": -11.64172,
+ "1437477285": -11.64187,
+ "1437477286": -11.64201,
+ "1437477287": -11.64216,
+ "1437477288": -11.6423,
+ "1437477289": -11.64245,
+ "1437477290": -11.6426,
+ "1437477291": -11.64274,
+ "1437477292": -11.64287,
+ "1437477294": -11.643,
+ "1437477295": -11.64313,
+ "1437477296": -11.64325,
+ "1437477297": -11.64337,
+ "1437477298": -11.64348,
+ "1437477299": -11.6436,
+ "1437477300": -11.64371,
+ "1437477301": -11.64382,
+ "1437477302": -11.64393,
+ "1437477303": -11.64404,
+ "1437477304": -11.64414,
+ "1437477305": -11.64425,
+ "1437477306": -11.64435,
+ "1437477307": -11.64445,
+ "1437477308": -11.64455,
+ "1437477309": -11.64465,
+ "1437477310": -11.64475,
+ "1437477311": -11.64485,
+ "1437477312": -11.64495,
+ "1437477313": -11.64505,
+ "1437477314": -11.64515,
+ "1437477315": -11.64525,
+ "1437477316": -11.64535,
+ "1437477317": -11.64544,
+ "1437477318": -11.64554,
+ "1437477319": -11.64564,
+ "1437477321": -11.64574,
+ "1437477322": -11.64584,
+ "1437477323": -11.64593,
+ "1437477324": -11.64603,
+ "1437477325": -11.64612,
+ "1437477326": -11.64621,
+ "1437477327": -11.64631,
+ "1437477328": -11.6464,
+ "1437477329": -11.6465,
+ "1437477330": -11.6466,
+ "1437477331": -11.64672,
+ "1437477332": -11.64683,
+ "1437477333": -11.64694,
+ "1437477334": -11.64703,
+ "1437477335": -11.64709,
+ "1437477336": -11.64714,
+ "1437477337": -11.64718,
+ "1437477338": -11.64722,
+ "1437477339": -11.64725,
+ "1437477340": -11.64728,
+ "1437477341": -11.64731,
+ "1437477342": -11.64733,
+ "1437477343": -11.64736,
+ "1437477345": -11.64738,
+ "1437477346": -11.6474,
+ "1437477347": -11.64742,
+ "1437477348": -11.64744,
+ "1437477349": -11.64745,
+ "1437477350": -11.64746,
+ "1437477351": -11.64746,
+ "1437477352": -11.64747,
+ "1437477353": -11.64747,
+ "1437477354": -11.64747,
+ "1437477355": -11.64747,
+ "1437477356": -11.64747,
+ "1437477376": -11.64746,
+ "1437477377": -11.64746,
+ "1437477378": -11.64747,
+ "1437477379": -11.64747,
+ "1437477380": -11.64748,
+ "1437477381": -11.64749,
+ "1437477383": -11.6475,
+ "1437477384": -11.6475,
+ "1437477385": -11.6475,
+ "1437477386": -11.6475,
+ "1437477387": -11.6475,
+ "1437477388": -11.6475,
+ "1437477392": -11.6475,
+ "1437477393": -11.64751,
+ "1437477394": -11.64751,
+ "1437477395": -11.64751,
+ "1437477397": -11.64751,
+ "1437477398": -11.64751,
+ "1437477399": -11.64752,
+ "1437477400": -11.64752,
+ "1437477401": -11.64752,
+ "1437477402": -11.64752,
+ "1437477403": -11.64753,
+ "1437477404": -11.64753,
+ "1437477405": -11.64753,
+ "1437477406": -11.64753,
+ "1437477407": -11.64753,
+ "1437477408": -11.64753,
+ "1437477411": -11.64753,
+ "1437477412": -11.64753,
+ "1437477413": -11.64753,
+ "1437477414": -11.64753,
+ "1437477415": -11.64753,
+ "1437477417": -11.64754,
+ "1437477418": -11.64754,
+ "1437477419": -11.64754,
+ "1437477420": -11.64754,
+ "1437477421": -11.64755,
+ "1437477422": -11.64755,
+ "1437477423": -11.64755,
+ "1437477428": -11.64755,
+ "1437477429": -11.64755,
+ "1437477430": -11.64755,
+ "1437477432": -11.64756,
+ "1437477433": -11.64756,
+ "1437477434": -11.64757,
+ "1437477435": -11.64757,
+ "1437477436": -11.64757,
+ "1437477437": -11.64758,
+ "1437477438": -11.64758,
+ "1437477439": -11.64759,
+ "1437477440": -11.64759,
+ "1437477441": -11.64759,
+ "1437477442": -11.6476,
+ "1437477443": -11.6476,
+ "1437477444": -11.64761,
+ "1437477445": -11.64761,
+ "1437477446": -11.64762,
+ "1437477447": -11.64762,
+ "1437477448": -11.64762,
+ "1437477449": -11.64763,
+ "1437477450": -11.64763,
+ "1437477451": -11.64764,
+ "1437477452": -11.64764,
+ "1437477453": -11.64764,
+ "1437477454": -11.64765,
+ "1437477455": -11.64765,
+ "1437477456": -11.64766,
+ "1437477457": -11.64766,
+ "1437477458": -11.64766,
+ "1437477459": -11.64766,
+ "1437477461": -11.64766,
+ "1437477465": -11.64766,
+ "1437477466": -11.64766,
+ "1437477467": -11.64767,
+ "1437477468": -11.64767,
+ "1437477469": -11.64768,
+ "1437477470": -11.64769,
+ "1437477471": -11.6477,
+ "1437477472": -11.64771,
+ "1437477473": -11.64771,
+ "1437477474": -11.64772,
+ "1437477475": -11.64773,
+ "1437477476": -11.64774,
+ "1437477477": -11.64774,
+ "1437477478": -11.64775,
+ "1437477479": -11.64776,
+ "1437477480": -11.64777,
+ "1437477481": -11.64778,
+ "1437477482": -11.64779,
+ "1437477483": -11.6478,
+ "1437477484": -11.64781,
+ "1437477485": -11.64782,
+ "1437477486": -11.64783,
+ "1437477487": -11.64785,
+ "1437477488": -11.64786,
+ "1437477489": -11.64786,
+ "1437477490": -11.64786,
+ "1437477491": -11.64786,
+ "1437477492": -11.64787,
+ "1437477493": -11.64788,
+ "1437477494": -11.64789,
+ "1437477495": -11.64791,
+ "1437477496": -11.64793,
+ "1437477497": -11.64795,
+ "1437477498": -11.64797,
+ "1437477500": -11.64799,
+ "1437477501": -11.64802,
+ "1437477502": -11.64804,
+ "1437477503": -11.64807,
+ "1437477504": -11.6481,
+ "1437477505": -11.64813,
+ "1437477506": -11.64816,
+ "1437477507": -11.6482,
+ "1437477508": -11.64823,
+ "1437477509": -11.64827,
+ "1437477510": -11.64831,
+ "1437477511": -11.64834,
+ "1437477512": -11.64838,
+ "1437477513": -11.64842,
+ "1437477514": -11.64846,
+ "1437477515": -11.6485,
+ "1437477516": -11.64853,
+ "1437477517": -11.64857,
+ "1437477518": -11.64861,
+ "1437477519": -11.64864,
+ "1437477520": -11.64867,
+ "1437477521": -11.64869,
+ "1437477522": -11.64872,
+ "1437477523": -11.64874,
+ "1437477524": -11.64876,
+ "1437477525": -11.64878,
+ "1437477526": -11.64879,
+ "1437477527": -11.6488,
+ "1437477528": -11.64881,
+ "1437477529": -11.64882,
+ "1437477530": -11.64883,
+ "1437477532": -11.64884,
+ "1437477533": -11.64884,
+ "1437477534": -11.64885,
+ "1437477535": -11.64885,
+ "1437477536": -11.64886,
+ "1437477537": -11.64887,
+ "1437477538": -11.64888,
+ "1437477539": -11.64889,
+ "1437477540": -11.64889,
+ "1437477541": -11.6489,
+ "1437477542": -11.64891,
+ "1437477543": -11.64891,
+ "1437477544": -11.64892,
+ "1437477545": -11.64892,
+ "1437477546": -11.64893,
+ "1437477547": -11.64894,
+ "1437477548": -11.64894,
+ "1437477549": -11.64895,
+ "1437477550": -11.64895,
+ "1437477551": -11.64896,
+ "1437477552": -11.64896,
+ "1437477553": -11.64897,
+ "1437477555": -11.64898,
+ "1437477556": -11.64898,
+ "1437477557": -11.64899,
+ "1437477558": -11.64899,
+ "1437477559": -11.649,
+ "1437477560": -11.649,
+ "1437477561": -11.64901,
+ "1437477562": -11.64901,
+ "1437477563": -11.64902,
+ "1437477564": -11.64902,
+ "1437477565": -11.64902,
+ "1437477566": -11.64903,
+ "1437477567": -11.64903,
+ "1437477568": -11.64903,
+ "1437477569": -11.64904,
+ "1437477570": -11.64904,
+ "1437477571": -11.64904,
+ "1437477572": -11.64905,
+ "1437477573": -11.64905,
+ "1437477574": -11.64906,
+ "1437477575": -11.64906,
+ "1437477576": -11.64906,
+ "1437477577": -11.64906,
+ "1437477578": -11.64907,
+ "1437477580": -11.64907,
+ "1437477581": -11.64908,
+ "1437477582": -11.64908,
+ "1437477583": -11.64909,
+ "1437477584": -11.6491,
+ "1437477585": -11.64911,
+ "1437477586": -11.64912,
+ "1437477587": -11.64913,
+ "1437477588": -11.64914,
+ "1437477589": -11.64915,
+ "1437477590": -11.64916,
+ "1437477591": -11.64917,
+ "1437477592": -11.64918,
+ "1437477593": -11.64919,
+ "1437477594": -11.6492,
+ "1437477595": -11.64922,
+ "1437477596": -11.64923,
+ "1437477597": -11.64924,
+ "1437477598": -11.64924,
+ "1437477599": -11.64925,
+ "1437477600": -11.64926,
+ "1437477601": -11.64926,
+ "1437477604": -11.64926,
+ "1437477605": -11.64926,
+ "1437477607": -11.64927,
+ "1437477608": -11.64928,
+ "1437477609": -11.64929,
+ "1437477610": -11.64931,
+ "1437477611": -11.64932,
+ "1437477612": -11.64933,
+ "1437477613": -11.64933,
+ "1437477614": -11.64932,
+ "1437477615": -11.6493,
+ "1437477616": -11.64932,
+ "1437477617": -11.64935,
+ "1437477618": -11.64938,
+ "1437477619": -11.64938,
+ "1437477620": -11.64936,
+ "1437477621": -11.64932,
+ "1437477622": -11.64928,
+ "1437477623": -11.64923,
+ "1437477624": -11.64918,
+ "1437477625": -11.64913,
+ "1437477626": -11.64907,
+ "1437477627": -11.649,
+ "1437477628": -11.64893,
+ "1437477629": -11.64886,
+ "1437477630": -11.64878,
+ "1437477631": -11.6487,
+ "1437477632": -11.64861,
+ "1437477633": -11.64853,
+ "1437477634": -11.64844,
+ "1437477635": -11.64835,
+ "1437477636": -11.64827,
+ "1437477638": -11.64818,
+ "1437477639": -11.6481,
+ "1437477640": -11.64802,
+ "1437477641": -11.64794,
+ "1437477642": -11.64786,
+ "1437477643": -11.64779,
+ "1437477644": -11.64773,
+ "1437477645": -11.64767,
+ "1437477646": -11.64762,
+ "1437477647": -11.64758,
+ "1437477648": -11.64754,
+ "1437477649": -11.64751,
+ "1437477650": -11.64748,
+ "1437477651": -11.64745,
+ "1437477652": -11.64742,
+ "1437477653": -11.64739,
+ "1437477654": -11.64736,
+ "1437477655": -11.64734,
+ "1437477656": -11.64738,
+ "1437477657": -11.6474,
+ "1437477658": -11.6474,
+ "1437477659": -11.64741,
+ "1437477660": -11.64742,
+ "1437477661": -11.64742,
+ "1437477662": -11.64742,
+ "1437477663": -11.64742,
+ "1437477664": -11.64742,
+ "1437477665": -11.64742,
+ "1437477666": -11.64742,
+ "1437477667": -11.64743,
+ "1437477668": -11.64743,
+ "1437477669": -11.64743,
+ "1437477671": -11.64744,
+ "1437477672": -11.64744,
+ "1437477673": -11.64744,
+ "1437477674": -11.64744,
+ "1437477676": -11.64745,
+ "1437477677": -11.64745,
+ "1437477678": -11.64745,
+ "1437477679": -11.64745,
+ "1437477680": -11.64746,
+ "1437477681": -11.64746,
+ "1437477682": -11.64746,
+ "1437477683": -11.64746,
+ "1437477684": -11.64746,
+ "1437477685": -11.64746,
+ "1437477688": -11.64746,
+ "1437477689": -11.64746,
+ "1437477690": -11.64746,
+ "1437477691": -11.64747,
+ "1437477692": -11.64747,
+ "1437477693": -11.64747,
+ "1437477695": -11.64748,
+ "1437477696": -11.64748,
+ "1437477697": -11.64748,
+ "1437477698": -11.64749,
+ "1437477699": -11.64749,
+ "1437477700": -11.64749,
+ "1437477701": -11.6475,
+ "1437477702": -11.6475,
+ "1437477703": -11.6475,
+ "1437477704": -11.6475,
+ "1437477705": -11.6475,
+ "1437477706": -11.6475
+ },
+ "longitudes": {
+ "1437474517": 166.95095,
+ "1437474518": 166.95096,
+ "1437474519": 166.95097,
+ "1437474520": 166.95099,
+ "1437474521": 166.95101,
+ "1437474522": 166.95103,
+ "1437474523": 166.95103,
+ "1437474524": 166.95104,
+ "1437474525": 166.95104,
+ "1437474526": 166.95104,
+ "1437474527": 166.95104,
+ "1437474528": 166.95104,
+ "1437474529": 166.95105,
+ "1437474530": 166.95106,
+ "1437474532": 166.95108,
+ "1437474533": 166.95111,
+ "1437474534": 166.95113,
+ "1437474535": 166.95116,
+ "1437474536": 166.95119,
+ "1437474537": 166.95122,
+ "1437474538": 166.95126,
+ "1437474539": 166.95129,
+ "1437474540": 166.95133,
+ "1437474541": 166.95136,
+ "1437474542": 166.95139,
+ "1437474543": 166.95141,
+ "1437474544": 166.95144,
+ "1437474545": 166.95148,
+ "1437474546": 166.95152,
+ "1437474547": 166.95156,
+ "1437474548": 166.95161,
+ "1437474549": 166.95167,
+ "1437474550": 166.95172,
+ "1437474551": 166.95179,
+ "1437474552": 166.95185,
+ "1437474553": 166.95193,
+ "1437474554": 166.952,
+ "1437474555": 166.95208,
+ "1437474556": 166.95216,
+ "1437474557": 166.95225,
+ "1437474558": 166.95233,
+ "1437474559": 166.95242,
+ "1437474560": 166.9525,
+ "1437474561": 166.95257,
+ "1437474562": 166.95265,
+ "1437474563": 166.95272,
+ "1437474564": 166.95279,
+ "1437474566": 166.95286,
+ "1437474567": 166.95292,
+ "1437474568": 166.95298,
+ "1437474569": 166.95304,
+ "1437474570": 166.9531,
+ "1437474571": 166.95316,
+ "1437474572": 166.95322,
+ "1437474573": 166.95328,
+ "1437474574": 166.95333,
+ "1437474575": 166.95339,
+ "1437474576": 166.95345,
+ "1437474577": 166.95352,
+ "1437474578": 166.95359,
+ "1437474579": 166.95365,
+ "1437474580": 166.95372,
+ "1437474581": 166.95379,
+ "1437474582": 166.95386,
+ "1437474583": 166.95394,
+ "1437474584": 166.95402,
+ "1437474585": 166.95412,
+ "1437474586": 166.95422,
+ "1437474587": 166.95432,
+ "1437474588": 166.95441,
+ "1437474589": 166.95449,
+ "1437474590": 166.95456,
+ "1437474591": 166.95462,
+ "1437474592": 166.95468,
+ "1437474593": 166.95474,
+ "1437474594": 166.95479,
+ "1437474595": 166.95485,
+ "1437474596": 166.95491,
+ "1437474597": 166.95496,
+ "1437474598": 166.95504,
+ "1437474599": 166.95514,
+ "1437474600": 166.95523,
+ "1437474601": 166.95531,
+ "1437474603": 166.95536,
+ "1437474604": 166.9554,
+ "1437474605": 166.95542,
+ "1437474606": 166.95544,
+ "1437474607": 166.95546,
+ "1437474608": 166.95547,
+ "1437474609": 166.95548,
+ "1437474610": 166.95549,
+ "1437474611": 166.9555,
+ "1437474612": 166.95551,
+ "1437474613": 166.95551,
+ "1437474614": 166.95552,
+ "1437474615": 166.95552,
+ "1437474616": 166.95552,
+ "1437474617": 166.95552,
+ "1437474618": 166.95552,
+ "1437474619": 166.9555,
+ "1437474620": 166.95548,
+ "1437474621": 166.95544,
+ "1437474622": 166.95534,
+ "1437474623": 166.95524,
+ "1437474624": 166.95514,
+ "1437474626": 166.95504,
+ "1437474627": 166.95496,
+ "1437474628": 166.95487,
+ "1437474629": 166.9548,
+ "1437474630": 166.95477,
+ "1437474631": 166.95478,
+ "1437474632": 166.95481,
+ "1437474633": 166.95486,
+ "1437474634": 166.95494,
+ "1437474635": 166.95502,
+ "1437474636": 166.9551,
+ "1437474637": 166.95518,
+ "1437474638": 166.95526,
+ "1437474639": 166.95534,
+ "1437474640": 166.95543,
+ "1437474641": 166.95551,
+ "1437474642": 166.9556,
+ "1437474643": 166.95568,
+ "1437474644": 166.95577,
+ "1437474645": 166.95586,
+ "1437474646": 166.95594,
+ "1437474647": 166.95602,
+ "1437474648": 166.9561,
+ "1437474649": 166.95618,
+ "1437474650": 166.95624,
+ "1437474652": 166.9563,
+ "1437474653": 166.95636,
+ "1437474654": 166.95641,
+ "1437474655": 166.95646,
+ "1437474656": 166.95651,
+ "1437474657": 166.95655,
+ "1437474658": 166.95659,
+ "1437474659": 166.95662,
+ "1437474660": 166.95666,
+ "1437474661": 166.9567,
+ "1437474662": 166.95673,
+ "1437474663": 166.95677,
+ "1437474664": 166.9568,
+ "1437474665": 166.95684,
+ "1437474666": 166.95687,
+ "1437474667": 166.95688,
+ "1437474668": 166.95687,
+ "1437474669": 166.95685,
+ "1437474670": 166.95683,
+ "1437474671": 166.95681,
+ "1437474672": 166.95679,
+ "1437474673": 166.95676,
+ "1437474674": 166.95674,
+ "1437474675": 166.95671,
+ "1437474676": 166.95669,
+ "1437474677": 166.95666,
+ "1437474678": 166.95664,
+ "1437474679": 166.95662,
+ "1437474681": 166.95659,
+ "1437474682": 166.95656,
+ "1437474683": 166.95654,
+ "1437474684": 166.95651,
+ "1437474685": 166.95648,
+ "1437474686": 166.95645,
+ "1437474687": 166.95642,
+ "1437474688": 166.95639,
+ "1437474689": 166.95637,
+ "1437474690": 166.95634,
+ "1437474691": 166.95631,
+ "1437474692": 166.95628,
+ "1437474693": 166.95625,
+ "1437474694": 166.95622,
+ "1437474695": 166.95619,
+ "1437474696": 166.95616,
+ "1437474697": 166.95614,
+ "1437474698": 166.95611,
+ "1437474699": 166.95608,
+ "1437474700": 166.95605,
+ "1437474701": 166.95602,
+ "1437474702": 166.95599,
+ "1437474703": 166.95595,
+ "1437474705": 166.95592,
+ "1437474706": 166.95589,
+ "1437474707": 166.95586,
+ "1437474708": 166.95583,
+ "1437474709": 166.9558,
+ "1437474710": 166.95577,
+ "1437474711": 166.95574,
+ "1437474712": 166.95571,
+ "1437474713": 166.95567,
+ "1437474714": 166.95564,
+ "1437474715": 166.9556,
+ "1437474716": 166.95557,
+ "1437474717": 166.95553,
+ "1437474718": 166.9555,
+ "1437474719": 166.95546,
+ "1437474720": 166.95543,
+ "1437474721": 166.95539,
+ "1437474722": 166.95536,
+ "1437474723": 166.95532,
+ "1437474724": 166.95529,
+ "1437474725": 166.95525,
+ "1437474726": 166.95521,
+ "1437474727": 166.95518,
+ "1437474728": 166.95514,
+ "1437474729": 166.9551,
+ "1437474730": 166.95507,
+ "1437474732": 166.95504,
+ "1437474733": 166.955,
+ "1437474734": 166.95497,
+ "1437474735": 166.95494,
+ "1437474736": 166.95491,
+ "1437474737": 166.95489,
+ "1437474738": 166.95486,
+ "1437474739": 166.95483,
+ "1437474740": 166.95481,
+ "1437474741": 166.95479,
+ "1437474742": 166.95476,
+ "1437474743": 166.95475,
+ "1437474744": 166.95474,
+ "1437474745": 166.95475,
+ "1437474746": 166.95478,
+ "1437474747": 166.95482,
+ "1437474748": 166.95488,
+ "1437474749": 166.95495,
+ "1437474750": 166.95502,
+ "1437474751": 166.9551,
+ "1437474752": 166.95517,
+ "1437474753": 166.95523,
+ "1437474754": 166.95529,
+ "1437474755": 166.95536,
+ "1437474756": 166.95541,
+ "1437474757": 166.95547,
+ "1437474758": 166.95552,
+ "1437474760": 166.95557,
+ "1437474761": 166.95562,
+ "1437474762": 166.95566,
+ "1437474763": 166.95571,
+ "1437474764": 166.95575,
+ "1437474765": 166.95579,
+ "1437474766": 166.95584,
+ "1437474767": 166.95589,
+ "1437474768": 166.95593,
+ "1437474769": 166.95597,
+ "1437474770": 166.95601,
+ "1437474771": 166.95605,
+ "1437474772": 166.95609,
+ "1437474773": 166.95613,
+ "1437474774": 166.95618,
+ "1437474775": 166.95622,
+ "1437474776": 166.95626,
+ "1437474777": 166.9563,
+ "1437474778": 166.95634,
+ "1437474779": 166.95638,
+ "1437474780": 166.95642,
+ "1437474781": 166.95645,
+ "1437474782": 166.95649,
+ "1437474783": 166.95653,
+ "1437474785": 166.95657,
+ "1437474786": 166.95661,
+ "1437474787": 166.95665,
+ "1437474788": 166.95669,
+ "1437474789": 166.95673,
+ "1437474790": 166.95677,
+ "1437474791": 166.95681,
+ "1437474792": 166.95685,
+ "1437474793": 166.95689,
+ "1437474794": 166.95693,
+ "1437474795": 166.95697,
+ "1437474796": 166.95701,
+ "1437474797": 166.95705,
+ "1437474798": 166.9571,
+ "1437474799": 166.95714,
+ "1437474800": 166.95718,
+ "1437474801": 166.95722,
+ "1437474802": 166.95726,
+ "1437474803": 166.9573,
+ "1437474804": 166.95734,
+ "1437474805": 166.95738,
+ "1437474806": 166.95742,
+ "1437474808": 166.95745,
+ "1437474809": 166.95747,
+ "1437474810": 166.95749,
+ "1437474811": 166.95749,
+ "1437474812": 166.9575,
+ "1437474813": 166.95752,
+ "1437474814": 166.95754,
+ "1437474815": 166.95756,
+ "1437474816": 166.95757,
+ "1437474817": 166.95758,
+ "1437474818": 166.95758,
+ "1437474819": 166.95759,
+ "1437474820": 166.9576,
+ "1437474821": 166.9576,
+ "1437474822": 166.95761,
+ "1437474823": 166.95762,
+ "1437474824": 166.95763,
+ "1437474825": 166.95765,
+ "1437474827": 166.95767,
+ "1437474828": 166.95769,
+ "1437474829": 166.95771,
+ "1437474830": 166.95774,
+ "1437474831": 166.95778,
+ "1437474832": 166.95782,
+ "1437474833": 166.95786,
+ "1437474834": 166.95791,
+ "1437474835": 166.95796,
+ "1437474836": 166.95801,
+ "1437474837": 166.95807,
+ "1437474838": 166.95813,
+ "1437474839": 166.95819,
+ "1437474840": 166.95826,
+ "1437474841": 166.95832,
+ "1437474842": 166.95839,
+ "1437474843": 166.95847,
+ "1437474844": 166.95854,
+ "1437474845": 166.95861,
+ "1437474846": 166.95869,
+ "1437474847": 166.95877,
+ "1437474848": 166.95884,
+ "1437474849": 166.95892,
+ "1437474850": 166.959,
+ "1437474851": 166.95907,
+ "1437474852": 166.95914,
+ "1437474853": 166.9592,
+ "1437474854": 166.95925,
+ "1437474855": 166.9593,
+ "1437474856": 166.95934,
+ "1437474857": 166.95936,
+ "1437474859": 166.95937,
+ "1437474860": 166.95937,
+ "1437474861": 166.95936,
+ "1437474862": 166.95936,
+ "1437474863": 166.95936,
+ "1437474864": 166.95935,
+ "1437474865": 166.95935,
+ "1437474866": 166.95935,
+ "1437474867": 166.95934,
+ "1437474868": 166.95934,
+ "1437474869": 166.95933,
+ "1437474870": 166.95933,
+ "1437474871": 166.95933,
+ "1437474872": 166.95932,
+ "1437474873": 166.95931,
+ "1437474874": 166.95929,
+ "1437474875": 166.95928,
+ "1437474876": 166.95926,
+ "1437474877": 166.95924,
+ "1437474878": 166.95921,
+ "1437474879": 166.95918,
+ "1437474880": 166.95914,
+ "1437474881": 166.9591,
+ "1437474882": 166.95904,
+ "1437474883": 166.95898,
+ "1437474884": 166.9589,
+ "1437474885": 166.95882,
+ "1437474886": 166.95873,
+ "1437474887": 166.95864,
+ "1437474888": 166.95854,
+ "1437474890": 166.95844,
+ "1437474891": 166.95834,
+ "1437474892": 166.95823,
+ "1437474893": 166.95812,
+ "1437474894": 166.958,
+ "1437474895": 166.95789,
+ "1437474896": 166.95777,
+ "1437474897": 166.95766,
+ "1437474898": 166.95755,
+ "1437474899": 166.95746,
+ "1437474900": 166.95737,
+ "1437474901": 166.95729,
+ "1437474902": 166.95722,
+ "1437474903": 166.95714,
+ "1437474904": 166.95707,
+ "1437474905": 166.957,
+ "1437474906": 166.95692,
+ "1437474907": 166.95684,
+ "1437474908": 166.95676,
+ "1437474909": 166.95667,
+ "1437474910": 166.95658,
+ "1437474911": 166.95648,
+ "1437474912": 166.95638,
+ "1437474913": 166.95627,
+ "1437474914": 166.95616,
+ "1437474915": 166.95605,
+ "1437474916": 166.95593,
+ "1437474917": 166.95581,
+ "1437474918": 166.95569,
+ "1437474919": 166.95557,
+ "1437474920": 166.95545,
+ "1437474921": 166.95533,
+ "1437474923": 166.9552,
+ "1437474924": 166.95507,
+ "1437474925": 166.95494,
+ "1437474926": 166.95482,
+ "1437474927": 166.95468,
+ "1437474928": 166.95455,
+ "1437474929": 166.95442,
+ "1437474930": 166.95433,
+ "1437474931": 166.9543,
+ "1437474932": 166.95433,
+ "1437474933": 166.95437,
+ "1437474934": 166.95442,
+ "1437474935": 166.95446,
+ "1437474936": 166.9545,
+ "1437474937": 166.95454,
+ "1437474938": 166.95458,
+ "1437474939": 166.9546,
+ "1437474940": 166.95462,
+ "1437474941": 166.95463,
+ "1437474942": 166.95463,
+ "1437474943": 166.95461,
+ "1437474944": 166.95458,
+ "1437474945": 166.95454,
+ "1437474946": 166.9545,
+ "1437474947": 166.95445,
+ "1437474948": 166.9544,
+ "1437474949": 166.95435,
+ "1437474950": 166.95429,
+ "1437474951": 166.95424,
+ "1437474952": 166.95418,
+ "1437474953": 166.95412,
+ "1437474954": 166.95405,
+ "1437474955": 166.95399,
+ "1437474956": 166.95392,
+ "1437474957": 166.95386,
+ "1437474958": 166.9538,
+ "1437474959": 166.95374,
+ "1437474960": 166.95369,
+ "1437474962": 166.95365,
+ "1437474963": 166.95361,
+ "1437474964": 166.95358,
+ "1437474965": 166.95356,
+ "1437474966": 166.95355,
+ "1437474967": 166.95354,
+ "1437474968": 166.95352,
+ "1437474969": 166.95351,
+ "1437474970": 166.95349,
+ "1437474971": 166.95346,
+ "1437474972": 166.95344,
+ "1437474973": 166.95341,
+ "1437474974": 166.95338,
+ "1437474975": 166.95336,
+ "1437474976": 166.95333,
+ "1437474977": 166.95331,
+ "1437474978": 166.95328,
+ "1437474979": 166.95326,
+ "1437474980": 166.95323,
+ "1437474981": 166.95321,
+ "1437474982": 166.95318,
+ "1437474983": 166.95315,
+ "1437474984": 166.95313,
+ "1437474985": 166.95309,
+ "1437474986": 166.95305,
+ "1437474987": 166.95302,
+ "1437474988": 166.95299,
+ "1437474989": 166.95295,
+ "1437474990": 166.95291,
+ "1437474992": 166.95286,
+ "1437474993": 166.9528,
+ "1437474994": 166.95274,
+ "1437474995": 166.95269,
+ "1437474996": 166.95263,
+ "1437474997": 166.95256,
+ "1437474998": 166.95246,
+ "1437474999": 166.95235,
+ "1437475000": 166.95223,
+ "1437475001": 166.9521,
+ "1437475002": 166.95197,
+ "1437475003": 166.95184,
+ "1437475004": 166.9517,
+ "1437475005": 166.95157,
+ "1437475006": 166.95143,
+ "1437475007": 166.95129,
+ "1437475008": 166.95114,
+ "1437475009": 166.951,
+ "1437475010": 166.95087,
+ "1437475012": 166.95079,
+ "1437475013": 166.95079,
+ "1437475014": 166.95083,
+ "1437475015": 166.95088,
+ "1437475016": 166.95095,
+ "1437475017": 166.95101,
+ "1437475018": 166.95108,
+ "1437475019": 166.95114,
+ "1437475020": 166.9512,
+ "1437475021": 166.95127,
+ "1437475022": 166.95132,
+ "1437475023": 166.95136,
+ "1437475024": 166.9514,
+ "1437475025": 166.95143,
+ "1437475026": 166.95147,
+ "1437475027": 166.95151,
+ "1437475029": 166.95155,
+ "1437475030": 166.95159,
+ "1437475031": 166.95162,
+ "1437475032": 166.95164,
+ "1437475033": 166.95167,
+ "1437475034": 166.95169,
+ "1437475035": 166.95171,
+ "1437475036": 166.95173,
+ "1437475037": 166.95174,
+ "1437475038": 166.95175,
+ "1437475039": 166.95174,
+ "1437475040": 166.95174,
+ "1437475041": 166.95172,
+ "1437475042": 166.95169,
+ "1437475043": 166.95166,
+ "1437475044": 166.95163,
+ "1437475045": 166.95158,
+ "1437475046": 166.95154,
+ "1437475047": 166.9515,
+ "1437475048": 166.95145,
+ "1437475049": 166.95141,
+ "1437475050": 166.95136,
+ "1437475051": 166.95132,
+ "1437475052": 166.95128,
+ "1437475054": 166.95123,
+ "1437475055": 166.95119,
+ "1437475056": 166.95115,
+ "1437475057": 166.95113,
+ "1437475058": 166.9511,
+ "1437475059": 166.95107,
+ "1437475060": 166.95104,
+ "1437475061": 166.951,
+ "1437475062": 166.95097,
+ "1437475063": 166.95094,
+ "1437475064": 166.95091,
+ "1437475065": 166.95088,
+ "1437475066": 166.95085,
+ "1437475067": 166.95082,
+ "1437475068": 166.95079,
+ "1437475069": 166.95076,
+ "1437475070": 166.95073,
+ "1437475071": 166.9507,
+ "1437475072": 166.95066,
+ "1437475073": 166.95063,
+ "1437475074": 166.9506,
+ "1437475075": 166.95056,
+ "1437475076": 166.95051,
+ "1437475077": 166.95048,
+ "1437475078": 166.95044,
+ "1437475079": 166.95041,
+ "1437475080": 166.95043,
+ "1437475081": 166.95048,
+ "1437475083": 166.95057,
+ "1437475084": 166.95067,
+ "1437475085": 166.95077,
+ "1437475086": 166.95087,
+ "1437475087": 166.95098,
+ "1437475088": 166.95103,
+ "1437475089": 166.95112,
+ "1437475090": 166.95121,
+ "1437475091": 166.9513,
+ "1437475092": 166.95139,
+ "1437475093": 166.95148,
+ "1437475094": 166.95157,
+ "1437475095": 166.95165,
+ "1437475096": 166.95173,
+ "1437475097": 166.95181,
+ "1437475098": 166.95189,
+ "1437475099": 166.95196,
+ "1437475100": 166.95204,
+ "1437475101": 166.9521,
+ "1437475102": 166.95217,
+ "1437475103": 166.95222,
+ "1437475104": 166.95227,
+ "1437475105": 166.95231,
+ "1437475106": 166.95233,
+ "1437475107": 166.95233,
+ "1437475108": 166.95233,
+ "1437475109": 166.95232,
+ "1437475110": 166.9523,
+ "1437475112": 166.95229,
+ "1437475113": 166.95228,
+ "1437475114": 166.95228,
+ "1437475115": 166.95229,
+ "1437475116": 166.9523,
+ "1437475117": 166.95232,
+ "1437475118": 166.95235,
+ "1437475119": 166.95237,
+ "1437475120": 166.95239,
+ "1437475121": 166.9524,
+ "1437475122": 166.95242,
+ "1437475123": 166.95243,
+ "1437475124": 166.95244,
+ "1437475125": 166.95244,
+ "1437475126": 166.95245,
+ "1437475127": 166.95244,
+ "1437475128": 166.95244,
+ "1437475129": 166.95244,
+ "1437475130": 166.95243,
+ "1437475131": 166.95243,
+ "1437475132": 166.95242,
+ "1437475133": 166.95241,
+ "1437475134": 166.9524,
+ "1437475135": 166.95239,
+ "1437475136": 166.95237,
+ "1437475137": 166.95235,
+ "1437475138": 166.95233,
+ "1437475139": 166.9523,
+ "1437475140": 166.95225,
+ "1437475141": 166.95219,
+ "1437475142": 166.95212,
+ "1437475143": 166.95203,
+ "1437475145": 166.95192,
+ "1437475146": 166.95182,
+ "1437475147": 166.9517,
+ "1437475148": 166.95159,
+ "1437475149": 166.95148,
+ "1437475150": 166.95136,
+ "1437475151": 166.95125,
+ "1437475152": 166.95114,
+ "1437475153": 166.95104,
+ "1437475154": 166.95095,
+ "1437475155": 166.95086,
+ "1437475156": 166.95077,
+ "1437475157": 166.95069,
+ "1437475158": 166.95059,
+ "1437475159": 166.95049,
+ "1437475160": 166.95038,
+ "1437475161": 166.95027,
+ "1437475162": 166.95015,
+ "1437475163": 166.95004,
+ "1437475164": 166.94995,
+ "1437475165": 166.94989,
+ "1437475166": 166.94986,
+ "1437475167": 166.94983,
+ "1437475168": 166.94979,
+ "1437475169": 166.94974,
+ "1437475170": 166.94965,
+ "1437475171": 166.94952,
+ "1437475173": 166.9494,
+ "1437475174": 166.94928,
+ "1437475175": 166.94917,
+ "1437475176": 166.94906,
+ "1437475177": 166.94895,
+ "1437475178": 166.94884,
+ "1437475179": 166.94875,
+ "1437475180": 166.94869,
+ "1437475181": 166.9487,
+ "1437475182": 166.94875,
+ "1437475183": 166.94882,
+ "1437475184": 166.9489,
+ "1437475185": 166.94898,
+ "1437475186": 166.94906,
+ "1437475187": 166.94914,
+ "1437475188": 166.94922,
+ "1437475189": 166.9493,
+ "1437475190": 166.94938,
+ "1437475191": 166.94945,
+ "1437475192": 166.94953,
+ "1437475193": 166.94959,
+ "1437475194": 166.94965,
+ "1437475195": 166.9497,
+ "1437475196": 166.94972,
+ "1437475197": 166.9497,
+ "1437475198": 166.94963,
+ "1437475200": 166.94955,
+ "1437475201": 166.94946,
+ "1437475202": 166.94936,
+ "1437475203": 166.94927,
+ "1437475204": 166.94917,
+ "1437475205": 166.94906,
+ "1437475206": 166.94897,
+ "1437475207": 166.94887,
+ "1437475208": 166.94877,
+ "1437475209": 166.94867,
+ "1437475210": 166.94857,
+ "1437475211": 166.94847,
+ "1437475212": 166.94837,
+ "1437475213": 166.94832,
+ "1437475214": 166.94835,
+ "1437475215": 166.94843,
+ "1437475216": 166.94851,
+ "1437475217": 166.9486,
+ "1437475218": 166.94869,
+ "1437475219": 166.94877,
+ "1437475220": 166.94886,
+ "1437475221": 166.94894,
+ "1437475222": 166.94903,
+ "1437475223": 166.94912,
+ "1437475224": 166.9492,
+ "1437475225": 166.94929,
+ "1437475226": 166.94937,
+ "1437475227": 166.94943,
+ "1437475228": 166.94947,
+ "1437475230": 166.94947,
+ "1437475231": 166.94942,
+ "1437475232": 166.94935,
+ "1437475233": 166.94928,
+ "1437475234": 166.94922,
+ "1437475235": 166.94916,
+ "1437475236": 166.9491,
+ "1437475237": 166.94904,
+ "1437475238": 166.94899,
+ "1437475239": 166.94893,
+ "1437475240": 166.94887,
+ "1437475241": 166.94881,
+ "1437475242": 166.94875,
+ "1437475243": 166.94869,
+ "1437475244": 166.94864,
+ "1437475245": 166.94858,
+ "1437475246": 166.94852,
+ "1437475247": 166.94846,
+ "1437475248": 166.9484,
+ "1437475249": 166.94834,
+ "1437475250": 166.94828,
+ "1437475251": 166.94822,
+ "1437475252": 166.94816,
+ "1437475253": 166.9481,
+ "1437475254": 166.94802,
+ "1437475255": 166.94793,
+ "1437475256": 166.94785,
+ "1437475257": 166.94779,
+ "1437475258": 166.94782,
+ "1437475259": 166.94789,
+ "1437475260": 166.94796,
+ "1437475261": 166.94804,
+ "1437475262": 166.94811,
+ "1437475263": 166.94818,
+ "1437475264": 166.94825,
+ "1437475265": 166.94831,
+ "1437475266": 166.94837,
+ "1437475267": 166.94843,
+ "1437475269": 166.94849,
+ "1437475270": 166.94854,
+ "1437475271": 166.9486,
+ "1437475272": 166.94864,
+ "1437475273": 166.94869,
+ "1437475274": 166.94874,
+ "1437475275": 166.94878,
+ "1437475276": 166.94883,
+ "1437475277": 166.94887,
+ "1437475278": 166.94891,
+ "1437475279": 166.94895,
+ "1437475280": 166.94899,
+ "1437475281": 166.94903,
+ "1437475282": 166.94907,
+ "1437475283": 166.94911,
+ "1437475284": 166.94915,
+ "1437475285": 166.94919,
+ "1437475286": 166.94923,
+ "1437475287": 166.94926,
+ "1437475288": 166.9493,
+ "1437475289": 166.94934,
+ "1437475290": 166.94937,
+ "1437475291": 166.94941,
+ "1437475292": 166.94944,
+ "1437475293": 166.94948,
+ "1437475294": 166.94952,
+ "1437475295": 166.94955,
+ "1437475296": 166.94959,
+ "1437475297": 166.94962,
+ "1437475298": 166.94965,
+ "1437475299": 166.94969,
+ "1437475300": 166.94972,
+ "1437475301": 166.94975,
+ "1437475302": 166.94978,
+ "1437475303": 166.9498,
+ "1437475304": 166.94983,
+ "1437475305": 166.94985,
+ "1437475306": 166.94986,
+ "1437475308": 166.94988,
+ "1437475309": 166.94989,
+ "1437475310": 166.94989,
+ "1437475311": 166.9499,
+ "1437475312": 166.9499,
+ "1437475313": 166.94989,
+ "1437475314": 166.94988,
+ "1437475315": 166.94986,
+ "1437475316": 166.94984,
+ "1437475317": 166.94981,
+ "1437475318": 166.94977,
+ "1437475319": 166.94972,
+ "1437475320": 166.94963,
+ "1437475321": 166.94951,
+ "1437475322": 166.94939,
+ "1437475323": 166.94926,
+ "1437475324": 166.94914,
+ "1437475325": 166.94901,
+ "1437475326": 166.94889,
+ "1437475327": 166.94877,
+ "1437475328": 166.94869,
+ "1437475329": 166.94862,
+ "1437475330": 166.94856,
+ "1437475331": 166.9485,
+ "1437475332": 166.94844,
+ "1437475333": 166.94836,
+ "1437475334": 166.94825,
+ "1437475335": 166.94816,
+ "1437475336": 166.94808,
+ "1437475337": 166.94801,
+ "1437475338": 166.94794,
+ "1437475339": 166.94788,
+ "1437475340": 166.94782,
+ "1437475342": 166.94775,
+ "1437475343": 166.94771,
+ "1437475344": 166.94765,
+ "1437475345": 166.94758,
+ "1437475346": 166.94756,
+ "1437475347": 166.94762,
+ "1437475348": 166.9477,
+ "1437475349": 166.94778,
+ "1437475350": 166.94786,
+ "1437475351": 166.94792,
+ "1437475352": 166.94795,
+ "1437475353": 166.94797,
+ "1437475354": 166.948,
+ "1437475355": 166.94808,
+ "1437475356": 166.94819,
+ "1437475357": 166.94829,
+ "1437475358": 166.9484,
+ "1437475359": 166.94849,
+ "1437475360": 166.94859,
+ "1437475361": 166.94868,
+ "1437475362": 166.94877,
+ "1437475363": 166.94885,
+ "1437475364": 166.94889,
+ "1437475365": 166.94889,
+ "1437475366": 166.94887,
+ "1437475367": 166.94883,
+ "1437475368": 166.94878,
+ "1437475369": 166.94871,
+ "1437475371": 166.94863,
+ "1437475372": 166.94856,
+ "1437475373": 166.94847,
+ "1437475374": 166.94838,
+ "1437475375": 166.94828,
+ "1437475376": 166.94818,
+ "1437475377": 166.94811,
+ "1437475378": 166.94806,
+ "1437475379": 166.94801,
+ "1437475380": 166.94796,
+ "1437475381": 166.94787,
+ "1437475382": 166.94775,
+ "1437475383": 166.94764,
+ "1437475384": 166.94753,
+ "1437475385": 166.94742,
+ "1437475386": 166.94733,
+ "1437475387": 166.94726,
+ "1437475388": 166.94722,
+ "1437475389": 166.94718,
+ "1437475390": 166.94715,
+ "1437475391": 166.94711,
+ "1437475392": 166.94707,
+ "1437475393": 166.94701,
+ "1437475394": 166.94692,
+ "1437475395": 166.94685,
+ "1437475396": 166.9468,
+ "1437475397": 166.94675,
+ "1437475398": 166.9467,
+ "1437475400": 166.94663,
+ "1437475401": 166.94654,
+ "1437475402": 166.94647,
+ "1437475403": 166.94639,
+ "1437475404": 166.94631,
+ "1437475405": 166.94626,
+ "1437475406": 166.94622,
+ "1437475407": 166.94619,
+ "1437475408": 166.94616,
+ "1437475409": 166.94613,
+ "1437475410": 166.94611,
+ "1437475411": 166.9461,
+ "1437475412": 166.94609,
+ "1437475413": 166.94611,
+ "1437475414": 166.94614,
+ "1437475415": 166.94618,
+ "1437475416": 166.94624,
+ "1437475417": 166.94631,
+ "1437475418": 166.94638,
+ "1437475419": 166.94645,
+ "1437475420": 166.94652,
+ "1437475421": 166.9466,
+ "1437475422": 166.94668,
+ "1437475423": 166.94676,
+ "1437475424": 166.94684,
+ "1437475425": 166.94693,
+ "1437475426": 166.94701,
+ "1437475427": 166.9471,
+ "1437475428": 166.94719,
+ "1437475429": 166.94729,
+ "1437475430": 166.94738,
+ "1437475431": 166.94747,
+ "1437475433": 166.94757,
+ "1437475434": 166.94767,
+ "1437475435": 166.94777,
+ "1437475436": 166.94786,
+ "1437475437": 166.94796,
+ "1437475438": 166.94805,
+ "1437475439": 166.94814,
+ "1437475440": 166.94823,
+ "1437475441": 166.94832,
+ "1437475442": 166.9484,
+ "1437475443": 166.94847,
+ "1437475444": 166.94853,
+ "1437475445": 166.94859,
+ "1437475446": 166.94865,
+ "1437475447": 166.9487,
+ "1437475448": 166.94875,
+ "1437475449": 166.94879,
+ "1437475450": 166.94883,
+ "1437475451": 166.94886,
+ "1437475452": 166.94888,
+ "1437475453": 166.94891,
+ "1437475454": 166.94894,
+ "1437475455": 166.94898,
+ "1437475456": 166.94901,
+ "1437475457": 166.94905,
+ "1437475458": 166.94909,
+ "1437475459": 166.94913,
+ "1437475460": 166.94917,
+ "1437475461": 166.94921,
+ "1437475462": 166.94926,
+ "1437475463": 166.94931,
+ "1437475464": 166.94936,
+ "1437475466": 166.94941,
+ "1437475467": 166.94946,
+ "1437475468": 166.94951,
+ "1437475469": 166.94956,
+ "1437475470": 166.94961,
+ "1437475471": 166.94965,
+ "1437475472": 166.9497,
+ "1437475473": 166.94975,
+ "1437475474": 166.9498,
+ "1437475475": 166.94984,
+ "1437475476": 166.94989,
+ "1437475477": 166.94994,
+ "1437475478": 166.94998,
+ "1437475479": 166.95003,
+ "1437475480": 166.95006,
+ "1437475481": 166.9501,
+ "1437475482": 166.95013,
+ "1437475483": 166.95015,
+ "1437475484": 166.95018,
+ "1437475485": 166.95019,
+ "1437475486": 166.9502,
+ "1437475487": 166.95021,
+ "1437475488": 166.95021,
+ "1437475489": 166.95021,
+ "1437475490": 166.95021,
+ "1437475491": 166.95021,
+ "1437475492": 166.95021,
+ "1437475493": 166.95022,
+ "1437475494": 166.95023,
+ "1437475495": 166.95024,
+ "1437475496": 166.95025,
+ "1437475497": 166.95026,
+ "1437475498": 166.95028,
+ "1437475499": 166.95029,
+ "1437475500": 166.95031,
+ "1437475501": 166.95034,
+ "1437475502": 166.95036,
+ "1437475503": 166.95038,
+ "1437475504": 166.95041,
+ "1437475505": 166.95044,
+ "1437475506": 166.95047,
+ "1437475507": 166.95051,
+ "1437475508": 166.95055,
+ "1437475510": 166.95059,
+ "1437475511": 166.95063,
+ "1437475512": 166.95066,
+ "1437475513": 166.9507,
+ "1437475514": 166.95074,
+ "1437475515": 166.95078,
+ "1437475516": 166.95083,
+ "1437475517": 166.95088,
+ "1437475518": 166.95092,
+ "1437475519": 166.95098,
+ "1437475520": 166.95103,
+ "1437475521": 166.95108,
+ "1437475522": 166.95113,
+ "1437475523": 166.95119,
+ "1437475524": 166.95124,
+ "1437475525": 166.9513,
+ "1437475526": 166.95136,
+ "1437475527": 166.95142,
+ "1437475528": 166.95148,
+ "1437475529": 166.95154,
+ "1437475530": 166.95161,
+ "1437475531": 166.95167,
+ "1437475532": 166.95174,
+ "1437475533": 166.9518,
+ "1437475534": 166.95187,
+ "1437475535": 166.95194,
+ "1437475536": 166.95201,
+ "1437475537": 166.95208,
+ "1437475538": 166.95215,
+ "1437475539": 166.95222,
+ "1437475540": 166.95229,
+ "1437475541": 166.95235,
+ "1437475542": 166.95242,
+ "1437475543": 166.95248,
+ "1437475544": 166.95254,
+ "1437475545": 166.9526,
+ "1437475546": 166.95266,
+ "1437475547": 166.95271,
+ "1437475548": 166.95276,
+ "1437475549": 166.95281,
+ "1437475551": 166.95286,
+ "1437475552": 166.95291,
+ "1437475553": 166.95296,
+ "1437475554": 166.953,
+ "1437475555": 166.95305,
+ "1437475556": 166.95309,
+ "1437475557": 166.95314,
+ "1437475558": 166.95318,
+ "1437475559": 166.95323,
+ "1437475560": 166.95327,
+ "1437475561": 166.95332,
+ "1437475562": 166.95336,
+ "1437475563": 166.9534,
+ "1437475564": 166.95345,
+ "1437475565": 166.95349,
+ "1437475566": 166.95353,
+ "1437475567": 166.95357,
+ "1437475568": 166.95362,
+ "1437475569": 166.95366,
+ "1437475570": 166.95371,
+ "1437475571": 166.95376,
+ "1437475572": 166.95381,
+ "1437475573": 166.95386,
+ "1437475574": 166.95391,
+ "1437475575": 166.95397,
+ "1437475576": 166.95403,
+ "1437475577": 166.9541,
+ "1437475578": 166.95418,
+ "1437475580": 166.95425,
+ "1437475581": 166.95432,
+ "1437475582": 166.95438,
+ "1437475583": 166.95444,
+ "1437475584": 166.95449,
+ "1437475585": 166.95454,
+ "1437475586": 166.95458,
+ "1437475587": 166.95463,
+ "1437475588": 166.95467,
+ "1437475589": 166.9547,
+ "1437475590": 166.95474,
+ "1437475591": 166.95478,
+ "1437475592": 166.95481,
+ "1437475593": 166.95484,
+ "1437475594": 166.95488,
+ "1437475595": 166.95491,
+ "1437475596": 166.95494,
+ "1437475597": 166.95496,
+ "1437475598": 166.95498,
+ "1437475599": 166.955,
+ "1437475600": 166.95501,
+ "1437475601": 166.95502,
+ "1437475602": 166.95502,
+ "1437475603": 166.95502,
+ "1437475604": 166.95502,
+ "1437475605": 166.95502,
+ "1437475606": 166.95502,
+ "1437475607": 166.95503,
+ "1437475608": 166.95504,
+ "1437475610": 166.95506,
+ "1437475611": 166.95508,
+ "1437475612": 166.9551,
+ "1437475613": 166.95512,
+ "1437475614": 166.95514,
+ "1437475615": 166.95516,
+ "1437475616": 166.95519,
+ "1437475617": 166.95522,
+ "1437475618": 166.95524,
+ "1437475619": 166.95526,
+ "1437475620": 166.95528,
+ "1437475621": 166.9553,
+ "1437475622": 166.95532,
+ "1437475623": 166.95533,
+ "1437475624": 166.95534,
+ "1437475625": 166.95536,
+ "1437475626": 166.95537,
+ "1437475627": 166.95538,
+ "1437475628": 166.95539,
+ "1437475629": 166.9554,
+ "1437475630": 166.95541,
+ "1437475631": 166.95542,
+ "1437475632": 166.95542,
+ "1437475633": 166.95543,
+ "1437475634": 166.95544,
+ "1437475636": 166.95545,
+ "1437475637": 166.95545,
+ "1437475638": 166.95546,
+ "1437475639": 166.95546,
+ "1437475640": 166.95547,
+ "1437475641": 166.95548,
+ "1437475642": 166.95548,
+ "1437475643": 166.95549,
+ "1437475644": 166.95549,
+ "1437475645": 166.9555,
+ "1437475646": 166.9555,
+ "1437475647": 166.9555,
+ "1437475648": 166.95551,
+ "1437475649": 166.95551,
+ "1437475650": 166.95551,
+ "1437475651": 166.95551,
+ "1437475652": 166.95551,
+ "1437475653": 166.95551,
+ "1437475654": 166.95551,
+ "1437475655": 166.95551,
+ "1437475656": 166.95551,
+ "1437475657": 166.9555,
+ "1437475658": 166.9555,
+ "1437475659": 166.95549,
+ "1437475660": 166.95547,
+ "1437475662": 166.95543,
+ "1437475663": 166.95538,
+ "1437475664": 166.95532,
+ "1437475665": 166.95526,
+ "1437475666": 166.95521,
+ "1437475667": 166.95515,
+ "1437475668": 166.9551,
+ "1437475669": 166.95505,
+ "1437475670": 166.95499,
+ "1437475671": 166.95493,
+ "1437475672": 166.95488,
+ "1437475673": 166.95482,
+ "1437475674": 166.95479,
+ "1437475675": 166.95478,
+ "1437475676": 166.95478,
+ "1437475677": 166.9548,
+ "1437475678": 166.95481,
+ "1437475679": 166.95484,
+ "1437475680": 166.95487,
+ "1437475681": 166.9549,
+ "1437475682": 166.95493,
+ "1437475683": 166.95497,
+ "1437475684": 166.95501,
+ "1437475685": 166.95505,
+ "1437475686": 166.95509,
+ "1437475687": 166.95513,
+ "1437475688": 166.95517,
+ "1437475689": 166.95521,
+ "1437475690": 166.95526,
+ "1437475691": 166.9553,
+ "1437475693": 166.95535,
+ "1437475694": 166.9554,
+ "1437475695": 166.95545,
+ "1437475696": 166.95551,
+ "1437475697": 166.95556,
+ "1437475698": 166.95562,
+ "1437475699": 166.95567,
+ "1437475700": 166.95573,
+ "1437475701": 166.95579,
+ "1437475702": 166.95585,
+ "1437475703": 166.95589,
+ "1437475704": 166.95593,
+ "1437475705": 166.95597,
+ "1437475706": 166.956,
+ "1437475707": 166.95603,
+ "1437475708": 166.95606,
+ "1437475709": 166.95608,
+ "1437475710": 166.95611,
+ "1437475711": 166.95613,
+ "1437475712": 166.95615,
+ "1437475713": 166.95617,
+ "1437475714": 166.95619,
+ "1437475715": 166.95621,
+ "1437475716": 166.95623,
+ "1437475717": 166.95625,
+ "1437475718": 166.95627,
+ "1437475719": 166.95629,
+ "1437475720": 166.95631,
+ "1437475721": 166.95633,
+ "1437475722": 166.95635,
+ "1437475724": 166.95638,
+ "1437475725": 166.9564,
+ "1437475726": 166.95642,
+ "1437475727": 166.95643,
+ "1437475728": 166.95645,
+ "1437475729": 166.95647,
+ "1437475730": 166.95649,
+ "1437475731": 166.95651,
+ "1437475732": 166.95653,
+ "1437475733": 166.95655,
+ "1437475734": 166.95657,
+ "1437475735": 166.95658,
+ "1437475736": 166.9566,
+ "1437475737": 166.95661,
+ "1437475738": 166.95663,
+ "1437475739": 166.95665,
+ "1437475740": 166.95667,
+ "1437475741": 166.9567,
+ "1437475742": 166.95672,
+ "1437475743": 166.95675,
+ "1437475744": 166.95677,
+ "1437475745": 166.9568,
+ "1437475746": 166.95682,
+ "1437475747": 166.95684,
+ "1437475748": 166.95686,
+ "1437475749": 166.95688,
+ "1437475750": 166.95688,
+ "1437475751": 166.95688,
+ "1437475752": 166.95687,
+ "1437475753": 166.95687,
+ "1437475754": 166.95686,
+ "1437475755": 166.95685,
+ "1437475756": 166.95684,
+ "1437475758": 166.95683,
+ "1437475759": 166.95682,
+ "1437475760": 166.95681,
+ "1437475761": 166.9568,
+ "1437475762": 166.95679,
+ "1437475763": 166.95677,
+ "1437475764": 166.95676,
+ "1437475765": 166.95674,
+ "1437475766": 166.95673,
+ "1437475767": 166.95671,
+ "1437475768": 166.95669,
+ "1437475769": 166.95668,
+ "1437475770": 166.95666,
+ "1437475771": 166.95664,
+ "1437475772": 166.95662,
+ "1437475773": 166.95661,
+ "1437475774": 166.95659,
+ "1437475775": 166.95657,
+ "1437475776": 166.95656,
+ "1437475777": 166.95654,
+ "1437475778": 166.95652,
+ "1437475779": 166.9565,
+ "1437475780": 166.95648,
+ "1437475781": 166.95646,
+ "1437475782": 166.95644,
+ "1437475783": 166.95642,
+ "1437475784": 166.9564,
+ "1437475785": 166.95638,
+ "1437475786": 166.95636,
+ "1437475787": 166.95635,
+ "1437475788": 166.95633,
+ "1437475789": 166.95631,
+ "1437475791": 166.95629,
+ "1437475792": 166.95627,
+ "1437475793": 166.95625,
+ "1437475794": 166.95623,
+ "1437475795": 166.95621,
+ "1437475796": 166.95619,
+ "1437475797": 166.95617,
+ "1437475798": 166.95615,
+ "1437475799": 166.95613,
+ "1437475800": 166.95611,
+ "1437475801": 166.95609,
+ "1437475802": 166.95607,
+ "1437475803": 166.95605,
+ "1437475804": 166.95603,
+ "1437475805": 166.95601,
+ "1437475806": 166.95599,
+ "1437475807": 166.95597,
+ "1437475808": 166.95595,
+ "1437475809": 166.95593,
+ "1437475810": 166.95591,
+ "1437475811": 166.95589,
+ "1437475812": 166.95587,
+ "1437475813": 166.95584,
+ "1437475814": 166.95582,
+ "1437475815": 166.9558,
+ "1437475816": 166.95579,
+ "1437475817": 166.95577,
+ "1437475818": 166.95575,
+ "1437475819": 166.95573,
+ "1437475821": 166.95571,
+ "1437475822": 166.95569,
+ "1437475823": 166.95567,
+ "1437475824": 166.95565,
+ "1437475825": 166.95563,
+ "1437475826": 166.95561,
+ "1437475827": 166.95559,
+ "1437475828": 166.95558,
+ "1437475829": 166.95556,
+ "1437475830": 166.95554,
+ "1437475831": 166.95552,
+ "1437475832": 166.9555,
+ "1437475833": 166.95549,
+ "1437475834": 166.95547,
+ "1437475835": 166.95545,
+ "1437475836": 166.95543,
+ "1437475837": 166.95542,
+ "1437475838": 166.9554,
+ "1437475839": 166.95538,
+ "1437475840": 166.95536,
+ "1437475841": 166.95535,
+ "1437475842": 166.95533,
+ "1437475843": 166.95531,
+ "1437475844": 166.95529,
+ "1437475845": 166.95528,
+ "1437475846": 166.95526,
+ "1437475847": 166.95524,
+ "1437475848": 166.95522,
+ "1437475849": 166.95521,
+ "1437475850": 166.95519,
+ "1437475852": 166.95517,
+ "1437475853": 166.95515,
+ "1437475854": 166.95513,
+ "1437475855": 166.95512,
+ "1437475856": 166.9551,
+ "1437475857": 166.95508,
+ "1437475858": 166.95506,
+ "1437475859": 166.95505,
+ "1437475860": 166.95503,
+ "1437475861": 166.95501,
+ "1437475862": 166.955,
+ "1437475863": 166.95498,
+ "1437475864": 166.95496,
+ "1437475865": 166.95495,
+ "1437475866": 166.95494,
+ "1437475867": 166.95493,
+ "1437475868": 166.95491,
+ "1437475869": 166.9549,
+ "1437475870": 166.95489,
+ "1437475871": 166.95487,
+ "1437475872": 166.95486,
+ "1437475873": 166.95484,
+ "1437475874": 166.95483,
+ "1437475875": 166.95481,
+ "1437475876": 166.95479,
+ "1437475878": 166.95478,
+ "1437475879": 166.95477,
+ "1437475880": 166.95476,
+ "1437475881": 166.95475,
+ "1437475882": 166.95474,
+ "1437475883": 166.95474,
+ "1437475884": 166.95475,
+ "1437475885": 166.95477,
+ "1437475886": 166.95479,
+ "1437475887": 166.95483,
+ "1437475888": 166.95488,
+ "1437475889": 166.95494,
+ "1437475890": 166.95499,
+ "1437475891": 166.95505,
+ "1437475892": 166.9551,
+ "1437475893": 166.95515,
+ "1437475894": 166.95519,
+ "1437475895": 166.95523,
+ "1437475896": 166.95527,
+ "1437475897": 166.95531,
+ "1437475898": 166.95534,
+ "1437475899": 166.95537,
+ "1437475900": 166.9554,
+ "1437475901": 166.95542,
+ "1437475902": 166.95545,
+ "1437475903": 166.95547,
+ "1437475905": 166.9555,
+ "1437475906": 166.95552,
+ "1437475907": 166.95555,
+ "1437475908": 166.95557,
+ "1437475909": 166.95559,
+ "1437475910": 166.95562,
+ "1437475911": 166.95564,
+ "1437475912": 166.95566,
+ "1437475913": 166.95568,
+ "1437475914": 166.9557,
+ "1437475915": 166.95573,
+ "1437475916": 166.95575,
+ "1437475917": 166.95578,
+ "1437475918": 166.9558,
+ "1437475919": 166.95582,
+ "1437475920": 166.95585,
+ "1437475921": 166.95587,
+ "1437475922": 166.95589,
+ "1437475923": 166.95592,
+ "1437475924": 166.95594,
+ "1437475925": 166.95596,
+ "1437475926": 166.95599,
+ "1437475927": 166.95601,
+ "1437475928": 166.95603,
+ "1437475929": 166.95606,
+ "1437475930": 166.95608,
+ "1437475931": 166.9561,
+ "1437475932": 166.95613,
+ "1437475933": 166.95615,
+ "1437475934": 166.95617,
+ "1437475935": 166.95619,
+ "1437475936": 166.95621,
+ "1437475938": 166.95623,
+ "1437475939": 166.95624,
+ "1437475940": 166.95626,
+ "1437475941": 166.95628,
+ "1437475942": 166.9563,
+ "1437475943": 166.95633,
+ "1437475944": 166.95635,
+ "1437475945": 166.95637,
+ "1437475946": 166.95639,
+ "1437475947": 166.95641,
+ "1437475948": 166.95643,
+ "1437475949": 166.95645,
+ "1437475950": 166.95648,
+ "1437475951": 166.9565,
+ "1437475952": 166.95652,
+ "1437475953": 166.95654,
+ "1437475954": 166.95656,
+ "1437475955": 166.95658,
+ "1437475956": 166.9566,
+ "1437475957": 166.95661,
+ "1437475958": 166.95663,
+ "1437475959": 166.95665,
+ "1437475960": 166.95667,
+ "1437475961": 166.95669,
+ "1437475962": 166.95671,
+ "1437475963": 166.95672,
+ "1437475964": 166.95673,
+ "1437475965": 166.95674,
+ "1437475967": 166.95675,
+ "1437475968": 166.95676,
+ "1437475969": 166.95678,
+ "1437475970": 166.95678,
+ "1437475971": 166.9568,
+ "1437475972": 166.95681,
+ "1437475973": 166.95683,
+ "1437475974": 166.95685,
+ "1437475975": 166.95687,
+ "1437475976": 166.95689,
+ "1437475977": 166.95691,
+ "1437475978": 166.95693,
+ "1437475979": 166.95695,
+ "1437475980": 166.95696,
+ "1437475981": 166.95698,
+ "1437475982": 166.957,
+ "1437475983": 166.95702,
+ "1437475984": 166.95704,
+ "1437475985": 166.95706,
+ "1437475986": 166.95708,
+ "1437475987": 166.9571,
+ "1437475988": 166.95712,
+ "1437475989": 166.95714,
+ "1437475990": 166.95717,
+ "1437475991": 166.95719,
+ "1437475992": 166.95721,
+ "1437475993": 166.95723,
+ "1437475994": 166.95726,
+ "1437475995": 166.95728,
+ "1437475997": 166.9573,
+ "1437475998": 166.95732,
+ "1437475999": 166.95734,
+ "1437476000": 166.95736,
+ "1437476001": 166.95738,
+ "1437476002": 166.9574,
+ "1437476003": 166.95742,
+ "1437476004": 166.95744,
+ "1437476005": 166.95745,
+ "1437476006": 166.95746,
+ "1437476007": 166.95747,
+ "1437476008": 166.95748,
+ "1437476009": 166.95748,
+ "1437476010": 166.95749,
+ "1437476011": 166.9575,
+ "1437476012": 166.95752,
+ "1437476013": 166.95753,
+ "1437476014": 166.95754,
+ "1437476015": 166.95755,
+ "1437476016": 166.95756,
+ "1437476017": 166.95757,
+ "1437476019": 166.95757,
+ "1437476020": 166.95758,
+ "1437476021": 166.95758,
+ "1437476022": 166.95758,
+ "1437476023": 166.95759,
+ "1437476024": 166.95759,
+ "1437476025": 166.9576,
+ "1437476026": 166.9576,
+ "1437476027": 166.9576,
+ "1437476028": 166.95761,
+ "1437476029": 166.95761,
+ "1437476030": 166.95761,
+ "1437476031": 166.95762,
+ "1437476032": 166.95763,
+ "1437476033": 166.95763,
+ "1437476034": 166.95764,
+ "1437476035": 166.95765,
+ "1437476036": 166.95766,
+ "1437476037": 166.95767,
+ "1437476038": 166.95768,
+ "1437476039": 166.95769,
+ "1437476040": 166.95771,
+ "1437476041": 166.95772,
+ "1437476042": 166.95774,
+ "1437476043": 166.95776,
+ "1437476044": 166.95778,
+ "1437476045": 166.9578,
+ "1437476047": 166.95783,
+ "1437476048": 166.95786,
+ "1437476049": 166.95789,
+ "1437476050": 166.95792,
+ "1437476051": 166.95796,
+ "1437476052": 166.958,
+ "1437476053": 166.95804,
+ "1437476054": 166.95808,
+ "1437476055": 166.95813,
+ "1437476056": 166.95817,
+ "1437476057": 166.95822,
+ "1437476058": 166.95827,
+ "1437476059": 166.95832,
+ "1437476060": 166.95837,
+ "1437476061": 166.95843,
+ "1437476062": 166.95849,
+ "1437476063": 166.95855,
+ "1437476064": 166.9586,
+ "1437476065": 166.95867,
+ "1437476066": 166.95873,
+ "1437476067": 166.95879,
+ "1437476068": 166.95885,
+ "1437476069": 166.95891,
+ "1437476070": 166.95898,
+ "1437476071": 166.95904,
+ "1437476072": 166.95909,
+ "1437476073": 166.95915,
+ "1437476074": 166.95919,
+ "1437476075": 166.95924,
+ "1437476076": 166.95928,
+ "1437476077": 166.95932,
+ "1437476079": 166.95934,
+ "1437476080": 166.95935,
+ "1437476081": 166.95936,
+ "1437476082": 166.95936,
+ "1437476083": 166.95936,
+ "1437476084": 166.95935,
+ "1437476085": 166.95935,
+ "1437476086": 166.95935,
+ "1437476087": 166.95935,
+ "1437476088": 166.95934,
+ "1437476089": 166.95934,
+ "1437476090": 166.95934,
+ "1437476091": 166.95934,
+ "1437476092": 166.95933,
+ "1437476093": 166.95933,
+ "1437476094": 166.95933,
+ "1437476095": 166.95932,
+ "1437476096": 166.95932,
+ "1437476097": 166.95931,
+ "1437476098": 166.95931,
+ "1437476099": 166.9593,
+ "1437476100": 166.95929,
+ "1437476101": 166.95928,
+ "1437476102": 166.95927,
+ "1437476103": 166.95926,
+ "1437476104": 166.95925,
+ "1437476105": 166.95924,
+ "1437476106": 166.95923,
+ "1437476107": 166.95921,
+ "1437476108": 166.95919,
+ "1437476109": 166.95918,
+ "1437476110": 166.95915,
+ "1437476112": 166.95913,
+ "1437476113": 166.9591,
+ "1437476114": 166.95907,
+ "1437476115": 166.95903,
+ "1437476116": 166.95898,
+ "1437476117": 166.95894,
+ "1437476118": 166.95889,
+ "1437476119": 166.95883,
+ "1437476120": 166.95877,
+ "1437476121": 166.95871,
+ "1437476122": 166.95865,
+ "1437476123": 166.95858,
+ "1437476124": 166.9585,
+ "1437476125": 166.95843,
+ "1437476126": 166.95835,
+ "1437476127": 166.95827,
+ "1437476128": 166.95819,
+ "1437476129": 166.9581,
+ "1437476130": 166.95802,
+ "1437476131": 166.95793,
+ "1437476132": 166.95784,
+ "1437476133": 166.95776,
+ "1437476134": 166.95767,
+ "1437476135": 166.95759,
+ "1437476136": 166.95751,
+ "1437476137": 166.95745,
+ "1437476138": 166.95738,
+ "1437476139": 166.95732,
+ "1437476140": 166.95726,
+ "1437476141": 166.95721,
+ "1437476142": 166.95715,
+ "1437476143": 166.95709,
+ "1437476144": 166.95704,
+ "1437476146": 166.95698,
+ "1437476147": 166.95692,
+ "1437476148": 166.95686,
+ "1437476149": 166.9568,
+ "1437476150": 166.95673,
+ "1437476151": 166.95667,
+ "1437476152": 166.95659,
+ "1437476153": 166.95652,
+ "1437476154": 166.95644,
+ "1437476155": 166.95636,
+ "1437476156": 166.95627,
+ "1437476157": 166.95618,
+ "1437476158": 166.95609,
+ "1437476159": 166.956,
+ "1437476160": 166.9559,
+ "1437476161": 166.9558,
+ "1437476162": 166.95569,
+ "1437476163": 166.95559,
+ "1437476164": 166.95548,
+ "1437476165": 166.95537,
+ "1437476166": 166.95525,
+ "1437476167": 166.95514,
+ "1437476168": 166.95503,
+ "1437476169": 166.95491,
+ "1437476170": 166.9548,
+ "1437476171": 166.95468,
+ "1437476172": 166.95456,
+ "1437476173": 166.95444,
+ "1437476174": 166.95435,
+ "1437476175": 166.95431,
+ "1437476176": 166.95433,
+ "1437476177": 166.95436,
+ "1437476179": 166.9544,
+ "1437476180": 166.95444,
+ "1437476181": 166.95448,
+ "1437476182": 166.95451,
+ "1437476183": 166.95455,
+ "1437476184": 166.95457,
+ "1437476185": 166.9546,
+ "1437476186": 166.95462,
+ "1437476187": 166.95463,
+ "1437476188": 166.95464,
+ "1437476189": 166.95464,
+ "1437476190": 166.95464,
+ "1437476191": 166.95463,
+ "1437476192": 166.95461,
+ "1437476193": 166.95459,
+ "1437476194": 166.95456,
+ "1437476195": 166.95453,
+ "1437476196": 166.9545,
+ "1437476197": 166.95447,
+ "1437476198": 166.95443,
+ "1437476199": 166.95439,
+ "1437476200": 166.95435,
+ "1437476201": 166.95431,
+ "1437476202": 166.95426,
+ "1437476203": 166.95421,
+ "1437476204": 166.95416,
+ "1437476205": 166.95411,
+ "1437476206": 166.95406,
+ "1437476207": 166.95401,
+ "1437476208": 166.95396,
+ "1437476209": 166.9539,
+ "1437476211": 166.95385,
+ "1437476212": 166.9538,
+ "1437476213": 166.95375,
+ "1437476214": 166.95371,
+ "1437476215": 166.95367,
+ "1437476216": 166.95363,
+ "1437476217": 166.95361,
+ "1437476218": 166.95358,
+ "1437476219": 166.95356,
+ "1437476220": 166.95355,
+ "1437476221": 166.95354,
+ "1437476222": 166.95353,
+ "1437476223": 166.95352,
+ "1437476224": 166.9535,
+ "1437476225": 166.95349,
+ "1437476226": 166.95347,
+ "1437476227": 166.95345,
+ "1437476228": 166.95343,
+ "1437476229": 166.9534,
+ "1437476230": 166.95338,
+ "1437476231": 166.95335,
+ "1437476232": 166.95333,
+ "1437476233": 166.9533,
+ "1437476234": 166.95328,
+ "1437476235": 166.95325,
+ "1437476236": 166.95323,
+ "1437476237": 166.95321,
+ "1437476238": 166.95318,
+ "1437476239": 166.95316,
+ "1437476240": 166.95313,
+ "1437476241": 166.95311,
+ "1437476242": 166.95308,
+ "1437476243": 166.95305,
+ "1437476244": 166.95302,
+ "1437476245": 166.953,
+ "1437476246": 166.95296,
+ "1437476248": 166.95293,
+ "1437476249": 166.95288,
+ "1437476250": 166.95283,
+ "1437476251": 166.95278,
+ "1437476252": 166.95273,
+ "1437476253": 166.95268,
+ "1437476254": 166.95264,
+ "1437476255": 166.95258,
+ "1437476256": 166.9525,
+ "1437476257": 166.95241,
+ "1437476258": 166.95231,
+ "1437476259": 166.95221,
+ "1437476260": 166.95211,
+ "1437476261": 166.952,
+ "1437476262": 166.95189,
+ "1437476263": 166.95178,
+ "1437476264": 166.95166,
+ "1437476265": 166.95153,
+ "1437476266": 166.95141,
+ "1437476267": 166.95129,
+ "1437476268": 166.95116,
+ "1437476269": 166.95103,
+ "1437476270": 166.95091,
+ "1437476271": 166.95082,
+ "1437476272": 166.9508,
+ "1437476274": 166.95081,
+ "1437476275": 166.95086,
+ "1437476276": 166.95091,
+ "1437476277": 166.95097,
+ "1437476278": 166.95103,
+ "1437476279": 166.95109,
+ "1437476280": 166.95115,
+ "1437476281": 166.95121,
+ "1437476282": 166.95127,
+ "1437476283": 166.95132,
+ "1437476284": 166.95136,
+ "1437476285": 166.95139,
+ "1437476286": 166.95142,
+ "1437476287": 166.95145,
+ "1437476288": 166.95149,
+ "1437476289": 166.95152,
+ "1437476290": 166.95155,
+ "1437476291": 166.95158,
+ "1437476292": 166.95161,
+ "1437476293": 166.95163,
+ "1437476295": 166.95166,
+ "1437476296": 166.95168,
+ "1437476297": 166.9517,
+ "1437476298": 166.95172,
+ "1437476299": 166.95173,
+ "1437476300": 166.95174,
+ "1437476301": 166.95175,
+ "1437476302": 166.95175,
+ "1437476303": 166.95175,
+ "1437476304": 166.95174,
+ "1437476305": 166.95173,
+ "1437476306": 166.95171,
+ "1437476307": 166.95169,
+ "1437476308": 166.95166,
+ "1437476309": 166.95163,
+ "1437476310": 166.9516,
+ "1437476311": 166.95157,
+ "1437476312": 166.95153,
+ "1437476313": 166.9515,
+ "1437476314": 166.95146,
+ "1437476315": 166.95143,
+ "1437476316": 166.9514,
+ "1437476317": 166.95137,
+ "1437476318": 166.95134,
+ "1437476319": 166.95131,
+ "1437476320": 166.95129,
+ "1437476321": 166.95126,
+ "1437476323": 166.95124,
+ "1437476324": 166.95122,
+ "1437476325": 166.95121,
+ "1437476326": 166.95119,
+ "1437476327": 166.95118,
+ "1437476328": 166.95117,
+ "1437476329": 166.95116,
+ "1437476330": 166.95116,
+ "1437476331": 166.95115,
+ "1437476332": 166.95115,
+ "1437476333": 166.95115,
+ "1437476334": 166.95115,
+ "1437476335": 166.95115,
+ "1437476338": 166.95115,
+ "1437476339": 166.95115,
+ "1437476340": 166.95115,
+ "1437476341": 166.95115,
+ "1437476342": 166.95114,
+ "1437476343": 166.95114,
+ "1437476344": 166.95113,
+ "1437476345": 166.95113,
+ "1437476346": 166.95112,
+ "1437476347": 166.95112,
+ "1437476348": 166.95111,
+ "1437476349": 166.9511,
+ "1437476350": 166.9511,
+ "1437476351": 166.95109,
+ "1437476352": 166.95108,
+ "1437476353": 166.95107,
+ "1437476354": 166.95107,
+ "1437476355": 166.95106,
+ "1437476356": 166.95105,
+ "1437476357": 166.95104,
+ "1437476358": 166.95103,
+ "1437476360": 166.95102,
+ "1437476361": 166.95101,
+ "1437476362": 166.951,
+ "1437476363": 166.95099,
+ "1437476364": 166.95098,
+ "1437476365": 166.95097,
+ "1437476366": 166.95096,
+ "1437476367": 166.95095,
+ "1437476368": 166.95094,
+ "1437476369": 166.95093,
+ "1437476370": 166.95092,
+ "1437476371": 166.95091,
+ "1437476372": 166.9509,
+ "1437476373": 166.95089,
+ "1437476374": 166.95088,
+ "1437476375": 166.95087,
+ "1437476376": 166.95086,
+ "1437476377": 166.95085,
+ "1437476378": 166.95083,
+ "1437476379": 166.95082,
+ "1437476380": 166.95081,
+ "1437476381": 166.9508,
+ "1437476382": 166.95079,
+ "1437476383": 166.95078,
+ "1437476384": 166.95077,
+ "1437476385": 166.95075,
+ "1437476386": 166.95074,
+ "1437476387": 166.95073,
+ "1437476389": 166.95072,
+ "1437476390": 166.9507,
+ "1437476391": 166.95069,
+ "1437476392": 166.95068,
+ "1437476393": 166.95067,
+ "1437476394": 166.95065,
+ "1437476395": 166.95064,
+ "1437476396": 166.95062,
+ "1437476397": 166.9506,
+ "1437476398": 166.95058,
+ "1437476399": 166.95056,
+ "1437476400": 166.95053,
+ "1437476401": 166.9505,
+ "1437476402": 166.95047,
+ "1437476403": 166.95044,
+ "1437476404": 166.95042,
+ "1437476405": 166.9504,
+ "1437476406": 166.95039,
+ "1437476407": 166.95041,
+ "1437476408": 166.95045,
+ "1437476410": 166.95051,
+ "1437476411": 166.95057,
+ "1437476412": 166.95063,
+ "1437476413": 166.9507,
+ "1437476414": 166.95076,
+ "1437476415": 166.95082,
+ "1437476416": 166.95088,
+ "1437476417": 166.95094,
+ "1437476418": 166.95099,
+ "1437476419": 166.95105,
+ "1437476420": 166.9511,
+ "1437476421": 166.95115,
+ "1437476422": 166.95119,
+ "1437476423": 166.95124,
+ "1437476424": 166.95128,
+ "1437476425": 166.95132,
+ "1437476426": 166.95136,
+ "1437476427": 166.9514,
+ "1437476428": 166.95143,
+ "1437476429": 166.95146,
+ "1437476430": 166.9515,
+ "1437476431": 166.95153,
+ "1437476432": 166.95156,
+ "1437476433": 166.95159,
+ "1437476434": 166.95161,
+ "1437476435": 166.95164,
+ "1437476436": 166.95167,
+ "1437476437": 166.95169,
+ "1437476438": 166.95172,
+ "1437476439": 166.95174,
+ "1437476441": 166.95176,
+ "1437476442": 166.95179,
+ "1437476443": 166.95181,
+ "1437476444": 166.95184,
+ "1437476445": 166.95186,
+ "1437476446": 166.95189,
+ "1437476447": 166.95192,
+ "1437476448": 166.95195,
+ "1437476449": 166.95199,
+ "1437476450": 166.95202,
+ "1437476451": 166.95206,
+ "1437476452": 166.9521,
+ "1437476453": 166.95214,
+ "1437476454": 166.95218,
+ "1437476455": 166.95222,
+ "1437476456": 166.95226,
+ "1437476457": 166.9523,
+ "1437476458": 166.95232,
+ "1437476459": 166.95234,
+ "1437476460": 166.95236,
+ "1437476461": 166.95236,
+ "1437476462": 166.95236,
+ "1437476463": 166.95236,
+ "1437476464": 166.95235,
+ "1437476465": 166.95234,
+ "1437476467": 166.95232,
+ "1437476468": 166.95231,
+ "1437476469": 166.95231,
+ "1437476470": 166.95232,
+ "1437476471": 166.95233,
+ "1437476472": 166.95235,
+ "1437476473": 166.95237,
+ "1437476474": 166.95239,
+ "1437476475": 166.95239,
+ "1437476476": 166.95241,
+ "1437476477": 166.95245,
+ "1437476478": 166.95246,
+ "1437476479": 166.95247,
+ "1437476480": 166.95248,
+ "1437476481": 166.95248,
+ "1437476482": 166.95247,
+ "1437476483": 166.95246,
+ "1437476484": 166.95245,
+ "1437476485": 166.95244,
+ "1437476486": 166.95243,
+ "1437476487": 166.95241,
+ "1437476488": 166.95239,
+ "1437476490": 166.95237,
+ "1437476491": 166.95234,
+ "1437476492": 166.95231,
+ "1437476493": 166.95228,
+ "1437476494": 166.95223,
+ "1437476495": 166.95216,
+ "1437476496": 166.95207,
+ "1437476497": 166.95195,
+ "1437476498": 166.95183,
+ "1437476499": 166.95171,
+ "1437476500": 166.95159,
+ "1437476501": 166.95146,
+ "1437476502": 166.95133,
+ "1437476503": 166.95121,
+ "1437476504": 166.9511,
+ "1437476505": 166.95099,
+ "1437476506": 166.9509,
+ "1437476507": 166.95081,
+ "1437476508": 166.95071,
+ "1437476509": 166.95061,
+ "1437476510": 166.95049,
+ "1437476511": 166.95036,
+ "1437476512": 166.95023,
+ "1437476513": 166.9501,
+ "1437476514": 166.94999,
+ "1437476515": 166.94992,
+ "1437476516": 166.94988,
+ "1437476517": 166.94985,
+ "1437476518": 166.94981,
+ "1437476519": 166.94976,
+ "1437476521": 166.94963,
+ "1437476522": 166.94949,
+ "1437476523": 166.94935,
+ "1437476524": 166.94923,
+ "1437476525": 166.9491,
+ "1437476526": 166.94898,
+ "1437476527": 166.94885,
+ "1437476528": 166.94875,
+ "1437476529": 166.9487,
+ "1437476530": 166.94873,
+ "1437476531": 166.94879,
+ "1437476532": 166.94889,
+ "1437476533": 166.94899,
+ "1437476534": 166.94909,
+ "1437476535": 166.94919,
+ "1437476536": 166.94928,
+ "1437476537": 166.94939,
+ "1437476538": 166.94949,
+ "1437476539": 166.94958,
+ "1437476540": 166.94966,
+ "1437476541": 166.94972,
+ "1437476542": 166.94972,
+ "1437476543": 166.94966,
+ "1437476544": 166.94955,
+ "1437476545": 166.94944,
+ "1437476547": 166.9493,
+ "1437476548": 166.94918,
+ "1437476549": 166.94907,
+ "1437476550": 166.94894,
+ "1437476551": 166.94882,
+ "1437476552": 166.9487,
+ "1437476553": 166.94859,
+ "1437476554": 166.94848,
+ "1437476555": 166.94837,
+ "1437476556": 166.94831,
+ "1437476557": 166.94837,
+ "1437476558": 166.94846,
+ "1437476559": 166.94855,
+ "1437476560": 166.94865,
+ "1437476561": 166.94874,
+ "1437476562": 166.94885,
+ "1437476563": 166.94895,
+ "1437476564": 166.94905,
+ "1437476565": 166.94914,
+ "1437476566": 166.94923,
+ "1437476567": 166.94932,
+ "1437476568": 166.9494,
+ "1437476569": 166.94945,
+ "1437476570": 166.94946,
+ "1437476571": 166.94942,
+ "1437476572": 166.94934,
+ "1437476573": 166.94927,
+ "1437476574": 166.9492,
+ "1437476576": 166.94914,
+ "1437476577": 166.94907,
+ "1437476578": 166.949,
+ "1437476579": 166.94894,
+ "1437476580": 166.94888,
+ "1437476581": 166.94882,
+ "1437476582": 166.94877,
+ "1437476583": 166.94871,
+ "1437476584": 166.94865,
+ "1437476585": 166.9486,
+ "1437476586": 166.94854,
+ "1437476587": 166.94849,
+ "1437476588": 166.94844,
+ "1437476589": 166.94839,
+ "1437476590": 166.94833,
+ "1437476591": 166.94829,
+ "1437476592": 166.94824,
+ "1437476593": 166.9482,
+ "1437476594": 166.94814,
+ "1437476595": 166.94808,
+ "1437476596": 166.94801,
+ "1437476597": 166.94792,
+ "1437476598": 166.94785,
+ "1437476599": 166.94781,
+ "1437476601": 166.94785,
+ "1437476602": 166.9479,
+ "1437476603": 166.94796,
+ "1437476604": 166.94802,
+ "1437476605": 166.94807,
+ "1437476606": 166.94813,
+ "1437476607": 166.94819,
+ "1437476608": 166.94824,
+ "1437476609": 166.9483,
+ "1437476610": 166.94835,
+ "1437476611": 166.9484,
+ "1437476612": 166.94845,
+ "1437476613": 166.9485,
+ "1437476614": 166.94854,
+ "1437476615": 166.94859,
+ "1437476616": 166.94863,
+ "1437476617": 166.94867,
+ "1437476618": 166.94872,
+ "1437476619": 166.94876,
+ "1437476620": 166.9488,
+ "1437476621": 166.94884,
+ "1437476622": 166.94889,
+ "1437476623": 166.94892,
+ "1437476624": 166.94897,
+ "1437476625": 166.94901,
+ "1437476627": 166.94906,
+ "1437476628": 166.9491,
+ "1437476629": 166.94914,
+ "1437476630": 166.94919,
+ "1437476631": 166.94923,
+ "1437476632": 166.94927,
+ "1437476633": 166.94932,
+ "1437476634": 166.94936,
+ "1437476635": 166.9494,
+ "1437476636": 166.94944,
+ "1437476637": 166.94949,
+ "1437476638": 166.94953,
+ "1437476639": 166.94957,
+ "1437476640": 166.94961,
+ "1437476641": 166.94966,
+ "1437476642": 166.9497,
+ "1437476643": 166.94974,
+ "1437476644": 166.94978,
+ "1437476645": 166.94981,
+ "1437476646": 166.94984,
+ "1437476647": 166.94986,
+ "1437476648": 166.94988,
+ "1437476649": 166.94989,
+ "1437476650": 166.9499,
+ "1437476651": 166.9499,
+ "1437476652": 166.9499,
+ "1437476653": 166.94989,
+ "1437476654": 166.94987,
+ "1437476655": 166.94984,
+ "1437476656": 166.9498,
+ "1437476658": 166.94974,
+ "1437476659": 166.94965,
+ "1437476660": 166.94953,
+ "1437476661": 166.94939,
+ "1437476662": 166.94924,
+ "1437476663": 166.9491,
+ "1437476664": 166.94896,
+ "1437476665": 166.94883,
+ "1437476666": 166.94872,
+ "1437476667": 166.94863,
+ "1437476668": 166.94856,
+ "1437476669": 166.94849,
+ "1437476670": 166.94842,
+ "1437476671": 166.94832,
+ "1437476672": 166.94819,
+ "1437476673": 166.94809,
+ "1437476674": 166.948,
+ "1437476675": 166.94791,
+ "1437476676": 166.94783,
+ "1437476677": 166.94776,
+ "1437476678": 166.94771,
+ "1437476679": 166.94763,
+ "1437476680": 166.94756,
+ "1437476681": 166.94761,
+ "1437476682": 166.94771,
+ "1437476683": 166.9478,
+ "1437476684": 166.94789,
+ "1437476685": 166.94796,
+ "1437476686": 166.94796,
+ "1437476687": 166.94799,
+ "1437476688": 166.9481,
+ "1437476689": 166.94822,
+ "1437476690": 166.94835,
+ "1437476691": 166.94847,
+ "1437476692": 166.94858,
+ "1437476694": 166.94869,
+ "1437476695": 166.94879,
+ "1437476696": 166.94887,
+ "1437476697": 166.94891,
+ "1437476698": 166.94891,
+ "1437476699": 166.94887,
+ "1437476700": 166.94882,
+ "1437476701": 166.94875,
+ "1437476702": 166.94865,
+ "1437476703": 166.94855,
+ "1437476704": 166.94845,
+ "1437476705": 166.94835,
+ "1437476706": 166.94824,
+ "1437476707": 166.94814,
+ "1437476708": 166.94808,
+ "1437476709": 166.94803,
+ "1437476710": 166.94797,
+ "1437476711": 166.94787,
+ "1437476712": 166.94775,
+ "1437476713": 166.94763,
+ "1437476714": 166.94751,
+ "1437476715": 166.9474,
+ "1437476716": 166.94732,
+ "1437476717": 166.94726,
+ "1437476718": 166.94721,
+ "1437476719": 166.94716,
+ "1437476720": 166.94713,
+ "1437476721": 166.94709,
+ "1437476723": 166.94703,
+ "1437476724": 166.94693,
+ "1437476725": 166.94685,
+ "1437476726": 166.94679,
+ "1437476727": 166.94673,
+ "1437476728": 166.94666,
+ "1437476729": 166.94657,
+ "1437476730": 166.94647,
+ "1437476731": 166.94638,
+ "1437476732": 166.9463,
+ "1437476733": 166.94625,
+ "1437476734": 166.94621,
+ "1437476735": 166.94617,
+ "1437476736": 166.94614,
+ "1437476737": 166.94612,
+ "1437476738": 166.94611,
+ "1437476739": 166.94612,
+ "1437476740": 166.94616,
+ "1437476741": 166.94622,
+ "1437476742": 166.94631,
+ "1437476743": 166.94639,
+ "1437476744": 166.94649,
+ "1437476745": 166.94658,
+ "1437476746": 166.94668,
+ "1437476747": 166.94678,
+ "1437476748": 166.94689,
+ "1437476749": 166.947,
+ "1437476750": 166.94711,
+ "1437476751": 166.94723,
+ "1437476752": 166.94734,
+ "1437476753": 166.94746,
+ "1437476755": 166.94758,
+ "1437476756": 166.9477,
+ "1437476757": 166.94781,
+ "1437476758": 166.94793,
+ "1437476759": 166.94803,
+ "1437476760": 166.94815,
+ "1437476761": 166.94826,
+ "1437476762": 166.94836,
+ "1437476763": 166.94844,
+ "1437476764": 166.94852,
+ "1437476765": 166.9486,
+ "1437476766": 166.94867,
+ "1437476767": 166.94873,
+ "1437476768": 166.94878,
+ "1437476769": 166.94883,
+ "1437476770": 166.94887,
+ "1437476771": 166.94892,
+ "1437476772": 166.94896,
+ "1437476773": 166.94898,
+ "1437476774": 166.94902,
+ "1437476775": 166.94908,
+ "1437476776": 166.94914,
+ "1437476777": 166.94919,
+ "1437476778": 166.94924,
+ "1437476779": 166.9493,
+ "1437476780": 166.94937,
+ "1437476781": 166.94943,
+ "1437476782": 166.9495,
+ "1437476783": 166.94957,
+ "1437476784": 166.94963,
+ "1437476785": 166.9497,
+ "1437476786": 166.94978,
+ "1437476787": 166.94985,
+ "1437476788": 166.94992,
+ "1437476789": 166.95,
+ "1437476791": 166.95008,
+ "1437476792": 166.95016,
+ "1437476793": 166.95025,
+ "1437476794": 166.95034,
+ "1437476795": 166.95044,
+ "1437476796": 166.95053,
+ "1437476797": 166.95064,
+ "1437476798": 166.95074,
+ "1437476799": 166.95084,
+ "1437476800": 166.95094,
+ "1437476801": 166.95105,
+ "1437476802": 166.95115,
+ "1437476803": 166.95126,
+ "1437476804": 166.95137,
+ "1437476805": 166.95147,
+ "1437476806": 166.95157,
+ "1437476807": 166.95168,
+ "1437476808": 166.95178,
+ "1437476809": 166.95189,
+ "1437476810": 166.95199,
+ "1437476811": 166.95209,
+ "1437476812": 166.95219,
+ "1437476813": 166.95229,
+ "1437476814": 166.95239,
+ "1437476815": 166.95248,
+ "1437476816": 166.95257,
+ "1437476817": 166.95264,
+ "1437476818": 166.95272,
+ "1437476819": 166.95279,
+ "1437476820": 166.95285,
+ "1437476821": 166.95292,
+ "1437476822": 166.95298,
+ "1437476824": 166.95304,
+ "1437476825": 166.9531,
+ "1437476826": 166.95315,
+ "1437476827": 166.95321,
+ "1437476828": 166.95326,
+ "1437476829": 166.95332,
+ "1437476830": 166.95337,
+ "1437476831": 166.95343,
+ "1437476832": 166.95348,
+ "1437476833": 166.95354,
+ "1437476834": 166.95359,
+ "1437476835": 166.95365,
+ "1437476836": 166.95371,
+ "1437476837": 166.95377,
+ "1437476838": 166.95384,
+ "1437476839": 166.95392,
+ "1437476840": 166.954,
+ "1437476841": 166.95409,
+ "1437476842": 166.95418,
+ "1437476843": 166.95428,
+ "1437476844": 166.95437,
+ "1437476845": 166.95445,
+ "1437476846": 166.95453,
+ "1437476847": 166.95459,
+ "1437476848": 166.95465,
+ "1437476849": 166.9547,
+ "1437476850": 166.95474,
+ "1437476851": 166.9548,
+ "1437476852": 166.95485,
+ "1437476854": 166.95491,
+ "1437476855": 166.95497,
+ "1437476856": 166.95506,
+ "1437476857": 166.95515,
+ "1437476858": 166.95524,
+ "1437476859": 166.95532,
+ "1437476860": 166.95537,
+ "1437476861": 166.9554,
+ "1437476862": 166.95543,
+ "1437476863": 166.95544,
+ "1437476864": 166.95546,
+ "1437476865": 166.95547,
+ "1437476866": 166.95548,
+ "1437476867": 166.95549,
+ "1437476868": 166.9555,
+ "1437476869": 166.9555,
+ "1437476870": 166.9555,
+ "1437476871": 166.95551,
+ "1437476872": 166.95551,
+ "1437476873": 166.95552,
+ "1437476874": 166.95553,
+ "1437476875": 166.95553,
+ "1437476876": 166.95551,
+ "1437476877": 166.9555,
+ "1437476878": 166.95547,
+ "1437476879": 166.95539,
+ "1437476880": 166.95528,
+ "1437476881": 166.95518,
+ "1437476882": 166.95508,
+ "1437476883": 166.95499,
+ "1437476884": 166.9549,
+ "1437476886": 166.95481,
+ "1437476887": 166.95477,
+ "1437476888": 166.95478,
+ "1437476889": 166.95482,
+ "1437476890": 166.95488,
+ "1437476891": 166.95496,
+ "1437476892": 166.95506,
+ "1437476893": 166.95515,
+ "1437476894": 166.95524,
+ "1437476895": 166.95533,
+ "1437476896": 166.95543,
+ "1437476897": 166.95552,
+ "1437476898": 166.95561,
+ "1437476899": 166.9557,
+ "1437476900": 166.9558,
+ "1437476901": 166.95589,
+ "1437476902": 166.95597,
+ "1437476903": 166.95605,
+ "1437476904": 166.95613,
+ "1437476905": 166.9562,
+ "1437476906": 166.95627,
+ "1437476907": 166.95633,
+ "1437476908": 166.95639,
+ "1437476910": 166.95645,
+ "1437476911": 166.9565,
+ "1437476912": 166.95655,
+ "1437476913": 166.95659,
+ "1437476914": 166.95663,
+ "1437476915": 166.95667,
+ "1437476916": 166.95671,
+ "1437476917": 166.95674,
+ "1437476918": 166.95678,
+ "1437476919": 166.95682,
+ "1437476920": 166.95685,
+ "1437476921": 166.95688,
+ "1437476922": 166.95688,
+ "1437476923": 166.95687,
+ "1437476924": 166.95685,
+ "1437476925": 166.95683,
+ "1437476926": 166.95681,
+ "1437476927": 166.95679,
+ "1437476928": 166.95676,
+ "1437476929": 166.95674,
+ "1437476930": 166.95672,
+ "1437476931": 166.9567,
+ "1437476932": 166.95667,
+ "1437476933": 166.95665,
+ "1437476934": 166.95662,
+ "1437476935": 166.9566,
+ "1437476936": 166.95658,
+ "1437476938": 166.95655,
+ "1437476939": 166.95653,
+ "1437476940": 166.95651,
+ "1437476941": 166.95648,
+ "1437476942": 166.95645,
+ "1437476943": 166.95643,
+ "1437476944": 166.9564,
+ "1437476945": 166.95637,
+ "1437476946": 166.95635,
+ "1437476947": 166.95632,
+ "1437476948": 166.95629,
+ "1437476949": 166.95627,
+ "1437476950": 166.95624,
+ "1437476951": 166.95621,
+ "1437476952": 166.95618,
+ "1437476953": 166.95615,
+ "1437476954": 166.95612,
+ "1437476955": 166.9561,
+ "1437476956": 166.95607,
+ "1437476957": 166.95604,
+ "1437476958": 166.95601,
+ "1437476959": 166.95598,
+ "1437476960": 166.95595,
+ "1437476961": 166.95593,
+ "1437476962": 166.9559,
+ "1437476963": 166.95587,
+ "1437476964": 166.95584,
+ "1437476965": 166.95581,
+ "1437476966": 166.95579,
+ "1437476967": 166.95576,
+ "1437476969": 166.95573,
+ "1437476970": 166.9557,
+ "1437476971": 166.95567,
+ "1437476972": 166.95565,
+ "1437476973": 166.95562,
+ "1437476974": 166.95559,
+ "1437476975": 166.95556,
+ "1437476976": 166.95553,
+ "1437476977": 166.9555,
+ "1437476978": 166.95547,
+ "1437476979": 166.95544,
+ "1437476980": 166.95541,
+ "1437476981": 166.95538,
+ "1437476982": 166.95536,
+ "1437476983": 166.95533,
+ "1437476984": 166.9553,
+ "1437476985": 166.95527,
+ "1437476986": 166.95524,
+ "1437476987": 166.95521,
+ "1437476988": 166.95518,
+ "1437476989": 166.95516,
+ "1437476990": 166.95513,
+ "1437476991": 166.9551,
+ "1437476992": 166.95507,
+ "1437476993": 166.95504,
+ "1437476994": 166.95502,
+ "1437476996": 166.95499,
+ "1437476997": 166.95496,
+ "1437476998": 166.95494,
+ "1437476999": 166.95491,
+ "1437477000": 166.95488,
+ "1437477001": 166.95486,
+ "1437477002": 166.95484,
+ "1437477003": 166.95483,
+ "1437477004": 166.95481,
+ "1437477005": 166.95479,
+ "1437477006": 166.95477,
+ "1437477007": 166.95476,
+ "1437477008": 166.95475,
+ "1437477009": 166.95475,
+ "1437477010": 166.95477,
+ "1437477011": 166.95481,
+ "1437477012": 166.95486,
+ "1437477013": 166.95493,
+ "1437477014": 166.955,
+ "1437477015": 166.95507,
+ "1437477016": 166.95515,
+ "1437477017": 166.95522,
+ "1437477018": 166.95528,
+ "1437477019": 166.95535,
+ "1437477020": 166.95541,
+ "1437477022": 166.95547,
+ "1437477023": 166.95552,
+ "1437477024": 166.95558,
+ "1437477025": 166.95563,
+ "1437477026": 166.95568,
+ "1437477027": 166.95573,
+ "1437477028": 166.95578,
+ "1437477029": 166.95583,
+ "1437477030": 166.95588,
+ "1437477031": 166.95593,
+ "1437477032": 166.95597,
+ "1437477033": 166.95602,
+ "1437477034": 166.95606,
+ "1437477035": 166.9561,
+ "1437477036": 166.95615,
+ "1437477037": 166.95619,
+ "1437477038": 166.95624,
+ "1437477039": 166.95628,
+ "1437477040": 166.95633,
+ "1437477041": 166.95637,
+ "1437477042": 166.95641,
+ "1437477043": 166.95646,
+ "1437477044": 166.9565,
+ "1437477045": 166.95654,
+ "1437477046": 166.95659,
+ "1437477047": 166.95663,
+ "1437477048": 166.95667,
+ "1437477050": 166.95672,
+ "1437477051": 166.95676,
+ "1437477052": 166.9568,
+ "1437477053": 166.95685,
+ "1437477054": 166.95689,
+ "1437477055": 166.95694,
+ "1437477056": 166.95698,
+ "1437477057": 166.95702,
+ "1437477058": 166.95706,
+ "1437477059": 166.9571,
+ "1437477060": 166.95714,
+ "1437477061": 166.95719,
+ "1437477062": 166.95723,
+ "1437477063": 166.95727,
+ "1437477064": 166.95731,
+ "1437477065": 166.95736,
+ "1437477066": 166.9574,
+ "1437477067": 166.95743,
+ "1437477068": 166.95745,
+ "1437477069": 166.95747,
+ "1437477070": 166.95748,
+ "1437477071": 166.95748,
+ "1437477072": 166.95749,
+ "1437477073": 166.95751,
+ "1437477075": 166.95754,
+ "1437477076": 166.95756,
+ "1437477077": 166.95757,
+ "1437477078": 166.95758,
+ "1437477079": 166.95758,
+ "1437477080": 166.95759,
+ "1437477081": 166.9576,
+ "1437477082": 166.9576,
+ "1437477083": 166.95761,
+ "1437477084": 166.95762,
+ "1437477085": 166.95764,
+ "1437477086": 166.95765,
+ "1437477087": 166.95767,
+ "1437477088": 166.95769,
+ "1437477089": 166.95772,
+ "1437477090": 166.95775,
+ "1437477091": 166.95778,
+ "1437477092": 166.95782,
+ "1437477093": 166.95786,
+ "1437477094": 166.95791,
+ "1437477095": 166.95796,
+ "1437477096": 166.95801,
+ "1437477097": 166.95807,
+ "1437477098": 166.95813,
+ "1437477099": 166.9582,
+ "1437477100": 166.95826,
+ "1437477101": 166.95833,
+ "1437477102": 166.9584,
+ "1437477103": 166.95848,
+ "1437477104": 166.95855,
+ "1437477105": 166.95863,
+ "1437477106": 166.9587,
+ "1437477107": 166.95878,
+ "1437477109": 166.95886,
+ "1437477110": 166.95894,
+ "1437477111": 166.95903,
+ "1437477112": 166.9591,
+ "1437477113": 166.95916,
+ "1437477114": 166.95923,
+ "1437477115": 166.95929,
+ "1437477116": 166.95933,
+ "1437477117": 166.95937,
+ "1437477118": 166.95938,
+ "1437477119": 166.95938,
+ "1437477120": 166.95937,
+ "1437477121": 166.95937,
+ "1437477122": 166.95937,
+ "1437477123": 166.95936,
+ "1437477124": 166.95936,
+ "1437477125": 166.95936,
+ "1437477126": 166.95935,
+ "1437477127": 166.95935,
+ "1437477128": 166.95935,
+ "1437477129": 166.95934,
+ "1437477130": 166.95933,
+ "1437477131": 166.95932,
+ "1437477132": 166.95931,
+ "1437477133": 166.9593,
+ "1437477134": 166.95928,
+ "1437477135": 166.95927,
+ "1437477136": 166.95925,
+ "1437477137": 166.95922,
+ "1437477138": 166.95919,
+ "1437477139": 166.95916,
+ "1437477140": 166.95911,
+ "1437477141": 166.95906,
+ "1437477143": 166.959,
+ "1437477144": 166.95893,
+ "1437477145": 166.95885,
+ "1437477146": 166.95877,
+ "1437477147": 166.95868,
+ "1437477148": 166.95859,
+ "1437477149": 166.95849,
+ "1437477150": 166.95839,
+ "1437477151": 166.95828,
+ "1437477152": 166.95816,
+ "1437477153": 166.95805,
+ "1437477154": 166.95793,
+ "1437477155": 166.95782,
+ "1437477156": 166.9577,
+ "1437477157": 166.95759,
+ "1437477158": 166.95749,
+ "1437477159": 166.95741,
+ "1437477160": 166.95732,
+ "1437477161": 166.95724,
+ "1437477162": 166.95717,
+ "1437477163": 166.95709,
+ "1437477164": 166.95701,
+ "1437477165": 166.95694,
+ "1437477166": 166.95685,
+ "1437477167": 166.95677,
+ "1437477168": 166.95667,
+ "1437477169": 166.95658,
+ "1437477170": 166.95647,
+ "1437477171": 166.95635,
+ "1437477172": 166.95624,
+ "1437477173": 166.95611,
+ "1437477174": 166.95599,
+ "1437477175": 166.95587,
+ "1437477176": 166.95575,
+ "1437477178": 166.95562,
+ "1437477179": 166.95549,
+ "1437477180": 166.95536,
+ "1437477181": 166.95522,
+ "1437477182": 166.95509,
+ "1437477183": 166.95495,
+ "1437477184": 166.95482,
+ "1437477185": 166.95468,
+ "1437477186": 166.95455,
+ "1437477187": 166.95441,
+ "1437477188": 166.95433,
+ "1437477189": 166.95433,
+ "1437477190": 166.95436,
+ "1437477191": 166.95441,
+ "1437477192": 166.95446,
+ "1437477193": 166.9545,
+ "1437477194": 166.95455,
+ "1437477195": 166.95459,
+ "1437477196": 166.95462,
+ "1437477197": 166.95464,
+ "1437477198": 166.95465,
+ "1437477199": 166.95463,
+ "1437477200": 166.95461,
+ "1437477201": 166.95457,
+ "1437477202": 166.95452,
+ "1437477203": 166.95447,
+ "1437477204": 166.95441,
+ "1437477205": 166.95435,
+ "1437477206": 166.95428,
+ "1437477207": 166.95422,
+ "1437477208": 166.95415,
+ "1437477209": 166.95407,
+ "1437477210": 166.954,
+ "1437477211": 166.95393,
+ "1437477212": 166.95385,
+ "1437477213": 166.95379,
+ "1437477215": 166.95372,
+ "1437477216": 166.95367,
+ "1437477217": 166.95362,
+ "1437477218": 166.95359,
+ "1437477219": 166.95356,
+ "1437477220": 166.95354,
+ "1437477221": 166.95353,
+ "1437477222": 166.95351,
+ "1437477223": 166.9535,
+ "1437477224": 166.95348,
+ "1437477225": 166.95345,
+ "1437477226": 166.95343,
+ "1437477227": 166.9534,
+ "1437477228": 166.95337,
+ "1437477229": 166.95334,
+ "1437477230": 166.95332,
+ "1437477231": 166.95329,
+ "1437477232": 166.95326,
+ "1437477233": 166.95324,
+ "1437477234": 166.95321,
+ "1437477235": 166.95318,
+ "1437477236": 166.95316,
+ "1437477237": 166.95313,
+ "1437477238": 166.9531,
+ "1437477239": 166.95306,
+ "1437477240": 166.95303,
+ "1437477241": 166.95299,
+ "1437477242": 166.95295,
+ "1437477243": 166.95291,
+ "1437477244": 166.95285,
+ "1437477245": 166.95279,
+ "1437477247": 166.95273,
+ "1437477248": 166.95268,
+ "1437477249": 166.95262,
+ "1437477250": 166.95254,
+ "1437477251": 166.95243,
+ "1437477252": 166.95232,
+ "1437477253": 166.95219,
+ "1437477254": 166.95207,
+ "1437477255": 166.95193,
+ "1437477256": 166.95179,
+ "1437477257": 166.95165,
+ "1437477258": 166.9515,
+ "1437477259": 166.95136,
+ "1437477260": 166.95122,
+ "1437477261": 166.95107,
+ "1437477262": 166.95092,
+ "1437477263": 166.95082,
+ "1437477264": 166.9508,
+ "1437477265": 166.95083,
+ "1437477266": 166.95088,
+ "1437477267": 166.95095,
+ "1437477268": 166.95101,
+ "1437477270": 166.95108,
+ "1437477271": 166.95115,
+ "1437477272": 166.95122,
+ "1437477273": 166.95128,
+ "1437477274": 166.95133,
+ "1437477275": 166.95138,
+ "1437477276": 166.95141,
+ "1437477277": 166.95145,
+ "1437477278": 166.95149,
+ "1437477279": 166.95153,
+ "1437477280": 166.95156,
+ "1437477281": 166.9516,
+ "1437477282": 166.95163,
+ "1437477283": 166.95166,
+ "1437477284": 166.95168,
+ "1437477285": 166.95171,
+ "1437477286": 166.95172,
+ "1437477287": 166.95174,
+ "1437477288": 166.95175,
+ "1437477289": 166.95175,
+ "1437477290": 166.95175,
+ "1437477291": 166.95173,
+ "1437477292": 166.95171,
+ "1437477294": 166.95168,
+ "1437477295": 166.95165,
+ "1437477296": 166.9516,
+ "1437477297": 166.95156,
+ "1437477298": 166.95152,
+ "1437477299": 166.95147,
+ "1437477300": 166.95142,
+ "1437477301": 166.95138,
+ "1437477302": 166.95133,
+ "1437477303": 166.9513,
+ "1437477304": 166.95126,
+ "1437477305": 166.95123,
+ "1437477306": 166.95119,
+ "1437477307": 166.95116,
+ "1437477308": 166.95113,
+ "1437477309": 166.9511,
+ "1437477310": 166.95107,
+ "1437477311": 166.95104,
+ "1437477312": 166.95101,
+ "1437477313": 166.95098,
+ "1437477314": 166.95095,
+ "1437477315": 166.95092,
+ "1437477316": 166.95089,
+ "1437477317": 166.95086,
+ "1437477318": 166.95084,
+ "1437477319": 166.95081,
+ "1437477321": 166.95079,
+ "1437477322": 166.95076,
+ "1437477323": 166.95072,
+ "1437477324": 166.9507,
+ "1437477325": 166.95067,
+ "1437477326": 166.95063,
+ "1437477327": 166.95059,
+ "1437477328": 166.95055,
+ "1437477329": 166.9505,
+ "1437477330": 166.95045,
+ "1437477331": 166.95042,
+ "1437477332": 166.95043,
+ "1437477333": 166.95048,
+ "1437477334": 166.95056,
+ "1437477335": 166.95065,
+ "1437477336": 166.95075,
+ "1437477337": 166.95085,
+ "1437477338": 166.95095,
+ "1437477339": 166.95104,
+ "1437477340": 166.95113,
+ "1437477341": 166.95122,
+ "1437477342": 166.9513,
+ "1437477343": 166.95138,
+ "1437477345": 166.95146,
+ "1437477346": 166.95153,
+ "1437477347": 166.95159,
+ "1437477348": 166.95164,
+ "1437477349": 166.95168,
+ "1437477350": 166.95171,
+ "1437477351": 166.95173,
+ "1437477352": 166.95174,
+ "1437477353": 166.95174,
+ "1437477354": 166.95174,
+ "1437477355": 166.95174,
+ "1437477356": 166.95174,
+ "1437477376": 166.95174,
+ "1437477377": 166.95175,
+ "1437477378": 166.95176,
+ "1437477379": 166.95178,
+ "1437477380": 166.95179,
+ "1437477381": 166.95181,
+ "1437477383": 166.95183,
+ "1437477384": 166.95184,
+ "1437477385": 166.95184,
+ "1437477386": 166.95184,
+ "1437477387": 166.95184,
+ "1437477388": 166.95184,
+ "1437477392": 166.95184,
+ "1437477393": 166.95184,
+ "1437477394": 166.95185,
+ "1437477395": 166.95185,
+ "1437477397": 166.95185,
+ "1437477398": 166.95186,
+ "1437477399": 166.95187,
+ "1437477400": 166.95187,
+ "1437477401": 166.95188,
+ "1437477402": 166.95188,
+ "1437477403": 166.95189,
+ "1437477404": 166.95189,
+ "1437477405": 166.95189,
+ "1437477406": 166.95189,
+ "1437477407": 166.95189,
+ "1437477408": 166.95189,
+ "1437477411": 166.95189,
+ "1437477412": 166.95189,
+ "1437477413": 166.9519,
+ "1437477414": 166.9519,
+ "1437477415": 166.95191,
+ "1437477417": 166.95191,
+ "1437477418": 166.95192,
+ "1437477419": 166.95192,
+ "1437477420": 166.95193,
+ "1437477421": 166.95193,
+ "1437477422": 166.95193,
+ "1437477423": 166.95194,
+ "1437477428": 166.95194,
+ "1437477429": 166.95194,
+ "1437477430": 166.95194,
+ "1437477432": 166.95195,
+ "1437477433": 166.95196,
+ "1437477434": 166.95197,
+ "1437477435": 166.95197,
+ "1437477436": 166.95198,
+ "1437477437": 166.95199,
+ "1437477438": 166.95199,
+ "1437477439": 166.952,
+ "1437477440": 166.95201,
+ "1437477441": 166.95202,
+ "1437477442": 166.95203,
+ "1437477443": 166.95203,
+ "1437477444": 166.95204,
+ "1437477445": 166.95205,
+ "1437477446": 166.95206,
+ "1437477447": 166.95206,
+ "1437477448": 166.95207,
+ "1437477449": 166.95208,
+ "1437477450": 166.95209,
+ "1437477451": 166.95209,
+ "1437477452": 166.9521,
+ "1437477453": 166.95211,
+ "1437477454": 166.95212,
+ "1437477455": 166.95213,
+ "1437477456": 166.95213,
+ "1437477457": 166.95214,
+ "1437477458": 166.95214,
+ "1437477459": 166.95214,
+ "1437477461": 166.95214,
+ "1437477465": 166.95214,
+ "1437477466": 166.95214,
+ "1437477467": 166.95215,
+ "1437477468": 166.95216,
+ "1437477469": 166.95217,
+ "1437477470": 166.95218,
+ "1437477471": 166.95219,
+ "1437477472": 166.95219,
+ "1437477473": 166.9522,
+ "1437477474": 166.95221,
+ "1437477475": 166.95222,
+ "1437477476": 166.95222,
+ "1437477477": 166.95223,
+ "1437477478": 166.95224,
+ "1437477479": 166.95224,
+ "1437477480": 166.95225,
+ "1437477481": 166.95226,
+ "1437477482": 166.95226,
+ "1437477483": 166.95227,
+ "1437477484": 166.95228,
+ "1437477485": 166.95229,
+ "1437477486": 166.95229,
+ "1437477487": 166.9523,
+ "1437477488": 166.95231,
+ "1437477489": 166.95231,
+ "1437477490": 166.95231,
+ "1437477491": 166.95231,
+ "1437477492": 166.95231,
+ "1437477493": 166.95231,
+ "1437477494": 166.95232,
+ "1437477495": 166.95232,
+ "1437477496": 166.95233,
+ "1437477497": 166.95233,
+ "1437477498": 166.95233,
+ "1437477500": 166.95234,
+ "1437477501": 166.95234,
+ "1437477502": 166.95234,
+ "1437477503": 166.95234,
+ "1437477504": 166.95234,
+ "1437477505": 166.95234,
+ "1437477506": 166.95233,
+ "1437477507": 166.95233,
+ "1437477508": 166.95232,
+ "1437477509": 166.95232,
+ "1437477510": 166.95231,
+ "1437477511": 166.95231,
+ "1437477512": 166.9523,
+ "1437477513": 166.95229,
+ "1437477514": 166.95229,
+ "1437477515": 166.95229,
+ "1437477516": 166.95229,
+ "1437477517": 166.95229,
+ "1437477518": 166.95229,
+ "1437477519": 166.9523,
+ "1437477520": 166.9523,
+ "1437477521": 166.95231,
+ "1437477522": 166.95231,
+ "1437477523": 166.95232,
+ "1437477524": 166.95232,
+ "1437477525": 166.95233,
+ "1437477526": 166.95233,
+ "1437477527": 166.95233,
+ "1437477528": 166.95233,
+ "1437477529": 166.95234,
+ "1437477530": 166.95234,
+ "1437477532": 166.95234,
+ "1437477533": 166.95234,
+ "1437477534": 166.95234,
+ "1437477535": 166.95234,
+ "1437477536": 166.95235,
+ "1437477537": 166.95235,
+ "1437477538": 166.95235,
+ "1437477539": 166.95235,
+ "1437477540": 166.95235,
+ "1437477541": 166.95235,
+ "1437477542": 166.95236,
+ "1437477543": 166.95236,
+ "1437477544": 166.95236,
+ "1437477545": 166.95236,
+ "1437477546": 166.95236,
+ "1437477547": 166.95236,
+ "1437477548": 166.95236,
+ "1437477549": 166.95237,
+ "1437477550": 166.95237,
+ "1437477551": 166.95237,
+ "1437477552": 166.95237,
+ "1437477553": 166.95237,
+ "1437477555": 166.95237,
+ "1437477556": 166.95237,
+ "1437477557": 166.95237,
+ "1437477558": 166.95238,
+ "1437477559": 166.95238,
+ "1437477560": 166.95238,
+ "1437477561": 166.95238,
+ "1437477562": 166.95238,
+ "1437477563": 166.95238,
+ "1437477564": 166.95238,
+ "1437477565": 166.95238,
+ "1437477566": 166.95239,
+ "1437477567": 166.95239,
+ "1437477568": 166.95239,
+ "1437477569": 166.95239,
+ "1437477570": 166.95239,
+ "1437477571": 166.95239,
+ "1437477572": 166.9524,
+ "1437477573": 166.9524,
+ "1437477574": 166.9524,
+ "1437477575": 166.9524,
+ "1437477576": 166.9524,
+ "1437477577": 166.9524,
+ "1437477578": 166.9524,
+ "1437477580": 166.9524,
+ "1437477581": 166.9524,
+ "1437477582": 166.9524,
+ "1437477583": 166.95241,
+ "1437477584": 166.95241,
+ "1437477585": 166.95241,
+ "1437477586": 166.95241,
+ "1437477587": 166.95241,
+ "1437477588": 166.95242,
+ "1437477589": 166.95242,
+ "1437477590": 166.95242,
+ "1437477591": 166.95242,
+ "1437477592": 166.95242,
+ "1437477593": 166.95243,
+ "1437477594": 166.95243,
+ "1437477595": 166.95243,
+ "1437477596": 166.95243,
+ "1437477597": 166.95243,
+ "1437477598": 166.95243,
+ "1437477599": 166.95244,
+ "1437477600": 166.95244,
+ "1437477601": 166.95244,
+ "1437477604": 166.95244,
+ "1437477605": 166.95244,
+ "1437477607": 166.95244,
+ "1437477608": 166.95244,
+ "1437477609": 166.95244,
+ "1437477610": 166.95245,
+ "1437477611": 166.95245,
+ "1437477612": 166.95246,
+ "1437477613": 166.95248,
+ "1437477614": 166.95248,
+ "1437477615": 166.95246,
+ "1437477616": 166.95244,
+ "1437477617": 166.95245,
+ "1437477618": 166.95245,
+ "1437477619": 166.95248,
+ "1437477620": 166.95249,
+ "1437477621": 166.9525,
+ "1437477622": 166.95249,
+ "1437477623": 166.95249,
+ "1437477624": 166.95248,
+ "1437477625": 166.95247,
+ "1437477626": 166.95246,
+ "1437477627": 166.95244,
+ "1437477628": 166.95242,
+ "1437477629": 166.9524,
+ "1437477630": 166.95238,
+ "1437477631": 166.95236,
+ "1437477632": 166.95235,
+ "1437477633": 166.95234,
+ "1437477634": 166.95234,
+ "1437477635": 166.95235,
+ "1437477636": 166.95237,
+ "1437477638": 166.95238,
+ "1437477639": 166.95239,
+ "1437477640": 166.95239,
+ "1437477641": 166.95239,
+ "1437477642": 166.95237,
+ "1437477643": 166.95233,
+ "1437477644": 166.95229,
+ "1437477645": 166.95223,
+ "1437477646": 166.95217,
+ "1437477647": 166.9521,
+ "1437477648": 166.95203,
+ "1437477649": 166.95195,
+ "1437477650": 166.95186,
+ "1437477651": 166.95178,
+ "1437477652": 166.95169,
+ "1437477653": 166.9516,
+ "1437477654": 166.95151,
+ "1437477655": 166.95144,
+ "1437477656": 166.95143,
+ "1437477657": 166.95148,
+ "1437477658": 166.95151,
+ "1437477659": 166.95154,
+ "1437477660": 166.95156,
+ "1437477661": 166.95156,
+ "1437477662": 166.95156,
+ "1437477663": 166.95156,
+ "1437477664": 166.95156,
+ "1437477665": 166.95156,
+ "1437477666": 166.95157,
+ "1437477667": 166.95158,
+ "1437477668": 166.95159,
+ "1437477669": 166.95161,
+ "1437477671": 166.95161,
+ "1437477672": 166.95162,
+ "1437477673": 166.95163,
+ "1437477674": 166.95163,
+ "1437477676": 166.95164,
+ "1437477677": 166.95165,
+ "1437477678": 166.95166,
+ "1437477679": 166.95166,
+ "1437477680": 166.95167,
+ "1437477681": 166.95168,
+ "1437477682": 166.95169,
+ "1437477683": 166.95169,
+ "1437477684": 166.95169,
+ "1437477685": 166.95169,
+ "1437477688": 166.95169,
+ "1437477689": 166.95169,
+ "1437477690": 166.95169,
+ "1437477691": 166.9517,
+ "1437477692": 166.95171,
+ "1437477693": 166.95172,
+ "1437477695": 166.95173,
+ "1437477696": 166.95174,
+ "1437477697": 166.95175,
+ "1437477698": 166.95176,
+ "1437477699": 166.95177,
+ "1437477700": 166.95178,
+ "1437477701": 166.95179,
+ "1437477702": 166.9518,
+ "1437477703": 166.9518,
+ "1437477704": 166.9518,
+ "1437477705": 166.9518,
+ "1437477706": 166.9518
+ },
+ "altitudes": {
+ "1437474517": 0.19999999999998863,
+ "1437474518": 0.19999999999998863,
+ "1437474519": 0.19999999999998863,
+ "1437474520": 0.19999999999998863,
+ "1437474521": 0.19999999999998863,
+ "1437474522": 0.19999999999998863,
+ "1437474523": 0.19999999999998863,
+ "1437474524": 0.19999999999998863,
+ "1437474525": 0.19999999999998863,
+ "1437474526": 0.19999999999998863,
+ "1437474527": 0.19999999999998863,
+ "1437474528": 0.19999999999998863,
+ "1437474529": 0.19999999999998863,
+ "1437474530": 0.19999999999998863,
+ "1437474532": 0.19999999999998863,
+ "1437474533": 0.19999999999998863,
+ "1437474534": 0.19999999999998863,
+ "1437474535": 0.19999999999998863,
+ "1437474536": 0.19999999999998863,
+ "1437474537": 0.19999999999998863,
+ "1437474538": 0.19999999999998863,
+ "1437474539": 0.19999999999998863,
+ "1437474540": 0.19999999999998863,
+ "1437474541": 0.19999999999998863,
+ "1437474542": 0.19999999999998863,
+ "1437474543": 0.19999999999998863,
+ "1437474544": 0.19999999999998863,
+ "1437474545": 0.19999999999998863,
+ "1437474546": 0.19999999999998863,
+ "1437474547": 0.19999999999998863,
+ "1437474548": 0.19999999999998863,
+ "1437474549": 0.19999999999998863,
+ "1437474550": 0.19999999999998863,
+ "1437474551": 0.19999999999998863,
+ "1437474552": 0.19999999999998863,
+ "1437474553": 0.19999999999998863,
+ "1437474554": 0.19999999999998863,
+ "1437474555": 0.19999999999998863,
+ "1437474556": 0.19999999999998863,
+ "1437474557": 0.19999999999998863,
+ "1437474558": 0.19999999999998863,
+ "1437474559": 0.19999999999998863,
+ "1437474560": 0.19999999999998863,
+ "1437474561": 0.19999999999998863,
+ "1437474562": 0.19999999999998863,
+ "1437474563": 0.19999999999998863,
+ "1437474564": 0.19999999999998863,
+ "1437474566": 0.19999999999998863,
+ "1437474567": 0.19999999999998863,
+ "1437474568": 0.19999999999998863,
+ "1437474569": 0.19999999999998863,
+ "1437474570": 0.19999999999998863,
+ "1437474571": 0.19999999999998863,
+ "1437474572": 0.19999999999998863,
+ "1437474573": 0.19999999999998863,
+ "1437474574": 0.19999999999998863,
+ "1437474575": 0.19999999999998863,
+ "1437474576": 0.19999999999998863,
+ "1437474577": 0.19999999999998863,
+ "1437474578": 0.19999999999998863,
+ "1437474579": 0.19999999999998863,
+ "1437474580": 0.19999999999998863,
+ "1437474581": 0.19999999999998863,
+ "1437474582": 0.19999999999998863,
+ "1437474583": 0.19999999999998863,
+ "1437474584": 0.19999999999998863,
+ "1437474585": 0.39999999999997726,
+ "1437474586": 0.39999999999997726,
+ "1437474587": 0.39999999999997726,
+ "1437474588": 0.6000000000000227,
+ "1437474589": 0.8000000000000114,
+ "1437474590": 0.8000000000000114,
+ "1437474591": 1,
+ "1437474592": 1,
+ "1437474593": 1.1999999999999886,
+ "1437474594": 1.1999999999999886,
+ "1437474595": 1.3999999999999773,
+ "1437474596": 1.6000000000000227,
+ "1437474597": 1.6000000000000227,
+ "1437474598": 1.8000000000000114,
+ "1437474599": 2.1999999999999886,
+ "1437474600": 2.3999999999999773,
+ "1437474601": 2.8000000000000114,
+ "1437474603": 3,
+ "1437474604": 3,
+ "1437474605": 3.1999999999999886,
+ "1437474606": 3.1999999999999886,
+ "1437474607": 3.1999999999999886,
+ "1437474608": 3.3999999999999773,
+ "1437474609": 3.3999999999999773,
+ "1437474610": 3.3999999999999773,
+ "1437474611": 3.3999999999999773,
+ "1437474612": 3.3999999999999773,
+ "1437474613": 3.3999999999999773,
+ "1437474614": 3.3999999999999773,
+ "1437474615": 3.3999999999999773,
+ "1437474616": 3.3999999999999773,
+ "1437474617": 3.6000000000000227,
+ "1437474618": 3.6000000000000227,
+ "1437474619": 3.6000000000000227,
+ "1437474620": 3.6000000000000227,
+ "1437474621": 3.6000000000000227,
+ "1437474622": 3.8000000000000114,
+ "1437474623": 3.8000000000000114,
+ "1437474624": 3.8000000000000114,
+ "1437474626": 3.8000000000000114,
+ "1437474627": 4,
+ "1437474628": 4,
+ "1437474629": 4.199999999999989,
+ "1437474630": 4.600000000000023,
+ "1437474631": 4.800000000000011,
+ "1437474632": 5,
+ "1437474633": 5.399999999999977,
+ "1437474634": 5.600000000000023,
+ "1437474635": 5.800000000000011,
+ "1437474636": 6,
+ "1437474637": 6,
+ "1437474638": 6.199999999999989,
+ "1437474639": 6.199999999999989,
+ "1437474640": 6.199999999999989,
+ "1437474641": 6.199999999999989,
+ "1437474642": 6.199999999999989,
+ "1437474643": 6.199999999999989,
+ "1437474644": 6.199999999999989,
+ "1437474645": 6.800000000000011,
+ "1437474646": 7.399999999999977,
+ "1437474647": 8,
+ "1437474648": 8.399999999999977,
+ "1437474649": 9.199999999999989,
+ "1437474650": 9.600000000000023,
+ "1437474652": 10.199999999999989,
+ "1437474653": 10.600000000000023,
+ "1437474654": 11.199999999999989,
+ "1437474655": 11.600000000000023,
+ "1437474656": 12,
+ "1437474657": 12.399999999999977,
+ "1437474658": 12.799999999999955,
+ "1437474659": 13.200000000000045,
+ "1437474660": 13.399999999999977,
+ "1437474661": 13.600000000000023,
+ "1437474662": 13.799999999999955,
+ "1437474663": 14,
+ "1437474664": 14.200000000000045,
+ "1437474665": 14.200000000000045,
+ "1437474666": 14.600000000000023,
+ "1437474667": 15,
+ "1437474668": 15.600000000000023,
+ "1437474669": 16,
+ "1437474670": 16.399999999999977,
+ "1437474671": 16.799999999999955,
+ "1437474672": 17.200000000000045,
+ "1437474673": 17.399999999999977,
+ "1437474674": 17.799999999999955,
+ "1437474675": 18,
+ "1437474676": 18.200000000000045,
+ "1437474677": 18.600000000000023,
+ "1437474678": 18.799999999999955,
+ "1437474679": 19,
+ "1437474681": 19.200000000000045,
+ "1437474682": 19.399999999999977,
+ "1437474683": 19.799999999999955,
+ "1437474684": 20,
+ "1437474685": 20.200000000000045,
+ "1437474686": 20.600000000000023,
+ "1437474687": 20.799999999999955,
+ "1437474688": 21,
+ "1437474689": 21.200000000000045,
+ "1437474690": 21.600000000000023,
+ "1437474691": 21.799999999999955,
+ "1437474692": 22,
+ "1437474693": 22.200000000000045,
+ "1437474694": 22.600000000000023,
+ "1437474695": 22.799999999999955,
+ "1437474696": 23,
+ "1437474697": 23.200000000000045,
+ "1437474698": 23.399999999999977,
+ "1437474699": 23.799999999999955,
+ "1437474700": 24,
+ "1437474701": 24.200000000000045,
+ "1437474702": 24.600000000000023,
+ "1437474703": 24.799999999999955,
+ "1437474705": 25,
+ "1437474706": 25.200000000000045,
+ "1437474707": 25.600000000000023,
+ "1437474708": 25.799999999999955,
+ "1437474709": 26,
+ "1437474710": 26.399999999999977,
+ "1437474711": 26.600000000000023,
+ "1437474712": 26.799999999999955,
+ "1437474713": 27.200000000000045,
+ "1437474714": 27.399999999999977,
+ "1437474715": 27.600000000000023,
+ "1437474716": 28,
+ "1437474717": 28.200000000000045,
+ "1437474718": 28.600000000000023,
+ "1437474719": 28.799999999999955,
+ "1437474720": 29.200000000000045,
+ "1437474721": 29.399999999999977,
+ "1437474722": 29.799999999999955,
+ "1437474723": 30,
+ "1437474724": 30.399999999999977,
+ "1437474725": 30.600000000000023,
+ "1437474726": 31,
+ "1437474727": 31.399999999999977,
+ "1437474728": 31.600000000000023,
+ "1437474729": 32,
+ "1437474730": 32.200000000000045,
+ "1437474732": 32.60000000000002,
+ "1437474733": 32.799999999999955,
+ "1437474734": 33.200000000000045,
+ "1437474735": 33.39999999999998,
+ "1437474736": 33.799999999999955,
+ "1437474737": 34,
+ "1437474738": 34.200000000000045,
+ "1437474739": 34.39999999999998,
+ "1437474740": 34.60000000000002,
+ "1437474741": 34.799999999999955,
+ "1437474742": 34.799999999999955,
+ "1437474743": 34.799999999999955,
+ "1437474744": 34.799999999999955,
+ "1437474745": 34.799999999999955,
+ "1437474746": 34.60000000000002,
+ "1437474747": 34.60000000000002,
+ "1437474748": 34.60000000000002,
+ "1437474749": 34.799999999999955,
+ "1437474750": 35,
+ "1437474751": 35.39999999999998,
+ "1437474752": 36,
+ "1437474753": 36.39999999999998,
+ "1437474754": 37,
+ "1437474755": 37.39999999999998,
+ "1437474756": 37.799999999999955,
+ "1437474757": 38.39999999999998,
+ "1437474758": 38.799999999999955,
+ "1437474760": 39.200000000000045,
+ "1437474761": 39.39999999999998,
+ "1437474762": 39.799999999999955,
+ "1437474763": 40.200000000000045,
+ "1437474764": 40.60000000000002,
+ "1437474765": 40.799999999999955,
+ "1437474766": 41.200000000000045,
+ "1437474767": 41.60000000000002,
+ "1437474768": 41.799999999999955,
+ "1437474769": 42.200000000000045,
+ "1437474770": 42.39999999999998,
+ "1437474771": 42.799999999999955,
+ "1437474772": 43.200000000000045,
+ "1437474773": 43.39999999999998,
+ "1437474774": 43.799999999999955,
+ "1437474775": 44,
+ "1437474776": 44.39999999999998,
+ "1437474777": 44.60000000000002,
+ "1437474778": 45,
+ "1437474779": 45.200000000000045,
+ "1437474780": 45.60000000000002,
+ "1437474781": 45.799999999999955,
+ "1437474782": 46.200000000000045,
+ "1437474783": 46.39999999999998,
+ "1437474785": 46.799999999999955,
+ "1437474786": 47,
+ "1437474787": 47.39999999999998,
+ "1437474788": 47.60000000000002,
+ "1437474789": 48,
+ "1437474790": 48.200000000000045,
+ "1437474791": 48.60000000000002,
+ "1437474792": 48.799999999999955,
+ "1437474793": 49.200000000000045,
+ "1437474794": 49.39999999999998,
+ "1437474795": 49.799999999999955,
+ "1437474796": 50,
+ "1437474797": 50.39999999999998,
+ "1437474798": 50.799999999999955,
+ "1437474799": 51,
+ "1437474800": 51.39999999999998,
+ "1437474801": 51.60000000000002,
+ "1437474802": 52,
+ "1437474803": 52.200000000000045,
+ "1437474804": 52.39999999999998,
+ "1437474805": 52.799999999999955,
+ "1437474806": 53,
+ "1437474808": 53.200000000000045,
+ "1437474809": 53.200000000000045,
+ "1437474810": 53,
+ "1437474811": 53,
+ "1437474812": 53,
+ "1437474813": 53.200000000000045,
+ "1437474814": 53.39999999999998,
+ "1437474815": 53.60000000000002,
+ "1437474816": 54,
+ "1437474817": 54.200000000000045,
+ "1437474818": 54.60000000000002,
+ "1437474819": 54.799999999999955,
+ "1437474820": 55.200000000000045,
+ "1437474821": 55.39999999999998,
+ "1437474822": 55.60000000000002,
+ "1437474823": 55.799999999999955,
+ "1437474824": 56,
+ "1437474825": 56.200000000000045,
+ "1437474827": 56.39999999999998,
+ "1437474828": 56.39999999999998,
+ "1437474829": 56.60000000000002,
+ "1437474830": 56.60000000000002,
+ "1437474831": 56.60000000000002,
+ "1437474832": 56.60000000000002,
+ "1437474833": 56.39999999999998,
+ "1437474834": 56.39999999999998,
+ "1437474835": 56.200000000000045,
+ "1437474836": 56,
+ "1437474837": 55.799999999999955,
+ "1437474838": 55.60000000000002,
+ "1437474839": 55.39999999999998,
+ "1437474840": 55.200000000000045,
+ "1437474841": 55,
+ "1437474842": 54.60000000000002,
+ "1437474843": 54.39999999999998,
+ "1437474844": 54,
+ "1437474845": 53.799999999999955,
+ "1437474846": 53.39999999999998,
+ "1437474847": 53,
+ "1437474848": 52.799999999999955,
+ "1437474849": 52.39999999999998,
+ "1437474850": 52.200000000000045,
+ "1437474851": 51.799999999999955,
+ "1437474852": 51.60000000000002,
+ "1437474853": 51.39999999999998,
+ "1437474854": 51.39999999999998,
+ "1437474855": 51.39999999999998,
+ "1437474856": 51.39999999999998,
+ "1437474857": 51.60000000000002,
+ "1437474859": 51.799999999999955,
+ "1437474860": 52,
+ "1437474861": 52,
+ "1437474862": 52.200000000000045,
+ "1437474863": 52.200000000000045,
+ "1437474864": 52.39999999999998,
+ "1437474865": 52.39999999999998,
+ "1437474866": 52.60000000000002,
+ "1437474867": 52.60000000000002,
+ "1437474868": 52.799999999999955,
+ "1437474869": 52.799999999999955,
+ "1437474870": 53,
+ "1437474871": 53,
+ "1437474872": 53.200000000000045,
+ "1437474873": 53.200000000000045,
+ "1437474874": 53.39999999999998,
+ "1437474875": 53.39999999999998,
+ "1437474876": 53.60000000000002,
+ "1437474877": 53.60000000000002,
+ "1437474878": 53.60000000000002,
+ "1437474879": 53.799999999999955,
+ "1437474880": 53.799999999999955,
+ "1437474881": 53.799999999999955,
+ "1437474882": 53.799999999999955,
+ "1437474883": 53.60000000000002,
+ "1437474884": 53.60000000000002,
+ "1437474885": 53.39999999999998,
+ "1437474886": 53.200000000000045,
+ "1437474887": 53,
+ "1437474888": 52.799999999999955,
+ "1437474890": 52.60000000000002,
+ "1437474891": 52.39999999999998,
+ "1437474892": 52.200000000000045,
+ "1437474893": 52,
+ "1437474894": 51.799999999999955,
+ "1437474895": 51.60000000000002,
+ "1437474896": 51.39999999999998,
+ "1437474897": 51.39999999999998,
+ "1437474898": 51.39999999999998,
+ "1437474899": 51.39999999999998,
+ "1437474900": 51.39999999999998,
+ "1437474901": 51.39999999999998,
+ "1437474902": 51.60000000000002,
+ "1437474903": 51.60000000000002,
+ "1437474904": 51.60000000000002,
+ "1437474905": 51.60000000000002,
+ "1437474906": 51.60000000000002,
+ "1437474907": 51.60000000000002,
+ "1437474908": 51.39999999999998,
+ "1437474909": 51.39999999999998,
+ "1437474910": 51.200000000000045,
+ "1437474911": 51,
+ "1437474912": 50.60000000000002,
+ "1437474913": 50.39999999999998,
+ "1437474914": 50,
+ "1437474915": 49.39999999999998,
+ "1437474916": 49,
+ "1437474917": 48.39999999999998,
+ "1437474918": 48,
+ "1437474919": 47.39999999999998,
+ "1437474920": 46.799999999999955,
+ "1437474921": 46.200000000000045,
+ "1437474923": 45.799999999999955,
+ "1437474924": 45.200000000000045,
+ "1437474925": 44.60000000000002,
+ "1437474926": 44,
+ "1437474927": 43.39999999999998,
+ "1437474928": 43,
+ "1437474929": 42.60000000000002,
+ "1437474930": 42.60000000000002,
+ "1437474931": 43,
+ "1437474932": 43.799999999999955,
+ "1437474933": 44.39999999999998,
+ "1437474934": 45,
+ "1437474935": 45.60000000000002,
+ "1437474936": 46.200000000000045,
+ "1437474937": 46.60000000000002,
+ "1437474938": 47.200000000000045,
+ "1437474939": 47.60000000000002,
+ "1437474940": 48,
+ "1437474941": 48.39999999999998,
+ "1437474942": 48.60000000000002,
+ "1437474943": 48.799999999999955,
+ "1437474944": 49,
+ "1437474945": 49,
+ "1437474946": 49,
+ "1437474947": 49,
+ "1437474948": 49,
+ "1437474949": 49,
+ "1437474950": 49,
+ "1437474951": 49,
+ "1437474952": 48.799999999999955,
+ "1437474953": 48.799999999999955,
+ "1437474954": 48.60000000000002,
+ "1437474955": 48.60000000000002,
+ "1437474956": 48.39999999999998,
+ "1437474957": 48.39999999999998,
+ "1437474958": 48.200000000000045,
+ "1437474959": 48,
+ "1437474960": 47.799999999999955,
+ "1437474962": 47.60000000000002,
+ "1437474963": 47.39999999999998,
+ "1437474964": 47.200000000000045,
+ "1437474965": 46.799999999999955,
+ "1437474966": 46.39999999999998,
+ "1437474967": 46,
+ "1437474968": 45.799999999999955,
+ "1437474969": 45.39999999999998,
+ "1437474970": 45.200000000000045,
+ "1437474971": 45,
+ "1437474972": 44.799999999999955,
+ "1437474973": 44.60000000000002,
+ "1437474974": 44.39999999999998,
+ "1437474975": 44.200000000000045,
+ "1437474976": 44.200000000000045,
+ "1437474977": 44,
+ "1437474978": 43.799999999999955,
+ "1437474979": 43.799999999999955,
+ "1437474980": 43.60000000000002,
+ "1437474981": 43.39999999999998,
+ "1437474982": 43.200000000000045,
+ "1437474983": 43,
+ "1437474984": 42.799999999999955,
+ "1437474985": 42.39999999999998,
+ "1437474986": 42,
+ "1437474987": 41.39999999999998,
+ "1437474988": 40.60000000000002,
+ "1437474989": 39.60000000000002,
+ "1437474990": 38.799999999999955,
+ "1437474992": 37.799999999999955,
+ "1437474993": 37.39999999999998,
+ "1437474994": 37.200000000000045,
+ "1437474995": 37.60000000000002,
+ "1437474996": 38,
+ "1437474997": 38.39999999999998,
+ "1437474998": 38.39999999999998,
+ "1437474999": 38,
+ "1437475000": 37.39999999999998,
+ "1437475001": 36.60000000000002,
+ "1437475002": 36,
+ "1437475003": 35.200000000000045,
+ "1437475004": 34.39999999999998,
+ "1437475005": 33.60000000000002,
+ "1437475006": 32.60000000000002,
+ "1437475007": 31.799999999999955,
+ "1437475008": 30.600000000000023,
+ "1437475009": 29.399999999999977,
+ "1437475010": 28,
+ "1437475012": 26.399999999999977,
+ "1437475013": 25.200000000000045,
+ "1437475014": 23.799999999999955,
+ "1437475015": 22.799999999999955,
+ "1437475016": 21.799999999999955,
+ "1437475017": 20.799999999999955,
+ "1437475018": 20,
+ "1437475019": 19.200000000000045,
+ "1437475020": 18.399999999999977,
+ "1437475021": 17.600000000000023,
+ "1437475022": 16.799999999999955,
+ "1437475023": 16.200000000000045,
+ "1437475024": 15.600000000000023,
+ "1437475025": 15,
+ "1437475026": 14.399999999999977,
+ "1437475027": 14,
+ "1437475029": 13.399999999999977,
+ "1437475030": 13,
+ "1437475031": 12.600000000000023,
+ "1437475032": 12.399999999999977,
+ "1437475033": 12,
+ "1437475034": 11.800000000000011,
+ "1437475035": 11.399999999999977,
+ "1437475036": 11.199999999999989,
+ "1437475037": 11,
+ "1437475038": 10.800000000000011,
+ "1437475039": 10.600000000000023,
+ "1437475040": 10.399999999999977,
+ "1437475041": 10.199999999999989,
+ "1437475042": 10.199999999999989,
+ "1437475043": 10.199999999999989,
+ "1437475044": 10.199999999999989,
+ "1437475045": 10.199999999999989,
+ "1437475046": 10.199999999999989,
+ "1437475047": 10.399999999999977,
+ "1437475048": 10.399999999999977,
+ "1437475049": 10.399999999999977,
+ "1437475050": 10.600000000000023,
+ "1437475051": 10.600000000000023,
+ "1437475052": 10.600000000000023,
+ "1437475054": 10.600000000000023,
+ "1437475055": 10.600000000000023,
+ "1437475056": 10.600000000000023,
+ "1437475057": 10.600000000000023,
+ "1437475058": 10.600000000000023,
+ "1437475059": 10.600000000000023,
+ "1437475060": 10.600000000000023,
+ "1437475061": 10.600000000000023,
+ "1437475062": 10.600000000000023,
+ "1437475063": 10.600000000000023,
+ "1437475064": 10.600000000000023,
+ "1437475065": 10.600000000000023,
+ "1437475066": 10.600000000000023,
+ "1437475067": 10.600000000000023,
+ "1437475068": 10.600000000000023,
+ "1437475069": 10.600000000000023,
+ "1437475070": 10.600000000000023,
+ "1437475071": 10.600000000000023,
+ "1437475072": 10.600000000000023,
+ "1437475073": 10.600000000000023,
+ "1437475074": 10.199999999999989,
+ "1437475075": 10,
+ "1437475076": 9.600000000000023,
+ "1437475077": 9,
+ "1437475078": 8.600000000000023,
+ "1437475079": 8,
+ "1437475080": 7.800000000000011,
+ "1437475081": 7.600000000000023,
+ "1437475083": 7.800000000000011,
+ "1437475084": 8.199999999999989,
+ "1437475085": 8.600000000000023,
+ "1437475086": 9,
+ "1437475087": 9.399999999999977,
+ "1437475088": 9.600000000000023,
+ "1437475089": 10,
+ "1437475090": 10.199999999999989,
+ "1437475091": 10.600000000000023,
+ "1437475092": 11,
+ "1437475093": 11.399999999999977,
+ "1437475094": 11.600000000000023,
+ "1437475095": 12,
+ "1437475096": 12.399999999999977,
+ "1437475097": 12.600000000000023,
+ "1437475098": 13,
+ "1437475099": 13.200000000000045,
+ "1437475100": 13.600000000000023,
+ "1437475101": 13.799999999999955,
+ "1437475102": 14,
+ "1437475103": 14.200000000000045,
+ "1437475104": 14.399999999999977,
+ "1437475105": 14.399999999999977,
+ "1437475106": 14.399999999999977,
+ "1437475107": 14.399999999999977,
+ "1437475108": 14.399999999999977,
+ "1437475109": 14.200000000000045,
+ "1437475110": 14.200000000000045,
+ "1437475112": 14,
+ "1437475113": 14,
+ "1437475114": 14.200000000000045,
+ "1437475115": 14.399999999999977,
+ "1437475116": 14.600000000000023,
+ "1437475117": 15,
+ "1437475118": 15.399999999999977,
+ "1437475119": 16,
+ "1437475120": 16.399999999999977,
+ "1437475121": 16.799999999999955,
+ "1437475122": 17.200000000000045,
+ "1437475123": 17.600000000000023,
+ "1437475124": 17.799999999999955,
+ "1437475125": 18,
+ "1437475126": 18.200000000000045,
+ "1437475127": 18.399999999999977,
+ "1437475128": 18.399999999999977,
+ "1437475129": 18.600000000000023,
+ "1437475130": 18.600000000000023,
+ "1437475131": 18.600000000000023,
+ "1437475132": 18.600000000000023,
+ "1437475133": 18.600000000000023,
+ "1437475134": 18.600000000000023,
+ "1437475135": 18.600000000000023,
+ "1437475136": 18.600000000000023,
+ "1437475137": 18.600000000000023,
+ "1437475138": 18.399999999999977,
+ "1437475139": 18.200000000000045,
+ "1437475140": 18.200000000000045,
+ "1437475141": 17.799999999999955,
+ "1437475142": 17.600000000000023,
+ "1437475143": 17.200000000000045,
+ "1437475145": 16.600000000000023,
+ "1437475146": 16.200000000000045,
+ "1437475147": 15.600000000000023,
+ "1437475148": 15.200000000000045,
+ "1437475149": 14.799999999999955,
+ "1437475150": 14.200000000000045,
+ "1437475151": 14,
+ "1437475152": 13.600000000000023,
+ "1437475153": 13.399999999999977,
+ "1437475154": 13.200000000000045,
+ "1437475155": 13,
+ "1437475156": 13,
+ "1437475157": 12.799999999999955,
+ "1437475158": 12.600000000000023,
+ "1437475159": 12.600000000000023,
+ "1437475160": 12.399999999999977,
+ "1437475161": 12.399999999999977,
+ "1437475162": 12.399999999999977,
+ "1437475163": 12.399999999999977,
+ "1437475164": 12,
+ "1437475165": 11.399999999999977,
+ "1437475166": 10.800000000000011,
+ "1437475167": 10.199999999999989,
+ "1437475168": 9.600000000000023,
+ "1437475169": 9,
+ "1437475170": 8.600000000000023,
+ "1437475171": 8.600000000000023,
+ "1437475173": 8.600000000000023,
+ "1437475174": 8.800000000000011,
+ "1437475175": 9,
+ "1437475176": 9,
+ "1437475177": 9.199999999999989,
+ "1437475178": 9.399999999999977,
+ "1437475179": 9.399999999999977,
+ "1437475180": 9.399999999999977,
+ "1437475181": 9.399999999999977,
+ "1437475182": 9.600000000000023,
+ "1437475183": 9.600000000000023,
+ "1437475184": 9.600000000000023,
+ "1437475185": 9.600000000000023,
+ "1437475186": 9.600000000000023,
+ "1437475187": 9.600000000000023,
+ "1437475188": 9.800000000000011,
+ "1437475189": 9.800000000000011,
+ "1437475190": 9.800000000000011,
+ "1437475191": 9.800000000000011,
+ "1437475192": 9.800000000000011,
+ "1437475193": 9.800000000000011,
+ "1437475194": 9.800000000000011,
+ "1437475195": 9.800000000000011,
+ "1437475196": 9.800000000000011,
+ "1437475197": 9.800000000000011,
+ "1437475198": 9.600000000000023,
+ "1437475200": 9.600000000000023,
+ "1437475201": 9.399999999999977,
+ "1437475202": 9.399999999999977,
+ "1437475203": 9.399999999999977,
+ "1437475204": 9.199999999999989,
+ "1437475205": 9.199999999999989,
+ "1437475206": 9,
+ "1437475207": 9,
+ "1437475208": 8.800000000000011,
+ "1437475209": 8.800000000000011,
+ "1437475210": 8.600000000000023,
+ "1437475211": 8.600000000000023,
+ "1437475212": 8.399999999999977,
+ "1437475213": 8.399999999999977,
+ "1437475214": 8.399999999999977,
+ "1437475215": 8.600000000000023,
+ "1437475216": 8.600000000000023,
+ "1437475217": 8.800000000000011,
+ "1437475218": 8.800000000000011,
+ "1437475219": 9,
+ "1437475220": 9,
+ "1437475221": 9.199999999999989,
+ "1437475222": 9.199999999999989,
+ "1437475223": 9.199999999999989,
+ "1437475224": 9.399999999999977,
+ "1437475225": 9.399999999999977,
+ "1437475226": 9.600000000000023,
+ "1437475227": 9.600000000000023,
+ "1437475228": 9.600000000000023,
+ "1437475230": 9.399999999999977,
+ "1437475231": 9.199999999999989,
+ "1437475232": 9.199999999999989,
+ "1437475233": 9,
+ "1437475234": 9,
+ "1437475235": 9,
+ "1437475236": 9,
+ "1437475237": 9,
+ "1437475238": 9,
+ "1437475239": 9,
+ "1437475240": 9,
+ "1437475241": 9,
+ "1437475242": 9,
+ "1437475243": 9,
+ "1437475244": 9,
+ "1437475245": 9,
+ "1437475246": 9,
+ "1437475247": 9,
+ "1437475248": 9,
+ "1437475249": 9,
+ "1437475250": 9,
+ "1437475251": 9,
+ "1437475252": 9,
+ "1437475253": 9,
+ "1437475254": 8.800000000000011,
+ "1437475255": 8.600000000000023,
+ "1437475256": 8.399999999999977,
+ "1437475257": 8.399999999999977,
+ "1437475258": 9,
+ "1437475259": 9.600000000000023,
+ "1437475260": 10,
+ "1437475261": 10.600000000000023,
+ "1437475262": 11.199999999999989,
+ "1437475263": 11.600000000000023,
+ "1437475264": 12.200000000000045,
+ "1437475265": 12.600000000000023,
+ "1437475266": 13,
+ "1437475267": 13.399999999999977,
+ "1437475269": 13.799999999999955,
+ "1437475270": 14.200000000000045,
+ "1437475271": 14.600000000000023,
+ "1437475272": 14.799999999999955,
+ "1437475273": 15.200000000000045,
+ "1437475274": 15.399999999999977,
+ "1437475275": 15.799999999999955,
+ "1437475276": 16,
+ "1437475277": 16.399999999999977,
+ "1437475278": 16.600000000000023,
+ "1437475279": 17,
+ "1437475280": 17.200000000000045,
+ "1437475281": 17.399999999999977,
+ "1437475282": 17.600000000000023,
+ "1437475283": 18,
+ "1437475284": 18.200000000000045,
+ "1437475285": 18.399999999999977,
+ "1437475286": 18.600000000000023,
+ "1437475287": 18.799999999999955,
+ "1437475288": 19.200000000000045,
+ "1437475289": 19.399999999999977,
+ "1437475290": 19.600000000000023,
+ "1437475291": 19.799999999999955,
+ "1437475292": 20,
+ "1437475293": 20.200000000000045,
+ "1437475294": 20.399999999999977,
+ "1437475295": 20.600000000000023,
+ "1437475296": 20.799999999999955,
+ "1437475297": 21,
+ "1437475298": 21.200000000000045,
+ "1437475299": 21.399999999999977,
+ "1437475300": 21.399999999999977,
+ "1437475301": 21.600000000000023,
+ "1437475302": 21.600000000000023,
+ "1437475303": 21.600000000000023,
+ "1437475304": 21.600000000000023,
+ "1437475305": 21.600000000000023,
+ "1437475306": 21.600000000000023,
+ "1437475308": 21.399999999999977,
+ "1437475309": 21.200000000000045,
+ "1437475310": 21,
+ "1437475311": 20.799999999999955,
+ "1437475312": 20.600000000000023,
+ "1437475313": 20.200000000000045,
+ "1437475314": 19.799999999999955,
+ "1437475315": 19.399999999999977,
+ "1437475316": 18.799999999999955,
+ "1437475317": 18.200000000000045,
+ "1437475318": 17.600000000000023,
+ "1437475319": 17,
+ "1437475320": 16.200000000000045,
+ "1437475321": 15.200000000000045,
+ "1437475322": 14.399999999999977,
+ "1437475323": 13.600000000000023,
+ "1437475324": 13,
+ "1437475325": 12.200000000000045,
+ "1437475326": 11.800000000000011,
+ "1437475327": 11.399999999999977,
+ "1437475328": 11.399999999999977,
+ "1437475329": 11.600000000000023,
+ "1437475330": 11.800000000000011,
+ "1437475331": 12.200000000000045,
+ "1437475332": 12.399999999999977,
+ "1437475333": 12.799999999999955,
+ "1437475334": 13.200000000000045,
+ "1437475335": 13.600000000000023,
+ "1437475336": 14,
+ "1437475337": 14.200000000000045,
+ "1437475338": 14.399999999999977,
+ "1437475339": 14.600000000000023,
+ "1437475340": 14.600000000000023,
+ "1437475342": 13.799999999999955,
+ "1437475343": 12.399999999999977,
+ "1437475344": 12.399999999999977,
+ "1437475345": 13.399999999999977,
+ "1437475346": 14,
+ "1437475347": 14,
+ "1437475348": 13.799999999999955,
+ "1437475349": 13.600000000000023,
+ "1437475350": 13.600000000000023,
+ "1437475351": 13.399999999999977,
+ "1437475352": 13.399999999999977,
+ "1437475353": 13.600000000000023,
+ "1437475354": 13.600000000000023,
+ "1437475355": 13.399999999999977,
+ "1437475356": 13.399999999999977,
+ "1437475357": 13.200000000000045,
+ "1437475358": 13,
+ "1437475359": 12.600000000000023,
+ "1437475360": 12,
+ "1437475361": 11.399999999999977,
+ "1437475362": 10.800000000000011,
+ "1437475363": 10.399999999999977,
+ "1437475364": 10.399999999999977,
+ "1437475365": 11.199999999999989,
+ "1437475366": 12,
+ "1437475367": 12.799999999999955,
+ "1437475368": 13.600000000000023,
+ "1437475369": 13.799999999999955,
+ "1437475371": 14,
+ "1437475372": 14,
+ "1437475373": 14,
+ "1437475374": 14,
+ "1437475375": 13.799999999999955,
+ "1437475376": 13.399999999999977,
+ "1437475377": 12.799999999999955,
+ "1437475378": 12,
+ "1437475379": 11.199999999999989,
+ "1437475380": 10.600000000000023,
+ "1437475381": 10.199999999999989,
+ "1437475382": 10.600000000000023,
+ "1437475383": 11.199999999999989,
+ "1437475384": 12,
+ "1437475385": 12.600000000000023,
+ "1437475386": 12.799999999999955,
+ "1437475387": 13.200000000000045,
+ "1437475388": 13.399999999999977,
+ "1437475389": 13.399999999999977,
+ "1437475390": 13.600000000000023,
+ "1437475391": 13.799999999999955,
+ "1437475392": 14,
+ "1437475393": 14,
+ "1437475394": 13.799999999999955,
+ "1437475395": 14,
+ "1437475396": 14,
+ "1437475397": 14.200000000000045,
+ "1437475398": 14.200000000000045,
+ "1437475400": 14.200000000000045,
+ "1437475401": 14.200000000000045,
+ "1437475402": 14.200000000000045,
+ "1437475403": 14,
+ "1437475404": 13.799999999999955,
+ "1437475405": 13.399999999999977,
+ "1437475406": 13.200000000000045,
+ "1437475407": 13,
+ "1437475408": 12.799999999999955,
+ "1437475409": 12.600000000000023,
+ "1437475410": 12.200000000000045,
+ "1437475411": 12,
+ "1437475412": 11.800000000000011,
+ "1437475413": 11.800000000000011,
+ "1437475414": 11.600000000000023,
+ "1437475415": 11.800000000000011,
+ "1437475416": 12,
+ "1437475417": 12,
+ "1437475418": 12,
+ "1437475419": 12,
+ "1437475420": 11.800000000000011,
+ "1437475421": 11.800000000000011,
+ "1437475422": 11.600000000000023,
+ "1437475423": 11.199999999999989,
+ "1437475424": 11,
+ "1437475425": 10.800000000000011,
+ "1437475426": 10.399999999999977,
+ "1437475427": 10.199999999999989,
+ "1437475428": 10,
+ "1437475429": 9.600000000000023,
+ "1437475430": 9.199999999999989,
+ "1437475431": 9,
+ "1437475433": 8.600000000000023,
+ "1437475434": 8.199999999999989,
+ "1437475435": 8,
+ "1437475436": 7.600000000000023,
+ "1437475437": 7.199999999999989,
+ "1437475438": 7,
+ "1437475439": 6.600000000000023,
+ "1437475440": 6.199999999999989,
+ "1437475441": 5.600000000000023,
+ "1437475442": 5.199999999999989,
+ "1437475443": 4.800000000000011,
+ "1437475444": 4.600000000000023,
+ "1437475445": 4.199999999999989,
+ "1437475446": 4,
+ "1437475447": 3.6000000000000227,
+ "1437475448": 3.3999999999999773,
+ "1437475449": 3,
+ "1437475450": 2.8000000000000114,
+ "1437475451": 2.6000000000000227,
+ "1437475452": 2.3999999999999773,
+ "1437475453": 2,
+ "1437475454": 1.8000000000000114,
+ "1437475455": 1.6000000000000227,
+ "1437475456": 1.3999999999999773,
+ "1437475457": 1.1999999999999886,
+ "1437475458": 1,
+ "1437475459": 0.8000000000000114,
+ "1437475460": 0.6000000000000227,
+ "1437475461": 0.6000000000000227,
+ "1437475462": 0.39999999999997726,
+ "1437475463": 0.39999999999997726,
+ "1437475464": 0.19999999999998863,
+ "1437475466": 0.19999999999998863,
+ "1437475467": 0,
+ "1437475468": 0,
+ "1437475469": 0,
+ "1437475470": 0,
+ "1437475471": 0,
+ "1437475472": 0,
+ "1437475473": 0,
+ "1437475474": 0,
+ "1437475475": 0,
+ "1437475476": 0,
+ "1437475477": 0,
+ "1437475478": 0.19999999999998863,
+ "1437475479": 0.19999999999998863,
+ "1437475480": 0.19999999999998863,
+ "1437475481": 0.19999999999998863,
+ "1437475482": 0.19999999999998863,
+ "1437475483": 0.19999999999998863,
+ "1437475484": 0.19999999999998863,
+ "1437475485": 0.19999999999998863,
+ "1437475486": 0.19999999999998863,
+ "1437475487": 0.19999999999998863,
+ "1437475488": 0.19999999999998863,
+ "1437475489": 0.19999999999998863,
+ "1437475490": 0.19999999999998863,
+ "1437475491": 0.19999999999998863,
+ "1437475492": 0.19999999999998863,
+ "1437475493": 0.19999999999998863,
+ "1437475494": 0.19999999999998863,
+ "1437475495": 0.19999999999998863,
+ "1437475496": 0.19999999999998863,
+ "1437475497": 0.19999999999998863,
+ "1437475498": 0.19999999999998863,
+ "1437475499": 0.19999999999998863,
+ "1437475500": 0.19999999999998863,
+ "1437475501": 0.19999999999998863,
+ "1437475502": 0.19999999999998863,
+ "1437475503": 0.19999999999998863,
+ "1437475504": 0.19999999999998863,
+ "1437475505": 0.19999999999998863,
+ "1437475506": 0.19999999999998863,
+ "1437475507": 0.19999999999998863,
+ "1437475508": 0.19999999999998863,
+ "1437475510": 0.19999999999998863,
+ "1437475511": 0.19999999999998863,
+ "1437475512": 0.19999999999998863,
+ "1437475513": 0.19999999999998863,
+ "1437475514": 0.19999999999998863,
+ "1437475515": 0.19999999999998863,
+ "1437475516": 0.19999999999998863,
+ "1437475517": 0.19999999999998863,
+ "1437475518": 0.19999999999998863,
+ "1437475519": 0.19999999999998863,
+ "1437475520": 0.19999999999998863,
+ "1437475521": 0.19999999999998863,
+ "1437475522": 0.19999999999998863,
+ "1437475523": 0.19999999999998863,
+ "1437475524": 0.19999999999998863,
+ "1437475525": 0.19999999999998863,
+ "1437475526": 0.19999999999998863,
+ "1437475527": 0.19999999999998863,
+ "1437475528": 0.19999999999998863,
+ "1437475529": 0.19999999999998863,
+ "1437475530": 0.19999999999998863,
+ "1437475531": 0.19999999999998863,
+ "1437475532": 0.19999999999998863,
+ "1437475533": 0.19999999999998863,
+ "1437475534": 0.19999999999998863,
+ "1437475535": 0.19999999999998863,
+ "1437475536": 0.19999999999998863,
+ "1437475537": 0.19999999999998863,
+ "1437475538": 0.19999999999998863,
+ "1437475539": 0.19999999999998863,
+ "1437475540": 0.19999999999998863,
+ "1437475541": 0.19999999999998863,
+ "1437475542": 0.19999999999998863,
+ "1437475543": 0.19999999999998863,
+ "1437475544": 0.19999999999998863,
+ "1437475545": 0.19999999999998863,
+ "1437475546": 0.19999999999998863,
+ "1437475547": 0.19999999999998863,
+ "1437475548": 0.19999999999998863,
+ "1437475549": 0.19999999999998863,
+ "1437475551": 0.19999999999998863,
+ "1437475552": 0.19999999999998863,
+ "1437475553": 0.19999999999998863,
+ "1437475554": 0.19999999999998863,
+ "1437475555": 0.19999999999998863,
+ "1437475556": 0.19999999999998863,
+ "1437475557": 0.19999999999998863,
+ "1437475558": 0.19999999999998863,
+ "1437475559": 0.19999999999998863,
+ "1437475560": 0.19999999999998863,
+ "1437475561": 0.19999999999998863,
+ "1437475562": 0.19999999999998863,
+ "1437475563": 0.19999999999998863,
+ "1437475564": 0.19999999999998863,
+ "1437475565": 0.19999999999998863,
+ "1437475566": 0.19999999999998863,
+ "1437475567": 0.19999999999998863,
+ "1437475568": 0.19999999999998863,
+ "1437475569": 0.19999999999998863,
+ "1437475570": 0.19999999999998863,
+ "1437475571": 0.19999999999998863,
+ "1437475572": 0.19999999999998863,
+ "1437475573": 0.19999999999998863,
+ "1437475574": 0.19999999999998863,
+ "1437475575": 0.19999999999998863,
+ "1437475576": 0.19999999999998863,
+ "1437475577": 0.19999999999998863,
+ "1437475578": 0.39999999999997726,
+ "1437475580": 0.39999999999997726,
+ "1437475581": 0.39999999999997726,
+ "1437475582": 0.6000000000000227,
+ "1437475583": 0.6000000000000227,
+ "1437475584": 0.8000000000000114,
+ "1437475585": 0.8000000000000114,
+ "1437475586": 0.8000000000000114,
+ "1437475587": 1,
+ "1437475588": 1,
+ "1437475589": 1,
+ "1437475590": 1.1999999999999886,
+ "1437475591": 1.1999999999999886,
+ "1437475592": 1.3999999999999773,
+ "1437475593": 1.3999999999999773,
+ "1437475594": 1.3999999999999773,
+ "1437475595": 1.6000000000000227,
+ "1437475596": 1.6000000000000227,
+ "1437475597": 1.6000000000000227,
+ "1437475598": 1.8000000000000114,
+ "1437475599": 1.8000000000000114,
+ "1437475600": 1.8000000000000114,
+ "1437475601": 1.8000000000000114,
+ "1437475602": 1.8000000000000114,
+ "1437475603": 1.8000000000000114,
+ "1437475604": 1.8000000000000114,
+ "1437475605": 1.8000000000000114,
+ "1437475606": 1.8000000000000114,
+ "1437475607": 1.8000000000000114,
+ "1437475608": 1.8000000000000114,
+ "1437475610": 2,
+ "1437475611": 2,
+ "1437475612": 2,
+ "1437475613": 2,
+ "1437475614": 2.1999999999999886,
+ "1437475615": 2.1999999999999886,
+ "1437475616": 2.1999999999999886,
+ "1437475617": 2.3999999999999773,
+ "1437475618": 2.3999999999999773,
+ "1437475619": 2.6000000000000227,
+ "1437475620": 2.6000000000000227,
+ "1437475621": 2.8000000000000114,
+ "1437475622": 2.8000000000000114,
+ "1437475623": 2.8000000000000114,
+ "1437475624": 2.8000000000000114,
+ "1437475625": 3,
+ "1437475626": 3,
+ "1437475627": 3,
+ "1437475628": 3,
+ "1437475629": 3.1999999999999886,
+ "1437475630": 3.1999999999999886,
+ "1437475631": 3.1999999999999886,
+ "1437475632": 3.1999999999999886,
+ "1437475633": 3.1999999999999886,
+ "1437475634": 3.1999999999999886,
+ "1437475636": 3.1999999999999886,
+ "1437475637": 3.1999999999999886,
+ "1437475638": 3.1999999999999886,
+ "1437475639": 3.3999999999999773,
+ "1437475640": 3.3999999999999773,
+ "1437475641": 3.3999999999999773,
+ "1437475642": 3.3999999999999773,
+ "1437475643": 3.3999999999999773,
+ "1437475644": 3.3999999999999773,
+ "1437475645": 3.3999999999999773,
+ "1437475646": 3.3999999999999773,
+ "1437475647": 3.3999999999999773,
+ "1437475648": 3.3999999999999773,
+ "1437475649": 3.3999999999999773,
+ "1437475650": 3.3999999999999773,
+ "1437475651": 3.3999999999999773,
+ "1437475652": 3.3999999999999773,
+ "1437475653": 3.3999999999999773,
+ "1437475654": 3.6000000000000227,
+ "1437475655": 3.6000000000000227,
+ "1437475656": 3.6000000000000227,
+ "1437475657": 3.6000000000000227,
+ "1437475658": 3.6000000000000227,
+ "1437475659": 3.6000000000000227,
+ "1437475660": 3.6000000000000227,
+ "1437475662": 3.6000000000000227,
+ "1437475663": 3.8000000000000114,
+ "1437475664": 3.8000000000000114,
+ "1437475665": 3.8000000000000114,
+ "1437475666": 3.8000000000000114,
+ "1437475667": 3.8000000000000114,
+ "1437475668": 3.8000000000000114,
+ "1437475669": 3.8000000000000114,
+ "1437475670": 4,
+ "1437475671": 4,
+ "1437475672": 4,
+ "1437475673": 4.199999999999989,
+ "1437475674": 4.399999999999977,
+ "1437475675": 4.600000000000023,
+ "1437475676": 4.600000000000023,
+ "1437475677": 4.800000000000011,
+ "1437475678": 5,
+ "1437475679": 5.199999999999989,
+ "1437475680": 5.399999999999977,
+ "1437475681": 5.399999999999977,
+ "1437475682": 5.600000000000023,
+ "1437475683": 5.800000000000011,
+ "1437475684": 5.800000000000011,
+ "1437475685": 5.800000000000011,
+ "1437475686": 6,
+ "1437475687": 6,
+ "1437475688": 6,
+ "1437475689": 6,
+ "1437475690": 6.199999999999989,
+ "1437475691": 6.199999999999989,
+ "1437475693": 6.199999999999989,
+ "1437475694": 6.199999999999989,
+ "1437475695": 6.199999999999989,
+ "1437475696": 6.199999999999989,
+ "1437475697": 6.199999999999989,
+ "1437475698": 6.199999999999989,
+ "1437475699": 6.199999999999989,
+ "1437475700": 6.199999999999989,
+ "1437475701": 6.399999999999977,
+ "1437475702": 6.800000000000011,
+ "1437475703": 7,
+ "1437475704": 7.199999999999989,
+ "1437475705": 7.600000000000023,
+ "1437475706": 7.800000000000011,
+ "1437475707": 8,
+ "1437475708": 8.199999999999989,
+ "1437475709": 8.399999999999977,
+ "1437475710": 8.600000000000023,
+ "1437475711": 8.800000000000011,
+ "1437475712": 9,
+ "1437475713": 9,
+ "1437475714": 9.199999999999989,
+ "1437475715": 9.399999999999977,
+ "1437475716": 9.600000000000023,
+ "1437475717": 9.800000000000011,
+ "1437475718": 10,
+ "1437475719": 10,
+ "1437475720": 10.199999999999989,
+ "1437475721": 10.399999999999977,
+ "1437475722": 10.600000000000023,
+ "1437475724": 10.800000000000011,
+ "1437475725": 11,
+ "1437475726": 11.199999999999989,
+ "1437475727": 11.399999999999977,
+ "1437475728": 11.399999999999977,
+ "1437475729": 11.600000000000023,
+ "1437475730": 11.800000000000011,
+ "1437475731": 12,
+ "1437475732": 12.200000000000045,
+ "1437475733": 12.399999999999977,
+ "1437475734": 12.600000000000023,
+ "1437475735": 12.799999999999955,
+ "1437475736": 13,
+ "1437475737": 13,
+ "1437475738": 13.200000000000045,
+ "1437475739": 13.399999999999977,
+ "1437475740": 13.399999999999977,
+ "1437475741": 13.600000000000023,
+ "1437475742": 13.799999999999955,
+ "1437475743": 13.799999999999955,
+ "1437475744": 14,
+ "1437475745": 14,
+ "1437475746": 14.200000000000045,
+ "1437475747": 14.399999999999977,
+ "1437475748": 14.399999999999977,
+ "1437475749": 14.600000000000023,
+ "1437475750": 15,
+ "1437475751": 15.200000000000045,
+ "1437475752": 15.600000000000023,
+ "1437475753": 15.799999999999955,
+ "1437475754": 16,
+ "1437475755": 16.200000000000045,
+ "1437475756": 16.399999999999977,
+ "1437475758": 16.399999999999977,
+ "1437475759": 16.600000000000023,
+ "1437475760": 16.799999999999955,
+ "1437475761": 17,
+ "1437475762": 17.200000000000045,
+ "1437475763": 17.399999999999977,
+ "1437475764": 17.600000000000023,
+ "1437475765": 17.799999999999955,
+ "1437475766": 17.799999999999955,
+ "1437475767": 18,
+ "1437475768": 18.200000000000045,
+ "1437475769": 18.399999999999977,
+ "1437475770": 18.600000000000023,
+ "1437475771": 18.799999999999955,
+ "1437475772": 18.799999999999955,
+ "1437475773": 19,
+ "1437475774": 19.200000000000045,
+ "1437475775": 19.399999999999977,
+ "1437475776": 19.600000000000023,
+ "1437475777": 19.799999999999955,
+ "1437475778": 20,
+ "1437475779": 20,
+ "1437475780": 20.200000000000045,
+ "1437475781": 20.399999999999977,
+ "1437475782": 20.600000000000023,
+ "1437475783": 20.799999999999955,
+ "1437475784": 21,
+ "1437475785": 21.200000000000045,
+ "1437475786": 21.200000000000045,
+ "1437475787": 21.399999999999977,
+ "1437475788": 21.600000000000023,
+ "1437475789": 21.799999999999955,
+ "1437475791": 22,
+ "1437475792": 22.200000000000045,
+ "1437475793": 22.200000000000045,
+ "1437475794": 22.399999999999977,
+ "1437475795": 22.600000000000023,
+ "1437475796": 22.799999999999955,
+ "1437475797": 23,
+ "1437475798": 23.200000000000045,
+ "1437475799": 23.200000000000045,
+ "1437475800": 23.399999999999977,
+ "1437475801": 23.600000000000023,
+ "1437475802": 23.799999999999955,
+ "1437475803": 24,
+ "1437475804": 24.200000000000045,
+ "1437475805": 24.200000000000045,
+ "1437475806": 24.399999999999977,
+ "1437475807": 24.600000000000023,
+ "1437475808": 24.799999999999955,
+ "1437475809": 25,
+ "1437475810": 25.200000000000045,
+ "1437475811": 25.399999999999977,
+ "1437475812": 25.399999999999977,
+ "1437475813": 25.600000000000023,
+ "1437475814": 25.799999999999955,
+ "1437475815": 26,
+ "1437475816": 26.200000000000045,
+ "1437475817": 26.399999999999977,
+ "1437475818": 26.399999999999977,
+ "1437475819": 26.600000000000023,
+ "1437475821": 26.799999999999955,
+ "1437475822": 27,
+ "1437475823": 27.200000000000045,
+ "1437475824": 27.200000000000045,
+ "1437475825": 27.399999999999977,
+ "1437475826": 27.600000000000023,
+ "1437475827": 27.799999999999955,
+ "1437475828": 28,
+ "1437475829": 28,
+ "1437475830": 28.200000000000045,
+ "1437475831": 28.399999999999977,
+ "1437475832": 28.600000000000023,
+ "1437475833": 28.600000000000023,
+ "1437475834": 28.799999999999955,
+ "1437475835": 29,
+ "1437475836": 29,
+ "1437475837": 29.200000000000045,
+ "1437475838": 29.399999999999977,
+ "1437475839": 29.600000000000023,
+ "1437475840": 29.600000000000023,
+ "1437475841": 29.799999999999955,
+ "1437475842": 30,
+ "1437475843": 30.200000000000045,
+ "1437475844": 30.200000000000045,
+ "1437475845": 30.399999999999977,
+ "1437475846": 30.600000000000023,
+ "1437475847": 30.799999999999955,
+ "1437475848": 30.799999999999955,
+ "1437475849": 31,
+ "1437475850": 31.200000000000045,
+ "1437475852": 31.399999999999977,
+ "1437475853": 31.600000000000023,
+ "1437475854": 31.600000000000023,
+ "1437475855": 31.799999999999955,
+ "1437475856": 32,
+ "1437475857": 32.200000000000045,
+ "1437475858": 32.39999999999998,
+ "1437475859": 32.39999999999998,
+ "1437475860": 32.60000000000002,
+ "1437475861": 32.799999999999955,
+ "1437475862": 33,
+ "1437475863": 33,
+ "1437475864": 33.200000000000045,
+ "1437475865": 33.39999999999998,
+ "1437475866": 33.39999999999998,
+ "1437475867": 33.60000000000002,
+ "1437475868": 33.799999999999955,
+ "1437475869": 33.799999999999955,
+ "1437475870": 34,
+ "1437475871": 34.200000000000045,
+ "1437475872": 34.200000000000045,
+ "1437475873": 34.39999999999998,
+ "1437475874": 34.39999999999998,
+ "1437475875": 34.60000000000002,
+ "1437475876": 34.60000000000002,
+ "1437475878": 34.799999999999955,
+ "1437475879": 34.799999999999955,
+ "1437475880": 34.799999999999955,
+ "1437475881": 34.799999999999955,
+ "1437475882": 34.799999999999955,
+ "1437475883": 34.799999999999955,
+ "1437475884": 34.799999999999955,
+ "1437475885": 34.60000000000002,
+ "1437475886": 34.60000000000002,
+ "1437475887": 34.60000000000002,
+ "1437475888": 34.60000000000002,
+ "1437475889": 34.60000000000002,
+ "1437475890": 34.799999999999955,
+ "1437475891": 35.200000000000045,
+ "1437475892": 35.60000000000002,
+ "1437475893": 35.799999999999955,
+ "1437475894": 36.200000000000045,
+ "1437475895": 36.60000000000002,
+ "1437475896": 36.799999999999955,
+ "1437475897": 37,
+ "1437475898": 37.39999999999998,
+ "1437475899": 37.60000000000002,
+ "1437475900": 37.799999999999955,
+ "1437475901": 38,
+ "1437475902": 38.200000000000045,
+ "1437475903": 38.39999999999998,
+ "1437475905": 38.60000000000002,
+ "1437475906": 38.799999999999955,
+ "1437475907": 39,
+ "1437475908": 39,
+ "1437475909": 39.200000000000045,
+ "1437475910": 39.39999999999998,
+ "1437475911": 39.60000000000002,
+ "1437475912": 39.799999999999955,
+ "1437475913": 40,
+ "1437475914": 40.200000000000045,
+ "1437475915": 40.39999999999998,
+ "1437475916": 40.39999999999998,
+ "1437475917": 40.60000000000002,
+ "1437475918": 40.799999999999955,
+ "1437475919": 41,
+ "1437475920": 41.200000000000045,
+ "1437475921": 41.39999999999998,
+ "1437475922": 41.60000000000002,
+ "1437475923": 41.799999999999955,
+ "1437475924": 42,
+ "1437475925": 42,
+ "1437475926": 42.200000000000045,
+ "1437475927": 42.39999999999998,
+ "1437475928": 42.60000000000002,
+ "1437475929": 42.799999999999955,
+ "1437475930": 43,
+ "1437475931": 43.200000000000045,
+ "1437475932": 43.39999999999998,
+ "1437475933": 43.60000000000002,
+ "1437475934": 43.60000000000002,
+ "1437475935": 43.799999999999955,
+ "1437475936": 44,
+ "1437475938": 44.200000000000045,
+ "1437475939": 44.200000000000045,
+ "1437475940": 44.39999999999998,
+ "1437475941": 44.39999999999998,
+ "1437475942": 44.60000000000002,
+ "1437475943": 44.799999999999955,
+ "1437475944": 45,
+ "1437475945": 45.200000000000045,
+ "1437475946": 45.39999999999998,
+ "1437475947": 45.39999999999998,
+ "1437475948": 45.60000000000002,
+ "1437475949": 45.799999999999955,
+ "1437475950": 46,
+ "1437475951": 46.200000000000045,
+ "1437475952": 46.200000000000045,
+ "1437475953": 46.39999999999998,
+ "1437475954": 46.60000000000002,
+ "1437475955": 46.799999999999955,
+ "1437475956": 46.799999999999955,
+ "1437475957": 47,
+ "1437475958": 47.200000000000045,
+ "1437475959": 47.39999999999998,
+ "1437475960": 47.39999999999998,
+ "1437475961": 47.60000000000002,
+ "1437475962": 47.799999999999955,
+ "1437475963": 47.799999999999955,
+ "1437475964": 48,
+ "1437475965": 48,
+ "1437475967": 48,
+ "1437475968": 48.200000000000045,
+ "1437475969": 48.200000000000045,
+ "1437475970": 48.39999999999998,
+ "1437475971": 48.39999999999998,
+ "1437475972": 48.60000000000002,
+ "1437475973": 48.60000000000002,
+ "1437475974": 48.799999999999955,
+ "1437475975": 49,
+ "1437475976": 49.200000000000045,
+ "1437475977": 49.200000000000045,
+ "1437475978": 49.39999999999998,
+ "1437475979": 49.60000000000002,
+ "1437475980": 49.60000000000002,
+ "1437475981": 49.799999999999955,
+ "1437475982": 50,
+ "1437475983": 50.200000000000045,
+ "1437475984": 50.200000000000045,
+ "1437475985": 50.39999999999998,
+ "1437475986": 50.60000000000002,
+ "1437475987": 50.60000000000002,
+ "1437475988": 50.799999999999955,
+ "1437475989": 51,
+ "1437475990": 51.200000000000045,
+ "1437475991": 51.39999999999998,
+ "1437475992": 51.60000000000002,
+ "1437475993": 51.799999999999955,
+ "1437475994": 51.799999999999955,
+ "1437475995": 52,
+ "1437475997": 52.200000000000045,
+ "1437475998": 52.39999999999998,
+ "1437475999": 52.39999999999998,
+ "1437476000": 52.60000000000002,
+ "1437476001": 52.799999999999955,
+ "1437476002": 53,
+ "1437476003": 53,
+ "1437476004": 53.200000000000045,
+ "1437476005": 53.200000000000045,
+ "1437476006": 53.200000000000045,
+ "1437476007": 53,
+ "1437476008": 53,
+ "1437476009": 53,
+ "1437476010": 53,
+ "1437476011": 53,
+ "1437476012": 53.200000000000045,
+ "1437476013": 53.200000000000045,
+ "1437476014": 53.39999999999998,
+ "1437476015": 53.60000000000002,
+ "1437476016": 53.799999999999955,
+ "1437476017": 54,
+ "1437476019": 54.200000000000045,
+ "1437476020": 54.39999999999998,
+ "1437476021": 54.39999999999998,
+ "1437476022": 54.60000000000002,
+ "1437476023": 54.799999999999955,
+ "1437476024": 55,
+ "1437476025": 55,
+ "1437476026": 55.200000000000045,
+ "1437476027": 55.39999999999998,
+ "1437476028": 55.39999999999998,
+ "1437476029": 55.60000000000002,
+ "1437476030": 55.60000000000002,
+ "1437476031": 55.799999999999955,
+ "1437476032": 55.799999999999955,
+ "1437476033": 56,
+ "1437476034": 56,
+ "1437476035": 56.200000000000045,
+ "1437476036": 56.200000000000045,
+ "1437476037": 56.39999999999998,
+ "1437476038": 56.39999999999998,
+ "1437476039": 56.39999999999998,
+ "1437476040": 56.39999999999998,
+ "1437476041": 56.60000000000002,
+ "1437476042": 56.60000000000002,
+ "1437476043": 56.60000000000002,
+ "1437476044": 56.60000000000002,
+ "1437476045": 56.60000000000002,
+ "1437476047": 56.60000000000002,
+ "1437476048": 56.39999999999998,
+ "1437476049": 56.39999999999998,
+ "1437476050": 56.39999999999998,
+ "1437476051": 56.200000000000045,
+ "1437476052": 56.200000000000045,
+ "1437476053": 56,
+ "1437476054": 55.799999999999955,
+ "1437476055": 55.60000000000002,
+ "1437476056": 55.39999999999998,
+ "1437476057": 55.39999999999998,
+ "1437476058": 55.200000000000045,
+ "1437476059": 55,
+ "1437476060": 54.799999999999955,
+ "1437476061": 54.39999999999998,
+ "1437476062": 54.200000000000045,
+ "1437476063": 54,
+ "1437476064": 53.799999999999955,
+ "1437476065": 53.39999999999998,
+ "1437476066": 53.200000000000045,
+ "1437476067": 53,
+ "1437476068": 52.799999999999955,
+ "1437476069": 52.39999999999998,
+ "1437476070": 52.200000000000045,
+ "1437476071": 52,
+ "1437476072": 51.799999999999955,
+ "1437476073": 51.60000000000002,
+ "1437476074": 51.39999999999998,
+ "1437476075": 51.39999999999998,
+ "1437476076": 51.39999999999998,
+ "1437476077": 51.39999999999998,
+ "1437476079": 51.39999999999998,
+ "1437476080": 51.60000000000002,
+ "1437476081": 51.799999999999955,
+ "1437476082": 51.799999999999955,
+ "1437476083": 52,
+ "1437476084": 52,
+ "1437476085": 52.200000000000045,
+ "1437476086": 52.200000000000045,
+ "1437476087": 52.200000000000045,
+ "1437476088": 52.39999999999998,
+ "1437476089": 52.39999999999998,
+ "1437476090": 52.39999999999998,
+ "1437476091": 52.60000000000002,
+ "1437476092": 52.60000000000002,
+ "1437476093": 52.60000000000002,
+ "1437476094": 52.799999999999955,
+ "1437476095": 52.799999999999955,
+ "1437476096": 53,
+ "1437476097": 53,
+ "1437476098": 53,
+ "1437476099": 53.200000000000045,
+ "1437476100": 53.200000000000045,
+ "1437476101": 53.200000000000045,
+ "1437476102": 53.39999999999998,
+ "1437476103": 53.39999999999998,
+ "1437476104": 53.39999999999998,
+ "1437476105": 53.60000000000002,
+ "1437476106": 53.60000000000002,
+ "1437476107": 53.60000000000002,
+ "1437476108": 53.60000000000002,
+ "1437476109": 53.60000000000002,
+ "1437476110": 53.799999999999955,
+ "1437476112": 53.799999999999955,
+ "1437476113": 53.799999999999955,
+ "1437476114": 53.799999999999955,
+ "1437476115": 53.799999999999955,
+ "1437476116": 53.60000000000002,
+ "1437476117": 53.60000000000002,
+ "1437476118": 53.60000000000002,
+ "1437476119": 53.39999999999998,
+ "1437476120": 53.39999999999998,
+ "1437476121": 53.200000000000045,
+ "1437476122": 53,
+ "1437476123": 53,
+ "1437476124": 52.799999999999955,
+ "1437476125": 52.60000000000002,
+ "1437476126": 52.39999999999998,
+ "1437476127": 52.200000000000045,
+ "1437476128": 52.200000000000045,
+ "1437476129": 52,
+ "1437476130": 51.799999999999955,
+ "1437476131": 51.60000000000002,
+ "1437476132": 51.60000000000002,
+ "1437476133": 51.39999999999998,
+ "1437476134": 51.39999999999998,
+ "1437476135": 51.39999999999998,
+ "1437476136": 51.39999999999998,
+ "1437476137": 51.39999999999998,
+ "1437476138": 51.39999999999998,
+ "1437476139": 51.39999999999998,
+ "1437476140": 51.39999999999998,
+ "1437476141": 51.60000000000002,
+ "1437476142": 51.60000000000002,
+ "1437476143": 51.60000000000002,
+ "1437476144": 51.60000000000002,
+ "1437476146": 51.60000000000002,
+ "1437476147": 51.60000000000002,
+ "1437476148": 51.60000000000002,
+ "1437476149": 51.39999999999998,
+ "1437476150": 51.39999999999998,
+ "1437476151": 51.39999999999998,
+ "1437476152": 51.200000000000045,
+ "1437476153": 51,
+ "1437476154": 50.799999999999955,
+ "1437476155": 50.60000000000002,
+ "1437476156": 50.39999999999998,
+ "1437476157": 50,
+ "1437476158": 49.60000000000002,
+ "1437476159": 49.200000000000045,
+ "1437476160": 48.799999999999955,
+ "1437476161": 48.39999999999998,
+ "1437476162": 48,
+ "1437476163": 47.39999999999998,
+ "1437476164": 47,
+ "1437476165": 46.39999999999998,
+ "1437476166": 46,
+ "1437476167": 45.39999999999998,
+ "1437476168": 45,
+ "1437476169": 44.39999999999998,
+ "1437476170": 44,
+ "1437476171": 43.39999999999998,
+ "1437476172": 43,
+ "1437476173": 42.60000000000002,
+ "1437476174": 42.60000000000002,
+ "1437476175": 43,
+ "1437476176": 43.60000000000002,
+ "1437476177": 44.200000000000045,
+ "1437476179": 44.799999999999955,
+ "1437476180": 45.200000000000045,
+ "1437476181": 45.799999999999955,
+ "1437476182": 46.200000000000045,
+ "1437476183": 46.60000000000002,
+ "1437476184": 47,
+ "1437476185": 47.39999999999998,
+ "1437476186": 47.60000000000002,
+ "1437476187": 48,
+ "1437476188": 48.200000000000045,
+ "1437476189": 48.39999999999998,
+ "1437476190": 48.60000000000002,
+ "1437476191": 48.799999999999955,
+ "1437476192": 48.799999999999955,
+ "1437476193": 49,
+ "1437476194": 49,
+ "1437476195": 49,
+ "1437476196": 49,
+ "1437476197": 49,
+ "1437476198": 49,
+ "1437476199": 49,
+ "1437476200": 49,
+ "1437476201": 49,
+ "1437476202": 49,
+ "1437476203": 49,
+ "1437476204": 48.799999999999955,
+ "1437476205": 48.799999999999955,
+ "1437476206": 48.799999999999955,
+ "1437476207": 48.60000000000002,
+ "1437476208": 48.60000000000002,
+ "1437476209": 48.39999999999998,
+ "1437476211": 48.39999999999998,
+ "1437476212": 48.200000000000045,
+ "1437476213": 48,
+ "1437476214": 48,
+ "1437476215": 47.799999999999955,
+ "1437476216": 47.60000000000002,
+ "1437476217": 47.39999999999998,
+ "1437476218": 47.200000000000045,
+ "1437476219": 46.799999999999955,
+ "1437476220": 46.60000000000002,
+ "1437476221": 46.200000000000045,
+ "1437476222": 46,
+ "1437476223": 45.60000000000002,
+ "1437476224": 45.39999999999998,
+ "1437476225": 45.200000000000045,
+ "1437476226": 45,
+ "1437476227": 44.799999999999955,
+ "1437476228": 44.60000000000002,
+ "1437476229": 44.39999999999998,
+ "1437476230": 44.39999999999998,
+ "1437476231": 44.200000000000045,
+ "1437476232": 44.200000000000045,
+ "1437476233": 44,
+ "1437476234": 43.799999999999955,
+ "1437476235": 43.799999999999955,
+ "1437476236": 43.60000000000002,
+ "1437476237": 43.39999999999998,
+ "1437476238": 43.39999999999998,
+ "1437476239": 43.200000000000045,
+ "1437476240": 43,
+ "1437476241": 42.60000000000002,
+ "1437476242": 42.39999999999998,
+ "1437476243": 42,
+ "1437476244": 41.39999999999998,
+ "1437476245": 40.799999999999955,
+ "1437476246": 40,
+ "1437476248": 39,
+ "1437476249": 38.200000000000045,
+ "1437476250": 37.60000000000002,
+ "1437476251": 37.200000000000045,
+ "1437476252": 37.39999999999998,
+ "1437476253": 37.60000000000002,
+ "1437476254": 38,
+ "1437476255": 38.39999999999998,
+ "1437476256": 38.39999999999998,
+ "1437476257": 38.200000000000045,
+ "1437476258": 37.799999999999955,
+ "1437476259": 37.200000000000045,
+ "1437476260": 36.60000000000002,
+ "1437476261": 36.200000000000045,
+ "1437476262": 35.39999999999998,
+ "1437476263": 34.799999999999955,
+ "1437476264": 34.200000000000045,
+ "1437476265": 33.39999999999998,
+ "1437476266": 32.60000000000002,
+ "1437476267": 31.799999999999955,
+ "1437476268": 30.799999999999955,
+ "1437476269": 29.799999999999955,
+ "1437476270": 28.399999999999977,
+ "1437476271": 27.200000000000045,
+ "1437476272": 25.799999999999955,
+ "1437476274": 24.600000000000023,
+ "1437476275": 23.399999999999977,
+ "1437476276": 22.399999999999977,
+ "1437476277": 21.600000000000023,
+ "1437476278": 20.600000000000023,
+ "1437476279": 19.799999999999955,
+ "1437476280": 19,
+ "1437476281": 18.399999999999977,
+ "1437476282": 17.600000000000023,
+ "1437476283": 17,
+ "1437476284": 16.399999999999977,
+ "1437476285": 15.799999999999955,
+ "1437476286": 15.200000000000045,
+ "1437476287": 14.799999999999955,
+ "1437476288": 14.399999999999977,
+ "1437476289": 14,
+ "1437476290": 13.600000000000023,
+ "1437476291": 13.200000000000045,
+ "1437476292": 12.799999999999955,
+ "1437476293": 12.600000000000023,
+ "1437476295": 12.200000000000045,
+ "1437476296": 12,
+ "1437476297": 11.800000000000011,
+ "1437476298": 11.399999999999977,
+ "1437476299": 11.199999999999989,
+ "1437476300": 11,
+ "1437476301": 10.800000000000011,
+ "1437476302": 10.600000000000023,
+ "1437476303": 10.600000000000023,
+ "1437476304": 10.399999999999977,
+ "1437476305": 10.199999999999989,
+ "1437476306": 10.199999999999989,
+ "1437476307": 10.199999999999989,
+ "1437476308": 10.199999999999989,
+ "1437476309": 10.199999999999989,
+ "1437476310": 10.199999999999989,
+ "1437476311": 10.199999999999989,
+ "1437476312": 10.199999999999989,
+ "1437476313": 10.399999999999977,
+ "1437476314": 10.399999999999977,
+ "1437476315": 10.399999999999977,
+ "1437476316": 10.399999999999977,
+ "1437476317": 10.600000000000023,
+ "1437476318": 10.600000000000023,
+ "1437476319": 10.600000000000023,
+ "1437476320": 10.600000000000023,
+ "1437476321": 10.600000000000023,
+ "1437476323": 10.600000000000023,
+ "1437476324": 10.600000000000023,
+ "1437476325": 10.600000000000023,
+ "1437476326": 10.600000000000023,
+ "1437476327": 10.600000000000023,
+ "1437476328": 10.600000000000023,
+ "1437476329": 10.600000000000023,
+ "1437476330": 10.600000000000023,
+ "1437476331": 10.600000000000023,
+ "1437476332": 10.600000000000023,
+ "1437476333": 10.600000000000023,
+ "1437476334": 10.600000000000023,
+ "1437476335": 10.600000000000023,
+ "1437476338": 10.600000000000023,
+ "1437476339": 10.600000000000023,
+ "1437476340": 10.600000000000023,
+ "1437476341": 10.600000000000023,
+ "1437476342": 10.600000000000023,
+ "1437476343": 10.600000000000023,
+ "1437476344": 10.600000000000023,
+ "1437476345": 10.600000000000023,
+ "1437476346": 10.600000000000023,
+ "1437476347": 10.600000000000023,
+ "1437476348": 10.600000000000023,
+ "1437476349": 10.600000000000023,
+ "1437476350": 10.600000000000023,
+ "1437476351": 10.600000000000023,
+ "1437476352": 10.600000000000023,
+ "1437476353": 10.600000000000023,
+ "1437476354": 10.600000000000023,
+ "1437476355": 10.600000000000023,
+ "1437476356": 10.600000000000023,
+ "1437476357": 10.600000000000023,
+ "1437476358": 10.600000000000023,
+ "1437476360": 10.600000000000023,
+ "1437476361": 10.600000000000023,
+ "1437476362": 10.600000000000023,
+ "1437476363": 10.600000000000023,
+ "1437476364": 10.600000000000023,
+ "1437476365": 10.600000000000023,
+ "1437476366": 10.600000000000023,
+ "1437476367": 10.600000000000023,
+ "1437476368": 10.600000000000023,
+ "1437476369": 10.600000000000023,
+ "1437476370": 10.600000000000023,
+ "1437476371": 10.600000000000023,
+ "1437476372": 10.600000000000023,
+ "1437476373": 10.600000000000023,
+ "1437476374": 10.600000000000023,
+ "1437476375": 10.600000000000023,
+ "1437476376": 10.600000000000023,
+ "1437476377": 10.600000000000023,
+ "1437476378": 10.600000000000023,
+ "1437476379": 10.600000000000023,
+ "1437476380": 10.600000000000023,
+ "1437476381": 10.600000000000023,
+ "1437476382": 10.600000000000023,
+ "1437476383": 10.600000000000023,
+ "1437476384": 10.600000000000023,
+ "1437476385": 10.600000000000023,
+ "1437476386": 10.600000000000023,
+ "1437476387": 10.600000000000023,
+ "1437476389": 10.600000000000023,
+ "1437476390": 10.600000000000023,
+ "1437476391": 10.600000000000023,
+ "1437476392": 10.600000000000023,
+ "1437476393": 10.600000000000023,
+ "1437476394": 10.600000000000023,
+ "1437476395": 10.399999999999977,
+ "1437476396": 10.399999999999977,
+ "1437476397": 10.199999999999989,
+ "1437476398": 10,
+ "1437476399": 9.800000000000011,
+ "1437476400": 9.600000000000023,
+ "1437476401": 9.399999999999977,
+ "1437476402": 9,
+ "1437476403": 8.800000000000011,
+ "1437476404": 8.399999999999977,
+ "1437476405": 8,
+ "1437476406": 7.800000000000011,
+ "1437476407": 7.600000000000023,
+ "1437476408": 7.600000000000023,
+ "1437476410": 7.800000000000011,
+ "1437476411": 8,
+ "1437476412": 8.199999999999989,
+ "1437476413": 8.399999999999977,
+ "1437476414": 8.600000000000023,
+ "1437476415": 8.800000000000011,
+ "1437476416": 9,
+ "1437476417": 9.199999999999989,
+ "1437476418": 9.399999999999977,
+ "1437476419": 9.600000000000023,
+ "1437476420": 9.800000000000011,
+ "1437476421": 10,
+ "1437476422": 10.199999999999989,
+ "1437476423": 10.399999999999977,
+ "1437476424": 10.600000000000023,
+ "1437476425": 10.600000000000023,
+ "1437476426": 10.800000000000011,
+ "1437476427": 11,
+ "1437476428": 11.199999999999989,
+ "1437476429": 11.199999999999989,
+ "1437476430": 11.399999999999977,
+ "1437476431": 11.399999999999977,
+ "1437476432": 11.600000000000023,
+ "1437476433": 11.800000000000011,
+ "1437476434": 11.800000000000011,
+ "1437476435": 12,
+ "1437476436": 12,
+ "1437476437": 12.200000000000045,
+ "1437476438": 12.200000000000045,
+ "1437476439": 12.399999999999977,
+ "1437476441": 12.399999999999977,
+ "1437476442": 12.600000000000023,
+ "1437476443": 12.600000000000023,
+ "1437476444": 12.799999999999955,
+ "1437476445": 12.799999999999955,
+ "1437476446": 13,
+ "1437476447": 13,
+ "1437476448": 13.200000000000045,
+ "1437476449": 13.399999999999977,
+ "1437476450": 13.399999999999977,
+ "1437476451": 13.600000000000023,
+ "1437476452": 13.799999999999955,
+ "1437476453": 14,
+ "1437476454": 14,
+ "1437476455": 14.200000000000045,
+ "1437476456": 14.399999999999977,
+ "1437476457": 14.399999999999977,
+ "1437476458": 14.399999999999977,
+ "1437476459": 14.399999999999977,
+ "1437476460": 14.399999999999977,
+ "1437476461": 14.399999999999977,
+ "1437476462": 14.399999999999977,
+ "1437476463": 14.200000000000045,
+ "1437476464": 14.200000000000045,
+ "1437476465": 14.200000000000045,
+ "1437476467": 14,
+ "1437476468": 14,
+ "1437476469": 14.200000000000045,
+ "1437476470": 14.399999999999977,
+ "1437476471": 14.600000000000023,
+ "1437476472": 15,
+ "1437476473": 15.399999999999977,
+ "1437476474": 15.799999999999955,
+ "1437476475": 16.399999999999977,
+ "1437476476": 16.799999999999955,
+ "1437476477": 17.200000000000045,
+ "1437476478": 17.600000000000023,
+ "1437476479": 17.799999999999955,
+ "1437476480": 18.200000000000045,
+ "1437476481": 18.399999999999977,
+ "1437476482": 18.399999999999977,
+ "1437476483": 18.600000000000023,
+ "1437476484": 18.600000000000023,
+ "1437476485": 18.600000000000023,
+ "1437476486": 18.600000000000023,
+ "1437476487": 18.600000000000023,
+ "1437476488": 18.600000000000023,
+ "1437476490": 18.600000000000023,
+ "1437476491": 18.600000000000023,
+ "1437476492": 18.399999999999977,
+ "1437476493": 18.200000000000045,
+ "1437476494": 18,
+ "1437476495": 17.799999999999955,
+ "1437476496": 17.200000000000045,
+ "1437476497": 16.799999999999955,
+ "1437476498": 16.200000000000045,
+ "1437476499": 15.600000000000023,
+ "1437476500": 15.200000000000045,
+ "1437476501": 14.600000000000023,
+ "1437476502": 14.200000000000045,
+ "1437476503": 13.799999999999955,
+ "1437476504": 13.600000000000023,
+ "1437476505": 13.399999999999977,
+ "1437476506": 13.200000000000045,
+ "1437476507": 13,
+ "1437476508": 12.799999999999955,
+ "1437476509": 12.600000000000023,
+ "1437476510": 12.600000000000023,
+ "1437476511": 12.399999999999977,
+ "1437476512": 12.399999999999977,
+ "1437476513": 12.399999999999977,
+ "1437476514": 12.200000000000045,
+ "1437476515": 11.600000000000023,
+ "1437476516": 11,
+ "1437476517": 10.399999999999977,
+ "1437476518": 9.600000000000023,
+ "1437476519": 9.199999999999989,
+ "1437476521": 8.600000000000023,
+ "1437476522": 8.600000000000023,
+ "1437476523": 8.600000000000023,
+ "1437476524": 8.800000000000011,
+ "1437476525": 9,
+ "1437476526": 9.199999999999989,
+ "1437476527": 9.399999999999977,
+ "1437476528": 9.399999999999977,
+ "1437476529": 9.399999999999977,
+ "1437476530": 9.600000000000023,
+ "1437476531": 9.600000000000023,
+ "1437476532": 9.600000000000023,
+ "1437476533": 9.600000000000023,
+ "1437476534": 9.600000000000023,
+ "1437476535": 9.800000000000011,
+ "1437476536": 9.800000000000011,
+ "1437476537": 9.800000000000011,
+ "1437476538": 9.800000000000011,
+ "1437476539": 9.800000000000011,
+ "1437476540": 9.800000000000011,
+ "1437476541": 9.800000000000011,
+ "1437476542": 9.800000000000011,
+ "1437476543": 9.800000000000011,
+ "1437476544": 9.600000000000023,
+ "1437476545": 9.399999999999977,
+ "1437476547": 9.399999999999977,
+ "1437476548": 9.199999999999989,
+ "1437476549": 9.199999999999989,
+ "1437476550": 9,
+ "1437476551": 9,
+ "1437476552": 8.800000000000011,
+ "1437476553": 8.600000000000023,
+ "1437476554": 8.600000000000023,
+ "1437476555": 8.399999999999977,
+ "1437476556": 8.399999999999977,
+ "1437476557": 8.600000000000023,
+ "1437476558": 8.600000000000023,
+ "1437476559": 8.800000000000011,
+ "1437476560": 8.800000000000011,
+ "1437476561": 9,
+ "1437476562": 9,
+ "1437476563": 9.199999999999989,
+ "1437476564": 9.199999999999989,
+ "1437476565": 9.399999999999977,
+ "1437476566": 9.399999999999977,
+ "1437476567": 9.399999999999977,
+ "1437476568": 9.600000000000023,
+ "1437476569": 9.600000000000023,
+ "1437476570": 9.399999999999977,
+ "1437476571": 9.199999999999989,
+ "1437476572": 9.199999999999989,
+ "1437476573": 9,
+ "1437476574": 9,
+ "1437476576": 9,
+ "1437476577": 9,
+ "1437476578": 9,
+ "1437476579": 9,
+ "1437476580": 9,
+ "1437476581": 9,
+ "1437476582": 9,
+ "1437476583": 9,
+ "1437476584": 9,
+ "1437476585": 9,
+ "1437476586": 9,
+ "1437476587": 9,
+ "1437476588": 9,
+ "1437476589": 9,
+ "1437476590": 9,
+ "1437476591": 9,
+ "1437476592": 9,
+ "1437476593": 9,
+ "1437476594": 9,
+ "1437476595": 8.800000000000011,
+ "1437476596": 8.600000000000023,
+ "1437476597": 8.399999999999977,
+ "1437476598": 8.199999999999989,
+ "1437476599": 8.399999999999977,
+ "1437476601": 9,
+ "1437476602": 9.399999999999977,
+ "1437476603": 10,
+ "1437476604": 10.399999999999977,
+ "1437476605": 10.800000000000011,
+ "1437476606": 11.199999999999989,
+ "1437476607": 11.600000000000023,
+ "1437476608": 12,
+ "1437476609": 12.399999999999977,
+ "1437476610": 12.799999999999955,
+ "1437476611": 13.200000000000045,
+ "1437476612": 13.399999999999977,
+ "1437476613": 13.799999999999955,
+ "1437476614": 14,
+ "1437476615": 14.399999999999977,
+ "1437476616": 14.799999999999955,
+ "1437476617": 15,
+ "1437476618": 15.399999999999977,
+ "1437476619": 15.600000000000023,
+ "1437476620": 15.799999999999955,
+ "1437476621": 16.200000000000045,
+ "1437476622": 16.399999999999977,
+ "1437476623": 16.799999999999955,
+ "1437476624": 17,
+ "1437476625": 17.399999999999977,
+ "1437476627": 17.600000000000023,
+ "1437476628": 17.799999999999955,
+ "1437476629": 18.200000000000045,
+ "1437476630": 18.399999999999977,
+ "1437476631": 18.799999999999955,
+ "1437476632": 19,
+ "1437476633": 19.200000000000045,
+ "1437476634": 19.600000000000023,
+ "1437476635": 19.799999999999955,
+ "1437476636": 20,
+ "1437476637": 20.200000000000045,
+ "1437476638": 20.600000000000023,
+ "1437476639": 20.799999999999955,
+ "1437476640": 21,
+ "1437476641": 21.200000000000045,
+ "1437476642": 21.399999999999977,
+ "1437476643": 21.600000000000023,
+ "1437476644": 21.600000000000023,
+ "1437476645": 21.600000000000023,
+ "1437476646": 21.600000000000023,
+ "1437476647": 21.600000000000023,
+ "1437476648": 21.399999999999977,
+ "1437476649": 21.200000000000045,
+ "1437476650": 21,
+ "1437476651": 20.600000000000023,
+ "1437476652": 20.200000000000045,
+ "1437476653": 19.600000000000023,
+ "1437476654": 19.200000000000045,
+ "1437476655": 18.600000000000023,
+ "1437476656": 17.799999999999955,
+ "1437476658": 17.200000000000045,
+ "1437476659": 16.399999999999977,
+ "1437476660": 15.399999999999977,
+ "1437476661": 14.399999999999977,
+ "1437476662": 13.600000000000023,
+ "1437476663": 12.799999999999955,
+ "1437476664": 12,
+ "1437476665": 11.600000000000023,
+ "1437476666": 11.399999999999977,
+ "1437476667": 11.600000000000023,
+ "1437476668": 11.800000000000011,
+ "1437476669": 12.200000000000045,
+ "1437476670": 12.600000000000023,
+ "1437476671": 13,
+ "1437476672": 13.600000000000023,
+ "1437476673": 14,
+ "1437476674": 14.200000000000045,
+ "1437476675": 14.399999999999977,
+ "1437476676": 14.600000000000023,
+ "1437476677": 13.799999999999955,
+ "1437476678": 12.399999999999977,
+ "1437476679": 12.600000000000023,
+ "1437476680": 13.799999999999955,
+ "1437476681": 14,
+ "1437476682": 13.799999999999955,
+ "1437476683": 13.600000000000023,
+ "1437476684": 13.399999999999977,
+ "1437476685": 13.399999999999977,
+ "1437476686": 13.600000000000023,
+ "1437476687": 13.600000000000023,
+ "1437476688": 13.399999999999977,
+ "1437476689": 13.399999999999977,
+ "1437476690": 13,
+ "1437476691": 12.799999999999955,
+ "1437476692": 12.200000000000045,
+ "1437476694": 11.399999999999977,
+ "1437476695": 10.800000000000011,
+ "1437476696": 10.399999999999977,
+ "1437476697": 10.600000000000023,
+ "1437476698": 11.399999999999977,
+ "1437476699": 12.399999999999977,
+ "1437476700": 13.200000000000045,
+ "1437476701": 13.799999999999955,
+ "1437476702": 14,
+ "1437476703": 14,
+ "1437476704": 14,
+ "1437476705": 14,
+ "1437476706": 13.600000000000023,
+ "1437476707": 13,
+ "1437476708": 12.200000000000045,
+ "1437476709": 11.199999999999989,
+ "1437476710": 10.399999999999977,
+ "1437476711": 10.199999999999989,
+ "1437476712": 10.600000000000023,
+ "1437476713": 11.199999999999989,
+ "1437476714": 12,
+ "1437476715": 12.600000000000023,
+ "1437476716": 13,
+ "1437476717": 13.200000000000045,
+ "1437476718": 13.399999999999977,
+ "1437476719": 13.600000000000023,
+ "1437476720": 13.799999999999955,
+ "1437476721": 13.799999999999955,
+ "1437476723": 14,
+ "1437476724": 13.799999999999955,
+ "1437476725": 14,
+ "1437476726": 14,
+ "1437476727": 14.200000000000045,
+ "1437476728": 14.200000000000045,
+ "1437476729": 14.200000000000045,
+ "1437476730": 14.200000000000045,
+ "1437476731": 14,
+ "1437476732": 13.600000000000023,
+ "1437476733": 13.399999999999977,
+ "1437476734": 13,
+ "1437476735": 12.799999999999955,
+ "1437476736": 12.399999999999977,
+ "1437476737": 12.200000000000045,
+ "1437476738": 11.800000000000011,
+ "1437476739": 11.800000000000011,
+ "1437476740": 11.800000000000011,
+ "1437476741": 11.800000000000011,
+ "1437476742": 12,
+ "1437476743": 12,
+ "1437476744": 12,
+ "1437476745": 11.800000000000011,
+ "1437476746": 11.600000000000023,
+ "1437476747": 11.199999999999989,
+ "1437476748": 10.800000000000011,
+ "1437476749": 10.600000000000023,
+ "1437476750": 10.199999999999989,
+ "1437476751": 9.800000000000011,
+ "1437476752": 9.399999999999977,
+ "1437476753": 9,
+ "1437476755": 8.600000000000023,
+ "1437476756": 8.199999999999989,
+ "1437476757": 7.800000000000011,
+ "1437476758": 7.399999999999977,
+ "1437476759": 7,
+ "1437476760": 6.600000000000023,
+ "1437476761": 6,
+ "1437476762": 5.600000000000023,
+ "1437476763": 5,
+ "1437476764": 4.600000000000023,
+ "1437476765": 4.199999999999989,
+ "1437476766": 3.8000000000000114,
+ "1437476767": 3.3999999999999773,
+ "1437476768": 3.1999999999999886,
+ "1437476769": 2.8000000000000114,
+ "1437476770": 2.6000000000000227,
+ "1437476771": 2.1999999999999886,
+ "1437476772": 2,
+ "1437476773": 1.6000000000000227,
+ "1437476774": 1.3999999999999773,
+ "1437476775": 1.1999999999999886,
+ "1437476776": 1,
+ "1437476777": 0.6000000000000227,
+ "1437476778": 0.39999999999997726,
+ "1437476779": 0.39999999999997726,
+ "1437476780": 0.19999999999998863,
+ "1437476781": 0.19999999999998863,
+ "1437476782": 0,
+ "1437476783": 0,
+ "1437476784": 0,
+ "1437476785": 0,
+ "1437476786": 0,
+ "1437476787": 0,
+ "1437476788": 0,
+ "1437476789": 0.19999999999998863,
+ "1437476791": 0.19999999999998863,
+ "1437476792": 0.19999999999998863,
+ "1437476793": 0.19999999999998863,
+ "1437476794": 0.19999999999998863,
+ "1437476795": 0.19999999999998863,
+ "1437476796": 0.19999999999998863,
+ "1437476797": 0.19999999999998863,
+ "1437476798": 0.19999999999998863,
+ "1437476799": 0.19999999999998863,
+ "1437476800": 0.19999999999998863,
+ "1437476801": 0.19999999999998863,
+ "1437476802": 0.19999999999998863,
+ "1437476803": 0.19999999999998863,
+ "1437476804": 0.19999999999998863,
+ "1437476805": 0.19999999999998863,
+ "1437476806": 0.19999999999998863,
+ "1437476807": 0.19999999999998863,
+ "1437476808": 0.19999999999998863,
+ "1437476809": 0.19999999999998863,
+ "1437476810": 0.19999999999998863,
+ "1437476811": 0.19999999999998863,
+ "1437476812": 0.19999999999998863,
+ "1437476813": 0.19999999999998863,
+ "1437476814": 0.19999999999998863,
+ "1437476815": 0.19999999999998863,
+ "1437476816": 0.19999999999998863,
+ "1437476817": 0.19999999999998863,
+ "1437476818": 0.19999999999998863,
+ "1437476819": 0.19999999999998863,
+ "1437476820": 0.19999999999998863,
+ "1437476821": 0.19999999999998863,
+ "1437476822": 0.19999999999998863,
+ "1437476824": 0.19999999999998863,
+ "1437476825": 0.19999999999998863,
+ "1437476826": 0.19999999999998863,
+ "1437476827": 0.19999999999998863,
+ "1437476828": 0.19999999999998863,
+ "1437476829": 0.19999999999998863,
+ "1437476830": 0.19999999999998863,
+ "1437476831": 0.19999999999998863,
+ "1437476832": 0.19999999999998863,
+ "1437476833": 0.19999999999998863,
+ "1437476834": 0.19999999999998863,
+ "1437476835": 0.19999999999998863,
+ "1437476836": 0.19999999999998863,
+ "1437476837": 0.19999999999998863,
+ "1437476838": 0.19999999999998863,
+ "1437476839": 0.19999999999998863,
+ "1437476840": 0.19999999999998863,
+ "1437476841": 0.19999999999998863,
+ "1437476842": 0.39999999999997726,
+ "1437476843": 0.39999999999997726,
+ "1437476844": 0.6000000000000227,
+ "1437476845": 0.6000000000000227,
+ "1437476846": 0.8000000000000114,
+ "1437476847": 0.8000000000000114,
+ "1437476848": 1,
+ "1437476849": 1,
+ "1437476850": 1.1999999999999886,
+ "1437476851": 1.3999999999999773,
+ "1437476852": 1.3999999999999773,
+ "1437476854": 1.6000000000000227,
+ "1437476855": 1.8000000000000114,
+ "1437476856": 2,
+ "1437476857": 2.1999999999999886,
+ "1437476858": 2.3999999999999773,
+ "1437476859": 2.8000000000000114,
+ "1437476860": 3,
+ "1437476861": 3,
+ "1437476862": 3.1999999999999886,
+ "1437476863": 3.1999999999999886,
+ "1437476864": 3.1999999999999886,
+ "1437476865": 3.1999999999999886,
+ "1437476866": 3.3999999999999773,
+ "1437476867": 3.3999999999999773,
+ "1437476868": 3.3999999999999773,
+ "1437476869": 3.3999999999999773,
+ "1437476870": 3.3999999999999773,
+ "1437476871": 3.3999999999999773,
+ "1437476872": 3.3999999999999773,
+ "1437476873": 3.3999999999999773,
+ "1437476874": 3.6000000000000227,
+ "1437476875": 3.6000000000000227,
+ "1437476876": 3.6000000000000227,
+ "1437476877": 3.6000000000000227,
+ "1437476878": 3.6000000000000227,
+ "1437476879": 3.8000000000000114,
+ "1437476880": 3.8000000000000114,
+ "1437476881": 3.8000000000000114,
+ "1437476882": 3.8000000000000114,
+ "1437476883": 4,
+ "1437476884": 4,
+ "1437476886": 4.199999999999989,
+ "1437476887": 4.399999999999977,
+ "1437476888": 4.800000000000011,
+ "1437476889": 5,
+ "1437476890": 5.399999999999977,
+ "1437476891": 5.600000000000023,
+ "1437476892": 5.800000000000011,
+ "1437476893": 6,
+ "1437476894": 6.199999999999989,
+ "1437476895": 6.199999999999989,
+ "1437476896": 6.199999999999989,
+ "1437476897": 6.199999999999989,
+ "1437476898": 6.199999999999989,
+ "1437476899": 6.199999999999989,
+ "1437476900": 6.399999999999977,
+ "1437476901": 7,
+ "1437476902": 7.600000000000023,
+ "1437476903": 8.199999999999989,
+ "1437476904": 8.800000000000011,
+ "1437476905": 9.199999999999989,
+ "1437476906": 9.800000000000011,
+ "1437476907": 10.399999999999977,
+ "1437476908": 11,
+ "1437476910": 11.399999999999977,
+ "1437476911": 11.800000000000011,
+ "1437476912": 12.399999999999977,
+ "1437476913": 12.799999999999955,
+ "1437476914": 13.200000000000045,
+ "1437476915": 13.399999999999977,
+ "1437476916": 13.600000000000023,
+ "1437476917": 13.799999999999955,
+ "1437476918": 14,
+ "1437476919": 14.200000000000045,
+ "1437476920": 14.399999999999977,
+ "1437476921": 14.799999999999955,
+ "1437476922": 15.200000000000045,
+ "1437476923": 15.799999999999955,
+ "1437476924": 16.200000000000045,
+ "1437476925": 16.600000000000023,
+ "1437476926": 16.799999999999955,
+ "1437476927": 17.200000000000045,
+ "1437476928": 17.399999999999977,
+ "1437476929": 17.799999999999955,
+ "1437476930": 18,
+ "1437476931": 18.200000000000045,
+ "1437476932": 18.399999999999977,
+ "1437476933": 18.600000000000023,
+ "1437476934": 19,
+ "1437476935": 19.200000000000045,
+ "1437476936": 19.399999999999977,
+ "1437476938": 19.600000000000023,
+ "1437476939": 19.799999999999955,
+ "1437476940": 20,
+ "1437476941": 20.200000000000045,
+ "1437476942": 20.399999999999977,
+ "1437476943": 20.799999999999955,
+ "1437476944": 21,
+ "1437476945": 21.200000000000045,
+ "1437476946": 21.399999999999977,
+ "1437476947": 21.600000000000023,
+ "1437476948": 22,
+ "1437476949": 22.200000000000045,
+ "1437476950": 22.399999999999977,
+ "1437476951": 22.600000000000023,
+ "1437476952": 22.799999999999955,
+ "1437476953": 23.200000000000045,
+ "1437476954": 23.399999999999977,
+ "1437476955": 23.600000000000023,
+ "1437476956": 23.799999999999955,
+ "1437476957": 24,
+ "1437476958": 24.200000000000045,
+ "1437476959": 24.600000000000023,
+ "1437476960": 24.799999999999955,
+ "1437476961": 25,
+ "1437476962": 25.200000000000045,
+ "1437476963": 25.399999999999977,
+ "1437476964": 25.600000000000023,
+ "1437476965": 26,
+ "1437476966": 26.200000000000045,
+ "1437476967": 26.399999999999977,
+ "1437476969": 26.600000000000023,
+ "1437476970": 26.799999999999955,
+ "1437476971": 27,
+ "1437476972": 27.399999999999977,
+ "1437476973": 27.600000000000023,
+ "1437476974": 27.799999999999955,
+ "1437476975": 28,
+ "1437476976": 28.399999999999977,
+ "1437476977": 28.600000000000023,
+ "1437476978": 28.799999999999955,
+ "1437476979": 29,
+ "1437476980": 29.200000000000045,
+ "1437476981": 29.399999999999977,
+ "1437476982": 29.799999999999955,
+ "1437476983": 30,
+ "1437476984": 30.200000000000045,
+ "1437476985": 30.399999999999977,
+ "1437476986": 30.600000000000023,
+ "1437476987": 31,
+ "1437476988": 31.200000000000045,
+ "1437476989": 31.399999999999977,
+ "1437476990": 31.600000000000023,
+ "1437476991": 32,
+ "1437476992": 32.200000000000045,
+ "1437476993": 32.39999999999998,
+ "1437476994": 32.60000000000002,
+ "1437476996": 33,
+ "1437476997": 33.200000000000045,
+ "1437476998": 33.39999999999998,
+ "1437476999": 33.60000000000002,
+ "1437477000": 34,
+ "1437477001": 34.200000000000045,
+ "1437477002": 34.39999999999998,
+ "1437477003": 34.60000000000002,
+ "1437477004": 34.60000000000002,
+ "1437477005": 34.799999999999955,
+ "1437477006": 34.799999999999955,
+ "1437477007": 34.799999999999955,
+ "1437477008": 34.799999999999955,
+ "1437477009": 34.799999999999955,
+ "1437477010": 34.60000000000002,
+ "1437477011": 34.60000000000002,
+ "1437477012": 34.60000000000002,
+ "1437477013": 34.60000000000002,
+ "1437477014": 35,
+ "1437477015": 35.39999999999998,
+ "1437477016": 35.799999999999955,
+ "1437477017": 36.39999999999998,
+ "1437477018": 36.799999999999955,
+ "1437477019": 37.39999999999998,
+ "1437477020": 37.799999999999955,
+ "1437477022": 38.200000000000045,
+ "1437477023": 38.799999999999955,
+ "1437477024": 39.200000000000045,
+ "1437477025": 39.60000000000002,
+ "1437477026": 40,
+ "1437477027": 40.39999999999998,
+ "1437477028": 40.799999999999955,
+ "1437477029": 41,
+ "1437477030": 41.39999999999998,
+ "1437477031": 41.799999999999955,
+ "1437477032": 42.200000000000045,
+ "1437477033": 42.39999999999998,
+ "1437477034": 42.799999999999955,
+ "1437477035": 43.200000000000045,
+ "1437477036": 43.39999999999998,
+ "1437477037": 43.799999999999955,
+ "1437477038": 44.200000000000045,
+ "1437477039": 44.60000000000002,
+ "1437477040": 44.799999999999955,
+ "1437477041": 45.200000000000045,
+ "1437477042": 45.60000000000002,
+ "1437477043": 45.799999999999955,
+ "1437477044": 46.200000000000045,
+ "1437477045": 46.39999999999998,
+ "1437477046": 46.799999999999955,
+ "1437477047": 47.200000000000045,
+ "1437477048": 47.39999999999998,
+ "1437477050": 47.799999999999955,
+ "1437477051": 48.200000000000045,
+ "1437477052": 48.39999999999998,
+ "1437477053": 48.799999999999955,
+ "1437477054": 49.200000000000045,
+ "1437477055": 49.39999999999998,
+ "1437477056": 49.799999999999955,
+ "1437477057": 50,
+ "1437477058": 50.39999999999998,
+ "1437477059": 50.799999999999955,
+ "1437477060": 51,
+ "1437477061": 51.39999999999998,
+ "1437477062": 51.60000000000002,
+ "1437477063": 52,
+ "1437477064": 52.39999999999998,
+ "1437477065": 52.60000000000002,
+ "1437477066": 52.799999999999955,
+ "1437477067": 53.200000000000045,
+ "1437477068": 53.200000000000045,
+ "1437477069": 53,
+ "1437477070": 53,
+ "1437477071": 53,
+ "1437477072": 53,
+ "1437477073": 53.200000000000045,
+ "1437477075": 53.39999999999998,
+ "1437477076": 53.60000000000002,
+ "1437477077": 54,
+ "1437477078": 54.200000000000045,
+ "1437477079": 54.60000000000002,
+ "1437477080": 54.799999999999955,
+ "1437477081": 55.200000000000045,
+ "1437477082": 55.39999999999998,
+ "1437477083": 55.60000000000002,
+ "1437477084": 55.799999999999955,
+ "1437477085": 56,
+ "1437477086": 56.200000000000045,
+ "1437477087": 56.39999999999998,
+ "1437477088": 56.39999999999998,
+ "1437477089": 56.60000000000002,
+ "1437477090": 56.60000000000002,
+ "1437477091": 56.60000000000002,
+ "1437477092": 56.60000000000002,
+ "1437477093": 56.39999999999998,
+ "1437477094": 56.39999999999998,
+ "1437477095": 56.200000000000045,
+ "1437477096": 56,
+ "1437477097": 55.799999999999955,
+ "1437477098": 55.60000000000002,
+ "1437477099": 55.39999999999998,
+ "1437477100": 55.200000000000045,
+ "1437477101": 54.799999999999955,
+ "1437477102": 54.60000000000002,
+ "1437477103": 54.200000000000045,
+ "1437477104": 54,
+ "1437477105": 53.60000000000002,
+ "1437477106": 53.39999999999998,
+ "1437477107": 53,
+ "1437477109": 52.60000000000002,
+ "1437477110": 52.39999999999998,
+ "1437477111": 52,
+ "1437477112": 51.799999999999955,
+ "1437477113": 51.60000000000002,
+ "1437477114": 51.39999999999998,
+ "1437477115": 51.39999999999998,
+ "1437477116": 51.39999999999998,
+ "1437477117": 51.39999999999998,
+ "1437477118": 51.60000000000002,
+ "1437477119": 51.799999999999955,
+ "1437477120": 52,
+ "1437477121": 52,
+ "1437477122": 52.200000000000045,
+ "1437477123": 52.200000000000045,
+ "1437477124": 52.39999999999998,
+ "1437477125": 52.39999999999998,
+ "1437477126": 52.60000000000002,
+ "1437477127": 52.60000000000002,
+ "1437477128": 52.799999999999955,
+ "1437477129": 52.799999999999955,
+ "1437477130": 53,
+ "1437477131": 53.200000000000045,
+ "1437477132": 53.200000000000045,
+ "1437477133": 53.39999999999998,
+ "1437477134": 53.39999999999998,
+ "1437477135": 53.39999999999998,
+ "1437477136": 53.60000000000002,
+ "1437477137": 53.60000000000002,
+ "1437477138": 53.60000000000002,
+ "1437477139": 53.799999999999955,
+ "1437477140": 53.799999999999955,
+ "1437477141": 53.799999999999955,
+ "1437477143": 53.60000000000002,
+ "1437477144": 53.60000000000002,
+ "1437477145": 53.39999999999998,
+ "1437477146": 53.200000000000045,
+ "1437477147": 53.200000000000045,
+ "1437477148": 53,
+ "1437477149": 52.799999999999955,
+ "1437477150": 52.60000000000002,
+ "1437477151": 52.200000000000045,
+ "1437477152": 52,
+ "1437477153": 51.799999999999955,
+ "1437477154": 51.60000000000002,
+ "1437477155": 51.60000000000002,
+ "1437477156": 51.39999999999998,
+ "1437477157": 51.39999999999998,
+ "1437477158": 51.39999999999998,
+ "1437477159": 51.39999999999998,
+ "1437477160": 51.39999999999998,
+ "1437477161": 51.60000000000002,
+ "1437477162": 51.60000000000002,
+ "1437477163": 51.60000000000002,
+ "1437477164": 51.60000000000002,
+ "1437477165": 51.60000000000002,
+ "1437477166": 51.60000000000002,
+ "1437477167": 51.39999999999998,
+ "1437477168": 51.39999999999998,
+ "1437477169": 51.200000000000045,
+ "1437477170": 51,
+ "1437477171": 50.60000000000002,
+ "1437477172": 50.200000000000045,
+ "1437477173": 49.799999999999955,
+ "1437477174": 49.200000000000045,
+ "1437477175": 48.799999999999955,
+ "1437477176": 48.200000000000045,
+ "1437477178": 47.60000000000002,
+ "1437477179": 47,
+ "1437477180": 46.39999999999998,
+ "1437477181": 45.799999999999955,
+ "1437477182": 45.200000000000045,
+ "1437477183": 44.60000000000002,
+ "1437477184": 44,
+ "1437477185": 43.39999999999998,
+ "1437477186": 43,
+ "1437477187": 42.60000000000002,
+ "1437477188": 42.60000000000002,
+ "1437477189": 43.39999999999998,
+ "1437477190": 44,
+ "1437477191": 44.799999999999955,
+ "1437477192": 45.39999999999998,
+ "1437477193": 46,
+ "1437477194": 46.60000000000002,
+ "1437477195": 47.200000000000045,
+ "1437477196": 47.60000000000002,
+ "1437477197": 48,
+ "1437477198": 48.39999999999998,
+ "1437477199": 48.60000000000002,
+ "1437477200": 48.799999999999955,
+ "1437477201": 49,
+ "1437477202": 49,
+ "1437477203": 49,
+ "1437477204": 49,
+ "1437477205": 49,
+ "1437477206": 49,
+ "1437477207": 49,
+ "1437477208": 48.799999999999955,
+ "1437477209": 48.799999999999955,
+ "1437477210": 48.60000000000002,
+ "1437477211": 48.39999999999998,
+ "1437477212": 48.39999999999998,
+ "1437477213": 48.200000000000045,
+ "1437477215": 48,
+ "1437477216": 47.799999999999955,
+ "1437477217": 47.60000000000002,
+ "1437477218": 47.200000000000045,
+ "1437477219": 46.799999999999955,
+ "1437477220": 46.60000000000002,
+ "1437477221": 46.200000000000045,
+ "1437477222": 45.799999999999955,
+ "1437477223": 45.39999999999998,
+ "1437477224": 45.200000000000045,
+ "1437477225": 45,
+ "1437477226": 44.60000000000002,
+ "1437477227": 44.60000000000002,
+ "1437477228": 44.39999999999998,
+ "1437477229": 44.200000000000045,
+ "1437477230": 44,
+ "1437477231": 44,
+ "1437477232": 43.799999999999955,
+ "1437477233": 43.60000000000002,
+ "1437477234": 43.39999999999998,
+ "1437477235": 43.39999999999998,
+ "1437477236": 43,
+ "1437477237": 42.799999999999955,
+ "1437477238": 42.39999999999998,
+ "1437477239": 42,
+ "1437477240": 41.39999999999998,
+ "1437477241": 40.60000000000002,
+ "1437477242": 39.60000000000002,
+ "1437477243": 38.60000000000002,
+ "1437477244": 37.799999999999955,
+ "1437477245": 37.200000000000045,
+ "1437477247": 37.200000000000045,
+ "1437477248": 37.60000000000002,
+ "1437477249": 38.200000000000045,
+ "1437477250": 38.39999999999998,
+ "1437477251": 38.200000000000045,
+ "1437477252": 37.799999999999955,
+ "1437477253": 37.200000000000045,
+ "1437477254": 36.39999999999998,
+ "1437477255": 35.60000000000002,
+ "1437477256": 34.799999999999955,
+ "1437477257": 34,
+ "1437477258": 33.200000000000045,
+ "1437477259": 32.200000000000045,
+ "1437477260": 31.200000000000045,
+ "1437477261": 30,
+ "1437477262": 28.600000000000023,
+ "1437477263": 27,
+ "1437477264": 25.399999999999977,
+ "1437477265": 24.200000000000045,
+ "1437477266": 22.799999999999955,
+ "1437477267": 21.799999999999955,
+ "1437477268": 20.799999999999955,
+ "1437477270": 20,
+ "1437477271": 19,
+ "1437477272": 18.200000000000045,
+ "1437477273": 17.399999999999977,
+ "1437477274": 16.799999999999955,
+ "1437477275": 16,
+ "1437477276": 15.399999999999977,
+ "1437477277": 14.799999999999955,
+ "1437477278": 14.399999999999977,
+ "1437477279": 13.799999999999955,
+ "1437477280": 13.399999999999977,
+ "1437477281": 13,
+ "1437477282": 12.600000000000023,
+ "1437477283": 12.200000000000045,
+ "1437477284": 12,
+ "1437477285": 11.600000000000023,
+ "1437477286": 11.399999999999977,
+ "1437477287": 11.199999999999989,
+ "1437477288": 10.800000000000011,
+ "1437477289": 10.600000000000023,
+ "1437477290": 10.399999999999977,
+ "1437477291": 10.199999999999989,
+ "1437477292": 10.199999999999989,
+ "1437477294": 10.199999999999989,
+ "1437477295": 10.199999999999989,
+ "1437477296": 10.199999999999989,
+ "1437477297": 10.199999999999989,
+ "1437477298": 10.199999999999989,
+ "1437477299": 10.399999999999977,
+ "1437477300": 10.399999999999977,
+ "1437477301": 10.600000000000023,
+ "1437477302": 10.600000000000023,
+ "1437477303": 10.600000000000023,
+ "1437477304": 10.600000000000023,
+ "1437477305": 10.600000000000023,
+ "1437477306": 10.600000000000023,
+ "1437477307": 10.600000000000023,
+ "1437477308": 10.600000000000023,
+ "1437477309": 10.600000000000023,
+ "1437477310": 10.600000000000023,
+ "1437477311": 10.600000000000023,
+ "1437477312": 10.600000000000023,
+ "1437477313": 10.600000000000023,
+ "1437477314": 10.600000000000023,
+ "1437477315": 10.600000000000023,
+ "1437477316": 10.600000000000023,
+ "1437477317": 10.600000000000023,
+ "1437477318": 10.600000000000023,
+ "1437477319": 10.600000000000023,
+ "1437477321": 10.600000000000023,
+ "1437477322": 10.600000000000023,
+ "1437477323": 10.600000000000023,
+ "1437477324": 10.600000000000023,
+ "1437477325": 10.600000000000023,
+ "1437477326": 10.199999999999989,
+ "1437477327": 10,
+ "1437477328": 9.600000000000023,
+ "1437477329": 9.199999999999989,
+ "1437477330": 8.600000000000023,
+ "1437477331": 8.199999999999989,
+ "1437477332": 7.800000000000011,
+ "1437477333": 7.600000000000023,
+ "1437477334": 7.800000000000011,
+ "1437477335": 8.199999999999989,
+ "1437477336": 8.399999999999977,
+ "1437477337": 8.800000000000011,
+ "1437477338": 9.199999999999989,
+ "1437477339": 9.600000000000023,
+ "1437477340": 10,
+ "1437477341": 10.199999999999989,
+ "1437477342": 10.600000000000023,
+ "1437477343": 10.800000000000011,
+ "1437477345": 11.199999999999989,
+ "1437477346": 11.399999999999977,
+ "1437477347": 11.800000000000011,
+ "1437477348": 12,
+ "1437477349": 12,
+ "1437477350": 12.200000000000045,
+ "1437477351": 12.200000000000045,
+ "1437477352": 12.200000000000045,
+ "1437477353": 12.200000000000045,
+ "1437477354": 12.200000000000045,
+ "1437477355": 12.200000000000045,
+ "1437477356": 12.200000000000045,
+ "1437477376": 12.200000000000045,
+ "1437477377": 12.399999999999977,
+ "1437477378": 12.399999999999977,
+ "1437477379": 12.399999999999977,
+ "1437477380": 12.399999999999977,
+ "1437477381": 12.600000000000023,
+ "1437477383": 12.600000000000023,
+ "1437477384": 12.600000000000023,
+ "1437477385": 12.600000000000023,
+ "1437477386": 12.600000000000023,
+ "1437477387": 12.600000000000023,
+ "1437477388": 12.600000000000023,
+ "1437477392": 12.600000000000023,
+ "1437477393": 12.799999999999955,
+ "1437477394": 12.799999999999955,
+ "1437477395": 12.799999999999955,
+ "1437477397": 12.799999999999955,
+ "1437477398": 12.799999999999955,
+ "1437477399": 12.799999999999955,
+ "1437477400": 12.799999999999955,
+ "1437477401": 12.799999999999955,
+ "1437477402": 12.799999999999955,
+ "1437477403": 12.799999999999955,
+ "1437477404": 13,
+ "1437477405": 13,
+ "1437477406": 13,
+ "1437477407": 13,
+ "1437477408": 13,
+ "1437477411": 13,
+ "1437477412": 13,
+ "1437477413": 13,
+ "1437477414": 13,
+ "1437477415": 13,
+ "1437477417": 13,
+ "1437477418": 13,
+ "1437477419": 13,
+ "1437477420": 13,
+ "1437477421": 13,
+ "1437477422": 13,
+ "1437477423": 13,
+ "1437477428": 13,
+ "1437477429": 13,
+ "1437477430": 13.200000000000045,
+ "1437477432": 13.200000000000045,
+ "1437477433": 13.200000000000045,
+ "1437477434": 13.200000000000045,
+ "1437477435": 13.200000000000045,
+ "1437477436": 13.200000000000045,
+ "1437477437": 13.200000000000045,
+ "1437477438": 13.399999999999977,
+ "1437477439": 13.399999999999977,
+ "1437477440": 13.399999999999977,
+ "1437477441": 13.399999999999977,
+ "1437477442": 13.399999999999977,
+ "1437477443": 13.399999999999977,
+ "1437477444": 13.600000000000023,
+ "1437477445": 13.600000000000023,
+ "1437477446": 13.600000000000023,
+ "1437477447": 13.600000000000023,
+ "1437477448": 13.600000000000023,
+ "1437477449": 13.600000000000023,
+ "1437477450": 13.600000000000023,
+ "1437477451": 13.799999999999955,
+ "1437477452": 13.799999999999955,
+ "1437477453": 13.799999999999955,
+ "1437477454": 13.799999999999955,
+ "1437477455": 13.799999999999955,
+ "1437477456": 13.799999999999955,
+ "1437477457": 14,
+ "1437477458": 14,
+ "1437477459": 14,
+ "1437477461": 14,
+ "1437477465": 14,
+ "1437477466": 14,
+ "1437477467": 14,
+ "1437477468": 14,
+ "1437477469": 14,
+ "1437477470": 14,
+ "1437477471": 14,
+ "1437477472": 14.200000000000045,
+ "1437477473": 14.200000000000045,
+ "1437477474": 14.200000000000045,
+ "1437477475": 14.200000000000045,
+ "1437477476": 14.200000000000045,
+ "1437477477": 14.200000000000045,
+ "1437477478": 14.200000000000045,
+ "1437477479": 14.200000000000045,
+ "1437477480": 14.399999999999977,
+ "1437477481": 14.399999999999977,
+ "1437477482": 14.399999999999977,
+ "1437477483": 14.399999999999977,
+ "1437477484": 14.399999999999977,
+ "1437477485": 14.399999999999977,
+ "1437477486": 14.399999999999977,
+ "1437477487": 14.399999999999977,
+ "1437477488": 14.399999999999977,
+ "1437477489": 14.399999999999977,
+ "1437477490": 14.399999999999977,
+ "1437477491": 14.399999999999977,
+ "1437477492": 14.399999999999977,
+ "1437477493": 14.399999999999977,
+ "1437477494": 14.399999999999977,
+ "1437477495": 14.399999999999977,
+ "1437477496": 14.399999999999977,
+ "1437477497": 14.399999999999977,
+ "1437477498": 14.399999999999977,
+ "1437477500": 14.399999999999977,
+ "1437477501": 14.399999999999977,
+ "1437477502": 14.399999999999977,
+ "1437477503": 14.399999999999977,
+ "1437477504": 14.399999999999977,
+ "1437477505": 14.399999999999977,
+ "1437477506": 14.200000000000045,
+ "1437477507": 14.200000000000045,
+ "1437477508": 14.200000000000045,
+ "1437477509": 14.200000000000045,
+ "1437477510": 14.200000000000045,
+ "1437477511": 14,
+ "1437477512": 14,
+ "1437477513": 14,
+ "1437477514": 14,
+ "1437477515": 14,
+ "1437477516": 14.200000000000045,
+ "1437477517": 14.200000000000045,
+ "1437477518": 14.200000000000045,
+ "1437477519": 14.399999999999977,
+ "1437477520": 14.399999999999977,
+ "1437477521": 14.600000000000023,
+ "1437477522": 14.600000000000023,
+ "1437477523": 14.799999999999955,
+ "1437477524": 14.799999999999955,
+ "1437477525": 14.799999999999955,
+ "1437477526": 15,
+ "1437477527": 15,
+ "1437477528": 15,
+ "1437477529": 15,
+ "1437477530": 15.200000000000045,
+ "1437477532": 15.200000000000045,
+ "1437477533": 15.200000000000045,
+ "1437477534": 15.200000000000045,
+ "1437477535": 15.200000000000045,
+ "1437477536": 15.200000000000045,
+ "1437477537": 15.399999999999977,
+ "1437477538": 15.399999999999977,
+ "1437477539": 15.399999999999977,
+ "1437477540": 15.399999999999977,
+ "1437477541": 15.399999999999977,
+ "1437477542": 15.600000000000023,
+ "1437477543": 15.600000000000023,
+ "1437477544": 15.600000000000023,
+ "1437477545": 15.600000000000023,
+ "1437477546": 15.600000000000023,
+ "1437477547": 15.600000000000023,
+ "1437477548": 15.799999999999955,
+ "1437477549": 15.799999999999955,
+ "1437477550": 15.799999999999955,
+ "1437477551": 15.799999999999955,
+ "1437477552": 15.799999999999955,
+ "1437477553": 15.799999999999955,
+ "1437477555": 16,
+ "1437477556": 16,
+ "1437477557": 16,
+ "1437477558": 16,
+ "1437477559": 16,
+ "1437477560": 16,
+ "1437477561": 16,
+ "1437477562": 16.200000000000045,
+ "1437477563": 16.200000000000045,
+ "1437477564": 16.200000000000045,
+ "1437477565": 16.200000000000045,
+ "1437477566": 16.200000000000045,
+ "1437477567": 16.200000000000045,
+ "1437477568": 16.200000000000045,
+ "1437477569": 16.200000000000045,
+ "1437477570": 16.200000000000045,
+ "1437477571": 16.399999999999977,
+ "1437477572": 16.399999999999977,
+ "1437477573": 16.399999999999977,
+ "1437477574": 16.399999999999977,
+ "1437477575": 16.399999999999977,
+ "1437477576": 16.399999999999977,
+ "1437477577": 16.399999999999977,
+ "1437477578": 16.399999999999977,
+ "1437477580": 16.399999999999977,
+ "1437477581": 16.600000000000023,
+ "1437477582": 16.600000000000023,
+ "1437477583": 16.600000000000023,
+ "1437477584": 16.600000000000023,
+ "1437477585": 16.600000000000023,
+ "1437477586": 16.799999999999955,
+ "1437477587": 16.799999999999955,
+ "1437477588": 16.799999999999955,
+ "1437477589": 17,
+ "1437477590": 17,
+ "1437477591": 17,
+ "1437477592": 17.200000000000045,
+ "1437477593": 17.200000000000045,
+ "1437477594": 17.200000000000045,
+ "1437477595": 17.200000000000045,
+ "1437477596": 17.399999999999977,
+ "1437477597": 17.399999999999977,
+ "1437477598": 17.399999999999977,
+ "1437477599": 17.399999999999977,
+ "1437477600": 17.399999999999977,
+ "1437477601": 17.399999999999977,
+ "1437477604": 17.399999999999977,
+ "1437477605": 17.399999999999977,
+ "1437477607": 17.600000000000023,
+ "1437477608": 17.600000000000023,
+ "1437477609": 17.600000000000023,
+ "1437477610": 17.799999999999955,
+ "1437477611": 17.799999999999955,
+ "1437477612": 17.799999999999955,
+ "1437477613": 17.799999999999955,
+ "1437477614": 17.799999999999955,
+ "1437477615": 17.600000000000023,
+ "1437477616": 17.799999999999955,
+ "1437477617": 18,
+ "1437477618": 18,
+ "1437477619": 18,
+ "1437477620": 17.799999999999955,
+ "1437477621": 17.799999999999955,
+ "1437477622": 17.600000000000023,
+ "1437477623": 17.399999999999977,
+ "1437477624": 17.200000000000045,
+ "1437477625": 16.799999999999955,
+ "1437477626": 16.399999999999977,
+ "1437477627": 16,
+ "1437477628": 15.600000000000023,
+ "1437477629": 15.200000000000045,
+ "1437477630": 14.799999999999955,
+ "1437477631": 14.600000000000023,
+ "1437477632": 14.200000000000045,
+ "1437477633": 14.200000000000045,
+ "1437477634": 14,
+ "1437477635": 14,
+ "1437477636": 14.200000000000045,
+ "1437477638": 14.200000000000045,
+ "1437477639": 14.399999999999977,
+ "1437477640": 14.399999999999977,
+ "1437477641": 14.399999999999977,
+ "1437477642": 14.399999999999977,
+ "1437477643": 14.399999999999977,
+ "1437477644": 14.200000000000045,
+ "1437477645": 14.200000000000045,
+ "1437477646": 13.799999999999955,
+ "1437477647": 13.600000000000023,
+ "1437477648": 13.399999999999977,
+ "1437477649": 13,
+ "1437477650": 12.600000000000023,
+ "1437477651": 12.399999999999977,
+ "1437477652": 12,
+ "1437477653": 11.600000000000023,
+ "1437477654": 11.199999999999989,
+ "1437477655": 11,
+ "1437477656": 11,
+ "1437477657": 11.199999999999989,
+ "1437477658": 11.399999999999977,
+ "1437477659": 11.600000000000023,
+ "1437477660": 11.600000000000023,
+ "1437477661": 11.600000000000023,
+ "1437477662": 11.600000000000023,
+ "1437477663": 11.600000000000023,
+ "1437477664": 11.600000000000023,
+ "1437477665": 11.600000000000023,
+ "1437477666": 11.600000000000023,
+ "1437477667": 11.600000000000023,
+ "1437477668": 11.800000000000011,
+ "1437477669": 11.800000000000011,
+ "1437477671": 11.800000000000011,
+ "1437477672": 11.800000000000011,
+ "1437477673": 11.800000000000011,
+ "1437477674": 11.800000000000011,
+ "1437477676": 12,
+ "1437477677": 12,
+ "1437477678": 12,
+ "1437477679": 12,
+ "1437477680": 12,
+ "1437477681": 12,
+ "1437477682": 12,
+ "1437477683": 12,
+ "1437477684": 12,
+ "1437477685": 12,
+ "1437477688": 12,
+ "1437477689": 12,
+ "1437477690": 12.200000000000045,
+ "1437477691": 12.200000000000045,
+ "1437477692": 12.200000000000045,
+ "1437477693": 12.200000000000045,
+ "1437477695": 12.200000000000045,
+ "1437477696": 12.399999999999977,
+ "1437477697": 12.399999999999977,
+ "1437477698": 12.399999999999977,
+ "1437477699": 12.399999999999977,
+ "1437477700": 12.399999999999977,
+ "1437477701": 12.399999999999977,
+ "1437477702": 12.600000000000023,
+ "1437477703": 12.600000000000023,
+ "1437477704": 12.600000000000023,
+ "1437477705": 12.600000000000023,
+ "1437477706": 12.600000000000023
+ },
+ "heartRates": {
+ "1437474517": 92,
+ "1437474518": 93,
+ "1437474519": 94,
+ "1437474520": 93,
+ "1437474521": 93,
+ "1437474522": 93,
+ "1437474523": 93,
+ "1437474524": 93,
+ "1437474525": 93,
+ "1437474526": 93,
+ "1437474527": 93,
+ "1437474528": 91,
+ "1437474529": 89,
+ "1437474530": 89,
+ "1437474532": 89,
+ "1437474533": 90,
+ "1437474534": 90,
+ "1437474535": 91,
+ "1437474536": 91,
+ "1437474537": 91,
+ "1437474538": 91,
+ "1437474539": 91,
+ "1437474540": 89,
+ "1437474541": 89,
+ "1437474542": 88,
+ "1437474543": 89,
+ "1437474544": 91,
+ "1437474545": 93,
+ "1437474546": 96,
+ "1437474547": 98,
+ "1437474548": 99,
+ "1437474549": 101,
+ "1437474550": 103,
+ "1437474551": 105,
+ "1437474552": 106,
+ "1437474553": 108,
+ "1437474554": 110,
+ "1437474555": 111,
+ "1437474556": 112,
+ "1437474557": 113,
+ "1437474558": 113,
+ "1437474559": 114,
+ "1437474560": 114,
+ "1437474561": 114,
+ "1437474562": 115,
+ "1437474563": 115,
+ "1437474564": 115,
+ "1437474566": 115,
+ "1437474567": 115,
+ "1437474568": 115,
+ "1437474569": 116,
+ "1437474570": 117,
+ "1437474571": 118,
+ "1437474572": 118,
+ "1437474573": 119,
+ "1437474574": 119,
+ "1437474575": 120,
+ "1437474576": 121,
+ "1437474577": 122,
+ "1437474578": 123,
+ "1437474579": 123,
+ "1437474580": 124,
+ "1437474581": 125,
+ "1437474582": 126,
+ "1437474583": 126,
+ "1437474584": 127,
+ "1437474585": 127,
+ "1437474586": 127,
+ "1437474587": 127,
+ "1437474588": 127,
+ "1437474589": 127,
+ "1437474590": 127,
+ "1437474591": 127,
+ "1437474592": 128,
+ "1437474593": 128,
+ "1437474594": 129,
+ "1437474595": 129,
+ "1437474596": 130,
+ "1437474597": 130,
+ "1437474598": 131,
+ "1437474599": 131,
+ "1437474600": 132,
+ "1437474601": 133,
+ "1437474603": 134,
+ "1437474604": 135,
+ "1437474605": 135,
+ "1437474606": 136,
+ "1437474607": 137,
+ "1437474608": 137,
+ "1437474609": 138,
+ "1437474610": 138,
+ "1437474611": 139,
+ "1437474612": 139,
+ "1437474613": 139,
+ "1437474614": 139,
+ "1437474615": 140,
+ "1437474616": 140,
+ "1437474617": 140,
+ "1437474618": 139,
+ "1437474619": 139,
+ "1437474620": 139,
+ "1437474621": 139,
+ "1437474622": 139,
+ "1437474623": 138,
+ "1437474624": 138,
+ "1437474626": 137,
+ "1437474627": 137,
+ "1437474628": 136,
+ "1437474629": 136,
+ "1437474630": 136,
+ "1437474631": 136,
+ "1437474632": 136,
+ "1437474633": 136,
+ "1437474634": 135,
+ "1437474635": 135,
+ "1437474636": 135,
+ "1437474637": 135,
+ "1437474638": 135,
+ "1437474639": 135,
+ "1437474640": 135,
+ "1437474641": 135,
+ "1437474642": 135,
+ "1437474643": 136,
+ "1437474644": 136,
+ "1437474645": 137,
+ "1437474646": 137,
+ "1437474647": 137,
+ "1437474648": 138,
+ "1437474649": 138,
+ "1437474650": 138,
+ "1437474652": 138,
+ "1437474653": 139,
+ "1437474654": 139,
+ "1437474655": 139,
+ "1437474656": 140,
+ "1437474657": 140,
+ "1437474658": 140,
+ "1437474659": 140,
+ "1437474660": 140,
+ "1437474661": 140,
+ "1437474662": 139,
+ "1437474663": 139,
+ "1437474664": 139,
+ "1437474665": 139,
+ "1437474666": 139,
+ "1437474667": 140,
+ "1437474668": 139,
+ "1437474669": 140,
+ "1437474670": 139,
+ "1437474671": 139,
+ "1437474672": 139,
+ "1437474673": 139,
+ "1437474674": 139,
+ "1437474675": 139,
+ "1437474676": 139,
+ "1437474677": 139,
+ "1437474678": 139,
+ "1437474679": 139,
+ "1437474681": 139,
+ "1437474682": 140,
+ "1437474683": 140,
+ "1437474684": 140,
+ "1437474685": 140,
+ "1437474686": 140,
+ "1437474687": 140,
+ "1437474688": 140,
+ "1437474689": 141,
+ "1437474690": 141,
+ "1437474691": 141,
+ "1437474692": 140,
+ "1437474693": 140,
+ "1437474694": 140,
+ "1437474695": 140,
+ "1437474696": 139,
+ "1437474697": 139,
+ "1437474698": 139,
+ "1437474699": 139,
+ "1437474700": 139,
+ "1437474701": 138,
+ "1437474702": 138,
+ "1437474703": 138,
+ "1437474705": 138,
+ "1437474706": 138,
+ "1437474707": 138,
+ "1437474708": 138,
+ "1437474709": 138,
+ "1437474710": 138,
+ "1437474711": 137,
+ "1437474712": 136,
+ "1437474713": 136,
+ "1437474714": 136,
+ "1437474715": 136,
+ "1437474716": 137,
+ "1437474717": 137,
+ "1437474718": 138,
+ "1437474719": 138,
+ "1437474720": 138,
+ "1437474721": 139,
+ "1437474722": 138,
+ "1437474723": 138,
+ "1437474724": 138,
+ "1437474725": 137,
+ "1437474726": 137,
+ "1437474727": 138,
+ "1437474728": 137,
+ "1437474729": 138,
+ "1437474730": 138,
+ "1437474732": 138,
+ "1437474733": 138,
+ "1437474734": 138,
+ "1437474735": 138,
+ "1437474736": 138,
+ "1437474737": 138,
+ "1437474738": 138,
+ "1437474739": 138,
+ "1437474740": 138,
+ "1437474741": 139,
+ "1437474742": 139,
+ "1437474743": 140,
+ "1437474744": 140,
+ "1437474745": 141,
+ "1437474746": 141,
+ "1437474747": 142,
+ "1437474748": 142,
+ "1437474749": 143,
+ "1437474750": 144,
+ "1437474751": 144,
+ "1437474752": 144,
+ "1437474753": 144,
+ "1437474754": 144,
+ "1437474755": 144,
+ "1437474756": 144,
+ "1437474757": 144,
+ "1437474758": 144,
+ "1437474760": 144,
+ "1437474761": 144,
+ "1437474762": 144,
+ "1437474763": 144,
+ "1437474764": 145,
+ "1437474765": 145,
+ "1437474766": 145,
+ "1437474767": 145,
+ "1437474768": 145,
+ "1437474769": 145,
+ "1437474770": 145,
+ "1437474771": 146,
+ "1437474772": 145,
+ "1437474773": 145,
+ "1437474774": 145,
+ "1437474775": 146,
+ "1437474776": 145,
+ "1437474777": 145,
+ "1437474778": 145,
+ "1437474779": 145,
+ "1437474780": 146,
+ "1437474781": 146,
+ "1437474782": 146,
+ "1437474783": 146,
+ "1437474785": 146,
+ "1437474786": 147,
+ "1437474787": 147,
+ "1437474788": 147,
+ "1437474789": 147,
+ "1437474790": 148,
+ "1437474791": 148,
+ "1437474792": 148,
+ "1437474793": 148,
+ "1437474794": 148,
+ "1437474795": 148,
+ "1437474796": 148,
+ "1437474797": 148,
+ "1437474798": 148,
+ "1437474799": 148,
+ "1437474800": 147,
+ "1437474801": 147,
+ "1437474802": 147,
+ "1437474803": 146,
+ "1437474804": 146,
+ "1437474805": 146,
+ "1437474806": 146,
+ "1437474808": 146,
+ "1437474809": 146,
+ "1437474810": 146,
+ "1437474811": 146,
+ "1437474812": 146,
+ "1437474813": 146,
+ "1437474814": 146,
+ "1437474815": 145,
+ "1437474816": 146,
+ "1437474817": 146,
+ "1437474818": 146,
+ "1437474819": 146,
+ "1437474820": 146,
+ "1437474821": 147,
+ "1437474822": 147,
+ "1437474823": 148,
+ "1437474824": 148,
+ "1437474825": 149,
+ "1437474827": 149,
+ "1437474828": 149,
+ "1437474829": 150,
+ "1437474830": 151,
+ "1437474831": 151,
+ "1437474832": 152,
+ "1437474833": 152,
+ "1437474834": 152,
+ "1437474835": 153,
+ "1437474836": 153,
+ "1437474837": 153,
+ "1437474838": 153,
+ "1437474839": 153,
+ "1437474840": 153,
+ "1437474841": 153,
+ "1437474842": 153,
+ "1437474843": 153,
+ "1437474844": 153,
+ "1437474845": 153,
+ "1437474846": 153,
+ "1437474847": 153,
+ "1437474848": 153,
+ "1437474849": 153,
+ "1437474850": 153,
+ "1437474851": 153,
+ "1437474852": 153,
+ "1437474853": 154,
+ "1437474854": 154,
+ "1437474855": 154,
+ "1437474856": 154,
+ "1437474857": 155,
+ "1437474859": 155,
+ "1437474860": 155,
+ "1437474861": 155,
+ "1437474862": 156,
+ "1437474863": 156,
+ "1437474864": 156,
+ "1437474865": 157,
+ "1437474866": 157,
+ "1437474867": 157,
+ "1437474868": 157,
+ "1437474869": 157,
+ "1437474870": 156,
+ "1437474871": 156,
+ "1437474872": 156,
+ "1437474873": 156,
+ "1437474874": 156,
+ "1437474875": 156,
+ "1437474876": 156,
+ "1437474877": 156,
+ "1437474878": 156,
+ "1437474879": 157,
+ "1437474880": 157,
+ "1437474881": 157,
+ "1437474882": 157,
+ "1437474883": 157,
+ "1437474884": 157,
+ "1437474885": 158,
+ "1437474886": 158,
+ "1437474887": 158,
+ "1437474888": 158,
+ "1437474890": 158,
+ "1437474891": 158,
+ "1437474892": 158,
+ "1437474893": 159,
+ "1437474894": 158,
+ "1437474895": 158,
+ "1437474896": 158,
+ "1437474897": 158,
+ "1437474898": 157,
+ "1437474899": 157,
+ "1437474900": 157,
+ "1437474901": 156,
+ "1437474902": 156,
+ "1437474903": 156,
+ "1437474904": 156,
+ "1437474905": 155,
+ "1437474906": 155,
+ "1437474907": 154,
+ "1437474908": 154,
+ "1437474909": 154,
+ "1437474910": 153,
+ "1437474911": 153,
+ "1437474912": 153,
+ "1437474913": 153,
+ "1437474914": 153,
+ "1437474915": 153,
+ "1437474916": 153,
+ "1437474917": 153,
+ "1437474918": 153,
+ "1437474919": 153,
+ "1437474920": 152,
+ "1437474921": 152,
+ "1437474923": 152,
+ "1437474924": 151,
+ "1437474925": 151,
+ "1437474926": 151,
+ "1437474927": 152,
+ "1437474928": 152,
+ "1437474929": 152,
+ "1437474930": 152,
+ "1437474931": 151,
+ "1437474932": 151,
+ "1437474933": 151,
+ "1437474934": 151,
+ "1437474935": 151,
+ "1437474936": 150,
+ "1437474937": 150,
+ "1437474938": 150,
+ "1437474939": 150,
+ "1437474940": 150,
+ "1437474941": 150,
+ "1437474942": 150,
+ "1437474943": 150,
+ "1437474944": 150,
+ "1437474945": 149,
+ "1437474946": 149,
+ "1437474947": 149,
+ "1437474948": 149,
+ "1437474949": 149,
+ "1437474950": 148,
+ "1437474951": 148,
+ "1437474952": 149,
+ "1437474953": 149,
+ "1437474954": 149,
+ "1437474955": 149,
+ "1437474956": 149,
+ "1437474957": 149,
+ "1437474958": 150,
+ "1437474959": 150,
+ "1437474960": 150,
+ "1437474962": 150,
+ "1437474963": 149,
+ "1437474964": 149,
+ "1437474965": 149,
+ "1437474966": 149,
+ "1437474967": 148,
+ "1437474968": 148,
+ "1437474969": 148,
+ "1437474970": 148,
+ "1437474971": 148,
+ "1437474972": 147,
+ "1437474973": 147,
+ "1437474974": 147,
+ "1437474975": 146,
+ "1437474976": 146,
+ "1437474977": 145,
+ "1437474978": 145,
+ "1437474979": 145,
+ "1437474980": 145,
+ "1437474981": 145,
+ "1437474982": 144,
+ "1437474983": 144,
+ "1437474984": 143,
+ "1437474985": 143,
+ "1437474986": 143,
+ "1437474987": 143,
+ "1437474988": 143,
+ "1437474989": 143,
+ "1437474990": 142,
+ "1437474992": 142,
+ "1437474993": 142,
+ "1437474994": 141,
+ "1437474995": 141,
+ "1437474996": 140,
+ "1437474997": 140,
+ "1437474998": 140,
+ "1437474999": 140,
+ "1437475000": 140,
+ "1437475001": 140,
+ "1437475002": 140,
+ "1437475003": 140,
+ "1437475004": 141,
+ "1437475005": 141,
+ "1437475006": 141,
+ "1437475007": 141,
+ "1437475008": 142,
+ "1437475009": 142,
+ "1437475010": 142,
+ "1437475012": 142,
+ "1437475013": 142,
+ "1437475014": 141,
+ "1437475015": 141,
+ "1437475016": 141,
+ "1437475017": 141,
+ "1437475018": 141,
+ "1437475019": 142,
+ "1437475020": 142,
+ "1437475021": 142,
+ "1437475022": 143,
+ "1437475023": 143,
+ "1437475024": 143,
+ "1437475025": 143,
+ "1437475026": 143,
+ "1437475027": 143,
+ "1437475029": 142,
+ "1437475030": 142,
+ "1437475031": 141,
+ "1437475032": 140,
+ "1437475033": 141,
+ "1437475034": 141,
+ "1437475035": 141,
+ "1437475036": 142,
+ "1437475037": 143,
+ "1437475038": 144,
+ "1437475039": 145,
+ "1437475040": 145,
+ "1437475041": 145,
+ "1437475042": 146,
+ "1437475043": 146,
+ "1437475044": 146,
+ "1437475045": 146,
+ "1437475046": 146,
+ "1437475047": 147,
+ "1437475048": 147,
+ "1437475049": 147,
+ "1437475050": 147,
+ "1437475051": 147,
+ "1437475052": 147,
+ "1437475054": 147,
+ "1437475055": 147,
+ "1437475056": 147,
+ "1437475057": 147,
+ "1437475058": 147,
+ "1437475059": 147,
+ "1437475060": 147,
+ "1437475061": 147,
+ "1437475062": 147,
+ "1437475063": 147,
+ "1437475064": 146,
+ "1437475065": 146,
+ "1437475066": 145,
+ "1437475067": 145,
+ "1437475068": 145,
+ "1437475069": 145,
+ "1437475070": 145,
+ "1437475071": 145,
+ "1437475072": 145,
+ "1437475073": 146,
+ "1437475074": 146,
+ "1437475075": 146,
+ "1437475076": 147,
+ "1437475077": 147,
+ "1437475078": 147,
+ "1437475079": 146,
+ "1437475080": 146,
+ "1437475081": 146,
+ "1437475083": 147,
+ "1437475084": 147,
+ "1437475085": 147,
+ "1437475086": 148,
+ "1437475087": 148,
+ "1437475088": 148,
+ "1437475089": 148,
+ "1437475090": 149,
+ "1437475091": 149,
+ "1437475092": 149,
+ "1437475093": 148,
+ "1437475094": 148,
+ "1437475095": 148,
+ "1437475096": 148,
+ "1437475097": 149,
+ "1437475098": 149,
+ "1437475099": 149,
+ "1437475100": 148,
+ "1437475101": 148,
+ "1437475102": 149,
+ "1437475103": 148,
+ "1437475104": 149,
+ "1437475105": 149,
+ "1437475106": 149,
+ "1437475107": 149,
+ "1437475108": 149,
+ "1437475109": 149,
+ "1437475110": 149,
+ "1437475112": 150,
+ "1437475113": 149,
+ "1437475114": 149,
+ "1437475115": 150,
+ "1437475116": 150,
+ "1437475117": 150,
+ "1437475118": 150,
+ "1437475119": 150,
+ "1437475120": 150,
+ "1437475121": 150,
+ "1437475122": 150,
+ "1437475123": 150,
+ "1437475124": 150,
+ "1437475125": 149,
+ "1437475126": 150,
+ "1437475127": 150,
+ "1437475128": 150,
+ "1437475129": 150,
+ "1437475130": 151,
+ "1437475131": 151,
+ "1437475132": 151,
+ "1437475133": 151,
+ "1437475134": 151,
+ "1437475135": 151,
+ "1437475136": 151,
+ "1437475137": 151,
+ "1437475138": 151,
+ "1437475139": 151,
+ "1437475140": 150,
+ "1437475141": 150,
+ "1437475142": 150,
+ "1437475143": 149,
+ "1437475145": 149,
+ "1437475146": 149,
+ "1437475147": 149,
+ "1437475148": 149,
+ "1437475149": 149,
+ "1437475150": 149,
+ "1437475151": 149,
+ "1437475152": 150,
+ "1437475153": 150,
+ "1437475154": 150,
+ "1437475155": 151,
+ "1437475156": 151,
+ "1437475157": 152,
+ "1437475158": 152,
+ "1437475159": 153,
+ "1437475160": 153,
+ "1437475161": 154,
+ "1437475162": 154,
+ "1437475163": 154,
+ "1437475164": 154,
+ "1437475165": 153,
+ "1437475166": 153,
+ "1437475167": 153,
+ "1437475168": 153,
+ "1437475169": 153,
+ "1437475170": 153,
+ "1437475171": 153,
+ "1437475173": 153,
+ "1437475174": 153,
+ "1437475175": 153,
+ "1437475176": 153,
+ "1437475177": 153,
+ "1437475178": 153,
+ "1437475179": 153,
+ "1437475180": 153,
+ "1437475181": 153,
+ "1437475182": 153,
+ "1437475183": 154,
+ "1437475184": 154,
+ "1437475185": 155,
+ "1437475186": 155,
+ "1437475187": 155,
+ "1437475188": 155,
+ "1437475189": 155,
+ "1437475190": 156,
+ "1437475191": 156,
+ "1437475192": 156,
+ "1437475193": 156,
+ "1437475194": 156,
+ "1437475195": 157,
+ "1437475196": 156,
+ "1437475197": 156,
+ "1437475198": 156,
+ "1437475200": 156,
+ "1437475201": 156,
+ "1437475202": 156,
+ "1437475203": 156,
+ "1437475204": 155,
+ "1437475205": 155,
+ "1437475206": 155,
+ "1437475207": 155,
+ "1437475208": 155,
+ "1437475209": 155,
+ "1437475210": 155,
+ "1437475211": 155,
+ "1437475212": 155,
+ "1437475213": 155,
+ "1437475214": 155,
+ "1437475215": 155,
+ "1437475216": 156,
+ "1437475217": 156,
+ "1437475218": 155,
+ "1437475219": 155,
+ "1437475220": 156,
+ "1437475221": 156,
+ "1437475222": 156,
+ "1437475223": 156,
+ "1437475224": 155,
+ "1437475225": 155,
+ "1437475226": 155,
+ "1437475227": 155,
+ "1437475228": 156,
+ "1437475230": 156,
+ "1437475231": 156,
+ "1437475232": 156,
+ "1437475233": 156,
+ "1437475234": 156,
+ "1437475235": 157,
+ "1437475236": 157,
+ "1437475237": 157,
+ "1437475238": 158,
+ "1437475239": 157,
+ "1437475240": 158,
+ "1437475241": 157,
+ "1437475242": 157,
+ "1437475243": 157,
+ "1437475244": 157,
+ "1437475245": 157,
+ "1437475246": 158,
+ "1437475247": 158,
+ "1437475248": 158,
+ "1437475249": 157,
+ "1437475250": 157,
+ "1437475251": 157,
+ "1437475252": 158,
+ "1437475253": 158,
+ "1437475254": 158,
+ "1437475255": 157,
+ "1437475256": 158,
+ "1437475257": 157,
+ "1437475258": 158,
+ "1437475259": 157,
+ "1437475260": 157,
+ "1437475261": 157,
+ "1437475262": 157,
+ "1437475263": 157,
+ "1437475264": 158,
+ "1437475265": 157,
+ "1437475266": 157,
+ "1437475267": 157,
+ "1437475269": 156,
+ "1437475270": 156,
+ "1437475271": 155,
+ "1437475272": 155,
+ "1437475273": 154,
+ "1437475274": 154,
+ "1437475275": 154,
+ "1437475276": 154,
+ "1437475277": 153,
+ "1437475278": 153,
+ "1437475279": 153,
+ "1437475280": 153,
+ "1437475281": 153,
+ "1437475282": 153,
+ "1437475283": 153,
+ "1437475284": 153,
+ "1437475285": 153,
+ "1437475286": 152,
+ "1437475287": 152,
+ "1437475288": 152,
+ "1437475289": 152,
+ "1437475290": 151,
+ "1437475291": 151,
+ "1437475292": 151,
+ "1437475293": 151,
+ "1437475294": 151,
+ "1437475295": 150,
+ "1437475296": 150,
+ "1437475297": 150,
+ "1437475298": 150,
+ "1437475299": 149,
+ "1437475300": 150,
+ "1437475301": 150,
+ "1437475302": 150,
+ "1437475303": 149,
+ "1437475304": 149,
+ "1437475305": 149,
+ "1437475306": 150,
+ "1437475308": 150,
+ "1437475309": 150,
+ "1437475310": 150,
+ "1437475311": 150,
+ "1437475312": 149,
+ "1437475313": 149,
+ "1437475314": 149,
+ "1437475315": 149,
+ "1437475316": 149,
+ "1437475317": 149,
+ "1437475318": 149,
+ "1437475319": 149,
+ "1437475320": 149,
+ "1437475321": 149,
+ "1437475322": 149,
+ "1437475323": 148,
+ "1437475324": 148,
+ "1437475325": 148,
+ "1437475326": 148,
+ "1437475327": 148,
+ "1437475328": 148,
+ "1437475329": 148,
+ "1437475330": 148,
+ "1437475331": 147,
+ "1437475332": 147,
+ "1437475333": 148,
+ "1437475334": 147,
+ "1437475335": 147,
+ "1437475336": 147,
+ "1437475337": 147,
+ "1437475338": 147,
+ "1437475339": 147,
+ "1437475340": 147,
+ "1437475342": 147,
+ "1437475343": 147,
+ "1437475344": 148,
+ "1437475345": 148,
+ "1437475346": 148,
+ "1437475347": 148,
+ "1437475348": 148,
+ "1437475349": 149,
+ "1437475350": 149,
+ "1437475351": 149,
+ "1437475352": 149,
+ "1437475353": 149,
+ "1437475354": 149,
+ "1437475355": 149,
+ "1437475356": 150,
+ "1437475357": 150,
+ "1437475358": 150,
+ "1437475359": 150,
+ "1437475360": 150,
+ "1437475361": 151,
+ "1437475362": 151,
+ "1437475363": 151,
+ "1437475364": 152,
+ "1437475365": 152,
+ "1437475366": 152,
+ "1437475367": 152,
+ "1437475368": 152,
+ "1437475369": 152,
+ "1437475371": 153,
+ "1437475372": 153,
+ "1437475373": 153,
+ "1437475374": 154,
+ "1437475375": 154,
+ "1437475376": 155,
+ "1437475377": 156,
+ "1437475378": 157,
+ "1437475379": 158,
+ "1437475380": 158,
+ "1437475381": 159,
+ "1437475382": 160,
+ "1437475383": 160,
+ "1437475384": 161,
+ "1437475385": 161,
+ "1437475386": 161,
+ "1437475387": 161,
+ "1437475388": 161,
+ "1437475389": 161,
+ "1437475390": 161,
+ "1437475391": 160,
+ "1437475392": 160,
+ "1437475393": 160,
+ "1437475394": 159,
+ "1437475395": 159,
+ "1437475396": 158,
+ "1437475397": 157,
+ "1437475398": 157,
+ "1437475400": 156,
+ "1437475401": 155,
+ "1437475402": 154,
+ "1437475403": 153,
+ "1437475404": 153,
+ "1437475405": 152,
+ "1437475406": 151,
+ "1437475407": 150,
+ "1437475408": 149,
+ "1437475409": 148,
+ "1437475410": 147,
+ "1437475411": 147,
+ "1437475412": 146,
+ "1437475413": 146,
+ "1437475414": 145,
+ "1437475415": 145,
+ "1437475416": 144,
+ "1437475417": 144,
+ "1437475418": 144,
+ "1437475419": 143,
+ "1437475420": 143,
+ "1437475421": 142,
+ "1437475422": 141,
+ "1437475423": 141,
+ "1437475424": 141,
+ "1437475425": 141,
+ "1437475426": 141,
+ "1437475427": 141,
+ "1437475428": 141,
+ "1437475429": 140,
+ "1437475430": 140,
+ "1437475431": 140,
+ "1437475433": 139,
+ "1437475434": 138,
+ "1437475435": 138,
+ "1437475436": 137,
+ "1437475437": 137,
+ "1437475438": 136,
+ "1437475439": 135,
+ "1437475440": 134,
+ "1437475441": 134,
+ "1437475442": 133,
+ "1437475443": 132,
+ "1437475444": 131,
+ "1437475445": 130,
+ "1437475446": 130,
+ "1437475447": 128,
+ "1437475448": 128,
+ "1437475449": 127,
+ "1437475450": 126,
+ "1437475451": 125,
+ "1437475452": 124,
+ "1437475453": 124,
+ "1437475454": 123,
+ "1437475455": 122,
+ "1437475456": 122,
+ "1437475457": 122,
+ "1437475458": 122,
+ "1437475459": 122,
+ "1437475460": 123,
+ "1437475461": 122,
+ "1437475462": 123,
+ "1437475463": 123,
+ "1437475464": 122,
+ "1437475466": 122,
+ "1437475467": 122,
+ "1437475468": 122,
+ "1437475469": 121,
+ "1437475470": 119,
+ "1437475471": 118,
+ "1437475472": 116,
+ "1437475473": 115,
+ "1437475474": 114,
+ "1437475475": 114,
+ "1437475476": 113,
+ "1437475477": 112,
+ "1437475478": 112,
+ "1437475479": 112,
+ "1437475480": 112,
+ "1437475481": 113,
+ "1437475482": 114,
+ "1437475483": 114,
+ "1437475484": 113,
+ "1437475485": 112,
+ "1437475486": 112,
+ "1437475487": 111,
+ "1437475488": 110,
+ "1437475489": 110,
+ "1437475490": 110,
+ "1437475491": 109,
+ "1437475492": 109,
+ "1437475493": 108,
+ "1437475494": 108,
+ "1437475495": 109,
+ "1437475496": 109,
+ "1437475497": 110,
+ "1437475498": 110,
+ "1437475499": 110,
+ "1437475500": 110,
+ "1437475501": 110,
+ "1437475502": 109,
+ "1437475503": 110,
+ "1437475504": 110,
+ "1437475505": 110,
+ "1437475506": 110,
+ "1437475507": 110,
+ "1437475508": 111,
+ "1437475510": 111,
+ "1437475511": 112,
+ "1437475512": 112,
+ "1437475513": 113,
+ "1437475514": 113,
+ "1437475515": 113,
+ "1437475516": 114,
+ "1437475517": 114,
+ "1437475518": 114,
+ "1437475519": 114,
+ "1437475520": 115,
+ "1437475521": 115,
+ "1437475522": 115,
+ "1437475523": 115,
+ "1437475524": 115,
+ "1437475525": 116,
+ "1437475526": 116,
+ "1437475527": 117,
+ "1437475528": 117,
+ "1437475529": 118,
+ "1437475530": 118,
+ "1437475531": 118,
+ "1437475532": 118,
+ "1437475533": 119,
+ "1437475534": 119,
+ "1437475535": 119,
+ "1437475536": 120,
+ "1437475537": 120,
+ "1437475538": 120,
+ "1437475539": 120,
+ "1437475540": 120,
+ "1437475541": 119,
+ "1437475542": 120,
+ "1437475543": 120,
+ "1437475544": 120,
+ "1437475545": 120,
+ "1437475546": 121,
+ "1437475547": 121,
+ "1437475548": 121,
+ "1437475549": 121,
+ "1437475551": 121,
+ "1437475552": 121,
+ "1437475553": 121,
+ "1437475554": 121,
+ "1437475555": 120,
+ "1437475556": 120,
+ "1437475557": 121,
+ "1437475558": 120,
+ "1437475559": 121,
+ "1437475560": 120,
+ "1437475561": 120,
+ "1437475562": 120,
+ "1437475563": 120,
+ "1437475564": 120,
+ "1437475565": 119,
+ "1437475566": 119,
+ "1437475567": 118,
+ "1437475568": 118,
+ "1437475569": 118,
+ "1437475570": 118,
+ "1437475571": 118,
+ "1437475572": 119,
+ "1437475573": 119,
+ "1437475574": 118,
+ "1437475575": 118,
+ "1437475576": 118,
+ "1437475577": 117,
+ "1437475578": 117,
+ "1437475580": 117,
+ "1437475581": 117,
+ "1437475582": 116,
+ "1437475583": 116,
+ "1437475584": 117,
+ "1437475585": 116,
+ "1437475586": 116,
+ "1437475587": 116,
+ "1437475588": 116,
+ "1437475589": 115,
+ "1437475590": 115,
+ "1437475591": 115,
+ "1437475592": 115,
+ "1437475593": 115,
+ "1437475594": 114,
+ "1437475595": 114,
+ "1437475596": 113,
+ "1437475597": 112,
+ "1437475598": 111,
+ "1437475599": 110,
+ "1437475600": 109,
+ "1437475601": 108,
+ "1437475602": 107,
+ "1437475603": 106,
+ "1437475604": 105,
+ "1437475605": 105,
+ "1437475606": 106,
+ "1437475607": 106,
+ "1437475608": 107,
+ "1437475610": 107,
+ "1437475611": 107,
+ "1437475612": 107,
+ "1437475613": 107,
+ "1437475614": 108,
+ "1437475615": 108,
+ "1437475616": 108,
+ "1437475617": 108,
+ "1437475618": 108,
+ "1437475619": 108,
+ "1437475620": 108,
+ "1437475621": 109,
+ "1437475622": 110,
+ "1437475623": 110,
+ "1437475624": 110,
+ "1437475625": 110,
+ "1437475626": 110,
+ "1437475627": 110,
+ "1437475628": 110,
+ "1437475629": 110,
+ "1437475630": 109,
+ "1437475631": 110,
+ "1437475632": 109,
+ "1437475633": 110,
+ "1437475634": 110,
+ "1437475636": 110,
+ "1437475637": 110,
+ "1437475638": 110,
+ "1437475639": 110,
+ "1437475640": 111,
+ "1437475641": 111,
+ "1437475642": 111,
+ "1437475643": 111,
+ "1437475644": 111,
+ "1437475645": 111,
+ "1437475646": 111,
+ "1437475647": 111,
+ "1437475648": 111,
+ "1437475649": 111,
+ "1437475650": 111,
+ "1437475651": 110,
+ "1437475652": 111,
+ "1437475653": 111,
+ "1437475654": 111,
+ "1437475655": 111,
+ "1437475656": 111,
+ "1437475657": 111,
+ "1437475658": 111,
+ "1437475659": 111,
+ "1437475660": 112,
+ "1437475662": 112,
+ "1437475663": 112,
+ "1437475664": 112,
+ "1437475665": 113,
+ "1437475666": 114,
+ "1437475667": 115,
+ "1437475668": 115,
+ "1437475669": 115,
+ "1437475670": 116,
+ "1437475671": 116,
+ "1437475672": 116,
+ "1437475673": 116,
+ "1437475674": 116,
+ "1437475675": 116,
+ "1437475676": 117,
+ "1437475677": 117,
+ "1437475678": 117,
+ "1437475679": 117,
+ "1437475680": 117,
+ "1437475681": 117,
+ "1437475682": 116,
+ "1437475683": 116,
+ "1437475684": 116,
+ "1437475685": 116,
+ "1437475686": 116,
+ "1437475687": 116,
+ "1437475688": 116,
+ "1437475689": 117,
+ "1437475690": 116,
+ "1437475691": 117,
+ "1437475693": 117,
+ "1437475694": 117,
+ "1437475695": 117,
+ "1437475696": 116,
+ "1437475697": 116,
+ "1437475698": 116,
+ "1437475699": 116,
+ "1437475700": 116,
+ "1437475701": 115,
+ "1437475702": 115,
+ "1437475703": 115,
+ "1437475704": 114,
+ "1437475705": 114,
+ "1437475706": 114,
+ "1437475707": 114,
+ "1437475708": 115,
+ "1437475709": 116,
+ "1437475710": 117,
+ "1437475711": 117,
+ "1437475712": 117,
+ "1437475713": 116,
+ "1437475714": 116,
+ "1437475715": 116,
+ "1437475716": 116,
+ "1437475717": 116,
+ "1437475718": 116,
+ "1437475719": 117,
+ "1437475720": 117,
+ "1437475721": 117,
+ "1437475722": 118,
+ "1437475724": 118,
+ "1437475725": 118,
+ "1437475726": 118,
+ "1437475727": 118,
+ "1437475728": 118,
+ "1437475729": 119,
+ "1437475730": 119,
+ "1437475731": 119,
+ "1437475732": 119,
+ "1437475733": 119,
+ "1437475734": 120,
+ "1437475735": 120,
+ "1437475736": 120,
+ "1437475737": 120,
+ "1437475738": 120,
+ "1437475739": 120,
+ "1437475740": 120,
+ "1437475741": 120,
+ "1437475742": 121,
+ "1437475743": 121,
+ "1437475744": 121,
+ "1437475745": 121,
+ "1437475746": 122,
+ "1437475747": 122,
+ "1437475748": 122,
+ "1437475749": 122,
+ "1437475750": 123,
+ "1437475751": 123,
+ "1437475752": 124,
+ "1437475753": 124,
+ "1437475754": 124,
+ "1437475755": 124,
+ "1437475756": 124,
+ "1437475758": 124,
+ "1437475759": 124,
+ "1437475760": 124,
+ "1437475761": 124,
+ "1437475762": 124,
+ "1437475763": 123,
+ "1437475764": 123,
+ "1437475765": 123,
+ "1437475766": 123,
+ "1437475767": 123,
+ "1437475768": 122,
+ "1437475769": 123,
+ "1437475770": 122,
+ "1437475771": 122,
+ "1437475772": 122,
+ "1437475773": 122,
+ "1437475774": 122,
+ "1437475775": 121,
+ "1437475776": 121,
+ "1437475777": 121,
+ "1437475778": 121,
+ "1437475779": 121,
+ "1437475780": 122,
+ "1437475781": 121,
+ "1437475782": 121,
+ "1437475783": 121,
+ "1437475784": 121,
+ "1437475785": 121,
+ "1437475786": 120,
+ "1437475787": 121,
+ "1437475788": 121,
+ "1437475789": 121,
+ "1437475791": 121,
+ "1437475792": 121,
+ "1437475793": 121,
+ "1437475794": 121,
+ "1437475795": 120,
+ "1437475796": 120,
+ "1437475797": 120,
+ "1437475798": 121,
+ "1437475799": 121,
+ "1437475800": 121,
+ "1437475801": 121,
+ "1437475802": 122,
+ "1437475803": 122,
+ "1437475804": 122,
+ "1437475805": 122,
+ "1437475806": 122,
+ "1437475807": 122,
+ "1437475808": 122,
+ "1437475809": 122,
+ "1437475810": 122,
+ "1437475811": 121,
+ "1437475812": 121,
+ "1437475813": 122,
+ "1437475814": 122,
+ "1437475815": 122,
+ "1437475816": 122,
+ "1437475817": 122,
+ "1437475818": 122,
+ "1437475819": 122,
+ "1437475821": 122,
+ "1437475822": 122,
+ "1437475823": 122,
+ "1437475824": 122,
+ "1437475825": 122,
+ "1437475826": 122,
+ "1437475827": 122,
+ "1437475828": 122,
+ "1437475829": 122,
+ "1437475830": 121,
+ "1437475831": 121,
+ "1437475832": 121,
+ "1437475833": 121,
+ "1437475834": 121,
+ "1437475835": 121,
+ "1437475836": 120,
+ "1437475837": 121,
+ "1437475838": 120,
+ "1437475839": 120,
+ "1437475840": 120,
+ "1437475841": 121,
+ "1437475842": 121,
+ "1437475843": 121,
+ "1437475844": 121,
+ "1437475845": 121,
+ "1437475846": 121,
+ "1437475847": 121,
+ "1437475848": 121,
+ "1437475849": 122,
+ "1437475850": 122,
+ "1437475852": 121,
+ "1437475853": 121,
+ "1437475854": 121,
+ "1437475855": 121,
+ "1437475856": 121,
+ "1437475857": 120,
+ "1437475858": 120,
+ "1437475859": 120,
+ "1437475860": 120,
+ "1437475861": 119,
+ "1437475862": 119,
+ "1437475863": 119,
+ "1437475864": 119,
+ "1437475865": 119,
+ "1437475866": 118,
+ "1437475867": 118,
+ "1437475868": 118,
+ "1437475869": 118,
+ "1437475870": 118,
+ "1437475871": 118,
+ "1437475872": 117,
+ "1437475873": 117,
+ "1437475874": 117,
+ "1437475875": 117,
+ "1437475876": 116,
+ "1437475878": 116,
+ "1437475879": 117,
+ "1437475880": 117,
+ "1437475881": 117,
+ "1437475882": 117,
+ "1437475883": 117,
+ "1437475884": 118,
+ "1437475885": 118,
+ "1437475886": 118,
+ "1437475887": 118,
+ "1437475888": 118,
+ "1437475889": 118,
+ "1437475890": 118,
+ "1437475891": 118,
+ "1437475892": 118,
+ "1437475893": 118,
+ "1437475894": 118,
+ "1437475895": 119,
+ "1437475896": 119,
+ "1437475897": 119,
+ "1437475898": 119,
+ "1437475899": 120,
+ "1437475900": 120,
+ "1437475901": 120,
+ "1437475902": 120,
+ "1437475903": 120,
+ "1437475905": 120,
+ "1437475906": 121,
+ "1437475907": 121,
+ "1437475908": 121,
+ "1437475909": 122,
+ "1437475910": 122,
+ "1437475911": 122,
+ "1437475912": 122,
+ "1437475913": 122,
+ "1437475914": 122,
+ "1437475915": 121,
+ "1437475916": 121,
+ "1437475917": 122,
+ "1437475918": 122,
+ "1437475919": 122,
+ "1437475920": 122,
+ "1437475921": 122,
+ "1437475922": 122,
+ "1437475923": 122,
+ "1437475924": 122,
+ "1437475925": 121,
+ "1437475926": 121,
+ "1437475927": 121,
+ "1437475928": 121,
+ "1437475929": 122,
+ "1437475930": 122,
+ "1437475931": 123,
+ "1437475932": 124,
+ "1437475933": 124,
+ "1437475934": 125,
+ "1437475935": 125,
+ "1437475936": 125,
+ "1437475938": 125,
+ "1437475939": 126,
+ "1437475940": 126,
+ "1437475941": 126,
+ "1437475942": 126,
+ "1437475943": 127,
+ "1437475944": 127,
+ "1437475945": 127,
+ "1437475946": 127,
+ "1437475947": 128,
+ "1437475948": 128,
+ "1437475949": 129,
+ "1437475950": 128,
+ "1437475951": 128,
+ "1437475952": 128,
+ "1437475953": 127,
+ "1437475954": 126,
+ "1437475955": 126,
+ "1437475956": 125,
+ "1437475957": 124,
+ "1437475958": 123,
+ "1437475959": 123,
+ "1437475960": 122,
+ "1437475961": 122,
+ "1437475962": 122,
+ "1437475963": 122,
+ "1437475964": 123,
+ "1437475965": 122,
+ "1437475967": 122,
+ "1437475968": 121,
+ "1437475969": 120,
+ "1437475970": 119,
+ "1437475971": 118,
+ "1437475972": 117,
+ "1437475973": 117,
+ "1437475974": 117,
+ "1437475975": 118,
+ "1437475976": 118,
+ "1437475977": 118,
+ "1437475978": 118,
+ "1437475979": 117,
+ "1437475980": 117,
+ "1437475981": 117,
+ "1437475982": 117,
+ "1437475983": 117,
+ "1437475984": 116,
+ "1437475985": 116,
+ "1437475986": 116,
+ "1437475987": 117,
+ "1437475988": 117,
+ "1437475989": 117,
+ "1437475990": 117,
+ "1437475991": 117,
+ "1437475992": 117,
+ "1437475993": 117,
+ "1437475994": 117,
+ "1437475995": 117,
+ "1437475997": 117,
+ "1437475998": 118,
+ "1437475999": 118,
+ "1437476000": 118,
+ "1437476001": 117,
+ "1437476002": 117,
+ "1437476003": 117,
+ "1437476004": 117,
+ "1437476005": 117,
+ "1437476006": 117,
+ "1437476007": 117,
+ "1437476008": 117,
+ "1437476009": 117,
+ "1437476010": 117,
+ "1437476011": 117,
+ "1437476012": 116,
+ "1437476013": 116,
+ "1437476014": 117,
+ "1437476015": 117,
+ "1437476016": 117,
+ "1437476017": 117,
+ "1437476019": 116,
+ "1437476020": 116,
+ "1437476021": 116,
+ "1437476022": 116,
+ "1437476023": 116,
+ "1437476024": 116,
+ "1437476025": 116,
+ "1437476026": 116,
+ "1437476027": 115,
+ "1437476028": 116,
+ "1437476029": 115,
+ "1437476030": 116,
+ "1437476031": 115,
+ "1437476032": 116,
+ "1437476033": 116,
+ "1437476034": 116,
+ "1437476035": 116,
+ "1437476036": 116,
+ "1437476037": 116,
+ "1437476038": 116,
+ "1437476039": 115,
+ "1437476040": 116,
+ "1437476041": 115,
+ "1437476042": 115,
+ "1437476043": 116,
+ "1437476044": 116,
+ "1437476045": 116,
+ "1437476047": 116,
+ "1437476048": 116,
+ "1437476049": 116,
+ "1437476050": 116,
+ "1437476051": 116,
+ "1437476052": 117,
+ "1437476053": 118,
+ "1437476054": 118,
+ "1437476055": 118,
+ "1437476056": 119,
+ "1437476057": 119,
+ "1437476058": 119,
+ "1437476059": 119,
+ "1437476060": 118,
+ "1437476061": 118,
+ "1437476062": 118,
+ "1437476063": 118,
+ "1437476064": 118,
+ "1437476065": 118,
+ "1437476066": 118,
+ "1437476067": 117,
+ "1437476068": 117,
+ "1437476069": 117,
+ "1437476070": 117,
+ "1437476071": 116,
+ "1437476072": 116,
+ "1437476073": 116,
+ "1437476074": 116,
+ "1437476075": 115,
+ "1437476076": 115,
+ "1437476077": 115,
+ "1437476079": 115,
+ "1437476080": 115,
+ "1437476081": 115,
+ "1437476082": 115,
+ "1437476083": 115,
+ "1437476084": 115,
+ "1437476085": 115,
+ "1437476086": 116,
+ "1437476087": 116,
+ "1437476088": 115,
+ "1437476089": 115,
+ "1437476090": 115,
+ "1437476091": 115,
+ "1437476092": 116,
+ "1437476093": 116,
+ "1437476094": 116,
+ "1437476095": 116,
+ "1437476096": 116,
+ "1437476097": 116,
+ "1437476098": 116,
+ "1437476099": 116,
+ "1437476100": 116,
+ "1437476101": 115,
+ "1437476102": 115,
+ "1437476103": 114,
+ "1437476104": 114,
+ "1437476105": 114,
+ "1437476106": 114,
+ "1437476107": 114,
+ "1437476108": 114,
+ "1437476109": 114,
+ "1437476110": 114,
+ "1437476112": 114,
+ "1437476113": 114,
+ "1437476114": 114,
+ "1437476115": 114,
+ "1437476116": 115,
+ "1437476117": 116,
+ "1437476118": 116,
+ "1437476119": 116,
+ "1437476120": 117,
+ "1437476121": 117,
+ "1437476122": 117,
+ "1437476123": 117,
+ "1437476124": 118,
+ "1437476125": 118,
+ "1437476126": 118,
+ "1437476127": 118,
+ "1437476128": 117,
+ "1437476129": 117,
+ "1437476130": 117,
+ "1437476131": 116,
+ "1437476132": 116,
+ "1437476133": 116,
+ "1437476134": 116,
+ "1437476135": 115,
+ "1437476136": 115,
+ "1437476137": 115,
+ "1437476138": 115,
+ "1437476139": 115,
+ "1437476140": 115,
+ "1437476141": 115,
+ "1437476142": 115,
+ "1437476143": 115,
+ "1437476144": 115,
+ "1437476146": 114,
+ "1437476147": 113,
+ "1437476148": 113,
+ "1437476149": 113,
+ "1437476150": 113,
+ "1437476151": 112,
+ "1437476152": 112,
+ "1437476153": 111,
+ "1437476154": 111,
+ "1437476155": 111,
+ "1437476156": 111,
+ "1437476157": 111,
+ "1437476158": 111,
+ "1437476159": 111,
+ "1437476160": 112,
+ "1437476161": 112,
+ "1437476162": 112,
+ "1437476163": 112,
+ "1437476164": 113,
+ "1437476165": 113,
+ "1437476166": 113,
+ "1437476167": 113,
+ "1437476168": 113,
+ "1437476169": 113,
+ "1437476170": 113,
+ "1437476171": 113,
+ "1437476172": 113,
+ "1437476173": 114,
+ "1437476174": 114,
+ "1437476175": 114,
+ "1437476176": 115,
+ "1437476177": 114,
+ "1437476179": 114,
+ "1437476180": 114,
+ "1437476181": 113,
+ "1437476182": 114,
+ "1437476183": 113,
+ "1437476184": 113,
+ "1437476185": 113,
+ "1437476186": 113,
+ "1437476187": 112,
+ "1437476188": 112,
+ "1437476189": 112,
+ "1437476190": 113,
+ "1437476191": 112,
+ "1437476192": 112,
+ "1437476193": 112,
+ "1437476194": 112,
+ "1437476195": 112,
+ "1437476196": 112,
+ "1437476197": 112,
+ "1437476198": 112,
+ "1437476199": 112,
+ "1437476200": 112,
+ "1437476201": 112,
+ "1437476202": 112,
+ "1437476203": 112,
+ "1437476204": 112,
+ "1437476205": 112,
+ "1437476206": 113,
+ "1437476207": 113,
+ "1437476208": 113,
+ "1437476209": 114,
+ "1437476211": 114,
+ "1437476212": 114,
+ "1437476213": 114,
+ "1437476214": 114,
+ "1437476215": 114,
+ "1437476216": 114,
+ "1437476217": 114,
+ "1437476218": 114,
+ "1437476219": 114,
+ "1437476220": 114,
+ "1437476221": 114,
+ "1437476222": 114,
+ "1437476223": 114,
+ "1437476224": 114,
+ "1437476225": 113,
+ "1437476226": 114,
+ "1437476227": 114,
+ "1437476228": 113,
+ "1437476229": 114,
+ "1437476230": 114,
+ "1437476231": 114,
+ "1437476232": 115,
+ "1437476233": 115,
+ "1437476234": 115,
+ "1437476235": 115,
+ "1437476236": 116,
+ "1437476237": 116,
+ "1437476238": 116,
+ "1437476239": 116,
+ "1437476240": 116,
+ "1437476241": 116,
+ "1437476242": 116,
+ "1437476243": 116,
+ "1437476244": 116,
+ "1437476245": 115,
+ "1437476246": 115,
+ "1437476248": 115,
+ "1437476249": 115,
+ "1437476250": 114,
+ "1437476251": 114,
+ "1437476252": 114,
+ "1437476253": 113,
+ "1437476254": 113,
+ "1437476255": 112,
+ "1437476256": 112,
+ "1437476257": 111,
+ "1437476258": 111,
+ "1437476259": 110,
+ "1437476260": 110,
+ "1437476261": 110,
+ "1437476262": 110,
+ "1437476263": 111,
+ "1437476264": 111,
+ "1437476265": 111,
+ "1437476266": 111,
+ "1437476267": 111,
+ "1437476268": 111,
+ "1437476269": 110,
+ "1437476270": 111,
+ "1437476271": 110,
+ "1437476272": 111,
+ "1437476274": 111,
+ "1437476275": 111,
+ "1437476276": 111,
+ "1437476277": 110,
+ "1437476278": 109,
+ "1437476279": 108,
+ "1437476280": 107,
+ "1437476281": 107,
+ "1437476282": 106,
+ "1437476283": 106,
+ "1437476284": 105,
+ "1437476285": 105,
+ "1437476286": 105,
+ "1437476287": 104,
+ "1437476288": 103,
+ "1437476289": 103,
+ "1437476290": 103,
+ "1437476291": 103,
+ "1437476292": 102,
+ "1437476293": 103,
+ "1437476295": 103,
+ "1437476296": 103,
+ "1437476297": 102,
+ "1437476298": 102,
+ "1437476299": 101,
+ "1437476300": 101,
+ "1437476301": 100,
+ "1437476302": 100,
+ "1437476303": 100,
+ "1437476304": 100,
+ "1437476305": 101,
+ "1437476306": 101,
+ "1437476307": 100,
+ "1437476308": 100,
+ "1437476309": 99,
+ "1437476310": 98,
+ "1437476311": 97,
+ "1437476312": 96,
+ "1437476313": 97,
+ "1437476314": 96,
+ "1437476315": 97,
+ "1437476316": 96,
+ "1437476317": 96,
+ "1437476318": 96,
+ "1437476319": 96,
+ "1437476320": 96,
+ "1437476321": 96,
+ "1437476323": 96,
+ "1437476324": 97,
+ "1437476325": 97,
+ "1437476326": 97,
+ "1437476327": 97,
+ "1437476328": 97,
+ "1437476329": 97,
+ "1437476330": 98,
+ "1437476331": 98,
+ "1437476332": 98,
+ "1437476333": 98,
+ "1437476334": 98,
+ "1437476335": 98,
+ "1437476338": 97,
+ "1437476339": 97,
+ "1437476340": 97,
+ "1437476341": 96,
+ "1437476342": 97,
+ "1437476343": 97,
+ "1437476344": 98,
+ "1437476345": 98,
+ "1437476346": 98,
+ "1437476347": 97,
+ "1437476348": 98,
+ "1437476349": 97,
+ "1437476350": 97,
+ "1437476351": 97,
+ "1437476352": 97,
+ "1437476353": 98,
+ "1437476354": 98,
+ "1437476355": 98,
+ "1437476356": 99,
+ "1437476357": 99,
+ "1437476358": 100,
+ "1437476360": 100,
+ "1437476361": 101,
+ "1437476362": 101,
+ "1437476363": 102,
+ "1437476364": 102,
+ "1437476365": 102,
+ "1437476366": 101,
+ "1437476367": 101,
+ "1437476368": 101,
+ "1437476369": 100,
+ "1437476370": 100,
+ "1437476371": 99,
+ "1437476372": 99,
+ "1437476373": 99,
+ "1437476374": 99,
+ "1437476375": 98,
+ "1437476376": 98,
+ "1437476377": 98,
+ "1437476378": 98,
+ "1437476379": 97,
+ "1437476380": 98,
+ "1437476381": 98,
+ "1437476382": 99,
+ "1437476383": 99,
+ "1437476384": 99,
+ "1437476385": 99,
+ "1437476386": 98,
+ "1437476387": 97,
+ "1437476389": 97,
+ "1437476390": 97,
+ "1437476391": 97,
+ "1437476392": 97,
+ "1437476393": 98,
+ "1437476394": 98,
+ "1437476395": 99,
+ "1437476396": 99,
+ "1437476397": 99,
+ "1437476398": 99,
+ "1437476399": 99,
+ "1437476400": 100,
+ "1437476401": 100,
+ "1437476402": 100,
+ "1437476403": 100,
+ "1437476404": 101,
+ "1437476405": 101,
+ "1437476406": 101,
+ "1437476407": 101,
+ "1437476408": 101,
+ "1437476410": 102,
+ "1437476411": 101,
+ "1437476412": 102,
+ "1437476413": 102,
+ "1437476414": 102,
+ "1437476415": 102,
+ "1437476416": 103,
+ "1437476417": 104,
+ "1437476418": 104,
+ "1437476419": 105,
+ "1437476420": 106,
+ "1437476421": 106,
+ "1437476422": 105,
+ "1437476423": 105,
+ "1437476424": 105,
+ "1437476425": 104,
+ "1437476426": 104,
+ "1437476427": 104,
+ "1437476428": 104,
+ "1437476429": 104,
+ "1437476430": 104,
+ "1437476431": 104,
+ "1437476432": 103,
+ "1437476433": 103,
+ "1437476434": 102,
+ "1437476435": 102,
+ "1437476436": 102,
+ "1437476437": 102,
+ "1437476438": 102,
+ "1437476439": 103,
+ "1437476441": 102,
+ "1437476442": 102,
+ "1437476443": 102,
+ "1437476444": 102,
+ "1437476445": 102,
+ "1437476446": 104,
+ "1437476447": 105,
+ "1437476448": 107,
+ "1437476449": 109,
+ "1437476450": 111,
+ "1437476451": 113,
+ "1437476452": 115,
+ "1437476453": 118,
+ "1437476454": 119,
+ "1437476455": 120,
+ "1437476456": 121,
+ "1437476457": 121,
+ "1437476458": 121,
+ "1437476459": 121,
+ "1437476460": 121,
+ "1437476461": 122,
+ "1437476462": 122,
+ "1437476463": 122,
+ "1437476464": 122,
+ "1437476465": 123,
+ "1437476467": 124,
+ "1437476468": 125,
+ "1437476469": 125,
+ "1437476470": 126,
+ "1437476471": 128,
+ "1437476472": 129,
+ "1437476473": 130,
+ "1437476474": 131,
+ "1437476475": 132,
+ "1437476476": 133,
+ "1437476477": 134,
+ "1437476478": 135,
+ "1437476479": 135,
+ "1437476480": 137,
+ "1437476481": 137,
+ "1437476482": 138,
+ "1437476483": 138,
+ "1437476484": 139,
+ "1437476485": 139,
+ "1437476486": 139,
+ "1437476487": 139,
+ "1437476488": 140,
+ "1437476490": 140,
+ "1437476491": 141,
+ "1437476492": 142,
+ "1437476493": 143,
+ "1437476494": 144,
+ "1437476495": 145,
+ "1437476496": 146,
+ "1437476497": 147,
+ "1437476498": 148,
+ "1437476499": 148,
+ "1437476500": 149,
+ "1437476501": 150,
+ "1437476502": 150,
+ "1437476503": 152,
+ "1437476504": 152,
+ "1437476505": 153,
+ "1437476506": 153,
+ "1437476507": 154,
+ "1437476508": 155,
+ "1437476509": 155,
+ "1437476510": 156,
+ "1437476511": 156,
+ "1437476512": 156,
+ "1437476513": 157,
+ "1437476514": 157,
+ "1437476515": 157,
+ "1437476516": 157,
+ "1437476517": 157,
+ "1437476518": 157,
+ "1437476519": 157,
+ "1437476521": 158,
+ "1437476522": 158,
+ "1437476523": 159,
+ "1437476524": 159,
+ "1437476525": 160,
+ "1437476526": 160,
+ "1437476527": 161,
+ "1437476528": 162,
+ "1437476529": 163,
+ "1437476530": 164,
+ "1437476531": 164,
+ "1437476532": 165,
+ "1437476533": 166,
+ "1437476534": 167,
+ "1437476535": 167,
+ "1437476536": 168,
+ "1437476537": 169,
+ "1437476538": 169,
+ "1437476539": 170,
+ "1437476540": 171,
+ "1437476541": 172,
+ "1437476542": 172,
+ "1437476543": 173,
+ "1437476544": 173,
+ "1437476545": 174,
+ "1437476547": 174,
+ "1437476548": 174,
+ "1437476549": 173,
+ "1437476550": 173,
+ "1437476551": 173,
+ "1437476552": 172,
+ "1437476553": 171,
+ "1437476554": 170,
+ "1437476555": 169,
+ "1437476556": 169,
+ "1437476557": 169,
+ "1437476558": 168,
+ "1437476559": 168,
+ "1437476560": 167,
+ "1437476561": 167,
+ "1437476562": 167,
+ "1437476563": 167,
+ "1437476564": 166,
+ "1437476565": 166,
+ "1437476566": 166,
+ "1437476567": 166,
+ "1437476568": 166,
+ "1437476569": 165,
+ "1437476570": 165,
+ "1437476571": 165,
+ "1437476572": 164,
+ "1437476573": 164,
+ "1437476574": 164,
+ "1437476576": 164,
+ "1437476577": 164,
+ "1437476578": 163,
+ "1437476579": 163,
+ "1437476580": 163,
+ "1437476581": 163,
+ "1437476582": 163,
+ "1437476583": 162,
+ "1437476584": 161,
+ "1437476585": 161,
+ "1437476586": 160,
+ "1437476587": 160,
+ "1437476588": 160,
+ "1437476589": 159,
+ "1437476590": 159,
+ "1437476591": 158,
+ "1437476592": 158,
+ "1437476593": 158,
+ "1437476594": 158,
+ "1437476595": 157,
+ "1437476596": 157,
+ "1437476597": 157,
+ "1437476598": 156,
+ "1437476599": 156,
+ "1437476601": 156,
+ "1437476602": 156,
+ "1437476603": 156,
+ "1437476604": 156,
+ "1437476605": 156,
+ "1437476606": 156,
+ "1437476607": 156,
+ "1437476608": 156,
+ "1437476609": 156,
+ "1437476610": 156,
+ "1437476611": 157,
+ "1437476612": 157,
+ "1437476613": 157,
+ "1437476614": 156,
+ "1437476615": 157,
+ "1437476616": 157,
+ "1437476617": 157,
+ "1437476618": 157,
+ "1437476619": 157,
+ "1437476620": 158,
+ "1437476621": 158,
+ "1437476622": 157,
+ "1437476623": 157,
+ "1437476624": 157,
+ "1437476625": 157,
+ "1437476627": 157,
+ "1437476628": 157,
+ "1437476629": 158,
+ "1437476630": 158,
+ "1437476631": 158,
+ "1437476632": 158,
+ "1437476633": 158,
+ "1437476634": 158,
+ "1437476635": 158,
+ "1437476636": 158,
+ "1437476637": 158,
+ "1437476638": 159,
+ "1437476639": 159,
+ "1437476640": 159,
+ "1437476641": 159,
+ "1437476642": 159,
+ "1437476643": 160,
+ "1437476644": 160,
+ "1437476645": 160,
+ "1437476646": 160,
+ "1437476647": 160,
+ "1437476648": 160,
+ "1437476649": 160,
+ "1437476650": 160,
+ "1437476651": 161,
+ "1437476652": 160,
+ "1437476653": 161,
+ "1437476654": 161,
+ "1437476655": 161,
+ "1437476656": 161,
+ "1437476658": 162,
+ "1437476659": 162,
+ "1437476660": 162,
+ "1437476661": 162,
+ "1437476662": 162,
+ "1437476663": 162,
+ "1437476664": 163,
+ "1437476665": 163,
+ "1437476666": 164,
+ "1437476667": 164,
+ "1437476668": 165,
+ "1437476669": 165,
+ "1437476670": 165,
+ "1437476671": 166,
+ "1437476672": 166,
+ "1437476673": 167,
+ "1437476674": 167,
+ "1437476675": 168,
+ "1437476676": 168,
+ "1437476677": 169,
+ "1437476678": 169,
+ "1437476679": 170,
+ "1437476680": 170,
+ "1437476681": 170,
+ "1437476682": 171,
+ "1437476683": 171,
+ "1437476684": 172,
+ "1437476685": 172,
+ "1437476686": 172,
+ "1437476687": 173,
+ "1437476688": 173,
+ "1437476689": 173,
+ "1437476690": 173,
+ "1437476691": 173,
+ "1437476692": 173,
+ "1437476694": 173,
+ "1437476695": 173,
+ "1437476696": 174,
+ "1437476697": 174,
+ "1437476698": 174,
+ "1437476699": 174,
+ "1437476700": 174,
+ "1437476701": 174,
+ "1437476702": 174,
+ "1437476703": 174,
+ "1437476704": 174,
+ "1437476705": 174,
+ "1437476706": 173,
+ "1437476707": 173,
+ "1437476708": 173,
+ "1437476709": 172,
+ "1437476710": 172,
+ "1437476711": 172,
+ "1437476712": 172,
+ "1437476713": 172,
+ "1437476714": 172,
+ "1437476715": 172,
+ "1437476716": 172,
+ "1437476717": 172,
+ "1437476718": 171,
+ "1437476719": 171,
+ "1437476720": 172,
+ "1437476721": 172,
+ "1437476723": 171,
+ "1437476724": 172,
+ "1437476725": 172,
+ "1437476726": 172,
+ "1437476727": 172,
+ "1437476728": 173,
+ "1437476729": 173,
+ "1437476730": 173,
+ "1437476731": 174,
+ "1437476732": 174,
+ "1437476733": 174,
+ "1437476734": 174,
+ "1437476735": 175,
+ "1437476736": 175,
+ "1437476737": 175,
+ "1437476738": 175,
+ "1437476739": 175,
+ "1437476740": 176,
+ "1437476741": 175,
+ "1437476742": 175,
+ "1437476743": 175,
+ "1437476744": 175,
+ "1437476745": 175,
+ "1437476746": 175,
+ "1437476747": 175,
+ "1437476748": 175,
+ "1437476749": 175,
+ "1437476750": 175,
+ "1437476751": 175,
+ "1437476752": 174,
+ "1437476753": 174,
+ "1437476755": 174,
+ "1437476756": 174,
+ "1437476757": 173,
+ "1437476758": 173,
+ "1437476759": 172,
+ "1437476760": 172,
+ "1437476761": 171,
+ "1437476762": 171,
+ "1437476763": 171,
+ "1437476764": 170,
+ "1437476765": 170,
+ "1437476766": 170,
+ "1437476767": 169,
+ "1437476768": 169,
+ "1437476769": 169,
+ "1437476770": 169,
+ "1437476771": 168,
+ "1437476772": 168,
+ "1437476773": 167,
+ "1437476774": 167,
+ "1437476775": 167,
+ "1437476776": 167,
+ "1437476777": 167,
+ "1437476778": 167,
+ "1437476779": 166,
+ "1437476780": 166,
+ "1437476781": 166,
+ "1437476782": 166,
+ "1437476783": 166,
+ "1437476784": 166,
+ "1437476785": 166,
+ "1437476786": 165,
+ "1437476787": 166,
+ "1437476788": 166,
+ "1437476789": 166,
+ "1437476791": 166,
+ "1437476792": 167,
+ "1437476793": 167,
+ "1437476794": 168,
+ "1437476795": 168,
+ "1437476796": 168,
+ "1437476797": 168,
+ "1437476798": 169,
+ "1437476799": 169,
+ "1437476800": 168,
+ "1437476801": 168,
+ "1437476802": 168,
+ "1437476803": 168,
+ "1437476804": 168,
+ "1437476805": 168,
+ "1437476806": 167,
+ "1437476807": 167,
+ "1437476808": 167,
+ "1437476809": 167,
+ "1437476810": 166,
+ "1437476811": 166,
+ "1437476812": 165,
+ "1437476813": 165,
+ "1437476814": 164,
+ "1437476815": 164,
+ "1437476816": 163,
+ "1437476817": 164,
+ "1437476818": 163,
+ "1437476819": 163,
+ "1437476820": 163,
+ "1437476821": 163,
+ "1437476822": 163,
+ "1437476824": 163,
+ "1437476825": 163,
+ "1437476826": 163,
+ "1437476827": 162,
+ "1437476828": 162,
+ "1437476829": 161,
+ "1437476830": 161,
+ "1437476831": 160,
+ "1437476832": 159,
+ "1437476833": 159,
+ "1437476834": 158,
+ "1437476835": 158,
+ "1437476836": 157,
+ "1437476837": 157,
+ "1437476838": 157,
+ "1437476839": 156,
+ "1437476840": 156,
+ "1437476841": 156,
+ "1437476842": 157,
+ "1437476843": 157,
+ "1437476844": 157,
+ "1437476845": 157,
+ "1437476846": 157,
+ "1437476847": 157,
+ "1437476848": 157,
+ "1437476849": 157,
+ "1437476850": 157,
+ "1437476851": 158,
+ "1437476852": 158,
+ "1437476854": 158,
+ "1437476855": 158,
+ "1437476856": 158,
+ "1437476857": 159,
+ "1437476858": 159,
+ "1437476859": 159,
+ "1437476860": 159,
+ "1437476861": 159,
+ "1437476862": 160,
+ "1437476863": 160,
+ "1437476864": 160,
+ "1437476865": 160,
+ "1437476866": 160,
+ "1437476867": 160,
+ "1437476868": 160,
+ "1437476869": 160,
+ "1437476870": 160,
+ "1437476871": 160,
+ "1437476872": 160,
+ "1437476873": 160,
+ "1437476874": 160,
+ "1437476875": 160,
+ "1437476876": 160,
+ "1437476877": 160,
+ "1437476878": 160,
+ "1437476879": 160,
+ "1437476880": 160,
+ "1437476881": 160,
+ "1437476882": 160,
+ "1437476883": 161,
+ "1437476884": 160,
+ "1437476886": 161,
+ "1437476887": 161,
+ "1437476888": 160,
+ "1437476889": 161,
+ "1437476890": 160,
+ "1437476891": 160,
+ "1437476892": 161,
+ "1437476893": 160,
+ "1437476894": 160,
+ "1437476895": 160,
+ "1437476896": 160,
+ "1437476897": 160,
+ "1437476898": 160,
+ "1437476899": 160,
+ "1437476900": 159,
+ "1437476901": 159,
+ "1437476902": 159,
+ "1437476903": 159,
+ "1437476904": 158,
+ "1437476905": 158,
+ "1437476906": 159,
+ "1437476907": 158,
+ "1437476908": 159,
+ "1437476910": 158,
+ "1437476911": 159,
+ "1437476912": 159,
+ "1437476913": 159,
+ "1437476914": 159,
+ "1437476915": 158,
+ "1437476916": 158,
+ "1437476917": 158,
+ "1437476918": 158,
+ "1437476919": 158,
+ "1437476920": 158,
+ "1437476921": 157,
+ "1437476922": 157,
+ "1437476923": 157,
+ "1437476924": 156,
+ "1437476925": 156,
+ "1437476926": 156,
+ "1437476927": 156,
+ "1437476928": 156,
+ "1437476929": 156,
+ "1437476930": 156,
+ "1437476931": 156,
+ "1437476932": 157,
+ "1437476933": 157,
+ "1437476934": 157,
+ "1437476935": 157,
+ "1437476936": 157,
+ "1437476938": 157,
+ "1437476939": 157,
+ "1437476940": 157,
+ "1437476941": 156,
+ "1437476942": 156,
+ "1437476943": 156,
+ "1437476944": 155,
+ "1437476945": 155,
+ "1437476946": 154,
+ "1437476947": 154,
+ "1437476948": 154,
+ "1437476949": 154,
+ "1437476950": 153,
+ "1437476951": 153,
+ "1437476952": 153,
+ "1437476953": 152,
+ "1437476954": 152,
+ "1437476955": 151,
+ "1437476956": 151,
+ "1437476957": 151,
+ "1437476958": 150,
+ "1437476959": 150,
+ "1437476960": 150,
+ "1437476961": 150,
+ "1437476962": 149,
+ "1437476963": 149,
+ "1437476964": 149,
+ "1437476965": 149,
+ "1437476966": 149,
+ "1437476967": 149,
+ "1437476969": 148,
+ "1437476970": 149,
+ "1437476971": 149,
+ "1437476972": 149,
+ "1437476973": 148,
+ "1437476974": 148,
+ "1437476975": 148,
+ "1437476976": 148,
+ "1437476977": 149,
+ "1437476978": 148,
+ "1437476979": 148,
+ "1437476980": 148,
+ "1437476981": 148,
+ "1437476982": 148,
+ "1437476983": 148,
+ "1437476984": 148,
+ "1437476985": 148,
+ "1437476986": 148,
+ "1437476987": 148,
+ "1437476988": 149,
+ "1437476989": 148,
+ "1437476990": 148,
+ "1437476991": 148,
+ "1437476992": 148,
+ "1437476993": 148,
+ "1437476994": 148,
+ "1437476996": 147,
+ "1437476997": 147,
+ "1437476998": 147,
+ "1437476999": 147,
+ "1437477000": 147,
+ "1437477001": 147,
+ "1437477002": 147,
+ "1437477003": 147,
+ "1437477004": 146,
+ "1437477005": 146,
+ "1437477006": 146,
+ "1437477007": 147,
+ "1437477008": 147,
+ "1437477009": 147,
+ "1437477010": 147,
+ "1437477011": 147,
+ "1437477012": 147,
+ "1437477013": 147,
+ "1437477014": 147,
+ "1437477015": 147,
+ "1437477016": 148,
+ "1437477017": 148,
+ "1437477018": 148,
+ "1437477019": 148,
+ "1437477020": 148,
+ "1437477022": 149,
+ "1437477023": 149,
+ "1437477024": 150,
+ "1437477025": 150,
+ "1437477026": 151,
+ "1437477027": 151,
+ "1437477028": 151,
+ "1437477029": 152,
+ "1437477030": 152,
+ "1437477031": 152,
+ "1437477032": 152,
+ "1437477033": 152,
+ "1437477034": 153,
+ "1437477035": 152,
+ "1437477036": 153,
+ "1437477037": 153,
+ "1437477038": 153,
+ "1437477039": 153,
+ "1437477040": 154,
+ "1437477041": 154,
+ "1437477042": 154,
+ "1437477043": 155,
+ "1437477044": 155,
+ "1437477045": 155,
+ "1437477046": 156,
+ "1437477047": 156,
+ "1437477048": 156,
+ "1437477050": 157,
+ "1437477051": 158,
+ "1437477052": 158,
+ "1437477053": 158,
+ "1437477054": 158,
+ "1437477055": 159,
+ "1437477056": 159,
+ "1437477057": 159,
+ "1437477058": 159,
+ "1437477059": 159,
+ "1437477060": 159,
+ "1437477061": 159,
+ "1437477062": 159,
+ "1437477063": 159,
+ "1437477064": 160,
+ "1437477065": 161,
+ "1437477066": 161,
+ "1437477067": 162,
+ "1437477068": 162,
+ "1437477069": 162,
+ "1437477070": 162,
+ "1437477071": 162,
+ "1437477072": 162,
+ "1437477073": 162,
+ "1437477075": 162,
+ "1437477076": 162,
+ "1437477077": 162,
+ "1437477078": 163,
+ "1437477079": 162,
+ "1437477080": 162,
+ "1437477081": 162,
+ "1437477082": 163,
+ "1437477083": 163,
+ "1437477084": 163,
+ "1437477085": 163,
+ "1437477086": 163,
+ "1437477087": 163,
+ "1437477088": 163,
+ "1437477089": 163,
+ "1437477090": 164,
+ "1437477091": 164,
+ "1437477092": 164,
+ "1437477093": 165,
+ "1437477094": 165,
+ "1437477095": 164,
+ "1437477096": 165,
+ "1437477097": 164,
+ "1437477098": 164,
+ "1437477099": 164,
+ "1437477100": 164,
+ "1437477101": 164,
+ "1437477102": 164,
+ "1437477103": 164,
+ "1437477104": 165,
+ "1437477105": 164,
+ "1437477106": 164,
+ "1437477107": 164,
+ "1437477109": 164,
+ "1437477110": 164,
+ "1437477111": 163,
+ "1437477112": 164,
+ "1437477113": 164,
+ "1437477114": 164,
+ "1437477115": 163,
+ "1437477116": 163,
+ "1437477117": 163,
+ "1437477118": 163,
+ "1437477119": 163,
+ "1437477120": 163,
+ "1437477121": 164,
+ "1437477122": 164,
+ "1437477123": 164,
+ "1437477124": 164,
+ "1437477125": 165,
+ "1437477126": 165,
+ "1437477127": 165,
+ "1437477128": 166,
+ "1437477129": 166,
+ "1437477130": 167,
+ "1437477131": 167,
+ "1437477132": 167,
+ "1437477133": 167,
+ "1437477134": 168,
+ "1437477135": 168,
+ "1437477136": 169,
+ "1437477137": 168,
+ "1437477138": 169,
+ "1437477139": 169,
+ "1437477140": 169,
+ "1437477141": 169,
+ "1437477143": 169,
+ "1437477144": 169,
+ "1437477145": 168,
+ "1437477146": 168,
+ "1437477147": 169,
+ "1437477148": 169,
+ "1437477149": 169,
+ "1437477150": 169,
+ "1437477151": 169,
+ "1437477152": 169,
+ "1437477153": 169,
+ "1437477154": 170,
+ "1437477155": 170,
+ "1437477156": 170,
+ "1437477157": 170,
+ "1437477158": 170,
+ "1437477159": 170,
+ "1437477160": 170,
+ "1437477161": 170,
+ "1437477162": 170,
+ "1437477163": 170,
+ "1437477164": 170,
+ "1437477165": 170,
+ "1437477166": 170,
+ "1437477167": 170,
+ "1437477168": 170,
+ "1437477169": 170,
+ "1437477170": 170,
+ "1437477171": 170,
+ "1437477172": 170,
+ "1437477173": 170,
+ "1437477174": 170,
+ "1437477175": 170,
+ "1437477176": 170,
+ "1437477178": 170,
+ "1437477179": 170,
+ "1437477180": 170,
+ "1437477181": 170,
+ "1437477182": 170,
+ "1437477183": 169,
+ "1437477184": 169,
+ "1437477185": 169,
+ "1437477186": 169,
+ "1437477187": 169,
+ "1437477188": 169,
+ "1437477189": 169,
+ "1437477190": 169,
+ "1437477191": 169,
+ "1437477192": 169,
+ "1437477193": 169,
+ "1437477194": 168,
+ "1437477195": 168,
+ "1437477196": 168,
+ "1437477197": 168,
+ "1437477198": 168,
+ "1437477199": 168,
+ "1437477200": 168,
+ "1437477201": 167,
+ "1437477202": 167,
+ "1437477203": 167,
+ "1437477204": 167,
+ "1437477205": 167,
+ "1437477206": 167,
+ "1437477207": 167,
+ "1437477208": 167,
+ "1437477209": 167,
+ "1437477210": 167,
+ "1437477211": 168,
+ "1437477212": 168,
+ "1437477213": 168,
+ "1437477215": 168,
+ "1437477216": 169,
+ "1437477217": 169,
+ "1437477218": 169,
+ "1437477219": 169,
+ "1437477220": 169,
+ "1437477221": 169,
+ "1437477222": 169,
+ "1437477223": 169,
+ "1437477224": 169,
+ "1437477225": 169,
+ "1437477226": 169,
+ "1437477227": 169,
+ "1437477228": 169,
+ "1437477229": 168,
+ "1437477230": 168,
+ "1437477231": 168,
+ "1437477232": 169,
+ "1437477233": 168,
+ "1437477234": 168,
+ "1437477235": 169,
+ "1437477236": 168,
+ "1437477237": 168,
+ "1437477238": 168,
+ "1437477239": 168,
+ "1437477240": 168,
+ "1437477241": 168,
+ "1437477242": 168,
+ "1437477243": 168,
+ "1437477244": 168,
+ "1437477245": 168,
+ "1437477247": 168,
+ "1437477248": 168,
+ "1437477249": 169,
+ "1437477250": 169,
+ "1437477251": 169,
+ "1437477252": 169,
+ "1437477253": 169,
+ "1437477254": 169,
+ "1437477255": 169,
+ "1437477256": 169,
+ "1437477257": 169,
+ "1437477258": 169,
+ "1437477259": 170,
+ "1437477260": 169,
+ "1437477261": 170,
+ "1437477262": 170,
+ "1437477263": 170,
+ "1437477264": 170,
+ "1437477265": 170,
+ "1437477266": 170,
+ "1437477267": 170,
+ "1437477268": 170,
+ "1437477270": 170,
+ "1437477271": 171,
+ "1437477272": 171,
+ "1437477273": 171,
+ "1437477274": 171,
+ "1437477275": 171,
+ "1437477276": 172,
+ "1437477277": 172,
+ "1437477278": 172,
+ "1437477279": 172,
+ "1437477280": 172,
+ "1437477281": 172,
+ "1437477282": 172,
+ "1437477283": 172,
+ "1437477284": 172,
+ "1437477285": 172,
+ "1437477286": 173,
+ "1437477287": 173,
+ "1437477288": 173,
+ "1437477289": 173,
+ "1437477290": 173,
+ "1437477291": 173,
+ "1437477292": 173,
+ "1437477294": 174,
+ "1437477295": 173,
+ "1437477296": 173,
+ "1437477297": 173,
+ "1437477298": 173,
+ "1437477299": 172,
+ "1437477300": 172,
+ "1437477301": 172,
+ "1437477302": 171,
+ "1437477303": 171,
+ "1437477304": 171,
+ "1437477305": 171,
+ "1437477306": 170,
+ "1437477307": 170,
+ "1437477308": 170,
+ "1437477309": 169,
+ "1437477310": 169,
+ "1437477311": 168,
+ "1437477312": 168,
+ "1437477313": 168,
+ "1437477314": 167,
+ "1437477315": 167,
+ "1437477316": 167,
+ "1437477317": 167,
+ "1437477318": 166,
+ "1437477319": 166,
+ "1437477321": 166,
+ "1437477322": 166,
+ "1437477323": 165,
+ "1437477324": 166,
+ "1437477325": 165,
+ "1437477326": 166,
+ "1437477327": 165,
+ "1437477328": 165,
+ "1437477329": 165,
+ "1437477330": 165,
+ "1437477331": 165,
+ "1437477332": 165,
+ "1437477333": 166,
+ "1437477334": 166,
+ "1437477335": 166,
+ "1437477336": 166,
+ "1437477337": 166,
+ "1437477338": 166,
+ "1437477339": 166,
+ "1437477340": 166,
+ "1437477341": 166,
+ "1437477342": 165,
+ "1437477343": 165,
+ "1437477345": 164,
+ "1437477346": 163,
+ "1437477347": 162,
+ "1437477348": 161,
+ "1437477349": 160,
+ "1437477350": 159,
+ "1437477351": 158,
+ "1437477352": 157,
+ "1437477353": 156,
+ "1437477354": 155,
+ "1437477355": 154,
+ "1437477356": 153,
+ "1437477376": 140,
+ "1437477377": 140,
+ "1437477378": 140,
+ "1437477379": 141,
+ "1437477380": 141,
+ "1437477381": 141,
+ "1437477383": 140,
+ "1437477384": 139,
+ "1437477385": 138,
+ "1437477386": 137,
+ "1437477387": 136,
+ "1437477388": 134,
+ "1437477392": 129,
+ "1437477393": 128,
+ "1437477394": 128,
+ "1437477395": 128,
+ "1437477397": 127,
+ "1437477398": 127,
+ "1437477399": 126,
+ "1437477400": 125,
+ "1437477401": 125,
+ "1437477402": 125,
+ "1437477403": 125,
+ "1437477404": 125,
+ "1437477405": 125,
+ "1437477406": 124,
+ "1437477407": 124,
+ "1437477408": 123,
+ "1437477411": 121,
+ "1437477412": 121,
+ "1437477413": 120,
+ "1437477414": 120,
+ "1437477415": 119,
+ "1437477417": 119,
+ "1437477418": 119,
+ "1437477419": 118,
+ "1437477420": 118,
+ "1437477421": 118,
+ "1437477422": 118,
+ "1437477423": 118,
+ "1437477428": 117,
+ "1437477429": 118,
+ "1437477430": 119,
+ "1437477432": 120,
+ "1437477433": 120,
+ "1437477434": 120,
+ "1437477435": 119,
+ "1437477436": 118,
+ "1437477437": 117,
+ "1437477438": 117,
+ "1437477439": 117,
+ "1437477440": 117,
+ "1437477441": 117,
+ "1437477442": 117,
+ "1437477443": 117,
+ "1437477444": 116,
+ "1437477445": 116,
+ "1437477446": 116,
+ "1437477447": 116,
+ "1437477448": 116,
+ "1437477449": 116,
+ "1437477450": 117,
+ "1437477451": 116,
+ "1437477452": 116,
+ "1437477453": 115,
+ "1437477454": 114,
+ "1437477455": 114,
+ "1437477456": 114,
+ "1437477457": 115,
+ "1437477458": 115,
+ "1437477459": 114,
+ "1437477461": 113,
+ "1437477465": 108,
+ "1437477466": 108,
+ "1437477467": 109,
+ "1437477468": 109,
+ "1437477469": 109,
+ "1437477470": 110,
+ "1437477471": 109,
+ "1437477472": 109,
+ "1437477473": 109,
+ "1437477474": 109,
+ "1437477475": 110,
+ "1437477476": 110,
+ "1437477477": 111,
+ "1437477478": 111,
+ "1437477479": 111,
+ "1437477480": 111,
+ "1437477481": 110,
+ "1437477482": 109,
+ "1437477483": 109,
+ "1437477484": 109,
+ "1437477485": 109,
+ "1437477486": 109,
+ "1437477487": 109,
+ "1437477488": 109,
+ "1437477489": 109,
+ "1437477490": 109,
+ "1437477491": 109,
+ "1437477492": 109,
+ "1437477493": 109,
+ "1437477494": 110,
+ "1437477495": 110,
+ "1437477496": 110,
+ "1437477497": 110,
+ "1437477498": 110,
+ "1437477500": 110,
+ "1437477501": 110,
+ "1437477502": 110,
+ "1437477503": 110,
+ "1437477504": 110,
+ "1437477505": 110,
+ "1437477506": 110,
+ "1437477507": 111,
+ "1437477508": 111,
+ "1437477509": 111,
+ "1437477510": 111,
+ "1437477511": 111,
+ "1437477512": 111,
+ "1437477513": 111,
+ "1437477514": 110,
+ "1437477515": 110,
+ "1437477516": 109,
+ "1437477517": 109,
+ "1437477518": 109,
+ "1437477519": 108,
+ "1437477520": 108,
+ "1437477521": 109,
+ "1437477522": 109,
+ "1437477523": 108,
+ "1437477524": 109,
+ "1437477525": 109,
+ "1437477526": 109,
+ "1437477527": 109,
+ "1437477528": 110,
+ "1437477529": 109,
+ "1437477530": 110,
+ "1437477532": 109,
+ "1437477533": 109,
+ "1437477534": 108,
+ "1437477535": 107,
+ "1437477536": 107,
+ "1437477537": 106,
+ "1437477538": 106,
+ "1437477539": 107,
+ "1437477540": 106,
+ "1437477541": 107,
+ "1437477542": 106,
+ "1437477543": 106,
+ "1437477544": 105,
+ "1437477545": 105,
+ "1437477546": 105,
+ "1437477547": 105,
+ "1437477548": 105,
+ "1437477549": 105,
+ "1437477550": 104,
+ "1437477551": 104,
+ "1437477552": 104,
+ "1437477553": 103,
+ "1437477555": 103,
+ "1437477556": 103,
+ "1437477557": 103,
+ "1437477558": 103,
+ "1437477559": 103,
+ "1437477560": 103,
+ "1437477561": 103,
+ "1437477562": 103,
+ "1437477563": 103,
+ "1437477564": 103,
+ "1437477565": 103,
+ "1437477566": 104,
+ "1437477567": 105,
+ "1437477568": 105,
+ "1437477569": 105,
+ "1437477570": 106,
+ "1437477571": 106,
+ "1437477572": 105,
+ "1437477573": 105,
+ "1437477574": 104,
+ "1437477575": 104,
+ "1437477576": 105,
+ "1437477577": 105,
+ "1437477578": 105,
+ "1437477580": 105,
+ "1437477581": 105,
+ "1437477582": 105,
+ "1437477583": 105,
+ "1437477584": 104,
+ "1437477585": 105,
+ "1437477586": 105,
+ "1437477587": 106,
+ "1437477588": 106,
+ "1437477589": 106,
+ "1437477590": 106,
+ "1437477591": 106,
+ "1437477592": 106,
+ "1437477593": 106,
+ "1437477594": 106,
+ "1437477595": 106,
+ "1437477596": 107,
+ "1437477597": 107,
+ "1437477598": 107,
+ "1437477599": 108,
+ "1437477600": 108,
+ "1437477601": 108,
+ "1437477604": 109,
+ "1437477605": 109,
+ "1437477607": 109,
+ "1437477608": 109,
+ "1437477609": 110,
+ "1437477610": 110,
+ "1437477611": 110,
+ "1437477612": 110,
+ "1437477613": 110,
+ "1437477614": 110,
+ "1437477615": 110,
+ "1437477616": 110,
+ "1437477617": 110,
+ "1437477618": 110,
+ "1437477619": 110,
+ "1437477620": 110,
+ "1437477621": 110,
+ "1437477622": 111,
+ "1437477623": 111,
+ "1437477624": 111,
+ "1437477625": 111,
+ "1437477626": 112,
+ "1437477627": 112,
+ "1437477628": 113,
+ "1437477629": 114,
+ "1437477630": 115,
+ "1437477631": 115,
+ "1437477632": 116,
+ "1437477633": 116,
+ "1437477634": 116,
+ "1437477635": 117,
+ "1437477636": 117,
+ "1437477638": 117,
+ "1437477639": 117,
+ "1437477640": 117,
+ "1437477641": 117,
+ "1437477642": 117,
+ "1437477643": 116,
+ "1437477644": 116,
+ "1437477645": 115,
+ "1437477646": 115,
+ "1437477647": 114,
+ "1437477648": 114,
+ "1437477649": 114,
+ "1437477650": 115,
+ "1437477651": 115,
+ "1437477652": 114,
+ "1437477653": 115,
+ "1437477654": 114,
+ "1437477655": 114,
+ "1437477656": 113,
+ "1437477657": 112,
+ "1437477658": 112,
+ "1437477659": 111,
+ "1437477660": 111,
+ "1437477661": 111,
+ "1437477662": 111,
+ "1437477663": 111,
+ "1437477664": 111,
+ "1437477665": 111,
+ "1437477666": 111,
+ "1437477667": 111,
+ "1437477668": 111,
+ "1437477669": 111,
+ "1437477671": 111,
+ "1437477672": 111,
+ "1437477673": 111,
+ "1437477674": 112,
+ "1437477676": 111,
+ "1437477677": 111,
+ "1437477678": 112,
+ "1437477679": 112,
+ "1437477680": 112,
+ "1437477681": 112,
+ "1437477682": 112,
+ "1437477683": 112,
+ "1437477684": 112,
+ "1437477685": 112,
+ "1437477688": 113,
+ "1437477689": 113,
+ "1437477690": 113,
+ "1437477691": 113,
+ "1437477692": 113,
+ "1437477693": 114,
+ "1437477695": 114,
+ "1437477696": 113,
+ "1437477697": 113,
+ "1437477698": 113,
+ "1437477699": 113,
+ "1437477700": 113,
+ "1437477701": 113,
+ "1437477702": 114,
+ "1437477703": 113,
+ "1437477704": 113,
+ "1437477705": 113,
+ "1437477706": 113
+ },
+ "cadences": {
+ "1437474517": 61,
+ "1437474518": 62,
+ "1437474519": 62,
+ "1437474520": 62,
+ "1437474521": 0,
+ "1437474522": 0,
+ "1437474523": 0,
+ "1437474524": 0,
+ "1437474525": 0,
+ "1437474526": 0,
+ "1437474527": 47,
+ "1437474528": 47,
+ "1437474529": 44,
+ "1437474530": 53,
+ "1437474532": 69,
+ "1437474533": 69,
+ "1437474534": 69,
+ "1437474535": 70,
+ "1437474536": 72,
+ "1437474537": 72,
+ "1437474538": 72,
+ "1437474539": 72,
+ "1437474540": 72,
+ "1437474541": 0,
+ "1437474542": 0,
+ "1437474543": 68,
+ "1437474544": 76,
+ "1437474545": 90,
+ "1437474546": 95,
+ "1437474547": 95,
+ "1437474548": 95,
+ "1437474549": 95,
+ "1437474550": 95,
+ "1437474551": 100,
+ "1437474552": 102,
+ "1437474553": 104,
+ "1437474554": 103,
+ "1437474555": 102,
+ "1437474556": 102,
+ "1437474557": 101,
+ "1437474558": 100,
+ "1437474559": 98,
+ "1437474560": 98,
+ "1437474561": 98,
+ "1437474562": 96,
+ "1437474563": 95,
+ "1437474564": 95,
+ "1437474566": 95,
+ "1437474567": 95,
+ "1437474568": 96,
+ "1437474569": 96,
+ "1437474570": 96,
+ "1437474571": 96,
+ "1437474572": 95,
+ "1437474573": 94,
+ "1437474574": 91,
+ "1437474575": 92,
+ "1437474576": 93,
+ "1437474577": 90,
+ "1437474578": 91,
+ "1437474579": 93,
+ "1437474580": 92,
+ "1437474581": 92,
+ "1437474582": 91,
+ "1437474583": 90,
+ "1437474584": 86,
+ "1437474585": 85,
+ "1437474586": 81,
+ "1437474587": 76,
+ "1437474588": 76,
+ "1437474589": 82,
+ "1437474590": 90,
+ "1437474591": 96,
+ "1437474592": 99,
+ "1437474593": 99,
+ "1437474594": 101,
+ "1437474595": 101,
+ "1437474596": 101,
+ "1437474597": 100,
+ "1437474598": 98,
+ "1437474599": 97,
+ "1437474600": 98,
+ "1437474601": 98,
+ "1437474603": 98,
+ "1437474604": 97,
+ "1437474605": 97,
+ "1437474606": 97,
+ "1437474607": 97,
+ "1437474608": 96,
+ "1437474609": 94,
+ "1437474610": 94,
+ "1437474611": 94,
+ "1437474612": 95,
+ "1437474613": 94,
+ "1437474614": 92,
+ "1437474615": 87,
+ "1437474616": 87,
+ "1437474617": 86,
+ "1437474618": 84,
+ "1437474619": 82,
+ "1437474620": 80,
+ "1437474621": 79,
+ "1437474622": 79,
+ "1437474623": 79,
+ "1437474624": 79,
+ "1437474626": 80,
+ "1437474627": 80,
+ "1437474628": 80,
+ "1437474629": 81,
+ "1437474630": 80,
+ "1437474631": 81,
+ "1437474632": 79,
+ "1437474633": 77,
+ "1437474634": 76,
+ "1437474635": 76,
+ "1437474636": 77,
+ "1437474637": 77,
+ "1437474638": 78,
+ "1437474639": 77,
+ "1437474640": 77,
+ "1437474641": 81,
+ "1437474642": 83,
+ "1437474643": 89,
+ "1437474644": 91,
+ "1437474645": 90,
+ "1437474646": 88,
+ "1437474647": 88,
+ "1437474648": 86,
+ "1437474649": 86,
+ "1437474650": 86,
+ "1437474652": 86,
+ "1437474653": 85,
+ "1437474654": 85,
+ "1437474655": 86,
+ "1437474656": 86,
+ "1437474657": 87,
+ "1437474658": 87,
+ "1437474659": 88,
+ "1437474660": 88,
+ "1437474661": 86,
+ "1437474662": 86,
+ "1437474663": 86,
+ "1437474664": 86,
+ "1437474665": 86,
+ "1437474666": 86,
+ "1437474667": 87,
+ "1437474668": 85,
+ "1437474669": 85,
+ "1437474670": 84,
+ "1437474671": 83,
+ "1437474672": 82,
+ "1437474673": 80,
+ "1437474674": 79,
+ "1437474675": 79,
+ "1437474676": 79,
+ "1437474677": 79,
+ "1437474678": 79,
+ "1437474679": 79,
+ "1437474681": 80,
+ "1437474682": 80,
+ "1437474683": 79,
+ "1437474684": 79,
+ "1437474685": 79,
+ "1437474686": 79,
+ "1437474687": 78,
+ "1437474688": 78,
+ "1437474689": 78,
+ "1437474690": 77,
+ "1437474691": 77,
+ "1437474692": 77,
+ "1437474693": 76,
+ "1437474694": 77,
+ "1437474695": 76,
+ "1437474696": 75,
+ "1437474697": 76,
+ "1437474698": 77,
+ "1437474699": 77,
+ "1437474700": 78,
+ "1437474701": 78,
+ "1437474702": 79,
+ "1437474703": 80,
+ "1437474705": 79,
+ "1437474706": 79,
+ "1437474707": 78,
+ "1437474708": 77,
+ "1437474709": 76,
+ "1437474710": 74,
+ "1437474711": 80,
+ "1437474712": 81,
+ "1437474713": 84,
+ "1437474714": 84,
+ "1437474715": 84,
+ "1437474716": 85,
+ "1437474717": 84,
+ "1437474718": 85,
+ "1437474719": 85,
+ "1437474720": 85,
+ "1437474721": 85,
+ "1437474722": 85,
+ "1437474723": 85,
+ "1437474724": 85,
+ "1437474725": 85,
+ "1437474726": 85,
+ "1437474727": 84,
+ "1437474728": 84,
+ "1437474729": 83,
+ "1437474730": 84,
+ "1437474732": 84,
+ "1437474733": 84,
+ "1437474734": 84,
+ "1437474735": 85,
+ "1437474736": 85,
+ "1437474737": 85,
+ "1437474738": 85,
+ "1437474739": 86,
+ "1437474740": 86,
+ "1437474741": 88,
+ "1437474742": 88,
+ "1437474743": 89,
+ "1437474744": 88,
+ "1437474745": 88,
+ "1437474746": 88,
+ "1437474747": 89,
+ "1437474748": 89,
+ "1437474749": 89,
+ "1437474750": 89,
+ "1437474751": 89,
+ "1437474752": 89,
+ "1437474753": 88,
+ "1437474754": 89,
+ "1437474755": 88,
+ "1437474756": 88,
+ "1437474757": 89,
+ "1437474758": 89,
+ "1437474760": 89,
+ "1437474761": 89,
+ "1437474762": 89,
+ "1437474763": 89,
+ "1437474764": 88,
+ "1437474765": 88,
+ "1437474766": 87,
+ "1437474767": 87,
+ "1437474768": 88,
+ "1437474769": 87,
+ "1437474770": 87,
+ "1437474771": 87,
+ "1437474772": 88,
+ "1437474773": 87,
+ "1437474774": 88,
+ "1437474775": 88,
+ "1437474776": 88,
+ "1437474777": 88,
+ "1437474778": 89,
+ "1437474779": 89,
+ "1437474780": 89,
+ "1437474781": 89,
+ "1437474782": 88,
+ "1437474783": 89,
+ "1437474785": 90,
+ "1437474786": 90,
+ "1437474787": 90,
+ "1437474788": 90,
+ "1437474789": 91,
+ "1437474790": 90,
+ "1437474791": 90,
+ "1437474792": 90,
+ "1437474793": 90,
+ "1437474794": 90,
+ "1437474795": 91,
+ "1437474796": 91,
+ "1437474797": 91,
+ "1437474798": 90,
+ "1437474799": 89,
+ "1437474800": 90,
+ "1437474801": 89,
+ "1437474802": 88,
+ "1437474803": 88,
+ "1437474804": 87,
+ "1437474805": 87,
+ "1437474806": 89,
+ "1437474808": 90,
+ "1437474809": 89,
+ "1437474810": 89,
+ "1437474811": 88,
+ "1437474812": 88,
+ "1437474813": 88,
+ "1437474814": 87,
+ "1437474815": 88,
+ "1437474816": 89,
+ "1437474817": 91,
+ "1437474818": 91,
+ "1437474819": 90,
+ "1437474820": 89,
+ "1437474821": 89,
+ "1437474822": 90,
+ "1437474823": 90,
+ "1437474824": 90,
+ "1437474825": 89,
+ "1437474827": 90,
+ "1437474828": 93,
+ "1437474829": 101,
+ "1437474830": 103,
+ "1437474831": 103,
+ "1437474832": 100,
+ "1437474833": 94,
+ "1437474834": 93,
+ "1437474835": 91,
+ "1437474836": 91,
+ "1437474837": 91,
+ "1437474838": 91,
+ "1437474839": 88,
+ "1437474840": 86,
+ "1437474841": 86,
+ "1437474842": 86,
+ "1437474843": 86,
+ "1437474844": 85,
+ "1437474845": 86,
+ "1437474846": 86,
+ "1437474847": 86,
+ "1437474848": 87,
+ "1437474849": 87,
+ "1437474850": 88,
+ "1437474851": 87,
+ "1437474852": 87,
+ "1437474853": 87,
+ "1437474854": 88,
+ "1437474855": 88,
+ "1437474856": 88,
+ "1437474857": 88,
+ "1437474859": 88,
+ "1437474860": 88,
+ "1437474861": 87,
+ "1437474862": 87,
+ "1437474863": 88,
+ "1437474864": 88,
+ "1437474865": 88,
+ "1437474866": 88,
+ "1437474867": 88,
+ "1437474868": 89,
+ "1437474869": 89,
+ "1437474870": 88,
+ "1437474871": 88,
+ "1437474872": 88,
+ "1437474873": 88,
+ "1437474874": 88,
+ "1437474875": 89,
+ "1437474876": 88,
+ "1437474877": 88,
+ "1437474878": 88,
+ "1437474879": 89,
+ "1437474880": 89,
+ "1437474881": 91,
+ "1437474882": 91,
+ "1437474883": 90,
+ "1437474884": 90,
+ "1437474885": 91,
+ "1437474886": 91,
+ "1437474887": 90,
+ "1437474888": 91,
+ "1437474890": 91,
+ "1437474891": 90,
+ "1437474892": 90,
+ "1437474893": 90,
+ "1437474894": 89,
+ "1437474895": 89,
+ "1437474896": 87,
+ "1437474897": 86,
+ "1437474898": 86,
+ "1437474899": 85,
+ "1437474900": 87,
+ "1437474901": 91,
+ "1437474902": 93,
+ "1437474903": 93,
+ "1437474904": 90,
+ "1437474905": 88,
+ "1437474906": 86,
+ "1437474907": 85,
+ "1437474908": 85,
+ "1437474909": 85,
+ "1437474910": 85,
+ "1437474911": 85,
+ "1437474912": 85,
+ "1437474913": 85,
+ "1437474914": 86,
+ "1437474915": 86,
+ "1437474916": 86,
+ "1437474917": 85,
+ "1437474918": 85,
+ "1437474919": 84,
+ "1437474920": 85,
+ "1437474921": 84,
+ "1437474923": 82,
+ "1437474924": 83,
+ "1437474925": 84,
+ "1437474926": 84,
+ "1437474927": 85,
+ "1437474928": 84,
+ "1437474929": 85,
+ "1437474930": 86,
+ "1437474931": 86,
+ "1437474932": 86,
+ "1437474933": 85,
+ "1437474934": 85,
+ "1437474935": 84,
+ "1437474936": 83,
+ "1437474937": 84,
+ "1437474938": 84,
+ "1437474939": 83,
+ "1437474940": 82,
+ "1437474941": 82,
+ "1437474942": 82,
+ "1437474943": 82,
+ "1437474944": 82,
+ "1437474945": 79,
+ "1437474946": 80,
+ "1437474947": 80,
+ "1437474948": 80,
+ "1437474949": 80,
+ "1437474950": 80,
+ "1437474951": 81,
+ "1437474952": 83,
+ "1437474953": 83,
+ "1437474954": 83,
+ "1437474955": 83,
+ "1437474956": 83,
+ "1437474957": 84,
+ "1437474958": 84,
+ "1437474959": 85,
+ "1437474960": 84,
+ "1437474962": 83,
+ "1437474963": 84,
+ "1437474964": 85,
+ "1437474965": 84,
+ "1437474966": 84,
+ "1437474967": 83,
+ "1437474968": 84,
+ "1437474969": 83,
+ "1437474970": 82,
+ "1437474971": 83,
+ "1437474972": 83,
+ "1437474973": 83,
+ "1437474974": 83,
+ "1437474975": 81,
+ "1437474976": 81,
+ "1437474977": 81,
+ "1437474978": 84,
+ "1437474979": 84,
+ "1437474980": 85,
+ "1437474981": 85,
+ "1437474982": 84,
+ "1437474983": 84,
+ "1437474984": 85,
+ "1437474985": 85,
+ "1437474986": 85,
+ "1437474987": 85,
+ "1437474988": 89,
+ "1437474989": 89,
+ "1437474990": 89,
+ "1437474992": 20,
+ "1437474993": 47,
+ "1437474994": 72,
+ "1437474995": 77,
+ "1437474996": 77,
+ "1437474997": 82,
+ "1437474998": 84,
+ "1437474999": 84,
+ "1437475000": 85,
+ "1437475001": 84,
+ "1437475002": 84,
+ "1437475003": 84,
+ "1437475004": 85,
+ "1437475005": 86,
+ "1437475006": 85,
+ "1437475007": 84,
+ "1437475008": 84,
+ "1437475009": 84,
+ "1437475010": 84,
+ "1437475012": 84,
+ "1437475013": 84,
+ "1437475014": 86,
+ "1437475015": 86,
+ "1437475016": 85,
+ "1437475017": 85,
+ "1437475018": 85,
+ "1437475019": 85,
+ "1437475020": 85,
+ "1437475021": 84,
+ "1437475022": 85,
+ "1437475023": 84,
+ "1437475024": 83,
+ "1437475025": 83,
+ "1437475026": 83,
+ "1437475027": 84,
+ "1437475029": 84,
+ "1437475030": 83,
+ "1437475031": 84,
+ "1437475032": 86,
+ "1437475033": 86,
+ "1437475034": 89,
+ "1437475035": 90,
+ "1437475036": 90,
+ "1437475037": 89,
+ "1437475038": 90,
+ "1437475039": 89,
+ "1437475040": 90,
+ "1437475041": 86,
+ "1437475042": 86,
+ "1437475043": 84,
+ "1437475044": 83,
+ "1437475045": 84,
+ "1437475046": 84,
+ "1437475047": 84,
+ "1437475048": 83,
+ "1437475049": 83,
+ "1437475050": 87,
+ "1437475051": 87,
+ "1437475052": 88,
+ "1437475054": 90,
+ "1437475055": 91,
+ "1437475056": 91,
+ "1437475057": 90,
+ "1437475058": 89,
+ "1437475059": 88,
+ "1437475060": 88,
+ "1437475061": 88,
+ "1437475062": 88,
+ "1437475063": 89,
+ "1437475064": 88,
+ "1437475065": 89,
+ "1437475066": 90,
+ "1437475067": 89,
+ "1437475068": 89,
+ "1437475069": 90,
+ "1437475070": 91,
+ "1437475071": 92,
+ "1437475072": 91,
+ "1437475073": 90,
+ "1437475074": 91,
+ "1437475075": 90,
+ "1437475076": 91,
+ "1437475077": 90,
+ "1437475078": 90,
+ "1437475079": 90,
+ "1437475080": 90,
+ "1437475081": 90,
+ "1437475083": 90,
+ "1437475084": 91,
+ "1437475085": 91,
+ "1437475086": 91,
+ "1437475087": 90,
+ "1437475088": 90,
+ "1437475089": 92,
+ "1437475090": 93,
+ "1437475091": 94,
+ "1437475092": 93,
+ "1437475093": 93,
+ "1437475094": 93,
+ "1437475095": 92,
+ "1437475096": 93,
+ "1437475097": 93,
+ "1437475098": 93,
+ "1437475099": 93,
+ "1437475100": 93,
+ "1437475101": 93,
+ "1437475102": 92,
+ "1437475103": 93,
+ "1437475104": 93,
+ "1437475105": 94,
+ "1437475106": 93,
+ "1437475107": 92,
+ "1437475108": 91,
+ "1437475109": 91,
+ "1437475110": 91,
+ "1437475112": 92,
+ "1437475113": 92,
+ "1437475114": 92,
+ "1437475115": 91,
+ "1437475116": 92,
+ "1437475117": 92,
+ "1437475118": 92,
+ "1437475119": 92,
+ "1437475120": 92,
+ "1437475121": 92,
+ "1437475122": 93,
+ "1437475123": 92,
+ "1437475124": 92,
+ "1437475125": 93,
+ "1437475126": 93,
+ "1437475127": 93,
+ "1437475128": 93,
+ "1437475129": 94,
+ "1437475130": 92,
+ "1437475131": 92,
+ "1437475132": 92,
+ "1437475133": 92,
+ "1437475134": 92,
+ "1437475135": 92,
+ "1437475136": 91,
+ "1437475137": 90,
+ "1437475138": 91,
+ "1437475139": 90,
+ "1437475140": 90,
+ "1437475141": 89,
+ "1437475142": 89,
+ "1437475143": 88,
+ "1437475145": 84,
+ "1437475146": 86,
+ "1437475147": 86,
+ "1437475148": 88,
+ "1437475149": 90,
+ "1437475150": 94,
+ "1437475151": 94,
+ "1437475152": 93,
+ "1437475153": 91,
+ "1437475154": 89,
+ "1437475155": 88,
+ "1437475156": 89,
+ "1437475157": 89,
+ "1437475158": 88,
+ "1437475159": 88,
+ "1437475160": 88,
+ "1437475161": 90,
+ "1437475162": 90,
+ "1437475163": 90,
+ "1437475164": 90,
+ "1437475165": 90,
+ "1437475166": 90,
+ "1437475167": 89,
+ "1437475168": 89,
+ "1437475169": 89,
+ "1437475170": 90,
+ "1437475171": 90,
+ "1437475173": 91,
+ "1437475174": 91,
+ "1437475175": 91,
+ "1437475176": 90,
+ "1437475177": 90,
+ "1437475178": 90,
+ "1437475179": 90,
+ "1437475180": 91,
+ "1437475181": 92,
+ "1437475182": 92,
+ "1437475183": 93,
+ "1437475184": 92,
+ "1437475185": 91,
+ "1437475186": 91,
+ "1437475187": 92,
+ "1437475188": 93,
+ "1437475189": 92,
+ "1437475190": 93,
+ "1437475191": 93,
+ "1437475192": 94,
+ "1437475193": 94,
+ "1437475194": 93,
+ "1437475195": 92,
+ "1437475196": 94,
+ "1437475197": 93,
+ "1437475198": 93,
+ "1437475200": 93,
+ "1437475201": 93,
+ "1437475202": 92,
+ "1437475203": 92,
+ "1437475204": 92,
+ "1437475205": 91,
+ "1437475206": 91,
+ "1437475207": 91,
+ "1437475208": 91,
+ "1437475209": 91,
+ "1437475210": 93,
+ "1437475211": 94,
+ "1437475212": 93,
+ "1437475213": 91,
+ "1437475214": 90,
+ "1437475215": 90,
+ "1437475216": 89,
+ "1437475217": 87,
+ "1437475218": 86,
+ "1437475219": 88,
+ "1437475220": 90,
+ "1437475221": 92,
+ "1437475222": 92,
+ "1437475223": 92,
+ "1437475224": 92,
+ "1437475225": 92,
+ "1437475226": 92,
+ "1437475227": 93,
+ "1437475228": 96,
+ "1437475230": 97,
+ "1437475231": 102,
+ "1437475232": 102,
+ "1437475233": 102,
+ "1437475234": 100,
+ "1437475235": 97,
+ "1437475236": 95,
+ "1437475237": 92,
+ "1437475238": 92,
+ "1437475239": 92,
+ "1437475240": 92,
+ "1437475241": 92,
+ "1437475242": 90,
+ "1437475243": 90,
+ "1437475244": 89,
+ "1437475245": 89,
+ "1437475246": 88,
+ "1437475247": 87,
+ "1437475248": 88,
+ "1437475249": 88,
+ "1437475250": 89,
+ "1437475251": 89,
+ "1437475252": 88,
+ "1437475253": 89,
+ "1437475254": 89,
+ "1437475255": 88,
+ "1437475256": 87,
+ "1437475257": 88,
+ "1437475258": 87,
+ "1437475259": 86,
+ "1437475260": 87,
+ "1437475261": 87,
+ "1437475262": 87,
+ "1437475263": 87,
+ "1437475264": 87,
+ "1437475265": 86,
+ "1437475266": 86,
+ "1437475267": 87,
+ "1437475269": 86,
+ "1437475270": 86,
+ "1437475271": 86,
+ "1437475272": 86,
+ "1437475273": 87,
+ "1437475274": 87,
+ "1437475275": 86,
+ "1437475276": 86,
+ "1437475277": 87,
+ "1437475278": 86,
+ "1437475279": 86,
+ "1437475280": 87,
+ "1437475281": 87,
+ "1437475282": 87,
+ "1437475283": 87,
+ "1437475284": 86,
+ "1437475285": 87,
+ "1437475286": 87,
+ "1437475287": 85,
+ "1437475288": 85,
+ "1437475289": 85,
+ "1437475290": 85,
+ "1437475291": 85,
+ "1437475292": 85,
+ "1437475293": 85,
+ "1437475294": 86,
+ "1437475295": 86,
+ "1437475296": 87,
+ "1437475297": 88,
+ "1437475298": 88,
+ "1437475299": 88,
+ "1437475300": 87,
+ "1437475301": 88,
+ "1437475302": 88,
+ "1437475303": 87,
+ "1437475304": 86,
+ "1437475305": 86,
+ "1437475306": 85,
+ "1437475308": 84,
+ "1437475309": 84,
+ "1437475310": 85,
+ "1437475311": 85,
+ "1437475312": 85,
+ "1437475313": 85,
+ "1437475314": 86,
+ "1437475315": 85,
+ "1437475316": 84,
+ "1437475317": 85,
+ "1437475318": 84,
+ "1437475319": 84,
+ "1437475320": 84,
+ "1437475321": 85,
+ "1437475322": 85,
+ "1437475323": 85,
+ "1437475324": 86,
+ "1437475325": 87,
+ "1437475326": 87,
+ "1437475327": 86,
+ "1437475328": 87,
+ "1437475329": 87,
+ "1437475330": 86,
+ "1437475331": 85,
+ "1437475332": 85,
+ "1437475333": 85,
+ "1437475334": 85,
+ "1437475335": 85,
+ "1437475336": 85,
+ "1437475337": 85,
+ "1437475338": 86,
+ "1437475339": 85,
+ "1437475340": 85,
+ "1437475342": 87,
+ "1437475343": 86,
+ "1437475344": 86,
+ "1437475345": 86,
+ "1437475346": 86,
+ "1437475347": 85,
+ "1437475348": 85,
+ "1437475349": 85,
+ "1437475350": 85,
+ "1437475351": 91,
+ "1437475352": 92,
+ "1437475353": 94,
+ "1437475354": 93,
+ "1437475355": 93,
+ "1437475356": 93,
+ "1437475357": 93,
+ "1437475358": 92,
+ "1437475359": 93,
+ "1437475360": 94,
+ "1437475361": 96,
+ "1437475362": 96,
+ "1437475363": 94,
+ "1437475364": 94,
+ "1437475365": 93,
+ "1437475366": 95,
+ "1437475367": 99,
+ "1437475368": 99,
+ "1437475369": 99,
+ "1437475371": 101,
+ "1437475372": 100,
+ "1437475373": 98,
+ "1437475374": 97,
+ "1437475375": 96,
+ "1437475376": 97,
+ "1437475377": 98,
+ "1437475378": 99,
+ "1437475379": 98,
+ "1437475380": 98,
+ "1437475381": 96,
+ "1437475382": 96,
+ "1437475383": 97,
+ "1437475384": 98,
+ "1437475385": 97,
+ "1437475386": 98,
+ "1437475387": 97,
+ "1437475388": 93,
+ "1437475389": 93,
+ "1437475390": 86,
+ "1437475391": 83,
+ "1437475392": 79,
+ "1437475393": 78,
+ "1437475394": 78,
+ "1437475395": 76,
+ "1437475396": 77,
+ "1437475397": 76,
+ "1437475398": 73,
+ "1437475400": 71,
+ "1437475401": 70,
+ "1437475402": 69,
+ "1437475403": 67,
+ "1437475404": 67,
+ "1437475405": 70,
+ "1437475406": 71,
+ "1437475407": 70,
+ "1437475408": 70,
+ "1437475409": 71,
+ "1437475410": 72,
+ "1437475411": 72,
+ "1437475412": 72,
+ "1437475413": 72,
+ "1437475414": 71,
+ "1437475415": 72,
+ "1437475416": 72,
+ "1437475417": 72,
+ "1437475418": 71,
+ "1437475419": 72,
+ "1437475420": 73,
+ "1437475421": 73,
+ "1437475422": 73,
+ "1437475423": 73,
+ "1437475424": 73,
+ "1437475425": 72,
+ "1437475426": 72,
+ "1437475427": 72,
+ "1437475428": 72,
+ "1437475429": 72,
+ "1437475430": 71,
+ "1437475431": 70,
+ "1437475433": 70,
+ "1437475434": 71,
+ "1437475435": 70,
+ "1437475436": 70,
+ "1437475437": 69,
+ "1437475438": 70,
+ "1437475439": 70,
+ "1437475440": 70,
+ "1437475441": 70,
+ "1437475442": 71,
+ "1437475443": 71,
+ "1437475444": 70,
+ "1437475445": 66,
+ "1437475446": 62,
+ "1437475447": 59,
+ "1437475448": 59,
+ "1437475449": 59,
+ "1437475450": 0,
+ "1437475451": 0,
+ "1437475452": 0,
+ "1437475453": 0,
+ "1437475454": 0,
+ "1437475455": 0,
+ "1437475456": 0,
+ "1437475457": 0,
+ "1437475458": 0,
+ "1437475459": 0,
+ "1437475460": 0,
+ "1437475461": 0,
+ "1437475462": 0,
+ "1437475463": 0,
+ "1437475464": 0,
+ "1437475466": 0,
+ "1437475467": 0,
+ "1437475468": 0,
+ "1437475469": 0,
+ "1437475470": 0,
+ "1437475471": 0,
+ "1437475472": 0,
+ "1437475473": 0,
+ "1437475474": 0,
+ "1437475475": 0,
+ "1437475476": 0,
+ "1437475477": 0,
+ "1437475478": 0,
+ "1437475479": 0,
+ "1437475480": 0,
+ "1437475481": 0,
+ "1437475482": 0,
+ "1437475483": 0,
+ "1437475484": 0,
+ "1437475485": 0,
+ "1437475486": 0,
+ "1437475487": 0,
+ "1437475488": 0,
+ "1437475489": 0,
+ "1437475490": 0,
+ "1437475491": 25,
+ "1437475492": 25,
+ "1437475493": 28,
+ "1437475494": 28,
+ "1437475495": 32,
+ "1437475496": 35,
+ "1437475497": 35,
+ "1437475498": 38,
+ "1437475499": 45,
+ "1437475500": 48,
+ "1437475501": 50,
+ "1437475502": 53,
+ "1437475503": 56,
+ "1437475504": 63,
+ "1437475505": 63,
+ "1437475506": 65,
+ "1437475507": 66,
+ "1437475508": 67,
+ "1437475510": 68,
+ "1437475511": 68,
+ "1437475512": 71,
+ "1437475513": 71,
+ "1437475514": 72,
+ "1437475515": 73,
+ "1437475516": 74,
+ "1437475517": 75,
+ "1437475518": 73,
+ "1437475519": 73,
+ "1437475520": 74,
+ "1437475521": 74,
+ "1437475522": 73,
+ "1437475523": 74,
+ "1437475524": 75,
+ "1437475525": 75,
+ "1437475526": 75,
+ "1437475527": 75,
+ "1437475528": 76,
+ "1437475529": 75,
+ "1437475530": 74,
+ "1437475531": 77,
+ "1437475532": 77,
+ "1437475533": 77,
+ "1437475534": 77,
+ "1437475535": 79,
+ "1437475536": 78,
+ "1437475537": 76,
+ "1437475538": 76,
+ "1437475539": 76,
+ "1437475540": 74,
+ "1437475541": 74,
+ "1437475542": 74,
+ "1437475543": 75,
+ "1437475544": 75,
+ "1437475545": 73,
+ "1437475546": 73,
+ "1437475547": 72,
+ "1437475548": 71,
+ "1437475549": 71,
+ "1437475551": 71,
+ "1437475552": 72,
+ "1437475553": 72,
+ "1437475554": 72,
+ "1437475555": 72,
+ "1437475556": 72,
+ "1437475557": 72,
+ "1437475558": 73,
+ "1437475559": 74,
+ "1437475560": 74,
+ "1437475561": 74,
+ "1437475562": 72,
+ "1437475563": 72,
+ "1437475564": 70,
+ "1437475565": 69,
+ "1437475566": 69,
+ "1437475567": 69,
+ "1437475568": 69,
+ "1437475569": 69,
+ "1437475570": 69,
+ "1437475571": 70,
+ "1437475572": 71,
+ "1437475573": 71,
+ "1437475574": 71,
+ "1437475575": 70,
+ "1437475576": 69,
+ "1437475577": 70,
+ "1437475578": 70,
+ "1437475580": 70,
+ "1437475581": 70,
+ "1437475582": 71,
+ "1437475583": 71,
+ "1437475584": 71,
+ "1437475585": 71,
+ "1437475586": 70,
+ "1437475587": 69,
+ "1437475588": 67,
+ "1437475589": 68,
+ "1437475590": 67,
+ "1437475591": 62,
+ "1437475592": 62,
+ "1437475593": 62,
+ "1437475594": 0,
+ "1437475595": 0,
+ "1437475596": 0,
+ "1437475597": 0,
+ "1437475598": 0,
+ "1437475599": 0,
+ "1437475600": 0,
+ "1437475601": 0,
+ "1437475602": 0,
+ "1437475603": 0,
+ "1437475604": 0,
+ "1437475605": 43,
+ "1437475606": 47,
+ "1437475607": 47,
+ "1437475608": 51,
+ "1437475610": 54,
+ "1437475611": 56,
+ "1437475612": 57,
+ "1437475613": 58,
+ "1437475614": 58,
+ "1437475615": 59,
+ "1437475616": 60,
+ "1437475617": 60,
+ "1437475618": 60,
+ "1437475619": 59,
+ "1437475620": 59,
+ "1437475621": 58,
+ "1437475622": 58,
+ "1437475623": 58,
+ "1437475624": 60,
+ "1437475625": 62,
+ "1437475626": 63,
+ "1437475627": 64,
+ "1437475628": 64,
+ "1437475629": 66,
+ "1437475630": 68,
+ "1437475631": 68,
+ "1437475632": 68,
+ "1437475633": 68,
+ "1437475634": 69,
+ "1437475636": 69,
+ "1437475637": 69,
+ "1437475638": 68,
+ "1437475639": 69,
+ "1437475640": 69,
+ "1437475641": 70,
+ "1437475642": 70,
+ "1437475643": 69,
+ "1437475644": 69,
+ "1437475645": 69,
+ "1437475646": 71,
+ "1437475647": 70,
+ "1437475648": 70,
+ "1437475649": 70,
+ "1437475650": 69,
+ "1437475651": 69,
+ "1437475652": 69,
+ "1437475653": 69,
+ "1437475654": 70,
+ "1437475655": 70,
+ "1437475656": 70,
+ "1437475657": 70,
+ "1437475658": 70,
+ "1437475659": 70,
+ "1437475660": 71,
+ "1437475662": 71,
+ "1437475663": 70,
+ "1437475664": 70,
+ "1437475665": 70,
+ "1437475666": 70,
+ "1437475667": 70,
+ "1437475668": 70,
+ "1437475669": 70,
+ "1437475670": 70,
+ "1437475671": 70,
+ "1437475672": 69,
+ "1437475673": 69,
+ "1437475674": 70,
+ "1437475675": 70,
+ "1437475676": 70,
+ "1437475677": 70,
+ "1437475678": 69,
+ "1437475679": 69,
+ "1437475680": 69,
+ "1437475681": 71,
+ "1437475682": 71,
+ "1437475683": 71,
+ "1437475684": 73,
+ "1437475685": 73,
+ "1437475686": 73,
+ "1437475687": 73,
+ "1437475688": 74,
+ "1437475689": 73,
+ "1437475690": 73,
+ "1437475691": 73,
+ "1437475693": 73,
+ "1437475694": 74,
+ "1437475695": 73,
+ "1437475696": 73,
+ "1437475697": 73,
+ "1437475698": 74,
+ "1437475699": 73,
+ "1437475700": 73,
+ "1437475701": 74,
+ "1437475702": 74,
+ "1437475703": 74,
+ "1437475704": 75,
+ "1437475705": 75,
+ "1437475706": 75,
+ "1437475707": 73,
+ "1437475708": 73,
+ "1437475709": 75,
+ "1437475710": 74,
+ "1437475711": 73,
+ "1437475712": 74,
+ "1437475713": 74,
+ "1437475714": 75,
+ "1437475715": 76,
+ "1437475716": 78,
+ "1437475717": 80,
+ "1437475718": 81,
+ "1437475719": 81,
+ "1437475720": 81,
+ "1437475721": 82,
+ "1437475722": 82,
+ "1437475724": 82,
+ "1437475725": 81,
+ "1437475726": 80,
+ "1437475727": 82,
+ "1437475728": 84,
+ "1437475729": 85,
+ "1437475730": 84,
+ "1437475731": 84,
+ "1437475732": 84,
+ "1437475733": 83,
+ "1437475734": 83,
+ "1437475735": 83,
+ "1437475736": 83,
+ "1437475737": 83,
+ "1437475738": 83,
+ "1437475739": 84,
+ "1437475740": 84,
+ "1437475741": 84,
+ "1437475742": 83,
+ "1437475743": 83,
+ "1437475744": 82,
+ "1437475745": 83,
+ "1437475746": 82,
+ "1437475747": 82,
+ "1437475748": 82,
+ "1437475749": 82,
+ "1437475750": 82,
+ "1437475751": 81,
+ "1437475752": 81,
+ "1437475753": 82,
+ "1437475754": 82,
+ "1437475755": 82,
+ "1437475756": 83,
+ "1437475758": 84,
+ "1437475759": 84,
+ "1437475760": 83,
+ "1437475761": 83,
+ "1437475762": 83,
+ "1437475763": 82,
+ "1437475764": 82,
+ "1437475765": 84,
+ "1437475766": 84,
+ "1437475767": 83,
+ "1437475768": 84,
+ "1437475769": 84,
+ "1437475770": 84,
+ "1437475771": 82,
+ "1437475772": 83,
+ "1437475773": 84,
+ "1437475774": 82,
+ "1437475775": 82,
+ "1437475776": 81,
+ "1437475777": 82,
+ "1437475778": 82,
+ "1437475779": 82,
+ "1437475780": 82,
+ "1437475781": 83,
+ "1437475782": 83,
+ "1437475783": 83,
+ "1437475784": 82,
+ "1437475785": 82,
+ "1437475786": 82,
+ "1437475787": 82,
+ "1437475788": 82,
+ "1437475789": 82,
+ "1437475791": 81,
+ "1437475792": 81,
+ "1437475793": 80,
+ "1437475794": 80,
+ "1437475795": 81,
+ "1437475796": 82,
+ "1437475797": 81,
+ "1437475798": 81,
+ "1437475799": 81,
+ "1437475800": 81,
+ "1437475801": 82,
+ "1437475802": 81,
+ "1437475803": 80,
+ "1437475804": 81,
+ "1437475805": 81,
+ "1437475806": 81,
+ "1437475807": 82,
+ "1437475808": 82,
+ "1437475809": 81,
+ "1437475810": 81,
+ "1437475811": 81,
+ "1437475812": 81,
+ "1437475813": 81,
+ "1437475814": 81,
+ "1437475815": 81,
+ "1437475816": 81,
+ "1437475817": 81,
+ "1437475818": 80,
+ "1437475819": 79,
+ "1437475821": 79,
+ "1437475822": 79,
+ "1437475823": 79,
+ "1437475824": 79,
+ "1437475825": 79,
+ "1437475826": 79,
+ "1437475827": 78,
+ "1437475828": 77,
+ "1437475829": 77,
+ "1437475830": 77,
+ "1437475831": 76,
+ "1437475832": 77,
+ "1437475833": 77,
+ "1437475834": 78,
+ "1437475835": 77,
+ "1437475836": 78,
+ "1437475837": 78,
+ "1437475838": 78,
+ "1437475839": 77,
+ "1437475840": 77,
+ "1437475841": 78,
+ "1437475842": 77,
+ "1437475843": 77,
+ "1437475844": 77,
+ "1437475845": 77,
+ "1437475846": 76,
+ "1437475847": 77,
+ "1437475848": 78,
+ "1437475849": 78,
+ "1437475850": 78,
+ "1437475852": 78,
+ "1437475853": 78,
+ "1437475854": 78,
+ "1437475855": 78,
+ "1437475856": 77,
+ "1437475857": 78,
+ "1437475858": 79,
+ "1437475859": 79,
+ "1437475860": 79,
+ "1437475861": 78,
+ "1437475862": 78,
+ "1437475863": 78,
+ "1437475864": 78,
+ "1437475865": 78,
+ "1437475866": 78,
+ "1437475867": 78,
+ "1437475868": 78,
+ "1437475869": 77,
+ "1437475870": 78,
+ "1437475871": 78,
+ "1437475872": 78,
+ "1437475873": 78,
+ "1437475874": 77,
+ "1437475875": 78,
+ "1437475876": 78,
+ "1437475878": 79,
+ "1437475879": 79,
+ "1437475880": 78,
+ "1437475881": 78,
+ "1437475882": 77,
+ "1437475883": 77,
+ "1437475884": 78,
+ "1437475885": 78,
+ "1437475886": 79,
+ "1437475887": 79,
+ "1437475888": 79,
+ "1437475889": 79,
+ "1437475890": 79,
+ "1437475891": 79,
+ "1437475892": 80,
+ "1437475893": 80,
+ "1437475894": 81,
+ "1437475895": 81,
+ "1437475896": 82,
+ "1437475897": 82,
+ "1437475898": 82,
+ "1437475899": 82,
+ "1437475900": 81,
+ "1437475901": 83,
+ "1437475902": 83,
+ "1437475903": 83,
+ "1437475905": 82,
+ "1437475906": 82,
+ "1437475907": 83,
+ "1437475908": 82,
+ "1437475909": 82,
+ "1437475910": 83,
+ "1437475911": 83,
+ "1437475912": 83,
+ "1437475913": 82,
+ "1437475914": 83,
+ "1437475915": 84,
+ "1437475916": 84,
+ "1437475917": 84,
+ "1437475918": 84,
+ "1437475919": 82,
+ "1437475920": 83,
+ "1437475921": 81,
+ "1437475922": 79,
+ "1437475923": 84,
+ "1437475924": 86,
+ "1437475925": 86,
+ "1437475926": 85,
+ "1437475927": 85,
+ "1437475928": 85,
+ "1437475929": 85,
+ "1437475930": 84,
+ "1437475931": 83,
+ "1437475932": 83,
+ "1437475933": 83,
+ "1437475934": 83,
+ "1437475935": 83,
+ "1437475936": 83,
+ "1437475938": 83,
+ "1437475939": 83,
+ "1437475940": 82,
+ "1437475941": 82,
+ "1437475942": 83,
+ "1437475943": 83,
+ "1437475944": 81,
+ "1437475945": 81,
+ "1437475946": 80,
+ "1437475947": 82,
+ "1437475948": 82,
+ "1437475949": 80,
+ "1437475950": 80,
+ "1437475951": 80,
+ "1437475952": 79,
+ "1437475953": 79,
+ "1437475954": 79,
+ "1437475955": 79,
+ "1437475956": 78,
+ "1437475957": 79,
+ "1437475958": 80,
+ "1437475959": 78,
+ "1437475960": 77,
+ "1437475961": 75,
+ "1437475962": 75,
+ "1437475963": 76,
+ "1437475964": 75,
+ "1437475965": 75,
+ "1437475967": 75,
+ "1437475968": 75,
+ "1437475969": 0,
+ "1437475970": 44,
+ "1437475971": 59,
+ "1437475972": 67,
+ "1437475973": 71,
+ "1437475974": 76,
+ "1437475975": 76,
+ "1437475976": 76,
+ "1437475977": 75,
+ "1437475978": 76,
+ "1437475979": 76,
+ "1437475980": 76,
+ "1437475981": 76,
+ "1437475982": 76,
+ "1437475983": 77,
+ "1437475984": 76,
+ "1437475985": 76,
+ "1437475986": 76,
+ "1437475987": 77,
+ "1437475988": 79,
+ "1437475989": 80,
+ "1437475990": 79,
+ "1437475991": 79,
+ "1437475992": 79,
+ "1437475993": 80,
+ "1437475994": 80,
+ "1437475995": 80,
+ "1437475997": 79,
+ "1437475998": 78,
+ "1437475999": 77,
+ "1437476000": 77,
+ "1437476001": 79,
+ "1437476002": 78,
+ "1437476003": 79,
+ "1437476004": 79,
+ "1437476005": 77,
+ "1437476006": 77,
+ "1437476007": 78,
+ "1437476008": 78,
+ "1437476009": 77,
+ "1437476010": 77,
+ "1437476011": 78,
+ "1437476012": 77,
+ "1437476013": 77,
+ "1437476014": 77,
+ "1437476015": 76,
+ "1437476016": 76,
+ "1437476017": 76,
+ "1437476019": 76,
+ "1437476020": 76,
+ "1437476021": 75,
+ "1437476022": 77,
+ "1437476023": 77,
+ "1437476024": 75,
+ "1437476025": 75,
+ "1437476026": 75,
+ "1437476027": 75,
+ "1437476028": 75,
+ "1437476029": 76,
+ "1437476030": 76,
+ "1437476031": 76,
+ "1437476032": 76,
+ "1437476033": 76,
+ "1437476034": 76,
+ "1437476035": 76,
+ "1437476036": 76,
+ "1437476037": 76,
+ "1437476038": 76,
+ "1437476039": 76,
+ "1437476040": 76,
+ "1437476041": 76,
+ "1437476042": 76,
+ "1437476043": 77,
+ "1437476044": 77,
+ "1437476045": 78,
+ "1437476047": 77,
+ "1437476048": 77,
+ "1437476049": 77,
+ "1437476050": 76,
+ "1437476051": 76,
+ "1437476052": 76,
+ "1437476053": 77,
+ "1437476054": 76,
+ "1437476055": 76,
+ "1437476056": 75,
+ "1437476057": 75,
+ "1437476058": 75,
+ "1437476059": 76,
+ "1437476060": 76,
+ "1437476061": 75,
+ "1437476062": 76,
+ "1437476063": 75,
+ "1437476064": 75,
+ "1437476065": 74,
+ "1437476066": 74,
+ "1437476067": 74,
+ "1437476068": 74,
+ "1437476069": 74,
+ "1437476070": 73,
+ "1437476071": 73,
+ "1437476072": 74,
+ "1437476073": 74,
+ "1437476074": 74,
+ "1437476075": 75,
+ "1437476076": 74,
+ "1437476077": 73,
+ "1437476079": 72,
+ "1437476080": 72,
+ "1437476081": 74,
+ "1437476082": 75,
+ "1437476083": 76,
+ "1437476084": 76,
+ "1437476085": 76,
+ "1437476086": 76,
+ "1437476087": 75,
+ "1437476088": 73,
+ "1437476089": 73,
+ "1437476090": 74,
+ "1437476091": 73,
+ "1437476092": 76,
+ "1437476093": 77,
+ "1437476094": 77,
+ "1437476095": 77,
+ "1437476096": 77,
+ "1437476097": 76,
+ "1437476098": 76,
+ "1437476099": 76,
+ "1437476100": 77,
+ "1437476101": 75,
+ "1437476102": 76,
+ "1437476103": 76,
+ "1437476104": 77,
+ "1437476105": 78,
+ "1437476106": 77,
+ "1437476107": 76,
+ "1437476108": 75,
+ "1437476109": 75,
+ "1437476110": 77,
+ "1437476112": 77,
+ "1437476113": 76,
+ "1437476114": 75,
+ "1437476115": 77,
+ "1437476116": 78,
+ "1437476117": 76,
+ "1437476118": 74,
+ "1437476119": 74,
+ "1437476120": 75,
+ "1437476121": 75,
+ "1437476122": 74,
+ "1437476123": 73,
+ "1437476124": 72,
+ "1437476125": 72,
+ "1437476126": 70,
+ "1437476127": 71,
+ "1437476128": 70,
+ "1437476129": 69,
+ "1437476130": 70,
+ "1437476131": 71,
+ "1437476132": 70,
+ "1437476133": 70,
+ "1437476134": 72,
+ "1437476135": 72,
+ "1437476136": 71,
+ "1437476137": 72,
+ "1437476138": 72,
+ "1437476139": 71,
+ "1437476140": 71,
+ "1437476141": 71,
+ "1437476142": 72,
+ "1437476143": 72,
+ "1437476144": 73,
+ "1437476146": 73,
+ "1437476147": 72,
+ "1437476148": 72,
+ "1437476149": 72,
+ "1437476150": 71,
+ "1437476151": 70,
+ "1437476152": 70,
+ "1437476153": 70,
+ "1437476154": 69,
+ "1437476155": 70,
+ "1437476156": 71,
+ "1437476157": 72,
+ "1437476158": 72,
+ "1437476159": 72,
+ "1437476160": 73,
+ "1437476161": 73,
+ "1437476162": 73,
+ "1437476163": 73,
+ "1437476164": 72,
+ "1437476165": 73,
+ "1437476166": 72,
+ "1437476167": 72,
+ "1437476168": 72,
+ "1437476169": 71,
+ "1437476170": 72,
+ "1437476171": 72,
+ "1437476172": 72,
+ "1437476173": 72,
+ "1437476174": 70,
+ "1437476175": 69,
+ "1437476176": 70,
+ "1437476177": 70,
+ "1437476179": 71,
+ "1437476180": 71,
+ "1437476181": 70,
+ "1437476182": 70,
+ "1437476183": 70,
+ "1437476184": 70,
+ "1437476185": 69,
+ "1437476186": 70,
+ "1437476187": 71,
+ "1437476188": 71,
+ "1437476189": 71,
+ "1437476190": 74,
+ "1437476191": 77,
+ "1437476192": 77,
+ "1437476193": 78,
+ "1437476194": 79,
+ "1437476195": 79,
+ "1437476196": 80,
+ "1437476197": 79,
+ "1437476198": 79,
+ "1437476199": 77,
+ "1437476200": 76,
+ "1437476201": 75,
+ "1437476202": 75,
+ "1437476203": 76,
+ "1437476204": 76,
+ "1437476205": 76,
+ "1437476206": 76,
+ "1437476207": 75,
+ "1437476208": 75,
+ "1437476209": 75,
+ "1437476211": 75,
+ "1437476212": 75,
+ "1437476213": 75,
+ "1437476214": 75,
+ "1437476215": 76,
+ "1437476216": 76,
+ "1437476217": 76,
+ "1437476218": 76,
+ "1437476219": 75,
+ "1437476220": 76,
+ "1437476221": 77,
+ "1437476222": 76,
+ "1437476223": 76,
+ "1437476224": 76,
+ "1437476225": 76,
+ "1437476226": 75,
+ "1437476227": 76,
+ "1437476228": 75,
+ "1437476229": 75,
+ "1437476230": 75,
+ "1437476231": 75,
+ "1437476232": 74,
+ "1437476233": 74,
+ "1437476234": 74,
+ "1437476235": 74,
+ "1437476236": 74,
+ "1437476237": 75,
+ "1437476238": 74,
+ "1437476239": 74,
+ "1437476240": 74,
+ "1437476241": 72,
+ "1437476242": 70,
+ "1437476243": 67,
+ "1437476244": 68,
+ "1437476245": 66,
+ "1437476246": 64,
+ "1437476248": 63,
+ "1437476249": 62,
+ "1437476250": 60,
+ "1437476251": 59,
+ "1437476252": 59,
+ "1437476253": 59,
+ "1437476254": 59,
+ "1437476255": 59,
+ "1437476256": 60,
+ "1437476257": 60,
+ "1437476258": 60,
+ "1437476259": 61,
+ "1437476260": 61,
+ "1437476261": 61,
+ "1437476262": 61,
+ "1437476263": 61,
+ "1437476264": 63,
+ "1437476265": 63,
+ "1437476266": 63,
+ "1437476267": 62,
+ "1437476268": 61,
+ "1437476269": 62,
+ "1437476270": 61,
+ "1437476271": 61,
+ "1437476272": 60,
+ "1437476274": 60,
+ "1437476275": 60,
+ "1437476276": 58,
+ "1437476277": 54,
+ "1437476278": 49,
+ "1437476279": 49,
+ "1437476280": 45,
+ "1437476281": 42,
+ "1437476282": 42,
+ "1437476283": 40,
+ "1437476284": 40,
+ "1437476285": 40,
+ "1437476286": 40,
+ "1437476287": 40,
+ "1437476288": 40,
+ "1437476289": 39,
+ "1437476290": 39,
+ "1437476291": 40,
+ "1437476292": 40,
+ "1437476293": 40,
+ "1437476295": 39,
+ "1437476296": 39,
+ "1437476297": 39,
+ "1437476298": 39,
+ "1437476299": 39,
+ "1437476300": 39,
+ "1437476301": 39,
+ "1437476302": 39,
+ "1437476303": 18,
+ "1437476304": 27,
+ "1437476305": 27,
+ "1437476306": 27,
+ "1437476307": 27,
+ "1437476308": 0,
+ "1437476309": 0,
+ "1437476310": 0,
+ "1437476311": 0,
+ "1437476312": 12,
+ "1437476313": 12,
+ "1437476314": 12,
+ "1437476315": 0,
+ "1437476316": 12,
+ "1437476317": 12,
+ "1437476318": 12,
+ "1437476319": 0,
+ "1437476320": 13,
+ "1437476321": 13,
+ "1437476323": 13,
+ "1437476324": 0,
+ "1437476325": 0,
+ "1437476326": 0,
+ "1437476327": 12,
+ "1437476328": 12,
+ "1437476329": 12,
+ "1437476330": 0,
+ "1437476331": 11,
+ "1437476332": 11,
+ "1437476333": 11,
+ "1437476334": 0,
+ "1437476335": 0,
+ "1437476338": 22,
+ "1437476339": 22,
+ "1437476340": 22,
+ "1437476341": 27,
+ "1437476342": 31,
+ "1437476343": 31,
+ "1437476344": 35,
+ "1437476345": 38,
+ "1437476346": 38,
+ "1437476347": 37,
+ "1437476348": 35,
+ "1437476349": 35,
+ "1437476350": 34,
+ "1437476351": 34,
+ "1437476352": 36,
+ "1437476353": 36,
+ "1437476354": 36,
+ "1437476355": 37,
+ "1437476356": 39,
+ "1437476357": 40,
+ "1437476358": 40,
+ "1437476360": 38,
+ "1437476361": 38,
+ "1437476362": 36,
+ "1437476363": 36,
+ "1437476364": 36,
+ "1437476365": 35,
+ "1437476366": 35,
+ "1437476367": 35,
+ "1437476368": 35,
+ "1437476369": 35,
+ "1437476370": 36,
+ "1437476371": 36,
+ "1437476372": 34,
+ "1437476373": 34,
+ "1437476374": 34,
+ "1437476375": 37,
+ "1437476376": 37,
+ "1437476377": 37,
+ "1437476378": 35,
+ "1437476379": 35,
+ "1437476380": 35,
+ "1437476381": 35,
+ "1437476382": 35,
+ "1437476383": 34,
+ "1437476384": 37,
+ "1437476385": 37,
+ "1437476386": 40,
+ "1437476387": 41,
+ "1437476389": 43,
+ "1437476390": 43,
+ "1437476391": 45,
+ "1437476392": 48,
+ "1437476393": 52,
+ "1437476394": 55,
+ "1437476395": 55,
+ "1437476396": 61,
+ "1437476397": 59,
+ "1437476398": 60,
+ "1437476399": 60,
+ "1437476400": 60,
+ "1437476401": 59,
+ "1437476402": 58,
+ "1437476403": 58,
+ "1437476404": 58,
+ "1437476405": 59,
+ "1437476406": 60,
+ "1437476407": 60,
+ "1437476408": 60,
+ "1437476410": 60,
+ "1437476411": 61,
+ "1437476412": 60,
+ "1437476413": 59,
+ "1437476414": 59,
+ "1437476415": 62,
+ "1437476416": 62,
+ "1437476417": 62,
+ "1437476418": 60,
+ "1437476419": 60,
+ "1437476420": 59,
+ "1437476421": 59,
+ "1437476422": 58,
+ "1437476423": 58,
+ "1437476424": 58,
+ "1437476425": 58,
+ "1437476426": 59,
+ "1437476427": 59,
+ "1437476428": 59,
+ "1437476429": 59,
+ "1437476430": 59,
+ "1437476431": 59,
+ "1437476432": 58,
+ "1437476433": 58,
+ "1437476434": 58,
+ "1437476435": 58,
+ "1437476436": 57,
+ "1437476437": 57,
+ "1437476438": 56,
+ "1437476439": 57,
+ "1437476441": 59,
+ "1437476442": 61,
+ "1437476443": 63,
+ "1437476444": 64,
+ "1437476445": 77,
+ "1437476446": 85,
+ "1437476447": 86,
+ "1437476448": 85,
+ "1437476449": 87,
+ "1437476450": 86,
+ "1437476451": 82,
+ "1437476452": 81,
+ "1437476453": 81,
+ "1437476454": 80,
+ "1437476455": 78,
+ "1437476456": 76,
+ "1437476457": 76,
+ "1437476458": 76,
+ "1437476459": 76,
+ "1437476460": 76,
+ "1437476461": 76,
+ "1437476462": 78,
+ "1437476463": 79,
+ "1437476464": 82,
+ "1437476465": 84,
+ "1437476467": 84,
+ "1437476468": 86,
+ "1437476469": 88,
+ "1437476470": 90,
+ "1437476471": 88,
+ "1437476472": 88,
+ "1437476473": 91,
+ "1437476474": 92,
+ "1437476475": 91,
+ "1437476476": 91,
+ "1437476477": 90,
+ "1437476478": 87,
+ "1437476479": 85,
+ "1437476480": 84,
+ "1437476481": 83,
+ "1437476482": 84,
+ "1437476483": 87,
+ "1437476484": 87,
+ "1437476485": 87,
+ "1437476486": 89,
+ "1437476487": 90,
+ "1437476488": 88,
+ "1437476490": 88,
+ "1437476491": 90,
+ "1437476492": 89,
+ "1437476493": 88,
+ "1437476494": 89,
+ "1437476495": 87,
+ "1437476496": 88,
+ "1437476497": 89,
+ "1437476498": 91,
+ "1437476499": 91,
+ "1437476500": 93,
+ "1437476501": 94,
+ "1437476502": 92,
+ "1437476503": 90,
+ "1437476504": 92,
+ "1437476505": 92,
+ "1437476506": 91,
+ "1437476507": 91,
+ "1437476508": 91,
+ "1437476509": 91,
+ "1437476510": 91,
+ "1437476511": 89,
+ "1437476512": 89,
+ "1437476513": 87,
+ "1437476514": 87,
+ "1437476515": 87,
+ "1437476516": 89,
+ "1437476517": 94,
+ "1437476518": 94,
+ "1437476519": 94,
+ "1437476521": 93,
+ "1437476522": 92,
+ "1437476523": 89,
+ "1437476524": 91,
+ "1437476525": 93,
+ "1437476526": 95,
+ "1437476527": 95,
+ "1437476528": 95,
+ "1437476529": 96,
+ "1437476530": 96,
+ "1437476531": 94,
+ "1437476532": 94,
+ "1437476533": 94,
+ "1437476534": 95,
+ "1437476535": 95,
+ "1437476536": 94,
+ "1437476537": 95,
+ "1437476538": 96,
+ "1437476539": 97,
+ "1437476540": 96,
+ "1437476541": 96,
+ "1437476542": 95,
+ "1437476543": 95,
+ "1437476544": 87,
+ "1437476545": 83,
+ "1437476547": 80,
+ "1437476548": 79,
+ "1437476549": 78,
+ "1437476550": 78,
+ "1437476551": 78,
+ "1437476552": 77,
+ "1437476553": 77,
+ "1437476554": 77,
+ "1437476555": 76,
+ "1437476556": 75,
+ "1437476557": 74,
+ "1437476558": 74,
+ "1437476559": 72,
+ "1437476560": 72,
+ "1437476561": 71,
+ "1437476562": 71,
+ "1437476563": 71,
+ "1437476564": 71,
+ "1437476565": 71,
+ "1437476566": 71,
+ "1437476567": 70,
+ "1437476568": 70,
+ "1437476569": 70,
+ "1437476570": 70,
+ "1437476571": 69,
+ "1437476572": 67,
+ "1437476573": 67,
+ "1437476574": 67,
+ "1437476576": 66,
+ "1437476577": 66,
+ "1437476578": 65,
+ "1437476579": 64,
+ "1437476580": 63,
+ "1437476581": 59,
+ "1437476582": 57,
+ "1437476583": 56,
+ "1437476584": 56,
+ "1437476585": 55,
+ "1437476586": 55,
+ "1437476587": 53,
+ "1437476588": 50,
+ "1437476589": 49,
+ "1437476590": 49,
+ "1437476591": 50,
+ "1437476592": 53,
+ "1437476593": 56,
+ "1437476594": 56,
+ "1437476595": 56,
+ "1437476596": 57,
+ "1437476597": 57,
+ "1437476598": 57,
+ "1437476599": 58,
+ "1437476601": 58,
+ "1437476602": 58,
+ "1437476603": 59,
+ "1437476604": 59,
+ "1437476605": 59,
+ "1437476606": 62,
+ "1437476607": 74,
+ "1437476608": 77,
+ "1437476609": 81,
+ "1437476610": 82,
+ "1437476611": 82,
+ "1437476612": 83,
+ "1437476613": 82,
+ "1437476614": 82,
+ "1437476615": 83,
+ "1437476616": 83,
+ "1437476617": 83,
+ "1437476618": 83,
+ "1437476619": 83,
+ "1437476620": 83,
+ "1437476621": 83,
+ "1437476622": 83,
+ "1437476623": 83,
+ "1437476624": 84,
+ "1437476625": 85,
+ "1437476627": 85,
+ "1437476628": 86,
+ "1437476629": 86,
+ "1437476630": 86,
+ "1437476631": 88,
+ "1437476632": 88,
+ "1437476633": 88,
+ "1437476634": 86,
+ "1437476635": 86,
+ "1437476636": 86,
+ "1437476637": 87,
+ "1437476638": 87,
+ "1437476639": 85,
+ "1437476640": 90,
+ "1437476641": 97,
+ "1437476642": 97,
+ "1437476643": 96,
+ "1437476644": 95,
+ "1437476645": 95,
+ "1437476646": 95,
+ "1437476647": 95,
+ "1437476648": 96,
+ "1437476649": 96,
+ "1437476650": 96,
+ "1437476651": 94,
+ "1437476652": 94,
+ "1437476653": 94,
+ "1437476654": 95,
+ "1437476655": 98,
+ "1437476656": 99,
+ "1437476658": 99,
+ "1437476659": 99,
+ "1437476660": 99,
+ "1437476661": 99,
+ "1437476662": 99,
+ "1437476663": 99,
+ "1437476664": 99,
+ "1437476665": 98,
+ "1437476666": 97,
+ "1437476667": 98,
+ "1437476668": 97,
+ "1437476669": 97,
+ "1437476670": 97,
+ "1437476671": 99,
+ "1437476672": 98,
+ "1437476673": 98,
+ "1437476674": 97,
+ "1437476675": 97,
+ "1437476676": 98,
+ "1437476677": 98,
+ "1437476678": 98,
+ "1437476679": 97,
+ "1437476680": 97,
+ "1437476681": 98,
+ "1437476682": 97,
+ "1437476683": 98,
+ "1437476684": 97,
+ "1437476685": 96,
+ "1437476686": 96,
+ "1437476687": 96,
+ "1437476688": 97,
+ "1437476689": 102,
+ "1437476690": 102,
+ "1437476691": 102,
+ "1437476692": 100,
+ "1437476694": 100,
+ "1437476695": 99,
+ "1437476696": 99,
+ "1437476697": 99,
+ "1437476698": 99,
+ "1437476699": 98,
+ "1437476700": 95,
+ "1437476701": 94,
+ "1437476702": 94,
+ "1437476703": 94,
+ "1437476704": 95,
+ "1437476705": 95,
+ "1437476706": 94,
+ "1437476707": 91,
+ "1437476708": 92,
+ "1437476709": 91,
+ "1437476710": 90,
+ "1437476711": 90,
+ "1437476712": 88,
+ "1437476713": 89,
+ "1437476714": 90,
+ "1437476715": 90,
+ "1437476716": 91,
+ "1437476717": 90,
+ "1437476718": 91,
+ "1437476719": 92,
+ "1437476720": 92,
+ "1437476721": 94,
+ "1437476723": 94,
+ "1437476724": 93,
+ "1437476725": 95,
+ "1437476726": 95,
+ "1437476727": 94,
+ "1437476728": 95,
+ "1437476729": 94,
+ "1437476730": 94,
+ "1437476731": 92,
+ "1437476732": 92,
+ "1437476733": 92,
+ "1437476734": 94,
+ "1437476735": 95,
+ "1437476736": 96,
+ "1437476737": 97,
+ "1437476738": 96,
+ "1437476739": 96,
+ "1437476740": 97,
+ "1437476741": 97,
+ "1437476742": 96,
+ "1437476743": 96,
+ "1437476744": 96,
+ "1437476745": 98,
+ "1437476746": 95,
+ "1437476747": 95,
+ "1437476748": 95,
+ "1437476749": 94,
+ "1437476750": 95,
+ "1437476751": 95,
+ "1437476752": 93,
+ "1437476753": 89,
+ "1437476755": 88,
+ "1437476756": 87,
+ "1437476757": 87,
+ "1437476758": 86,
+ "1437476759": 87,
+ "1437476760": 87,
+ "1437476761": 87,
+ "1437476762": 86,
+ "1437476763": 86,
+ "1437476764": 86,
+ "1437476765": 85,
+ "1437476766": 86,
+ "1437476767": 86,
+ "1437476768": 86,
+ "1437476769": 87,
+ "1437476770": 86,
+ "1437476771": 86,
+ "1437476772": 86,
+ "1437476773": 86,
+ "1437476774": 86,
+ "1437476775": 86,
+ "1437476776": 86,
+ "1437476777": 86,
+ "1437476778": 85,
+ "1437476779": 85,
+ "1437476780": 87,
+ "1437476781": 88,
+ "1437476782": 87,
+ "1437476783": 81,
+ "1437476784": 82,
+ "1437476785": 81,
+ "1437476786": 74,
+ "1437476787": 73,
+ "1437476788": 84,
+ "1437476789": 92,
+ "1437476791": 96,
+ "1437476792": 92,
+ "1437476793": 87,
+ "1437476794": 85,
+ "1437476795": 83,
+ "1437476796": 82,
+ "1437476797": 81,
+ "1437476798": 82,
+ "1437476799": 81,
+ "1437476800": 81,
+ "1437476801": 84,
+ "1437476802": 83,
+ "1437476803": 82,
+ "1437476804": 79,
+ "1437476805": 79,
+ "1437476806": 79,
+ "1437476807": 83,
+ "1437476808": 83,
+ "1437476809": 82,
+ "1437476810": 82,
+ "1437476811": 83,
+ "1437476812": 82,
+ "1437476813": 80,
+ "1437476814": 79,
+ "1437476815": 80,
+ "1437476816": 80,
+ "1437476817": 79,
+ "1437476818": 79,
+ "1437476819": 77,
+ "1437476820": 78,
+ "1437476821": 80,
+ "1437476822": 80,
+ "1437476824": 80,
+ "1437476825": 81,
+ "1437476826": 80,
+ "1437476827": 80,
+ "1437476828": 81,
+ "1437476829": 81,
+ "1437476830": 81,
+ "1437476831": 81,
+ "1437476832": 83,
+ "1437476833": 84,
+ "1437476834": 85,
+ "1437476835": 88,
+ "1437476836": 91,
+ "1437476837": 92,
+ "1437476838": 92,
+ "1437476839": 94,
+ "1437476840": 93,
+ "1437476841": 93,
+ "1437476842": 94,
+ "1437476843": 95,
+ "1437476844": 98,
+ "1437476845": 99,
+ "1437476846": 100,
+ "1437476847": 98,
+ "1437476848": 100,
+ "1437476849": 99,
+ "1437476850": 98,
+ "1437476851": 98,
+ "1437476852": 99,
+ "1437476854": 99,
+ "1437476855": 99,
+ "1437476856": 99,
+ "1437476857": 100,
+ "1437476858": 101,
+ "1437476859": 102,
+ "1437476860": 102,
+ "1437476861": 101,
+ "1437476862": 103,
+ "1437476863": 103,
+ "1437476864": 103,
+ "1437476865": 103,
+ "1437476866": 103,
+ "1437476867": 103,
+ "1437476868": 106,
+ "1437476869": 107,
+ "1437476870": 108,
+ "1437476871": 105,
+ "1437476872": 101,
+ "1437476873": 99,
+ "1437476874": 99,
+ "1437476875": 99,
+ "1437476876": 97,
+ "1437476877": 97,
+ "1437476878": 96,
+ "1437476879": 98,
+ "1437476880": 96,
+ "1437476881": 96,
+ "1437476882": 97,
+ "1437476883": 96,
+ "1437476884": 96,
+ "1437476886": 97,
+ "1437476887": 96,
+ "1437476888": 97,
+ "1437476889": 97,
+ "1437476890": 99,
+ "1437476891": 99,
+ "1437476892": 98,
+ "1437476893": 99,
+ "1437476894": 98,
+ "1437476895": 99,
+ "1437476896": 97,
+ "1437476897": 97,
+ "1437476898": 97,
+ "1437476899": 99,
+ "1437476900": 98,
+ "1437476901": 96,
+ "1437476902": 97,
+ "1437476903": 97,
+ "1437476904": 98,
+ "1437476905": 98,
+ "1437476906": 98,
+ "1437476907": 98,
+ "1437476908": 98,
+ "1437476910": 99,
+ "1437476911": 98,
+ "1437476912": 99,
+ "1437476913": 99,
+ "1437476914": 99,
+ "1437476915": 99,
+ "1437476916": 98,
+ "1437476917": 97,
+ "1437476918": 96,
+ "1437476919": 93,
+ "1437476920": 93,
+ "1437476921": 99,
+ "1437476922": 98,
+ "1437476923": 97,
+ "1437476924": 95,
+ "1437476925": 94,
+ "1437476926": 94,
+ "1437476927": 94,
+ "1437476928": 92,
+ "1437476929": 93,
+ "1437476930": 92,
+ "1437476931": 93,
+ "1437476932": 92,
+ "1437476933": 92,
+ "1437476934": 91,
+ "1437476935": 91,
+ "1437476936": 90,
+ "1437476938": 85,
+ "1437476939": 85,
+ "1437476940": 85,
+ "1437476941": 86,
+ "1437476942": 87,
+ "1437476943": 87,
+ "1437476944": 88,
+ "1437476945": 88,
+ "1437476946": 88,
+ "1437476947": 88,
+ "1437476948": 86,
+ "1437476949": 87,
+ "1437476950": 87,
+ "1437476951": 87,
+ "1437476952": 88,
+ "1437476953": 88,
+ "1437476954": 87,
+ "1437476955": 87,
+ "1437476956": 87,
+ "1437476957": 87,
+ "1437476958": 88,
+ "1437476959": 86,
+ "1437476960": 86,
+ "1437476961": 86,
+ "1437476962": 86,
+ "1437476963": 87,
+ "1437476964": 86,
+ "1437476965": 86,
+ "1437476966": 86,
+ "1437476967": 86,
+ "1437476969": 87,
+ "1437476970": 88,
+ "1437476971": 88,
+ "1437476972": 89,
+ "1437476973": 89,
+ "1437476974": 90,
+ "1437476975": 89,
+ "1437476976": 88,
+ "1437476977": 89,
+ "1437476978": 90,
+ "1437476979": 89,
+ "1437476980": 88,
+ "1437476981": 88,
+ "1437476982": 88,
+ "1437476983": 87,
+ "1437476984": 87,
+ "1437476985": 87,
+ "1437476986": 87,
+ "1437476987": 86,
+ "1437476988": 87,
+ "1437476989": 87,
+ "1437476990": 87,
+ "1437476991": 88,
+ "1437476992": 88,
+ "1437476993": 88,
+ "1437476994": 88,
+ "1437476996": 87,
+ "1437476997": 87,
+ "1437476998": 87,
+ "1437476999": 89,
+ "1437477000": 89,
+ "1437477001": 89,
+ "1437477002": 91,
+ "1437477003": 90,
+ "1437477004": 89,
+ "1437477005": 90,
+ "1437477006": 88,
+ "1437477007": 90,
+ "1437477008": 90,
+ "1437477009": 91,
+ "1437477010": 91,
+ "1437477011": 91,
+ "1437477012": 92,
+ "1437477013": 92,
+ "1437477014": 92,
+ "1437477015": 92,
+ "1437477016": 92,
+ "1437477017": 93,
+ "1437477018": 92,
+ "1437477019": 92,
+ "1437477020": 93,
+ "1437477022": 93,
+ "1437477023": 93,
+ "1437477024": 93,
+ "1437477025": 94,
+ "1437477026": 93,
+ "1437477027": 92,
+ "1437477028": 91,
+ "1437477029": 91,
+ "1437477030": 90,
+ "1437477031": 90,
+ "1437477032": 90,
+ "1437477033": 90,
+ "1437477034": 90,
+ "1437477035": 91,
+ "1437477036": 91,
+ "1437477037": 92,
+ "1437477038": 93,
+ "1437477039": 93,
+ "1437477040": 92,
+ "1437477041": 91,
+ "1437477042": 91,
+ "1437477043": 92,
+ "1437477044": 92,
+ "1437477045": 93,
+ "1437477046": 92,
+ "1437477047": 92,
+ "1437477048": 92,
+ "1437477050": 93,
+ "1437477051": 92,
+ "1437477052": 92,
+ "1437477053": 93,
+ "1437477054": 94,
+ "1437477055": 92,
+ "1437477056": 92,
+ "1437477057": 91,
+ "1437477058": 88,
+ "1437477059": 87,
+ "1437477060": 87,
+ "1437477061": 86,
+ "1437477062": 87,
+ "1437477063": 87,
+ "1437477064": 87,
+ "1437477065": 85,
+ "1437477066": 84,
+ "1437477067": 85,
+ "1437477068": 86,
+ "1437477069": 86,
+ "1437477070": 85,
+ "1437477071": 85,
+ "1437477072": 85,
+ "1437477073": 85,
+ "1437477075": 85,
+ "1437477076": 85,
+ "1437477077": 84,
+ "1437477078": 84,
+ "1437477079": 87,
+ "1437477080": 89,
+ "1437477081": 91,
+ "1437477082": 92,
+ "1437477083": 91,
+ "1437477084": 90,
+ "1437477085": 90,
+ "1437477086": 89,
+ "1437477087": 90,
+ "1437477088": 90,
+ "1437477089": 90,
+ "1437477090": 90,
+ "1437477091": 92,
+ "1437477092": 94,
+ "1437477093": 92,
+ "1437477094": 91,
+ "1437477095": 90,
+ "1437477096": 90,
+ "1437477097": 91,
+ "1437477098": 90,
+ "1437477099": 89,
+ "1437477100": 89,
+ "1437477101": 90,
+ "1437477102": 89,
+ "1437477103": 89,
+ "1437477104": 89,
+ "1437477105": 89,
+ "1437477106": 90,
+ "1437477107": 90,
+ "1437477109": 90,
+ "1437477110": 90,
+ "1437477111": 90,
+ "1437477112": 90,
+ "1437477113": 88,
+ "1437477114": 88,
+ "1437477115": 88,
+ "1437477116": 89,
+ "1437477117": 89,
+ "1437477118": 89,
+ "1437477119": 89,
+ "1437477120": 89,
+ "1437477121": 90,
+ "1437477122": 90,
+ "1437477123": 92,
+ "1437477124": 99,
+ "1437477125": 99,
+ "1437477126": 100,
+ "1437477127": 100,
+ "1437477128": 100,
+ "1437477129": 98,
+ "1437477130": 98,
+ "1437477131": 99,
+ "1437477132": 96,
+ "1437477133": 101,
+ "1437477134": 101,
+ "1437477135": 101,
+ "1437477136": 101,
+ "1437477137": 100,
+ "1437477138": 99,
+ "1437477139": 100,
+ "1437477140": 99,
+ "1437477141": 99,
+ "1437477143": 99,
+ "1437477144": 98,
+ "1437477145": 99,
+ "1437477146": 99,
+ "1437477147": 97,
+ "1437477148": 96,
+ "1437477149": 97,
+ "1437477150": 96,
+ "1437477151": 97,
+ "1437477152": 97,
+ "1437477153": 97,
+ "1437477154": 97,
+ "1437477155": 97,
+ "1437477156": 97,
+ "1437477157": 98,
+ "1437477158": 98,
+ "1437477159": 99,
+ "1437477160": 99,
+ "1437477161": 98,
+ "1437477162": 97,
+ "1437477163": 96,
+ "1437477164": 96,
+ "1437477165": 96,
+ "1437477166": 96,
+ "1437477167": 96,
+ "1437477168": 95,
+ "1437477169": 95,
+ "1437477170": 95,
+ "1437477171": 94,
+ "1437477172": 94,
+ "1437477173": 93,
+ "1437477174": 92,
+ "1437477175": 91,
+ "1437477176": 91,
+ "1437477178": 90,
+ "1437477179": 90,
+ "1437477180": 90,
+ "1437477181": 91,
+ "1437477182": 90,
+ "1437477183": 91,
+ "1437477184": 91,
+ "1437477185": 91,
+ "1437477186": 91,
+ "1437477187": 91,
+ "1437477188": 92,
+ "1437477189": 91,
+ "1437477190": 92,
+ "1437477191": 92,
+ "1437477192": 93,
+ "1437477193": 93,
+ "1437477194": 93,
+ "1437477195": 93,
+ "1437477196": 94,
+ "1437477197": 94,
+ "1437477198": 94,
+ "1437477199": 94,
+ "1437477200": 93,
+ "1437477201": 93,
+ "1437477202": 93,
+ "1437477203": 93,
+ "1437477204": 93,
+ "1437477205": 91,
+ "1437477206": 90,
+ "1437477207": 90,
+ "1437477208": 90,
+ "1437477209": 90,
+ "1437477210": 88,
+ "1437477211": 87,
+ "1437477212": 89,
+ "1437477213": 91,
+ "1437477215": 93,
+ "1437477216": 94,
+ "1437477217": 94,
+ "1437477218": 92,
+ "1437477219": 92,
+ "1437477220": 91,
+ "1437477221": 91,
+ "1437477222": 91,
+ "1437477223": 91,
+ "1437477224": 91,
+ "1437477225": 91,
+ "1437477226": 92,
+ "1437477227": 93,
+ "1437477228": 94,
+ "1437477229": 93,
+ "1437477230": 91,
+ "1437477231": 91,
+ "1437477232": 91,
+ "1437477233": 91,
+ "1437477234": 91,
+ "1437477235": 89,
+ "1437477236": 88,
+ "1437477237": 88,
+ "1437477238": 89,
+ "1437477239": 89,
+ "1437477240": 89,
+ "1437477241": 90,
+ "1437477242": 90,
+ "1437477243": 89,
+ "1437477244": 90,
+ "1437477245": 90,
+ "1437477247": 91,
+ "1437477248": 92,
+ "1437477249": 92,
+ "1437477250": 92,
+ "1437477251": 92,
+ "1437477252": 91,
+ "1437477253": 91,
+ "1437477254": 91,
+ "1437477255": 91,
+ "1437477256": 91,
+ "1437477257": 91,
+ "1437477258": 93,
+ "1437477259": 94,
+ "1437477260": 95,
+ "1437477261": 95,
+ "1437477262": 95,
+ "1437477263": 95,
+ "1437477264": 94,
+ "1437477265": 94,
+ "1437477266": 94,
+ "1437477267": 94,
+ "1437477268": 94,
+ "1437477270": 94,
+ "1437477271": 94,
+ "1437477272": 94,
+ "1437477273": 94,
+ "1437477274": 94,
+ "1437477275": 94,
+ "1437477276": 95,
+ "1437477277": 96,
+ "1437477278": 93,
+ "1437477279": 94,
+ "1437477280": 93,
+ "1437477281": 93,
+ "1437477282": 99,
+ "1437477283": 107,
+ "1437477284": 108,
+ "1437477285": 107,
+ "1437477286": 103,
+ "1437477287": 97,
+ "1437477288": 95,
+ "1437477289": 96,
+ "1437477290": 95,
+ "1437477291": 95,
+ "1437477292": 94,
+ "1437477294": 92,
+ "1437477295": 91,
+ "1437477296": 89,
+ "1437477297": 89,
+ "1437477298": 88,
+ "1437477299": 87,
+ "1437477300": 87,
+ "1437477301": 87,
+ "1437477302": 88,
+ "1437477303": 88,
+ "1437477304": 88,
+ "1437477305": 89,
+ "1437477306": 91,
+ "1437477307": 91,
+ "1437477308": 92,
+ "1437477309": 92,
+ "1437477310": 92,
+ "1437477311": 94,
+ "1437477312": 94,
+ "1437477313": 94,
+ "1437477314": 96,
+ "1437477315": 99,
+ "1437477316": 98,
+ "1437477317": 100,
+ "1437477318": 99,
+ "1437477319": 98,
+ "1437477321": 99,
+ "1437477322": 100,
+ "1437477323": 99,
+ "1437477324": 99,
+ "1437477325": 100,
+ "1437477326": 100,
+ "1437477327": 97,
+ "1437477328": 98,
+ "1437477329": 99,
+ "1437477330": 104,
+ "1437477331": 104,
+ "1437477332": 99,
+ "1437477333": 98,
+ "1437477334": 99,
+ "1437477335": 101,
+ "1437477336": 102,
+ "1437477337": 99,
+ "1437477338": 98,
+ "1437477339": 96,
+ "1437477340": 96,
+ "1437477341": 96,
+ "1437477342": 0,
+ "1437477343": 14,
+ "1437477345": 14,
+ "1437477346": 14,
+ "1437477347": 0,
+ "1437477348": 0,
+ "1437477349": 0,
+ "1437477350": 0,
+ "1437477351": 0,
+ "1437477352": 0,
+ "1437477353": 0,
+ "1437477354": 0,
+ "1437477355": 0,
+ "1437477356": 0,
+ "1437477376": 56,
+ "1437477377": 59,
+ "1437477378": 61,
+ "1437477379": 59,
+ "1437477380": 59,
+ "1437477381": 59,
+ "1437477383": 0,
+ "1437477384": 0,
+ "1437477385": 0,
+ "1437477386": 0,
+ "1437477387": 0,
+ "1437477388": 0,
+ "1437477392": 22,
+ "1437477393": 22,
+ "1437477394": 22,
+ "1437477395": 22,
+ "1437477397": 22,
+ "1437477398": 22,
+ "1437477399": 23,
+ "1437477400": 23,
+ "1437477401": 23,
+ "1437477402": 23,
+ "1437477403": 23,
+ "1437477404": 0,
+ "1437477405": 0,
+ "1437477406": 0,
+ "1437477407": 0,
+ "1437477408": 0,
+ "1437477411": 25,
+ "1437477412": 25,
+ "1437477413": 25,
+ "1437477414": 26,
+ "1437477415": 26,
+ "1437477417": 27,
+ "1437477418": 27,
+ "1437477419": 26,
+ "1437477420": 26,
+ "1437477421": 26,
+ "1437477422": 0,
+ "1437477423": 0,
+ "1437477428": 31,
+ "1437477429": 31,
+ "1437477430": 32,
+ "1437477432": 32,
+ "1437477433": 32,
+ "1437477434": 32,
+ "1437477435": 31,
+ "1437477436": 31,
+ "1437477437": 30,
+ "1437477438": 32,
+ "1437477439": 32,
+ "1437477440": 32,
+ "1437477441": 32,
+ "1437477442": 31,
+ "1437477443": 31,
+ "1437477444": 31,
+ "1437477445": 30,
+ "1437477446": 31,
+ "1437477447": 31,
+ "1437477448": 31,
+ "1437477449": 31,
+ "1437477450": 30,
+ "1437477451": 30,
+ "1437477452": 30,
+ "1437477453": 30,
+ "1437477454": 30,
+ "1437477455": 30,
+ "1437477456": 30,
+ "1437477457": 0,
+ "1437477458": 0,
+ "1437477459": 0,
+ "1437477461": 0,
+ "1437477465": 32,
+ "1437477466": 32,
+ "1437477467": 32,
+ "1437477468": 32,
+ "1437477469": 30,
+ "1437477470": 30,
+ "1437477471": 30,
+ "1437477472": 29,
+ "1437477473": 29,
+ "1437477474": 28,
+ "1437477475": 28,
+ "1437477476": 28,
+ "1437477477": 28,
+ "1437477478": 27,
+ "1437477479": 27,
+ "1437477480": 28,
+ "1437477481": 28,
+ "1437477482": 28,
+ "1437477483": 28,
+ "1437477484": 28,
+ "1437477485": 28,
+ "1437477486": 30,
+ "1437477487": 30,
+ "1437477488": 30,
+ "1437477489": 30,
+ "1437477490": 30,
+ "1437477491": 30,
+ "1437477492": 30,
+ "1437477493": 32,
+ "1437477494": 32,
+ "1437477495": 33,
+ "1437477496": 33,
+ "1437477497": 34,
+ "1437477498": 33,
+ "1437477500": 33,
+ "1437477501": 33,
+ "1437477502": 33,
+ "1437477503": 33,
+ "1437477504": 33,
+ "1437477505": 33,
+ "1437477506": 33,
+ "1437477507": 33,
+ "1437477508": 33,
+ "1437477509": 29,
+ "1437477510": 29,
+ "1437477511": 27,
+ "1437477512": 27,
+ "1437477513": 26,
+ "1437477514": 26,
+ "1437477515": 25,
+ "1437477516": 25,
+ "1437477517": 25,
+ "1437477518": 25,
+ "1437477519": 25,
+ "1437477520": 25,
+ "1437477521": 25,
+ "1437477522": 25,
+ "1437477523": 25,
+ "1437477524": 26,
+ "1437477525": 26,
+ "1437477526": 26,
+ "1437477527": 26,
+ "1437477528": 26,
+ "1437477529": 26,
+ "1437477530": 26,
+ "1437477532": 26,
+ "1437477533": 26,
+ "1437477534": 26,
+ "1437477535": 26,
+ "1437477536": 25,
+ "1437477537": 25,
+ "1437477538": 25,
+ "1437477539": 25,
+ "1437477540": 25,
+ "1437477541": 25,
+ "1437477542": 25,
+ "1437477543": 25,
+ "1437477544": 25,
+ "1437477545": 25,
+ "1437477546": 25,
+ "1437477547": 26,
+ "1437477548": 26,
+ "1437477549": 26,
+ "1437477550": 25,
+ "1437477551": 25,
+ "1437477552": 25,
+ "1437477553": 25,
+ "1437477555": 26,
+ "1437477556": 26,
+ "1437477557": 26,
+ "1437477558": 25,
+ "1437477559": 25,
+ "1437477560": 25,
+ "1437477561": 25,
+ "1437477562": 25,
+ "1437477563": 25,
+ "1437477564": 24,
+ "1437477565": 24,
+ "1437477566": 24,
+ "1437477567": 24,
+ "1437477568": 24,
+ "1437477569": 25,
+ "1437477570": 25,
+ "1437477571": 26,
+ "1437477572": 26,
+ "1437477573": 25,
+ "1437477574": 25,
+ "1437477575": 25,
+ "1437477576": 0,
+ "1437477577": 26,
+ "1437477578": 26,
+ "1437477580": 29,
+ "1437477581": 29,
+ "1437477582": 32,
+ "1437477583": 35,
+ "1437477584": 35,
+ "1437477585": 38,
+ "1437477586": 39,
+ "1437477587": 39,
+ "1437477588": 41,
+ "1437477589": 41,
+ "1437477590": 41,
+ "1437477591": 41,
+ "1437477592": 41,
+ "1437477593": 40,
+ "1437477594": 40,
+ "1437477595": 40,
+ "1437477596": 40,
+ "1437477597": 40,
+ "1437477598": 40,
+ "1437477599": 37,
+ "1437477600": 37,
+ "1437477601": 37,
+ "1437477604": 14,
+ "1437477605": 14,
+ "1437477607": 32,
+ "1437477608": 39,
+ "1437477609": 43,
+ "1437477610": 47,
+ "1437477611": 49,
+ "1437477612": 49,
+ "1437477613": 49,
+ "1437477614": 50,
+ "1437477615": 52,
+ "1437477616": 52,
+ "1437477617": 51,
+ "1437477618": 49,
+ "1437477619": 48,
+ "1437477620": 48,
+ "1437477621": 48,
+ "1437477622": 49,
+ "1437477623": 52,
+ "1437477624": 56,
+ "1437477625": 63,
+ "1437477626": 65,
+ "1437477627": 65,
+ "1437477628": 66,
+ "1437477629": 64,
+ "1437477630": 64,
+ "1437477631": 66,
+ "1437477632": 63,
+ "1437477633": 61,
+ "1437477634": 62,
+ "1437477635": 63,
+ "1437477636": 62,
+ "1437477638": 60,
+ "1437477639": 60,
+ "1437477640": 57,
+ "1437477641": 57,
+ "1437477642": 51,
+ "1437477643": 42,
+ "1437477644": 42,
+ "1437477645": 42,
+ "1437477646": 48,
+ "1437477647": 49,
+ "1437477648": 55,
+ "1437477649": 61,
+ "1437477650": 60,
+ "1437477651": 56,
+ "1437477652": 56,
+ "1437477653": 56,
+ "1437477654": 0,
+ "1437477655": 0,
+ "1437477656": 0,
+ "1437477657": 0,
+ "1437477658": 0,
+ "1437477659": 0,
+ "1437477660": 0,
+ "1437477661": 0,
+ "1437477662": 0,
+ "1437477663": 0,
+ "1437477664": 0,
+ "1437477665": 36,
+ "1437477666": 36,
+ "1437477667": 35,
+ "1437477668": 35,
+ "1437477669": 32,
+ "1437477671": 32,
+ "1437477672": 29,
+ "1437477673": 29,
+ "1437477674": 29,
+ "1437477676": 25,
+ "1437477677": 25,
+ "1437477678": 30,
+ "1437477679": 30,
+ "1437477680": 30,
+ "1437477681": 0,
+ "1437477682": 0,
+ "1437477683": 0,
+ "1437477684": 0,
+ "1437477685": 0,
+ "1437477688": 25,
+ "1437477689": 25,
+ "1437477690": 35,
+ "1437477691": 36,
+ "1437477692": 36,
+ "1437477693": 32,
+ "1437477695": 32,
+ "1437477696": 33,
+ "1437477697": 33,
+ "1437477698": 33,
+ "1437477699": 34,
+ "1437477700": 34,
+ "1437477701": 34,
+ "1437477702": 0,
+ "1437477703": 0,
+ "1437477704": 0,
+ "1437477705": 0,
+ "1437477706": 0
+ },
+ "distances": {
+ "1437474517": 0,
+ "1437474518": 0,
+ "1437474519": 0.01,
+ "1437474520": 0.01,
+ "1437474521": 0.01,
+ "1437474522": 0.01,
+ "1437474523": 0.01,
+ "1437474524": 0.01,
+ "1437474525": 0.01,
+ "1437474526": 0.01,
+ "1437474527": 0.01,
+ "1437474528": 0.01,
+ "1437474529": 0.01,
+ "1437474530": 0.02,
+ "1437474532": 0.02,
+ "1437474533": 0.02,
+ "1437474534": 0.02,
+ "1437474535": 0.03,
+ "1437474536": 0.03,
+ "1437474537": 0.03,
+ "1437474538": 0.04,
+ "1437474539": 0.04,
+ "1437474540": 0.05,
+ "1437474541": 0.05,
+ "1437474542": 0.05,
+ "1437474543": 0.06,
+ "1437474544": 0.06,
+ "1437474545": 0.06,
+ "1437474546": 0.07,
+ "1437474547": 0.07,
+ "1437474548": 0.08,
+ "1437474549": 0.09,
+ "1437474550": 0.09,
+ "1437474551": 0.1,
+ "1437474552": 0.11,
+ "1437474553": 0.11,
+ "1437474554": 0.12,
+ "1437474555": 0.13,
+ "1437474556": 0.14,
+ "1437474557": 0.15,
+ "1437474558": 0.16,
+ "1437474559": 0.17,
+ "1437474560": 0.18,
+ "1437474561": 0.19,
+ "1437474562": 0.2,
+ "1437474563": 0.21,
+ "1437474564": 0.22,
+ "1437474566": 0.23,
+ "1437474567": 0.24,
+ "1437474568": 0.25,
+ "1437474569": 0.26,
+ "1437474570": 0.28,
+ "1437474571": 0.29,
+ "1437474572": 0.3,
+ "1437474573": 0.31,
+ "1437474574": 0.32,
+ "1437474575": 0.33,
+ "1437474576": 0.34,
+ "1437474577": 0.36,
+ "1437474578": 0.37,
+ "1437474579": 0.38,
+ "1437474580": 0.39,
+ "1437474581": 0.4,
+ "1437474582": 0.41,
+ "1437474583": 0.43,
+ "1437474584": 0.44,
+ "1437474585": 0.45,
+ "1437474586": 0.46,
+ "1437474587": 0.47,
+ "1437474588": 0.48,
+ "1437474589": 0.49,
+ "1437474590": 0.5,
+ "1437474591": 0.52,
+ "1437474592": 0.53,
+ "1437474593": 0.54,
+ "1437474594": 0.55,
+ "1437474595": 0.56,
+ "1437474596": 0.57,
+ "1437474597": 0.58,
+ "1437474598": 0.59,
+ "1437474599": 0.6,
+ "1437474600": 0.61,
+ "1437474601": 0.62,
+ "1437474603": 0.63,
+ "1437474604": 0.65,
+ "1437474605": 0.66,
+ "1437474606": 0.67,
+ "1437474607": 0.68,
+ "1437474608": 0.69,
+ "1437474609": 0.7,
+ "1437474610": 0.71,
+ "1437474611": 0.72,
+ "1437474612": 0.73,
+ "1437474613": 0.75,
+ "1437474614": 0.76,
+ "1437474615": 0.77,
+ "1437474616": 0.78,
+ "1437474617": 0.79,
+ "1437474618": 0.8,
+ "1437474619": 0.81,
+ "1437474620": 0.82,
+ "1437474621": 0.83,
+ "1437474622": 0.84,
+ "1437474623": 0.85,
+ "1437474624": 0.87,
+ "1437474626": 0.88,
+ "1437474627": 0.89,
+ "1437474628": 0.9,
+ "1437474629": 0.91,
+ "1437474630": 0.92,
+ "1437474631": 0.93,
+ "1437474632": 0.94,
+ "1437474633": 0.95,
+ "1437474634": 0.96,
+ "1437474635": 0.97,
+ "1437474636": 0.97,
+ "1437474637": 0.98,
+ "1437474638": 0.99,
+ "1437474639": 1,
+ "1437474640": 1.01,
+ "1437474641": 1.02,
+ "1437474642": 1.03,
+ "1437474643": 1.04,
+ "1437474644": 1.05,
+ "1437474645": 1.06,
+ "1437474646": 1.07,
+ "1437474647": 1.08,
+ "1437474648": 1.08,
+ "1437474649": 1.09,
+ "1437474650": 1.1,
+ "1437474652": 1.11,
+ "1437474653": 1.11,
+ "1437474654": 1.12,
+ "1437474655": 1.12,
+ "1437474656": 1.13,
+ "1437474657": 1.13,
+ "1437474658": 1.14,
+ "1437474659": 1.14,
+ "1437474660": 1.15,
+ "1437474661": 1.15,
+ "1437474662": 1.16,
+ "1437474663": 1.16,
+ "1437474664": 1.17,
+ "1437474665": 1.17,
+ "1437474666": 1.18,
+ "1437474667": 1.18,
+ "1437474668": 1.19,
+ "1437474669": 1.19,
+ "1437474670": 1.19,
+ "1437474671": 1.2,
+ "1437474672": 1.2,
+ "1437474673": 1.2,
+ "1437474674": 1.21,
+ "1437474675": 1.21,
+ "1437474676": 1.21,
+ "1437474677": 1.21,
+ "1437474678": 1.22,
+ "1437474679": 1.22,
+ "1437474681": 1.22,
+ "1437474682": 1.23,
+ "1437474683": 1.23,
+ "1437474684": 1.23,
+ "1437474685": 1.24,
+ "1437474686": 1.24,
+ "1437474687": 1.24,
+ "1437474688": 1.25,
+ "1437474689": 1.25,
+ "1437474690": 1.25,
+ "1437474691": 1.26,
+ "1437474692": 1.26,
+ "1437474693": 1.26,
+ "1437474694": 1.27,
+ "1437474695": 1.27,
+ "1437474696": 1.27,
+ "1437474697": 1.28,
+ "1437474698": 1.28,
+ "1437474699": 1.28,
+ "1437474700": 1.29,
+ "1437474701": 1.29,
+ "1437474702": 1.29,
+ "1437474703": 1.3,
+ "1437474705": 1.3,
+ "1437474706": 1.3,
+ "1437474707": 1.31,
+ "1437474708": 1.31,
+ "1437474709": 1.32,
+ "1437474710": 1.32,
+ "1437474711": 1.32,
+ "1437474712": 1.33,
+ "1437474713": 1.33,
+ "1437474714": 1.33,
+ "1437474715": 1.34,
+ "1437474716": 1.34,
+ "1437474717": 1.35,
+ "1437474718": 1.35,
+ "1437474719": 1.35,
+ "1437474720": 1.36,
+ "1437474721": 1.36,
+ "1437474722": 1.37,
+ "1437474723": 1.37,
+ "1437474724": 1.37,
+ "1437474725": 1.38,
+ "1437474726": 1.38,
+ "1437474727": 1.39,
+ "1437474728": 1.39,
+ "1437474729": 1.4,
+ "1437474730": 1.4,
+ "1437474732": 1.4,
+ "1437474733": 1.41,
+ "1437474734": 1.41,
+ "1437474735": 1.42,
+ "1437474736": 1.42,
+ "1437474737": 1.42,
+ "1437474738": 1.43,
+ "1437474739": 1.43,
+ "1437474740": 1.44,
+ "1437474741": 1.44,
+ "1437474742": 1.45,
+ "1437474743": 1.45,
+ "1437474744": 1.46,
+ "1437474745": 1.46,
+ "1437474746": 1.47,
+ "1437474747": 1.48,
+ "1437474748": 1.49,
+ "1437474749": 1.5,
+ "1437474750": 1.5,
+ "1437474751": 1.51,
+ "1437474752": 1.52,
+ "1437474753": 1.53,
+ "1437474754": 1.53,
+ "1437474755": 1.54,
+ "1437474756": 1.55,
+ "1437474757": 1.55,
+ "1437474758": 1.56,
+ "1437474760": 1.57,
+ "1437474761": 1.57,
+ "1437474762": 1.58,
+ "1437474763": 1.58,
+ "1437474764": 1.59,
+ "1437474765": 1.59,
+ "1437474766": 1.6,
+ "1437474767": 1.6,
+ "1437474768": 1.61,
+ "1437474769": 1.61,
+ "1437474770": 1.62,
+ "1437474771": 1.62,
+ "1437474772": 1.63,
+ "1437474773": 1.63,
+ "1437474774": 1.64,
+ "1437474775": 1.64,
+ "1437474776": 1.65,
+ "1437474777": 1.65,
+ "1437474778": 1.66,
+ "1437474779": 1.66,
+ "1437474780": 1.67,
+ "1437474781": 1.67,
+ "1437474782": 1.67,
+ "1437474783": 1.68,
+ "1437474785": 1.68,
+ "1437474786": 1.69,
+ "1437474787": 1.69,
+ "1437474788": 1.7,
+ "1437474789": 1.7,
+ "1437474790": 1.71,
+ "1437474791": 1.71,
+ "1437474792": 1.72,
+ "1437474793": 1.72,
+ "1437474794": 1.73,
+ "1437474795": 1.73,
+ "1437474796": 1.73,
+ "1437474797": 1.74,
+ "1437474798": 1.74,
+ "1437474799": 1.75,
+ "1437474800": 1.75,
+ "1437474801": 1.76,
+ "1437474802": 1.76,
+ "1437474803": 1.77,
+ "1437474804": 1.77,
+ "1437474805": 1.78,
+ "1437474806": 1.78,
+ "1437474808": 1.79,
+ "1437474809": 1.79,
+ "1437474810": 1.8,
+ "1437474811": 1.81,
+ "1437474812": 1.81,
+ "1437474813": 1.82,
+ "1437474814": 1.83,
+ "1437474815": 1.83,
+ "1437474816": 1.84,
+ "1437474817": 1.85,
+ "1437474818": 1.86,
+ "1437474819": 1.86,
+ "1437474820": 1.87,
+ "1437474821": 1.88,
+ "1437474822": 1.88,
+ "1437474823": 1.89,
+ "1437474824": 1.9,
+ "1437474825": 1.9,
+ "1437474827": 1.91,
+ "1437474828": 1.92,
+ "1437474829": 1.93,
+ "1437474830": 1.93,
+ "1437474831": 1.94,
+ "1437474832": 1.95,
+ "1437474833": 1.96,
+ "1437474834": 1.97,
+ "1437474835": 1.98,
+ "1437474836": 1.99,
+ "1437474837": 2,
+ "1437474838": 2.01,
+ "1437474839": 2.02,
+ "1437474840": 2.03,
+ "1437474841": 2.04,
+ "1437474842": 2.05,
+ "1437474843": 2.06,
+ "1437474844": 2.08,
+ "1437474845": 2.09,
+ "1437474846": 2.1,
+ "1437474847": 2.11,
+ "1437474848": 2.12,
+ "1437474849": 2.14,
+ "1437474850": 2.15,
+ "1437474851": 2.16,
+ "1437474852": 2.18,
+ "1437474853": 2.19,
+ "1437474854": 2.2,
+ "1437474855": 2.22,
+ "1437474856": 2.23,
+ "1437474857": 2.24,
+ "1437474859": 2.26,
+ "1437474860": 2.27,
+ "1437474861": 2.28,
+ "1437474862": 2.29,
+ "1437474863": 2.3,
+ "1437474864": 2.32,
+ "1437474865": 2.33,
+ "1437474866": 2.34,
+ "1437474867": 2.35,
+ "1437474868": 2.36,
+ "1437474869": 2.38,
+ "1437474870": 2.39,
+ "1437474871": 2.4,
+ "1437474872": 2.41,
+ "1437474873": 2.42,
+ "1437474874": 2.43,
+ "1437474875": 2.44,
+ "1437474876": 2.45,
+ "1437474877": 2.47,
+ "1437474878": 2.48,
+ "1437474879": 2.49,
+ "1437474880": 2.5,
+ "1437474881": 2.51,
+ "1437474882": 2.52,
+ "1437474883": 2.53,
+ "1437474884": 2.54,
+ "1437474885": 2.56,
+ "1437474886": 2.57,
+ "1437474887": 2.58,
+ "1437474888": 2.59,
+ "1437474890": 2.6,
+ "1437474891": 2.62,
+ "1437474892": 2.63,
+ "1437474893": 2.64,
+ "1437474894": 2.65,
+ "1437474895": 2.67,
+ "1437474896": 2.68,
+ "1437474897": 2.69,
+ "1437474898": 2.71,
+ "1437474899": 2.72,
+ "1437474900": 2.73,
+ "1437474901": 2.74,
+ "1437474902": 2.75,
+ "1437474903": 2.77,
+ "1437474904": 2.78,
+ "1437474905": 2.79,
+ "1437474906": 2.8,
+ "1437474907": 2.81,
+ "1437474908": 2.82,
+ "1437474909": 2.84,
+ "1437474910": 2.85,
+ "1437474911": 2.86,
+ "1437474912": 2.87,
+ "1437474913": 2.88,
+ "1437474914": 2.89,
+ "1437474915": 2.91,
+ "1437474916": 2.92,
+ "1437474917": 2.93,
+ "1437474918": 2.95,
+ "1437474919": 2.96,
+ "1437474920": 2.97,
+ "1437474921": 2.99,
+ "1437474923": 3,
+ "1437474924": 3.01,
+ "1437474925": 3.03,
+ "1437474926": 3.04,
+ "1437474927": 3.06,
+ "1437474928": 3.07,
+ "1437474929": 3.08,
+ "1437474930": 3.1,
+ "1437474931": 3.11,
+ "1437474932": 3.13,
+ "1437474933": 3.14,
+ "1437474934": 3.15,
+ "1437474935": 3.16,
+ "1437474936": 3.17,
+ "1437474937": 3.18,
+ "1437474938": 3.19,
+ "1437474939": 3.2,
+ "1437474940": 3.21,
+ "1437474941": 3.22,
+ "1437474942": 3.23,
+ "1437474943": 3.23,
+ "1437474944": 3.24,
+ "1437474945": 3.25,
+ "1437474946": 3.26,
+ "1437474947": 3.27,
+ "1437474948": 3.27,
+ "1437474949": 3.28,
+ "1437474950": 3.29,
+ "1437474951": 3.3,
+ "1437474952": 3.31,
+ "1437474953": 3.32,
+ "1437474954": 3.33,
+ "1437474955": 3.33,
+ "1437474956": 3.34,
+ "1437474957": 3.35,
+ "1437474958": 3.36,
+ "1437474959": 3.37,
+ "1437474960": 3.38,
+ "1437474962": 3.39,
+ "1437474963": 3.4,
+ "1437474964": 3.42,
+ "1437474965": 3.43,
+ "1437474966": 3.44,
+ "1437474967": 3.45,
+ "1437474968": 3.46,
+ "1437474969": 3.47,
+ "1437474970": 3.49,
+ "1437474971": 3.5,
+ "1437474972": 3.51,
+ "1437474973": 3.52,
+ "1437474974": 3.54,
+ "1437474975": 3.55,
+ "1437474976": 3.56,
+ "1437474977": 3.57,
+ "1437474978": 3.58,
+ "1437474979": 3.6,
+ "1437474980": 3.61,
+ "1437474981": 3.62,
+ "1437474982": 3.63,
+ "1437474983": 3.65,
+ "1437474984": 3.66,
+ "1437474985": 3.67,
+ "1437474986": 3.68,
+ "1437474987": 3.7,
+ "1437474988": 3.71,
+ "1437474989": 3.72,
+ "1437474990": 3.74,
+ "1437474992": 3.75,
+ "1437474993": 3.77,
+ "1437474994": 3.78,
+ "1437474995": 3.8,
+ "1437474996": 3.81,
+ "1437474997": 3.83,
+ "1437474998": 3.84,
+ "1437474999": 3.85,
+ "1437475000": 3.86,
+ "1437475001": 3.88,
+ "1437475002": 3.89,
+ "1437475003": 3.91,
+ "1437475004": 3.92,
+ "1437475005": 3.94,
+ "1437475006": 3.95,
+ "1437475007": 3.97,
+ "1437475008": 3.98,
+ "1437475009": 4,
+ "1437475010": 4.02,
+ "1437475012": 4.04,
+ "1437475013": 4.05,
+ "1437475014": 4.07,
+ "1437475015": 4.09,
+ "1437475016": 4.11,
+ "1437475017": 4.12,
+ "1437475018": 4.14,
+ "1437475019": 4.16,
+ "1437475020": 4.18,
+ "1437475021": 4.2,
+ "1437475022": 4.21,
+ "1437475023": 4.23,
+ "1437475024": 4.25,
+ "1437475025": 4.27,
+ "1437475026": 4.29,
+ "1437475027": 4.3,
+ "1437475029": 4.32,
+ "1437475030": 4.34,
+ "1437475031": 4.36,
+ "1437475032": 4.37,
+ "1437475033": 4.39,
+ "1437475034": 4.4,
+ "1437475035": 4.42,
+ "1437475036": 4.44,
+ "1437475037": 4.45,
+ "1437475038": 4.47,
+ "1437475039": 4.48,
+ "1437475040": 4.5,
+ "1437475041": 4.51,
+ "1437475042": 4.53,
+ "1437475043": 4.54,
+ "1437475044": 4.55,
+ "1437475045": 4.57,
+ "1437475046": 4.58,
+ "1437475047": 4.6,
+ "1437475048": 4.61,
+ "1437475049": 4.62,
+ "1437475050": 4.63,
+ "1437475051": 4.65,
+ "1437475052": 4.66,
+ "1437475054": 4.67,
+ "1437475055": 4.68,
+ "1437475056": 4.7,
+ "1437475057": 4.71,
+ "1437475058": 4.72,
+ "1437475059": 4.73,
+ "1437475060": 4.75,
+ "1437475061": 4.76,
+ "1437475062": 4.77,
+ "1437475063": 4.78,
+ "1437475064": 4.79,
+ "1437475065": 4.8,
+ "1437475066": 4.82,
+ "1437475067": 4.83,
+ "1437475068": 4.84,
+ "1437475069": 4.85,
+ "1437475070": 4.86,
+ "1437475071": 4.87,
+ "1437475072": 4.89,
+ "1437475073": 4.9,
+ "1437475074": 4.91,
+ "1437475075": 4.92,
+ "1437475076": 4.93,
+ "1437475077": 4.95,
+ "1437475078": 4.96,
+ "1437475079": 4.97,
+ "1437475080": 4.99,
+ "1437475081": 5,
+ "1437475083": 5.01,
+ "1437475084": 5.02,
+ "1437475085": 5.04,
+ "1437475086": 5.05,
+ "1437475087": 5.06,
+ "1437475088": 5.07,
+ "1437475089": 5.08,
+ "1437475090": 5.09,
+ "1437475091": 5.11,
+ "1437475092": 5.12,
+ "1437475093": 5.13,
+ "1437475094": 5.14,
+ "1437475095": 5.15,
+ "1437475096": 5.15,
+ "1437475097": 5.16,
+ "1437475098": 5.17,
+ "1437475099": 5.18,
+ "1437475100": 5.19,
+ "1437475101": 5.2,
+ "1437475102": 5.21,
+ "1437475103": 5.22,
+ "1437475104": 5.22,
+ "1437475105": 5.23,
+ "1437475106": 5.24,
+ "1437475107": 5.25,
+ "1437475108": 5.26,
+ "1437475109": 5.27,
+ "1437475110": 5.28,
+ "1437475112": 5.29,
+ "1437475113": 5.3,
+ "1437475114": 5.31,
+ "1437475115": 5.32,
+ "1437475116": 5.33,
+ "1437475117": 5.34,
+ "1437475118": 5.35,
+ "1437475119": 5.36,
+ "1437475120": 5.36,
+ "1437475121": 5.37,
+ "1437475122": 5.38,
+ "1437475123": 5.39,
+ "1437475124": 5.4,
+ "1437475125": 5.4,
+ "1437475126": 5.41,
+ "1437475127": 5.42,
+ "1437475128": 5.43,
+ "1437475129": 5.43,
+ "1437475130": 5.44,
+ "1437475131": 5.45,
+ "1437475132": 5.46,
+ "1437475133": 5.47,
+ "1437475134": 5.48,
+ "1437475135": 5.48,
+ "1437475136": 5.49,
+ "1437475137": 5.5,
+ "1437475138": 5.51,
+ "1437475139": 5.52,
+ "1437475140": 5.53,
+ "1437475141": 5.54,
+ "1437475142": 5.55,
+ "1437475143": 5.57,
+ "1437475145": 5.58,
+ "1437475146": 5.59,
+ "1437475147": 5.6,
+ "1437475148": 5.61,
+ "1437475149": 5.63,
+ "1437475150": 5.64,
+ "1437475151": 5.65,
+ "1437475152": 5.67,
+ "1437475153": 5.68,
+ "1437475154": 5.69,
+ "1437475155": 5.71,
+ "1437475156": 5.72,
+ "1437475157": 5.73,
+ "1437475158": 5.75,
+ "1437475159": 5.76,
+ "1437475160": 5.77,
+ "1437475161": 5.78,
+ "1437475162": 5.8,
+ "1437475163": 5.81,
+ "1437475164": 5.82,
+ "1437475165": 5.84,
+ "1437475166": 5.85,
+ "1437475167": 5.86,
+ "1437475168": 5.88,
+ "1437475169": 5.89,
+ "1437475170": 5.91,
+ "1437475171": 5.92,
+ "1437475173": 5.93,
+ "1437475174": 5.95,
+ "1437475175": 5.96,
+ "1437475176": 5.97,
+ "1437475177": 5.99,
+ "1437475178": 6,
+ "1437475179": 6.01,
+ "1437475180": 6.02,
+ "1437475181": 6.04,
+ "1437475182": 6.05,
+ "1437475183": 6.06,
+ "1437475184": 6.07,
+ "1437475185": 6.08,
+ "1437475186": 6.1,
+ "1437475187": 6.11,
+ "1437475188": 6.12,
+ "1437475189": 6.13,
+ "1437475190": 6.14,
+ "1437475191": 6.15,
+ "1437475192": 6.17,
+ "1437475193": 6.18,
+ "1437475194": 6.19,
+ "1437475195": 6.2,
+ "1437475196": 6.21,
+ "1437475197": 6.22,
+ "1437475198": 6.23,
+ "1437475200": 6.25,
+ "1437475201": 6.26,
+ "1437475202": 6.27,
+ "1437475203": 6.28,
+ "1437475204": 6.29,
+ "1437475205": 6.3,
+ "1437475206": 6.32,
+ "1437475207": 6.33,
+ "1437475208": 6.34,
+ "1437475209": 6.35,
+ "1437475210": 6.36,
+ "1437475211": 6.38,
+ "1437475212": 6.39,
+ "1437475213": 6.4,
+ "1437475214": 6.41,
+ "1437475215": 6.42,
+ "1437475216": 6.44,
+ "1437475217": 6.45,
+ "1437475218": 6.46,
+ "1437475219": 6.47,
+ "1437475220": 6.48,
+ "1437475221": 6.49,
+ "1437475222": 6.5,
+ "1437475223": 6.51,
+ "1437475224": 6.52,
+ "1437475225": 6.54,
+ "1437475226": 6.55,
+ "1437475227": 6.56,
+ "1437475228": 6.57,
+ "1437475230": 6.58,
+ "1437475231": 6.59,
+ "1437475232": 6.6,
+ "1437475233": 6.61,
+ "1437475234": 6.62,
+ "1437475235": 6.64,
+ "1437475236": 6.65,
+ "1437475237": 6.66,
+ "1437475238": 6.67,
+ "1437475239": 6.68,
+ "1437475240": 6.69,
+ "1437475241": 6.7,
+ "1437475242": 6.72,
+ "1437475243": 6.73,
+ "1437475244": 6.74,
+ "1437475245": 6.75,
+ "1437475246": 6.76,
+ "1437475247": 6.77,
+ "1437475248": 6.78,
+ "1437475249": 6.8,
+ "1437475250": 6.81,
+ "1437475251": 6.82,
+ "1437475252": 6.83,
+ "1437475253": 6.84,
+ "1437475254": 6.85,
+ "1437475255": 6.86,
+ "1437475256": 6.87,
+ "1437475257": 6.89,
+ "1437475258": 6.9,
+ "1437475259": 6.91,
+ "1437475260": 6.92,
+ "1437475261": 6.93,
+ "1437475262": 6.94,
+ "1437475263": 6.95,
+ "1437475264": 6.95,
+ "1437475265": 6.96,
+ "1437475266": 6.97,
+ "1437475267": 6.98,
+ "1437475269": 6.98,
+ "1437475270": 6.99,
+ "1437475271": 7,
+ "1437475272": 7,
+ "1437475273": 7.01,
+ "1437475274": 7.01,
+ "1437475275": 7.02,
+ "1437475276": 7.02,
+ "1437475277": 7.03,
+ "1437475278": 7.04,
+ "1437475279": 7.04,
+ "1437475280": 7.05,
+ "1437475281": 7.05,
+ "1437475282": 7.05,
+ "1437475283": 7.06,
+ "1437475284": 7.06,
+ "1437475285": 7.07,
+ "1437475286": 7.07,
+ "1437475287": 7.08,
+ "1437475288": 7.08,
+ "1437475289": 7.09,
+ "1437475290": 7.09,
+ "1437475291": 7.1,
+ "1437475292": 7.1,
+ "1437475293": 7.11,
+ "1437475294": 7.11,
+ "1437475295": 7.12,
+ "1437475296": 7.12,
+ "1437475297": 7.13,
+ "1437475298": 7.13,
+ "1437475299": 7.14,
+ "1437475300": 7.14,
+ "1437475301": 7.15,
+ "1437475302": 7.16,
+ "1437475303": 7.16,
+ "1437475304": 7.17,
+ "1437475305": 7.17,
+ "1437475306": 7.18,
+ "1437475308": 7.19,
+ "1437475309": 7.2,
+ "1437475310": 7.21,
+ "1437475311": 7.21,
+ "1437475312": 7.22,
+ "1437475313": 7.23,
+ "1437475314": 7.24,
+ "1437475315": 7.25,
+ "1437475316": 7.26,
+ "1437475317": 7.28,
+ "1437475318": 7.29,
+ "1437475319": 7.3,
+ "1437475320": 7.31,
+ "1437475321": 7.33,
+ "1437475322": 7.34,
+ "1437475323": 7.35,
+ "1437475324": 7.37,
+ "1437475325": 7.38,
+ "1437475326": 7.4,
+ "1437475327": 7.41,
+ "1437475328": 7.43,
+ "1437475329": 7.44,
+ "1437475330": 7.45,
+ "1437475331": 7.47,
+ "1437475332": 7.48,
+ "1437475333": 7.49,
+ "1437475334": 7.51,
+ "1437475335": 7.52,
+ "1437475336": 7.53,
+ "1437475337": 7.54,
+ "1437475338": 7.55,
+ "1437475339": 7.56,
+ "1437475340": 7.57,
+ "1437475342": 7.58,
+ "1437475343": 7.59,
+ "1437475344": 7.61,
+ "1437475345": 7.62,
+ "1437475346": 7.63,
+ "1437475347": 7.64,
+ "1437475348": 7.65,
+ "1437475349": 7.66,
+ "1437475350": 7.67,
+ "1437475351": 7.68,
+ "1437475352": 7.7,
+ "1437475353": 7.71,
+ "1437475354": 7.72,
+ "1437475355": 7.73,
+ "1437475356": 7.74,
+ "1437475357": 7.75,
+ "1437475358": 7.76,
+ "1437475359": 7.78,
+ "1437475360": 7.79,
+ "1437475361": 7.8,
+ "1437475362": 7.81,
+ "1437475363": 7.83,
+ "1437475364": 7.84,
+ "1437475365": 7.85,
+ "1437475366": 7.87,
+ "1437475367": 7.88,
+ "1437475368": 7.89,
+ "1437475369": 7.9,
+ "1437475371": 7.91,
+ "1437475372": 7.92,
+ "1437475373": 7.93,
+ "1437475374": 7.94,
+ "1437475375": 7.95,
+ "1437475376": 7.96,
+ "1437475377": 7.97,
+ "1437475378": 7.99,
+ "1437475379": 8,
+ "1437475380": 8.01,
+ "1437475381": 8.03,
+ "1437475382": 8.04,
+ "1437475383": 8.05,
+ "1437475384": 8.06,
+ "1437475385": 8.08,
+ "1437475386": 8.09,
+ "1437475387": 8.1,
+ "1437475388": 8.11,
+ "1437475389": 8.12,
+ "1437475390": 8.13,
+ "1437475391": 8.14,
+ "1437475392": 8.15,
+ "1437475393": 8.16,
+ "1437475394": 8.17,
+ "1437475395": 8.18,
+ "1437475396": 8.19,
+ "1437475397": 8.2,
+ "1437475398": 8.21,
+ "1437475400": 8.22,
+ "1437475401": 8.23,
+ "1437475402": 8.24,
+ "1437475403": 8.25,
+ "1437475404": 8.26,
+ "1437475405": 8.27,
+ "1437475406": 8.28,
+ "1437475407": 8.29,
+ "1437475408": 8.3,
+ "1437475409": 8.31,
+ "1437475410": 8.32,
+ "1437475411": 8.33,
+ "1437475412": 8.34,
+ "1437475413": 8.35,
+ "1437475414": 8.36,
+ "1437475415": 8.37,
+ "1437475416": 8.38,
+ "1437475417": 8.39,
+ "1437475418": 8.4,
+ "1437475419": 8.41,
+ "1437475420": 8.42,
+ "1437475421": 8.43,
+ "1437475422": 8.44,
+ "1437475423": 8.45,
+ "1437475424": 8.46,
+ "1437475425": 8.47,
+ "1437475426": 8.48,
+ "1437475427": 8.49,
+ "1437475428": 8.5,
+ "1437475429": 8.51,
+ "1437475430": 8.52,
+ "1437475431": 8.53,
+ "1437475433": 8.55,
+ "1437475434": 8.56,
+ "1437475435": 8.57,
+ "1437475436": 8.58,
+ "1437475437": 8.59,
+ "1437475438": 8.6,
+ "1437475439": 8.62,
+ "1437475440": 8.63,
+ "1437475441": 8.64,
+ "1437475442": 8.65,
+ "1437475443": 8.66,
+ "1437475444": 8.68,
+ "1437475445": 8.69,
+ "1437475446": 8.7,
+ "1437475447": 8.71,
+ "1437475448": 8.73,
+ "1437475449": 8.74,
+ "1437475450": 8.75,
+ "1437475451": 8.76,
+ "1437475452": 8.77,
+ "1437475453": 8.79,
+ "1437475454": 8.8,
+ "1437475455": 8.81,
+ "1437475456": 8.82,
+ "1437475457": 8.83,
+ "1437475458": 8.84,
+ "1437475459": 8.85,
+ "1437475460": 8.86,
+ "1437475461": 8.88,
+ "1437475462": 8.89,
+ "1437475463": 8.9,
+ "1437475464": 8.91,
+ "1437475466": 8.92,
+ "1437475467": 8.93,
+ "1437475468": 8.94,
+ "1437475469": 8.95,
+ "1437475470": 8.96,
+ "1437475471": 8.97,
+ "1437475472": 8.97,
+ "1437475473": 8.98,
+ "1437475474": 8.99,
+ "1437475475": 9,
+ "1437475476": 9.01,
+ "1437475477": 9.02,
+ "1437475478": 9.02,
+ "1437475479": 9.03,
+ "1437475480": 9.04,
+ "1437475481": 9.04,
+ "1437475482": 9.05,
+ "1437475483": 9.05,
+ "1437475484": 9.05,
+ "1437475485": 9.06,
+ "1437475486": 9.06,
+ "1437475487": 9.06,
+ "1437475488": 9.06,
+ "1437475489": 9.06,
+ "1437475490": 9.06,
+ "1437475491": 9.06,
+ "1437475492": 9.06,
+ "1437475493": 9.06,
+ "1437475494": 9.06,
+ "1437475495": 9.06,
+ "1437475496": 9.06,
+ "1437475497": 9.07,
+ "1437475498": 9.07,
+ "1437475499": 9.07,
+ "1437475500": 9.07,
+ "1437475501": 9.08,
+ "1437475502": 9.08,
+ "1437475503": 9.08,
+ "1437475504": 9.09,
+ "1437475505": 9.09,
+ "1437475506": 9.09,
+ "1437475507": 9.1,
+ "1437475508": 9.1,
+ "1437475510": 9.11,
+ "1437475511": 9.11,
+ "1437475512": 9.12,
+ "1437475513": 9.12,
+ "1437475514": 9.13,
+ "1437475515": 9.13,
+ "1437475516": 9.14,
+ "1437475517": 9.14,
+ "1437475518": 9.15,
+ "1437475519": 9.16,
+ "1437475520": 9.16,
+ "1437475521": 9.17,
+ "1437475522": 9.17,
+ "1437475523": 9.18,
+ "1437475524": 9.19,
+ "1437475525": 9.19,
+ "1437475526": 9.2,
+ "1437475527": 9.21,
+ "1437475528": 9.21,
+ "1437475529": 9.22,
+ "1437475530": 9.23,
+ "1437475531": 9.24,
+ "1437475532": 9.24,
+ "1437475533": 9.25,
+ "1437475534": 9.26,
+ "1437475535": 9.26,
+ "1437475536": 9.27,
+ "1437475537": 9.28,
+ "1437475538": 9.29,
+ "1437475539": 9.3,
+ "1437475540": 9.3,
+ "1437475541": 9.31,
+ "1437475542": 9.32,
+ "1437475543": 9.33,
+ "1437475544": 9.33,
+ "1437475545": 9.34,
+ "1437475546": 9.35,
+ "1437475547": 9.36,
+ "1437475548": 9.37,
+ "1437475549": 9.37,
+ "1437475551": 9.38,
+ "1437475552": 9.39,
+ "1437475553": 9.4,
+ "1437475554": 9.41,
+ "1437475555": 9.41,
+ "1437475556": 9.42,
+ "1437475557": 9.43,
+ "1437475558": 9.44,
+ "1437475559": 9.45,
+ "1437475560": 9.46,
+ "1437475561": 9.46,
+ "1437475562": 9.47,
+ "1437475563": 9.48,
+ "1437475564": 9.49,
+ "1437475565": 9.5,
+ "1437475566": 9.51,
+ "1437475567": 9.51,
+ "1437475568": 9.52,
+ "1437475569": 9.53,
+ "1437475570": 9.54,
+ "1437475571": 9.55,
+ "1437475572": 9.55,
+ "1437475573": 9.56,
+ "1437475574": 9.57,
+ "1437475575": 9.58,
+ "1437475576": 9.59,
+ "1437475577": 9.59,
+ "1437475578": 9.6,
+ "1437475580": 9.61,
+ "1437475581": 9.62,
+ "1437475582": 9.63,
+ "1437475583": 9.63,
+ "1437475584": 9.64,
+ "1437475585": 9.65,
+ "1437475586": 9.66,
+ "1437475587": 9.66,
+ "1437475588": 9.67,
+ "1437475589": 9.68,
+ "1437475590": 9.69,
+ "1437475591": 9.69,
+ "1437475592": 9.7,
+ "1437475593": 9.71,
+ "1437475594": 9.71,
+ "1437475595": 9.72,
+ "1437475596": 9.72,
+ "1437475597": 9.73,
+ "1437475598": 9.73,
+ "1437475599": 9.73,
+ "1437475600": 9.73,
+ "1437475601": 9.73,
+ "1437475602": 9.74,
+ "1437475603": 9.74,
+ "1437475604": 9.74,
+ "1437475605": 9.74,
+ "1437475606": 9.74,
+ "1437475607": 9.74,
+ "1437475608": 9.74,
+ "1437475610": 9.74,
+ "1437475611": 9.74,
+ "1437475612": 9.74,
+ "1437475613": 9.75,
+ "1437475614": 9.75,
+ "1437475615": 9.75,
+ "1437475616": 9.76,
+ "1437475617": 9.76,
+ "1437475618": 9.76,
+ "1437475619": 9.76,
+ "1437475620": 9.77,
+ "1437475621": 9.77,
+ "1437475622": 9.77,
+ "1437475623": 9.77,
+ "1437475624": 9.78,
+ "1437475625": 9.78,
+ "1437475626": 9.78,
+ "1437475627": 9.79,
+ "1437475628": 9.79,
+ "1437475629": 9.79,
+ "1437475630": 9.8,
+ "1437475631": 9.8,
+ "1437475632": 9.81,
+ "1437475633": 9.81,
+ "1437475634": 9.82,
+ "1437475636": 9.82,
+ "1437475637": 9.83,
+ "1437475638": 9.83,
+ "1437475639": 9.84,
+ "1437475640": 9.84,
+ "1437475641": 9.85,
+ "1437475642": 9.85,
+ "1437475643": 9.86,
+ "1437475644": 9.87,
+ "1437475645": 9.87,
+ "1437475646": 9.88,
+ "1437475647": 9.88,
+ "1437475648": 9.89,
+ "1437475649": 9.9,
+ "1437475650": 9.9,
+ "1437475651": 9.91,
+ "1437475652": 9.92,
+ "1437475653": 9.92,
+ "1437475654": 9.93,
+ "1437475655": 9.94,
+ "1437475656": 9.94,
+ "1437475657": 9.95,
+ "1437475658": 9.96,
+ "1437475659": 9.96,
+ "1437475660": 9.97,
+ "1437475662": 9.98,
+ "1437475663": 9.98,
+ "1437475664": 9.99,
+ "1437475665": 10,
+ "1437475666": 10,
+ "1437475667": 10.01,
+ "1437475668": 10.01,
+ "1437475669": 10.02,
+ "1437475670": 10.03,
+ "1437475671": 10.03,
+ "1437475672": 10.04,
+ "1437475673": 10.05,
+ "1437475674": 10.05,
+ "1437475675": 10.06,
+ "1437475676": 10.07,
+ "1437475677": 10.07,
+ "1437475678": 10.08,
+ "1437475679": 10.08,
+ "1437475680": 10.09,
+ "1437475681": 10.09,
+ "1437475682": 10.1,
+ "1437475683": 10.1,
+ "1437475684": 10.11,
+ "1437475685": 10.11,
+ "1437475686": 10.11,
+ "1437475687": 10.12,
+ "1437475688": 10.12,
+ "1437475689": 10.13,
+ "1437475690": 10.13,
+ "1437475691": 10.14,
+ "1437475693": 10.14,
+ "1437475694": 10.15,
+ "1437475695": 10.15,
+ "1437475696": 10.16,
+ "1437475697": 10.17,
+ "1437475698": 10.17,
+ "1437475699": 10.18,
+ "1437475700": 10.19,
+ "1437475701": 10.19,
+ "1437475702": 10.2,
+ "1437475703": 10.2,
+ "1437475704": 10.21,
+ "1437475705": 10.21,
+ "1437475706": 10.21,
+ "1437475707": 10.22,
+ "1437475708": 10.22,
+ "1437475709": 10.22,
+ "1437475710": 10.23,
+ "1437475711": 10.23,
+ "1437475712": 10.23,
+ "1437475713": 10.23,
+ "1437475714": 10.24,
+ "1437475715": 10.24,
+ "1437475716": 10.24,
+ "1437475717": 10.24,
+ "1437475718": 10.24,
+ "1437475719": 10.25,
+ "1437475720": 10.25,
+ "1437475721": 10.25,
+ "1437475722": 10.25,
+ "1437475724": 10.26,
+ "1437475725": 10.26,
+ "1437475726": 10.26,
+ "1437475727": 10.26,
+ "1437475728": 10.26,
+ "1437475729": 10.27,
+ "1437475730": 10.27,
+ "1437475731": 10.27,
+ "1437475732": 10.27,
+ "1437475733": 10.27,
+ "1437475734": 10.28,
+ "1437475735": 10.28,
+ "1437475736": 10.28,
+ "1437475737": 10.28,
+ "1437475738": 10.28,
+ "1437475739": 10.29,
+ "1437475740": 10.29,
+ "1437475741": 10.29,
+ "1437475742": 10.29,
+ "1437475743": 10.3,
+ "1437475744": 10.3,
+ "1437475745": 10.31,
+ "1437475746": 10.31,
+ "1437475747": 10.31,
+ "1437475748": 10.31,
+ "1437475749": 10.32,
+ "1437475750": 10.32,
+ "1437475751": 10.32,
+ "1437475752": 10.33,
+ "1437475753": 10.33,
+ "1437475754": 10.33,
+ "1437475755": 10.33,
+ "1437475756": 10.33,
+ "1437475758": 10.33,
+ "1437475759": 10.34,
+ "1437475760": 10.34,
+ "1437475761": 10.34,
+ "1437475762": 10.34,
+ "1437475763": 10.34,
+ "1437475764": 10.35,
+ "1437475765": 10.35,
+ "1437475766": 10.35,
+ "1437475767": 10.35,
+ "1437475768": 10.35,
+ "1437475769": 10.35,
+ "1437475770": 10.36,
+ "1437475771": 10.36,
+ "1437475772": 10.36,
+ "1437475773": 10.36,
+ "1437475774": 10.37,
+ "1437475775": 10.37,
+ "1437475776": 10.37,
+ "1437475777": 10.37,
+ "1437475778": 10.37,
+ "1437475779": 10.38,
+ "1437475780": 10.38,
+ "1437475781": 10.38,
+ "1437475782": 10.38,
+ "1437475783": 10.39,
+ "1437475784": 10.39,
+ "1437475785": 10.39,
+ "1437475786": 10.39,
+ "1437475787": 10.39,
+ "1437475788": 10.4,
+ "1437475789": 10.4,
+ "1437475791": 10.4,
+ "1437475792": 10.4,
+ "1437475793": 10.41,
+ "1437475794": 10.41,
+ "1437475795": 10.41,
+ "1437475796": 10.41,
+ "1437475797": 10.41,
+ "1437475798": 10.42,
+ "1437475799": 10.42,
+ "1437475800": 10.42,
+ "1437475801": 10.42,
+ "1437475802": 10.43,
+ "1437475803": 10.43,
+ "1437475804": 10.43,
+ "1437475805": 10.43,
+ "1437475806": 10.43,
+ "1437475807": 10.44,
+ "1437475808": 10.44,
+ "1437475809": 10.44,
+ "1437475810": 10.44,
+ "1437475811": 10.45,
+ "1437475812": 10.45,
+ "1437475813": 10.45,
+ "1437475814": 10.45,
+ "1437475815": 10.46,
+ "1437475816": 10.46,
+ "1437475817": 10.46,
+ "1437475818": 10.46,
+ "1437475819": 10.46,
+ "1437475821": 10.47,
+ "1437475822": 10.47,
+ "1437475823": 10.47,
+ "1437475824": 10.47,
+ "1437475825": 10.48,
+ "1437475826": 10.48,
+ "1437475827": 10.48,
+ "1437475828": 10.48,
+ "1437475829": 10.48,
+ "1437475830": 10.49,
+ "1437475831": 10.49,
+ "1437475832": 10.49,
+ "1437475833": 10.49,
+ "1437475834": 10.49,
+ "1437475835": 10.5,
+ "1437475836": 10.5,
+ "1437475837": 10.5,
+ "1437475838": 10.5,
+ "1437475839": 10.5,
+ "1437475840": 10.51,
+ "1437475841": 10.51,
+ "1437475842": 10.51,
+ "1437475843": 10.51,
+ "1437475844": 10.52,
+ "1437475845": 10.52,
+ "1437475846": 10.52,
+ "1437475847": 10.52,
+ "1437475848": 10.52,
+ "1437475849": 10.53,
+ "1437475850": 10.53,
+ "1437475852": 10.53,
+ "1437475853": 10.53,
+ "1437475854": 10.53,
+ "1437475855": 10.54,
+ "1437475856": 10.54,
+ "1437475857": 10.54,
+ "1437475858": 10.54,
+ "1437475859": 10.54,
+ "1437475860": 10.55,
+ "1437475861": 10.55,
+ "1437475862": 10.55,
+ "1437475863": 10.55,
+ "1437475864": 10.55,
+ "1437475865": 10.56,
+ "1437475866": 10.56,
+ "1437475867": 10.56,
+ "1437475868": 10.56,
+ "1437475869": 10.56,
+ "1437475870": 10.57,
+ "1437475871": 10.57,
+ "1437475872": 10.57,
+ "1437475873": 10.57,
+ "1437475874": 10.57,
+ "1437475875": 10.58,
+ "1437475876": 10.58,
+ "1437475878": 10.58,
+ "1437475879": 10.59,
+ "1437475880": 10.59,
+ "1437475881": 10.59,
+ "1437475882": 10.6,
+ "1437475883": 10.6,
+ "1437475884": 10.61,
+ "1437475885": 10.61,
+ "1437475886": 10.62,
+ "1437475887": 10.62,
+ "1437475888": 10.63,
+ "1437475889": 10.64,
+ "1437475890": 10.64,
+ "1437475891": 10.65,
+ "1437475892": 10.66,
+ "1437475893": 10.66,
+ "1437475894": 10.67,
+ "1437475895": 10.67,
+ "1437475896": 10.67,
+ "1437475897": 10.68,
+ "1437475898": 10.68,
+ "1437475899": 10.69,
+ "1437475900": 10.69,
+ "1437475901": 10.69,
+ "1437475902": 10.69,
+ "1437475903": 10.7,
+ "1437475905": 10.7,
+ "1437475906": 10.7,
+ "1437475907": 10.71,
+ "1437475908": 10.71,
+ "1437475909": 10.71,
+ "1437475910": 10.71,
+ "1437475911": 10.72,
+ "1437475912": 10.72,
+ "1437475913": 10.72,
+ "1437475914": 10.72,
+ "1437475915": 10.73,
+ "1437475916": 10.73,
+ "1437475917": 10.73,
+ "1437475918": 10.73,
+ "1437475919": 10.74,
+ "1437475920": 10.74,
+ "1437475921": 10.74,
+ "1437475922": 10.75,
+ "1437475923": 10.75,
+ "1437475924": 10.75,
+ "1437475925": 10.75,
+ "1437475926": 10.76,
+ "1437475927": 10.76,
+ "1437475928": 10.76,
+ "1437475929": 10.77,
+ "1437475930": 10.77,
+ "1437475931": 10.77,
+ "1437475932": 10.77,
+ "1437475933": 10.78,
+ "1437475934": 10.78,
+ "1437475935": 10.78,
+ "1437475936": 10.78,
+ "1437475938": 10.79,
+ "1437475939": 10.79,
+ "1437475940": 10.79,
+ "1437475941": 10.79,
+ "1437475942": 10.79,
+ "1437475943": 10.8,
+ "1437475944": 10.8,
+ "1437475945": 10.8,
+ "1437475946": 10.8,
+ "1437475947": 10.81,
+ "1437475948": 10.81,
+ "1437475949": 10.81,
+ "1437475950": 10.81,
+ "1437475951": 10.82,
+ "1437475952": 10.82,
+ "1437475953": 10.82,
+ "1437475954": 10.82,
+ "1437475955": 10.83,
+ "1437475956": 10.83,
+ "1437475957": 10.83,
+ "1437475958": 10.83,
+ "1437475959": 10.83,
+ "1437475960": 10.84,
+ "1437475961": 10.84,
+ "1437475962": 10.84,
+ "1437475963": 10.84,
+ "1437475964": 10.84,
+ "1437475965": 10.84,
+ "1437475967": 10.85,
+ "1437475968": 10.85,
+ "1437475969": 10.85,
+ "1437475970": 10.85,
+ "1437475971": 10.85,
+ "1437475972": 10.85,
+ "1437475973": 10.86,
+ "1437475974": 10.86,
+ "1437475975": 10.86,
+ "1437475976": 10.86,
+ "1437475977": 10.86,
+ "1437475978": 10.87,
+ "1437475979": 10.87,
+ "1437475980": 10.87,
+ "1437475981": 10.87,
+ "1437475982": 10.88,
+ "1437475983": 10.88,
+ "1437475984": 10.88,
+ "1437475985": 10.88,
+ "1437475986": 10.88,
+ "1437475987": 10.89,
+ "1437475988": 10.89,
+ "1437475989": 10.89,
+ "1437475990": 10.89,
+ "1437475991": 10.9,
+ "1437475992": 10.9,
+ "1437475993": 10.9,
+ "1437475994": 10.9,
+ "1437475995": 10.91,
+ "1437475997": 10.91,
+ "1437475998": 10.91,
+ "1437475999": 10.91,
+ "1437476000": 10.91,
+ "1437476001": 10.92,
+ "1437476002": 10.92,
+ "1437476003": 10.92,
+ "1437476004": 10.92,
+ "1437476005": 10.93,
+ "1437476006": 10.93,
+ "1437476007": 10.94,
+ "1437476008": 10.94,
+ "1437476009": 10.94,
+ "1437476010": 10.95,
+ "1437476011": 10.96,
+ "1437476012": 10.96,
+ "1437476013": 10.97,
+ "1437476014": 10.97,
+ "1437476015": 10.97,
+ "1437476016": 10.98,
+ "1437476017": 10.98,
+ "1437476019": 10.99,
+ "1437476020": 10.99,
+ "1437476021": 10.99,
+ "1437476022": 11,
+ "1437476023": 11,
+ "1437476024": 11,
+ "1437476025": 11.01,
+ "1437476026": 11.01,
+ "1437476027": 11.01,
+ "1437476028": 11.02,
+ "1437476029": 11.02,
+ "1437476030": 11.02,
+ "1437476031": 11.03,
+ "1437476032": 11.03,
+ "1437476033": 11.04,
+ "1437476034": 11.04,
+ "1437476035": 11.04,
+ "1437476036": 11.05,
+ "1437476037": 11.05,
+ "1437476038": 11.05,
+ "1437476039": 11.06,
+ "1437476040": 11.06,
+ "1437476041": 11.07,
+ "1437476042": 11.07,
+ "1437476043": 11.08,
+ "1437476044": 11.08,
+ "1437476045": 11.09,
+ "1437476047": 11.09,
+ "1437476048": 11.1,
+ "1437476049": 11.1,
+ "1437476050": 11.11,
+ "1437476051": 11.12,
+ "1437476052": 11.12,
+ "1437476053": 11.13,
+ "1437476054": 11.14,
+ "1437476055": 11.15,
+ "1437476056": 11.15,
+ "1437476057": 11.16,
+ "1437476058": 11.17,
+ "1437476059": 11.18,
+ "1437476060": 11.19,
+ "1437476061": 11.2,
+ "1437476062": 11.21,
+ "1437476063": 11.21,
+ "1437476064": 11.22,
+ "1437476065": 11.23,
+ "1437476066": 11.24,
+ "1437476067": 11.25,
+ "1437476068": 11.26,
+ "1437476069": 11.27,
+ "1437476070": 11.29,
+ "1437476071": 11.3,
+ "1437476072": 11.31,
+ "1437476073": 11.32,
+ "1437476074": 11.33,
+ "1437476075": 11.34,
+ "1437476076": 11.35,
+ "1437476077": 11.36,
+ "1437476079": 11.37,
+ "1437476080": 11.38,
+ "1437476081": 11.39,
+ "1437476082": 11.4,
+ "1437476083": 11.41,
+ "1437476084": 11.42,
+ "1437476085": 11.43,
+ "1437476086": 11.44,
+ "1437476087": 11.45,
+ "1437476088": 11.45,
+ "1437476089": 11.46,
+ "1437476090": 11.47,
+ "1437476091": 11.48,
+ "1437476092": 11.49,
+ "1437476093": 11.5,
+ "1437476094": 11.51,
+ "1437476095": 11.51,
+ "1437476096": 11.52,
+ "1437476097": 11.53,
+ "1437476098": 11.54,
+ "1437476099": 11.54,
+ "1437476100": 11.55,
+ "1437476101": 11.56,
+ "1437476102": 11.57,
+ "1437476103": 11.58,
+ "1437476104": 11.58,
+ "1437476105": 11.59,
+ "1437476106": 11.6,
+ "1437476107": 11.61,
+ "1437476108": 11.61,
+ "1437476109": 11.62,
+ "1437476110": 11.63,
+ "1437476112": 11.64,
+ "1437476113": 11.64,
+ "1437476114": 11.65,
+ "1437476115": 11.66,
+ "1437476116": 11.67,
+ "1437476117": 11.67,
+ "1437476118": 11.68,
+ "1437476119": 11.69,
+ "1437476120": 11.7,
+ "1437476121": 11.71,
+ "1437476122": 11.71,
+ "1437476123": 11.72,
+ "1437476124": 11.73,
+ "1437476125": 11.74,
+ "1437476126": 11.75,
+ "1437476127": 11.76,
+ "1437476128": 11.77,
+ "1437476129": 11.78,
+ "1437476130": 11.79,
+ "1437476131": 11.8,
+ "1437476132": 11.81,
+ "1437476133": 11.82,
+ "1437476134": 11.83,
+ "1437476135": 11.84,
+ "1437476136": 11.85,
+ "1437476137": 11.86,
+ "1437476138": 11.86,
+ "1437476139": 11.87,
+ "1437476140": 11.88,
+ "1437476141": 11.89,
+ "1437476142": 11.9,
+ "1437476143": 11.91,
+ "1437476144": 11.92,
+ "1437476146": 11.93,
+ "1437476147": 11.94,
+ "1437476148": 11.94,
+ "1437476149": 11.95,
+ "1437476150": 11.96,
+ "1437476151": 11.97,
+ "1437476152": 11.98,
+ "1437476153": 11.99,
+ "1437476154": 12,
+ "1437476155": 12.01,
+ "1437476156": 12.02,
+ "1437476157": 12.03,
+ "1437476158": 12.04,
+ "1437476159": 12.05,
+ "1437476160": 12.06,
+ "1437476161": 12.07,
+ "1437476162": 12.08,
+ "1437476163": 12.09,
+ "1437476164": 12.1,
+ "1437476165": 12.12,
+ "1437476166": 12.13,
+ "1437476167": 12.14,
+ "1437476168": 12.15,
+ "1437476169": 12.17,
+ "1437476170": 12.18,
+ "1437476171": 12.19,
+ "1437476172": 12.2,
+ "1437476173": 12.22,
+ "1437476174": 12.23,
+ "1437476175": 12.24,
+ "1437476176": 12.26,
+ "1437476177": 12.27,
+ "1437476179": 12.28,
+ "1437476180": 12.29,
+ "1437476181": 12.3,
+ "1437476182": 12.31,
+ "1437476183": 12.31,
+ "1437476184": 12.32,
+ "1437476185": 12.33,
+ "1437476186": 12.33,
+ "1437476187": 12.34,
+ "1437476188": 12.35,
+ "1437476189": 12.35,
+ "1437476190": 12.36,
+ "1437476191": 12.36,
+ "1437476192": 12.37,
+ "1437476193": 12.37,
+ "1437476194": 12.38,
+ "1437476195": 12.39,
+ "1437476196": 12.39,
+ "1437476197": 12.4,
+ "1437476198": 12.4,
+ "1437476199": 12.41,
+ "1437476200": 12.42,
+ "1437476201": 12.42,
+ "1437476202": 12.43,
+ "1437476203": 12.44,
+ "1437476204": 12.44,
+ "1437476205": 12.45,
+ "1437476206": 12.46,
+ "1437476207": 12.47,
+ "1437476208": 12.47,
+ "1437476209": 12.48,
+ "1437476211": 12.49,
+ "1437476212": 12.5,
+ "1437476213": 12.5,
+ "1437476214": 12.51,
+ "1437476215": 12.52,
+ "1437476216": 12.53,
+ "1437476217": 12.54,
+ "1437476218": 12.55,
+ "1437476219": 12.56,
+ "1437476220": 12.57,
+ "1437476221": 12.58,
+ "1437476222": 12.59,
+ "1437476223": 12.6,
+ "1437476224": 12.61,
+ "1437476225": 12.62,
+ "1437476226": 12.63,
+ "1437476227": 12.64,
+ "1437476228": 12.65,
+ "1437476229": 12.66,
+ "1437476230": 12.67,
+ "1437476231": 12.68,
+ "1437476232": 12.69,
+ "1437476233": 12.71,
+ "1437476234": 12.72,
+ "1437476235": 12.73,
+ "1437476236": 12.74,
+ "1437476237": 12.75,
+ "1437476238": 12.76,
+ "1437476239": 12.77,
+ "1437476240": 12.78,
+ "1437476241": 12.79,
+ "1437476242": 12.81,
+ "1437476243": 12.82,
+ "1437476244": 12.83,
+ "1437476245": 12.84,
+ "1437476246": 12.85,
+ "1437476248": 12.87,
+ "1437476249": 12.88,
+ "1437476250": 12.89,
+ "1437476251": 12.91,
+ "1437476252": 12.92,
+ "1437476253": 12.93,
+ "1437476254": 12.94,
+ "1437476255": 12.96,
+ "1437476256": 12.97,
+ "1437476257": 12.98,
+ "1437476258": 12.99,
+ "1437476259": 13,
+ "1437476260": 13.01,
+ "1437476261": 13.02,
+ "1437476262": 13.04,
+ "1437476263": 13.05,
+ "1437476264": 13.06,
+ "1437476265": 13.08,
+ "1437476266": 13.09,
+ "1437476267": 13.1,
+ "1437476268": 13.12,
+ "1437476269": 13.13,
+ "1437476270": 13.15,
+ "1437476271": 13.16,
+ "1437476272": 13.18,
+ "1437476274": 13.19,
+ "1437476275": 13.21,
+ "1437476276": 13.23,
+ "1437476277": 13.24,
+ "1437476278": 13.26,
+ "1437476279": 13.28,
+ "1437476280": 13.29,
+ "1437476281": 13.31,
+ "1437476282": 13.33,
+ "1437476283": 13.34,
+ "1437476284": 13.36,
+ "1437476285": 13.37,
+ "1437476286": 13.39,
+ "1437476287": 13.41,
+ "1437476288": 13.42,
+ "1437476289": 13.44,
+ "1437476290": 13.45,
+ "1437476291": 13.47,
+ "1437476292": 13.48,
+ "1437476293": 13.49,
+ "1437476295": 13.51,
+ "1437476296": 13.52,
+ "1437476297": 13.54,
+ "1437476298": 13.55,
+ "1437476299": 13.56,
+ "1437476300": 13.58,
+ "1437476301": 13.59,
+ "1437476302": 13.6,
+ "1437476303": 13.61,
+ "1437476304": 13.63,
+ "1437476305": 13.64,
+ "1437476306": 13.65,
+ "1437476307": 13.66,
+ "1437476308": 13.67,
+ "1437476309": 13.69,
+ "1437476310": 13.7,
+ "1437476311": 13.71,
+ "1437476312": 13.72,
+ "1437476313": 13.73,
+ "1437476314": 13.74,
+ "1437476315": 13.75,
+ "1437476316": 13.76,
+ "1437476317": 13.76,
+ "1437476318": 13.77,
+ "1437476319": 13.78,
+ "1437476320": 13.79,
+ "1437476321": 13.8,
+ "1437476323": 13.81,
+ "1437476324": 13.81,
+ "1437476325": 13.82,
+ "1437476326": 13.82,
+ "1437476327": 13.83,
+ "1437476328": 13.83,
+ "1437476329": 13.83,
+ "1437476330": 13.84,
+ "1437476331": 13.84,
+ "1437476332": 13.84,
+ "1437476333": 13.84,
+ "1437476334": 13.84,
+ "1437476335": 13.84,
+ "1437476338": 13.84,
+ "1437476339": 13.84,
+ "1437476340": 13.84,
+ "1437476341": 13.84,
+ "1437476342": 13.84,
+ "1437476343": 13.84,
+ "1437476344": 13.85,
+ "1437476345": 13.85,
+ "1437476346": 13.85,
+ "1437476347": 13.85,
+ "1437476348": 13.85,
+ "1437476349": 13.86,
+ "1437476350": 13.86,
+ "1437476351": 13.86,
+ "1437476352": 13.86,
+ "1437476353": 13.87,
+ "1437476354": 13.87,
+ "1437476355": 13.87,
+ "1437476356": 13.88,
+ "1437476357": 13.88,
+ "1437476358": 13.88,
+ "1437476360": 13.89,
+ "1437476361": 13.89,
+ "1437476362": 13.89,
+ "1437476363": 13.9,
+ "1437476364": 13.9,
+ "1437476365": 13.91,
+ "1437476366": 13.91,
+ "1437476367": 13.91,
+ "1437476368": 13.92,
+ "1437476369": 13.92,
+ "1437476370": 13.92,
+ "1437476371": 13.93,
+ "1437476372": 13.93,
+ "1437476373": 13.94,
+ "1437476374": 13.94,
+ "1437476375": 13.94,
+ "1437476376": 13.95,
+ "1437476377": 13.95,
+ "1437476378": 13.96,
+ "1437476379": 13.96,
+ "1437476380": 13.97,
+ "1437476381": 13.97,
+ "1437476382": 13.97,
+ "1437476383": 13.98,
+ "1437476384": 13.98,
+ "1437476385": 13.99,
+ "1437476386": 13.99,
+ "1437476387": 14,
+ "1437476389": 14,
+ "1437476390": 14.01,
+ "1437476391": 14.01,
+ "1437476392": 14.01,
+ "1437476393": 14.02,
+ "1437476394": 14.02,
+ "1437476395": 14.03,
+ "1437476396": 14.04,
+ "1437476397": 14.04,
+ "1437476398": 14.05,
+ "1437476399": 14.06,
+ "1437476400": 14.06,
+ "1437476401": 14.07,
+ "1437476402": 14.08,
+ "1437476403": 14.09,
+ "1437476404": 14.09,
+ "1437476405": 14.1,
+ "1437476406": 14.11,
+ "1437476407": 14.12,
+ "1437476408": 14.13,
+ "1437476410": 14.14,
+ "1437476411": 14.15,
+ "1437476412": 14.16,
+ "1437476413": 14.16,
+ "1437476414": 14.17,
+ "1437476415": 14.18,
+ "1437476416": 14.19,
+ "1437476417": 14.19,
+ "1437476418": 14.2,
+ "1437476419": 14.2,
+ "1437476420": 14.21,
+ "1437476421": 14.22,
+ "1437476422": 14.22,
+ "1437476423": 14.23,
+ "1437476424": 14.23,
+ "1437476425": 14.24,
+ "1437476426": 14.24,
+ "1437476427": 14.24,
+ "1437476428": 14.25,
+ "1437476429": 14.25,
+ "1437476430": 14.26,
+ "1437476431": 14.26,
+ "1437476432": 14.26,
+ "1437476433": 14.27,
+ "1437476434": 14.27,
+ "1437476435": 14.27,
+ "1437476436": 14.28,
+ "1437476437": 14.28,
+ "1437476438": 14.28,
+ "1437476439": 14.28,
+ "1437476441": 14.29,
+ "1437476442": 14.29,
+ "1437476443": 14.29,
+ "1437476444": 14.3,
+ "1437476445": 14.3,
+ "1437476446": 14.3,
+ "1437476447": 14.3,
+ "1437476448": 14.31,
+ "1437476449": 14.31,
+ "1437476450": 14.32,
+ "1437476451": 14.32,
+ "1437476452": 14.33,
+ "1437476453": 14.33,
+ "1437476454": 14.34,
+ "1437476455": 14.34,
+ "1437476456": 14.35,
+ "1437476457": 14.35,
+ "1437476458": 14.36,
+ "1437476459": 14.37,
+ "1437476460": 14.37,
+ "1437476461": 14.38,
+ "1437476462": 14.39,
+ "1437476463": 14.39,
+ "1437476464": 14.4,
+ "1437476465": 14.41,
+ "1437476467": 14.42,
+ "1437476468": 14.43,
+ "1437476469": 14.44,
+ "1437476470": 14.45,
+ "1437476471": 14.46,
+ "1437476472": 14.47,
+ "1437476473": 14.48,
+ "1437476474": 14.49,
+ "1437476475": 14.5,
+ "1437476476": 14.5,
+ "1437476477": 14.51,
+ "1437476478": 14.52,
+ "1437476479": 14.53,
+ "1437476480": 14.54,
+ "1437476481": 14.55,
+ "1437476482": 14.56,
+ "1437476483": 14.57,
+ "1437476484": 14.57,
+ "1437476485": 14.58,
+ "1437476486": 14.59,
+ "1437476487": 14.6,
+ "1437476488": 14.61,
+ "1437476490": 14.62,
+ "1437476491": 14.63,
+ "1437476492": 14.65,
+ "1437476493": 14.66,
+ "1437476494": 14.67,
+ "1437476495": 14.68,
+ "1437476496": 14.69,
+ "1437476497": 14.7,
+ "1437476498": 14.72,
+ "1437476499": 14.73,
+ "1437476500": 14.74,
+ "1437476501": 14.76,
+ "1437476502": 14.77,
+ "1437476503": 14.79,
+ "1437476504": 14.8,
+ "1437476505": 14.82,
+ "1437476506": 14.83,
+ "1437476507": 14.85,
+ "1437476508": 14.86,
+ "1437476509": 14.88,
+ "1437476510": 14.89,
+ "1437476511": 14.91,
+ "1437476512": 14.92,
+ "1437476513": 14.94,
+ "1437476514": 14.95,
+ "1437476515": 14.96,
+ "1437476516": 14.98,
+ "1437476517": 14.99,
+ "1437476518": 15.01,
+ "1437476519": 15.02,
+ "1437476521": 15.04,
+ "1437476522": 15.06,
+ "1437476523": 15.07,
+ "1437476524": 15.09,
+ "1437476525": 15.1,
+ "1437476526": 15.12,
+ "1437476527": 15.13,
+ "1437476528": 15.15,
+ "1437476529": 15.16,
+ "1437476530": 15.17,
+ "1437476531": 15.19,
+ "1437476532": 15.2,
+ "1437476533": 15.22,
+ "1437476534": 15.23,
+ "1437476535": 15.25,
+ "1437476536": 15.26,
+ "1437476537": 15.28,
+ "1437476538": 15.29,
+ "1437476539": 15.31,
+ "1437476540": 15.32,
+ "1437476541": 15.34,
+ "1437476542": 15.35,
+ "1437476543": 15.36,
+ "1437476544": 15.38,
+ "1437476545": 15.39,
+ "1437476547": 15.41,
+ "1437476548": 15.42,
+ "1437476549": 15.44,
+ "1437476550": 15.45,
+ "1437476551": 15.47,
+ "1437476552": 15.48,
+ "1437476553": 15.49,
+ "1437476554": 15.51,
+ "1437476555": 15.52,
+ "1437476556": 15.54,
+ "1437476557": 15.55,
+ "1437476558": 15.56,
+ "1437476559": 15.58,
+ "1437476560": 15.59,
+ "1437476561": 15.6,
+ "1437476562": 15.61,
+ "1437476563": 15.63,
+ "1437476564": 15.64,
+ "1437476565": 15.65,
+ "1437476566": 15.66,
+ "1437476567": 15.67,
+ "1437476568": 15.69,
+ "1437476569": 15.7,
+ "1437476570": 15.71,
+ "1437476571": 15.72,
+ "1437476572": 15.73,
+ "1437476573": 15.75,
+ "1437476574": 15.76,
+ "1437476576": 15.77,
+ "1437476577": 15.78,
+ "1437476578": 15.8,
+ "1437476579": 15.81,
+ "1437476580": 15.82,
+ "1437476581": 15.83,
+ "1437476582": 15.84,
+ "1437476583": 15.85,
+ "1437476584": 15.86,
+ "1437476585": 15.88,
+ "1437476586": 15.89,
+ "1437476587": 15.9,
+ "1437476588": 15.91,
+ "1437476589": 15.92,
+ "1437476590": 15.93,
+ "1437476591": 15.94,
+ "1437476592": 15.95,
+ "1437476593": 15.96,
+ "1437476594": 15.97,
+ "1437476595": 15.98,
+ "1437476596": 15.99,
+ "1437476597": 16,
+ "1437476598": 16.01,
+ "1437476599": 16.02,
+ "1437476601": 16.03,
+ "1437476602": 16.04,
+ "1437476603": 16.05,
+ "1437476604": 16.05,
+ "1437476605": 16.06,
+ "1437476606": 16.07,
+ "1437476607": 16.08,
+ "1437476608": 16.08,
+ "1437476609": 16.09,
+ "1437476610": 16.1,
+ "1437476611": 16.1,
+ "1437476612": 16.11,
+ "1437476613": 16.11,
+ "1437476614": 16.12,
+ "1437476615": 16.12,
+ "1437476616": 16.13,
+ "1437476617": 16.14,
+ "1437476618": 16.14,
+ "1437476619": 16.15,
+ "1437476620": 16.15,
+ "1437476621": 16.16,
+ "1437476622": 16.16,
+ "1437476623": 16.17,
+ "1437476624": 16.17,
+ "1437476625": 16.18,
+ "1437476627": 16.18,
+ "1437476628": 16.19,
+ "1437476629": 16.19,
+ "1437476630": 16.2,
+ "1437476631": 16.21,
+ "1437476632": 16.21,
+ "1437476633": 16.22,
+ "1437476634": 16.22,
+ "1437476635": 16.23,
+ "1437476636": 16.23,
+ "1437476637": 16.24,
+ "1437476638": 16.24,
+ "1437476639": 16.25,
+ "1437476640": 16.26,
+ "1437476641": 16.26,
+ "1437476642": 16.27,
+ "1437476643": 16.28,
+ "1437476644": 16.28,
+ "1437476645": 16.29,
+ "1437476646": 16.3,
+ "1437476647": 16.31,
+ "1437476648": 16.32,
+ "1437476649": 16.33,
+ "1437476650": 16.34,
+ "1437476651": 16.35,
+ "1437476652": 16.36,
+ "1437476653": 16.37,
+ "1437476654": 16.39,
+ "1437476655": 16.4,
+ "1437476656": 16.41,
+ "1437476658": 16.43,
+ "1437476659": 16.44,
+ "1437476660": 16.46,
+ "1437476661": 16.47,
+ "1437476662": 16.49,
+ "1437476663": 16.5,
+ "1437476664": 16.52,
+ "1437476665": 16.54,
+ "1437476666": 16.55,
+ "1437476667": 16.57,
+ "1437476668": 16.59,
+ "1437476669": 16.6,
+ "1437476670": 16.62,
+ "1437476671": 16.63,
+ "1437476672": 16.65,
+ "1437476673": 16.66,
+ "1437476674": 16.67,
+ "1437476675": 16.69,
+ "1437476676": 16.7,
+ "1437476677": 16.71,
+ "1437476678": 16.73,
+ "1437476679": 16.74,
+ "1437476680": 16.76,
+ "1437476681": 16.77,
+ "1437476682": 16.78,
+ "1437476683": 16.8,
+ "1437476684": 16.81,
+ "1437476685": 16.82,
+ "1437476686": 16.84,
+ "1437476687": 16.85,
+ "1437476688": 16.86,
+ "1437476689": 16.88,
+ "1437476690": 16.89,
+ "1437476691": 16.9,
+ "1437476692": 16.92,
+ "1437476694": 16.93,
+ "1437476695": 16.95,
+ "1437476696": 16.96,
+ "1437476697": 16.98,
+ "1437476698": 16.99,
+ "1437476699": 17.01,
+ "1437476700": 17.02,
+ "1437476701": 17.03,
+ "1437476702": 17.04,
+ "1437476703": 17.05,
+ "1437476704": 17.07,
+ "1437476705": 17.08,
+ "1437476706": 17.09,
+ "1437476707": 17.1,
+ "1437476708": 17.12,
+ "1437476709": 17.13,
+ "1437476710": 17.14,
+ "1437476711": 17.16,
+ "1437476712": 17.17,
+ "1437476713": 17.19,
+ "1437476714": 17.2,
+ "1437476715": 17.21,
+ "1437476716": 17.22,
+ "1437476717": 17.23,
+ "1437476718": 17.25,
+ "1437476719": 17.26,
+ "1437476720": 17.27,
+ "1437476721": 17.28,
+ "1437476723": 17.29,
+ "1437476724": 17.3,
+ "1437476725": 17.31,
+ "1437476726": 17.32,
+ "1437476727": 17.33,
+ "1437476728": 17.34,
+ "1437476729": 17.36,
+ "1437476730": 17.37,
+ "1437476731": 17.38,
+ "1437476732": 17.39,
+ "1437476733": 17.4,
+ "1437476734": 17.41,
+ "1437476735": 17.43,
+ "1437476736": 17.44,
+ "1437476737": 17.45,
+ "1437476738": 17.46,
+ "1437476739": 17.48,
+ "1437476740": 17.49,
+ "1437476741": 17.5,
+ "1437476742": 17.51,
+ "1437476743": 17.53,
+ "1437476744": 17.54,
+ "1437476745": 17.55,
+ "1437476746": 17.56,
+ "1437476747": 17.58,
+ "1437476748": 17.59,
+ "1437476749": 17.6,
+ "1437476750": 17.62,
+ "1437476751": 17.63,
+ "1437476752": 17.64,
+ "1437476753": 17.66,
+ "1437476755": 17.67,
+ "1437476756": 17.68,
+ "1437476757": 17.7,
+ "1437476758": 17.71,
+ "1437476759": 17.73,
+ "1437476760": 17.74,
+ "1437476761": 17.76,
+ "1437476762": 17.77,
+ "1437476763": 17.79,
+ "1437476764": 17.8,
+ "1437476765": 17.82,
+ "1437476766": 17.83,
+ "1437476767": 17.85,
+ "1437476768": 17.86,
+ "1437476769": 17.88,
+ "1437476770": 17.89,
+ "1437476771": 17.9,
+ "1437476772": 17.92,
+ "1437476773": 17.93,
+ "1437476774": 17.95,
+ "1437476775": 17.96,
+ "1437476776": 17.98,
+ "1437476777": 17.99,
+ "1437476778": 18.01,
+ "1437476779": 18.02,
+ "1437476780": 18.03,
+ "1437476781": 18.05,
+ "1437476782": 18.06,
+ "1437476783": 18.07,
+ "1437476784": 18.09,
+ "1437476785": 18.1,
+ "1437476786": 18.11,
+ "1437476787": 18.13,
+ "1437476788": 18.14,
+ "1437476789": 18.15,
+ "1437476791": 18.17,
+ "1437476792": 18.18,
+ "1437476793": 18.19,
+ "1437476794": 18.2,
+ "1437476795": 18.22,
+ "1437476796": 18.23,
+ "1437476797": 18.24,
+ "1437476798": 18.25,
+ "1437476799": 18.27,
+ "1437476800": 18.28,
+ "1437476801": 18.29,
+ "1437476802": 18.3,
+ "1437476803": 18.31,
+ "1437476804": 18.33,
+ "1437476805": 18.34,
+ "1437476806": 18.35,
+ "1437476807": 18.36,
+ "1437476808": 18.37,
+ "1437476809": 18.38,
+ "1437476810": 18.4,
+ "1437476811": 18.41,
+ "1437476812": 18.42,
+ "1437476813": 18.43,
+ "1437476814": 18.44,
+ "1437476815": 18.45,
+ "1437476816": 18.46,
+ "1437476817": 18.47,
+ "1437476818": 18.48,
+ "1437476819": 18.49,
+ "1437476820": 18.5,
+ "1437476821": 18.52,
+ "1437476822": 18.53,
+ "1437476824": 18.54,
+ "1437476825": 18.55,
+ "1437476826": 18.56,
+ "1437476827": 18.57,
+ "1437476828": 18.58,
+ "1437476829": 18.59,
+ "1437476830": 18.6,
+ "1437476831": 18.61,
+ "1437476832": 18.62,
+ "1437476833": 18.63,
+ "1437476834": 18.64,
+ "1437476835": 18.65,
+ "1437476836": 18.66,
+ "1437476837": 18.67,
+ "1437476838": 18.68,
+ "1437476839": 18.7,
+ "1437476840": 18.71,
+ "1437476841": 18.72,
+ "1437476842": 18.73,
+ "1437476843": 18.74,
+ "1437476844": 18.75,
+ "1437476845": 18.76,
+ "1437476846": 18.77,
+ "1437476847": 18.78,
+ "1437476848": 18.79,
+ "1437476849": 18.8,
+ "1437476850": 18.81,
+ "1437476851": 18.83,
+ "1437476852": 18.84,
+ "1437476854": 18.85,
+ "1437476855": 18.86,
+ "1437476856": 18.87,
+ "1437476857": 18.88,
+ "1437476858": 18.89,
+ "1437476859": 18.9,
+ "1437476860": 18.91,
+ "1437476861": 18.92,
+ "1437476862": 18.93,
+ "1437476863": 18.94,
+ "1437476864": 18.95,
+ "1437476865": 18.96,
+ "1437476866": 18.97,
+ "1437476867": 18.98,
+ "1437476868": 18.99,
+ "1437476869": 19,
+ "1437476870": 19.02,
+ "1437476871": 19.03,
+ "1437476872": 19.04,
+ "1437476873": 19.05,
+ "1437476874": 19.06,
+ "1437476875": 19.07,
+ "1437476876": 19.08,
+ "1437476877": 19.09,
+ "1437476878": 19.1,
+ "1437476879": 19.12,
+ "1437476880": 19.13,
+ "1437476881": 19.14,
+ "1437476882": 19.15,
+ "1437476883": 19.16,
+ "1437476884": 19.17,
+ "1437476886": 19.18,
+ "1437476887": 19.19,
+ "1437476888": 19.21,
+ "1437476889": 19.22,
+ "1437476890": 19.23,
+ "1437476891": 19.24,
+ "1437476892": 19.25,
+ "1437476893": 19.26,
+ "1437476894": 19.27,
+ "1437476895": 19.28,
+ "1437476896": 19.29,
+ "1437476897": 19.3,
+ "1437476898": 19.31,
+ "1437476899": 19.32,
+ "1437476900": 19.33,
+ "1437476901": 19.34,
+ "1437476902": 19.35,
+ "1437476903": 19.36,
+ "1437476904": 19.36,
+ "1437476905": 19.37,
+ "1437476906": 19.38,
+ "1437476907": 19.39,
+ "1437476908": 19.39,
+ "1437476910": 19.4,
+ "1437476911": 19.41,
+ "1437476912": 19.41,
+ "1437476913": 19.42,
+ "1437476914": 19.42,
+ "1437476915": 19.42,
+ "1437476916": 19.43,
+ "1437476917": 19.43,
+ "1437476918": 19.44,
+ "1437476919": 19.44,
+ "1437476920": 19.45,
+ "1437476921": 19.46,
+ "1437476922": 19.46,
+ "1437476923": 19.46,
+ "1437476924": 19.47,
+ "1437476925": 19.47,
+ "1437476926": 19.48,
+ "1437476927": 19.48,
+ "1437476928": 19.48,
+ "1437476929": 19.48,
+ "1437476930": 19.49,
+ "1437476931": 19.49,
+ "1437476932": 19.49,
+ "1437476933": 19.49,
+ "1437476934": 19.5,
+ "1437476935": 19.5,
+ "1437476936": 19.5,
+ "1437476938": 19.51,
+ "1437476939": 19.51,
+ "1437476940": 19.51,
+ "1437476941": 19.51,
+ "1437476942": 19.52,
+ "1437476943": 19.52,
+ "1437476944": 19.52,
+ "1437476945": 19.53,
+ "1437476946": 19.53,
+ "1437476947": 19.53,
+ "1437476948": 19.54,
+ "1437476949": 19.54,
+ "1437476950": 19.54,
+ "1437476951": 19.55,
+ "1437476952": 19.55,
+ "1437476953": 19.55,
+ "1437476954": 19.56,
+ "1437476955": 19.56,
+ "1437476956": 19.56,
+ "1437476957": 19.57,
+ "1437476958": 19.57,
+ "1437476959": 19.57,
+ "1437476960": 19.58,
+ "1437476961": 19.58,
+ "1437476962": 19.58,
+ "1437476963": 19.59,
+ "1437476964": 19.59,
+ "1437476965": 19.59,
+ "1437476966": 19.59,
+ "1437476967": 19.6,
+ "1437476969": 19.6,
+ "1437476970": 19.6,
+ "1437476971": 19.61,
+ "1437476972": 19.61,
+ "1437476973": 19.61,
+ "1437476974": 19.62,
+ "1437476975": 19.62,
+ "1437476976": 19.62,
+ "1437476977": 19.63,
+ "1437476978": 19.63,
+ "1437476979": 19.63,
+ "1437476980": 19.64,
+ "1437476981": 19.64,
+ "1437476982": 19.64,
+ "1437476983": 19.65,
+ "1437476984": 19.65,
+ "1437476985": 19.65,
+ "1437476986": 19.66,
+ "1437476987": 19.66,
+ "1437476988": 19.66,
+ "1437476989": 19.67,
+ "1437476990": 19.67,
+ "1437476991": 19.67,
+ "1437476992": 19.68,
+ "1437476993": 19.68,
+ "1437476994": 19.68,
+ "1437476996": 19.69,
+ "1437476997": 19.69,
+ "1437476998": 19.69,
+ "1437476999": 19.7,
+ "1437477000": 19.7,
+ "1437477001": 19.7,
+ "1437477002": 19.71,
+ "1437477003": 19.71,
+ "1437477004": 19.72,
+ "1437477005": 19.72,
+ "1437477006": 19.72,
+ "1437477007": 19.73,
+ "1437477008": 19.74,
+ "1437477009": 19.74,
+ "1437477010": 19.75,
+ "1437477011": 19.76,
+ "1437477012": 19.76,
+ "1437477013": 19.77,
+ "1437477014": 19.78,
+ "1437477015": 19.79,
+ "1437477016": 19.8,
+ "1437477017": 19.8,
+ "1437477018": 19.81,
+ "1437477019": 19.82,
+ "1437477020": 19.83,
+ "1437477022": 19.83,
+ "1437477023": 19.84,
+ "1437477024": 19.85,
+ "1437477025": 19.85,
+ "1437477026": 19.86,
+ "1437477027": 19.86,
+ "1437477028": 19.87,
+ "1437477029": 19.87,
+ "1437477030": 19.88,
+ "1437477031": 19.89,
+ "1437477032": 19.89,
+ "1437477033": 19.9,
+ "1437477034": 19.9,
+ "1437477035": 19.91,
+ "1437477036": 19.91,
+ "1437477037": 19.92,
+ "1437477038": 19.92,
+ "1437477039": 19.93,
+ "1437477040": 19.93,
+ "1437477041": 19.94,
+ "1437477042": 19.94,
+ "1437477043": 19.95,
+ "1437477044": 19.95,
+ "1437477045": 19.96,
+ "1437477046": 19.96,
+ "1437477047": 19.97,
+ "1437477048": 19.97,
+ "1437477050": 19.98,
+ "1437477051": 19.98,
+ "1437477052": 19.99,
+ "1437477053": 19.99,
+ "1437477054": 20,
+ "1437477055": 20,
+ "1437477056": 20.01,
+ "1437477057": 20.01,
+ "1437477058": 20.02,
+ "1437477059": 20.02,
+ "1437477060": 20.03,
+ "1437477061": 20.03,
+ "1437477062": 20.04,
+ "1437477063": 20.04,
+ "1437477064": 20.05,
+ "1437477065": 20.05,
+ "1437477066": 20.06,
+ "1437477067": 20.06,
+ "1437477068": 20.07,
+ "1437477069": 20.07,
+ "1437477070": 20.08,
+ "1437477071": 20.08,
+ "1437477072": 20.09,
+ "1437477073": 20.1,
+ "1437477075": 20.11,
+ "1437477076": 20.11,
+ "1437477077": 20.12,
+ "1437477078": 20.13,
+ "1437477079": 20.13,
+ "1437477080": 20.14,
+ "1437477081": 20.15,
+ "1437477082": 20.15,
+ "1437477083": 20.16,
+ "1437477084": 20.17,
+ "1437477085": 20.17,
+ "1437477086": 20.18,
+ "1437477087": 20.19,
+ "1437477088": 20.2,
+ "1437477089": 20.2,
+ "1437477090": 20.21,
+ "1437477091": 20.22,
+ "1437477092": 20.23,
+ "1437477093": 20.24,
+ "1437477094": 20.25,
+ "1437477095": 20.25,
+ "1437477096": 20.26,
+ "1437477097": 20.27,
+ "1437477098": 20.28,
+ "1437477099": 20.3,
+ "1437477100": 20.31,
+ "1437477101": 20.32,
+ "1437477102": 20.33,
+ "1437477103": 20.34,
+ "1437477104": 20.35,
+ "1437477105": 20.37,
+ "1437477106": 20.38,
+ "1437477107": 20.39,
+ "1437477109": 20.4,
+ "1437477110": 20.42,
+ "1437477111": 20.43,
+ "1437477112": 20.44,
+ "1437477113": 20.46,
+ "1437477114": 20.47,
+ "1437477115": 20.48,
+ "1437477116": 20.5,
+ "1437477117": 20.51,
+ "1437477118": 20.52,
+ "1437477119": 20.54,
+ "1437477120": 20.55,
+ "1437477121": 20.56,
+ "1437477122": 20.57,
+ "1437477123": 20.59,
+ "1437477124": 20.6,
+ "1437477125": 20.61,
+ "1437477126": 20.62,
+ "1437477127": 20.63,
+ "1437477128": 20.64,
+ "1437477129": 20.66,
+ "1437477130": 20.67,
+ "1437477131": 20.68,
+ "1437477132": 20.69,
+ "1437477133": 20.7,
+ "1437477134": 20.71,
+ "1437477135": 20.73,
+ "1437477136": 20.74,
+ "1437477137": 20.75,
+ "1437477138": 20.76,
+ "1437477139": 20.77,
+ "1437477140": 20.78,
+ "1437477141": 20.79,
+ "1437477143": 20.81,
+ "1437477144": 20.82,
+ "1437477145": 20.83,
+ "1437477146": 20.84,
+ "1437477147": 20.85,
+ "1437477148": 20.86,
+ "1437477149": 20.88,
+ "1437477150": 20.89,
+ "1437477151": 20.9,
+ "1437477152": 20.91,
+ "1437477153": 20.93,
+ "1437477154": 20.94,
+ "1437477155": 20.95,
+ "1437477156": 20.96,
+ "1437477157": 20.98,
+ "1437477158": 20.99,
+ "1437477159": 21,
+ "1437477160": 21.01,
+ "1437477161": 21.03,
+ "1437477162": 21.04,
+ "1437477163": 21.05,
+ "1437477164": 21.06,
+ "1437477165": 21.08,
+ "1437477166": 21.09,
+ "1437477167": 21.1,
+ "1437477168": 21.11,
+ "1437477169": 21.12,
+ "1437477170": 21.14,
+ "1437477171": 21.15,
+ "1437477172": 21.16,
+ "1437477173": 21.18,
+ "1437477174": 21.19,
+ "1437477175": 21.2,
+ "1437477176": 21.22,
+ "1437477178": 21.23,
+ "1437477179": 21.25,
+ "1437477180": 21.26,
+ "1437477181": 21.27,
+ "1437477182": 21.29,
+ "1437477183": 21.3,
+ "1437477184": 21.32,
+ "1437477185": 21.33,
+ "1437477186": 21.35,
+ "1437477187": 21.36,
+ "1437477188": 21.38,
+ "1437477189": 21.39,
+ "1437477190": 21.41,
+ "1437477191": 21.42,
+ "1437477192": 21.43,
+ "1437477193": 21.44,
+ "1437477194": 21.45,
+ "1437477195": 21.47,
+ "1437477196": 21.48,
+ "1437477197": 21.49,
+ "1437477198": 21.49,
+ "1437477199": 21.5,
+ "1437477200": 21.51,
+ "1437477201": 21.52,
+ "1437477202": 21.53,
+ "1437477203": 21.54,
+ "1437477204": 21.55,
+ "1437477205": 21.56,
+ "1437477206": 21.57,
+ "1437477207": 21.58,
+ "1437477208": 21.59,
+ "1437477209": 21.6,
+ "1437477210": 21.61,
+ "1437477211": 21.62,
+ "1437477212": 21.63,
+ "1437477213": 21.64,
+ "1437477215": 21.65,
+ "1437477216": 21.66,
+ "1437477217": 21.68,
+ "1437477218": 21.69,
+ "1437477219": 21.7,
+ "1437477220": 21.71,
+ "1437477221": 21.72,
+ "1437477222": 21.74,
+ "1437477223": 21.75,
+ "1437477224": 21.76,
+ "1437477225": 21.77,
+ "1437477226": 21.79,
+ "1437477227": 21.8,
+ "1437477228": 21.81,
+ "1437477229": 21.83,
+ "1437477230": 21.84,
+ "1437477231": 21.85,
+ "1437477232": 21.86,
+ "1437477233": 21.88,
+ "1437477234": 21.89,
+ "1437477235": 21.9,
+ "1437477236": 21.92,
+ "1437477237": 21.93,
+ "1437477238": 21.94,
+ "1437477239": 21.96,
+ "1437477240": 21.97,
+ "1437477241": 21.99,
+ "1437477242": 22,
+ "1437477243": 22.01,
+ "1437477244": 22.03,
+ "1437477245": 22.04,
+ "1437477247": 22.06,
+ "1437477248": 22.08,
+ "1437477249": 22.09,
+ "1437477250": 22.1,
+ "1437477251": 22.12,
+ "1437477252": 22.13,
+ "1437477253": 22.14,
+ "1437477254": 22.16,
+ "1437477255": 22.17,
+ "1437477256": 22.19,
+ "1437477257": 22.2,
+ "1437477258": 22.22,
+ "1437477259": 22.24,
+ "1437477260": 22.25,
+ "1437477261": 22.27,
+ "1437477262": 22.29,
+ "1437477263": 22.3,
+ "1437477264": 22.32,
+ "1437477265": 22.34,
+ "1437477266": 22.36,
+ "1437477267": 22.38,
+ "1437477268": 22.4,
+ "1437477270": 22.42,
+ "1437477271": 22.43,
+ "1437477272": 22.45,
+ "1437477273": 22.47,
+ "1437477274": 22.49,
+ "1437477275": 22.51,
+ "1437477276": 22.53,
+ "1437477277": 22.54,
+ "1437477278": 22.56,
+ "1437477279": 22.58,
+ "1437477280": 22.6,
+ "1437477281": 22.61,
+ "1437477282": 22.63,
+ "1437477283": 22.65,
+ "1437477284": 22.67,
+ "1437477285": 22.68,
+ "1437477286": 22.7,
+ "1437477287": 22.71,
+ "1437477288": 22.73,
+ "1437477289": 22.75,
+ "1437477290": 22.76,
+ "1437477291": 22.78,
+ "1437477292": 22.79,
+ "1437477294": 22.81,
+ "1437477295": 22.82,
+ "1437477296": 22.84,
+ "1437477297": 22.85,
+ "1437477298": 22.86,
+ "1437477299": 22.88,
+ "1437477300": 22.89,
+ "1437477301": 22.9,
+ "1437477302": 22.92,
+ "1437477303": 22.93,
+ "1437477304": 22.94,
+ "1437477305": 22.95,
+ "1437477306": 22.97,
+ "1437477307": 22.98,
+ "1437477308": 22.99,
+ "1437477309": 23,
+ "1437477310": 23.01,
+ "1437477311": 23.02,
+ "1437477312": 23.04,
+ "1437477313": 23.05,
+ "1437477314": 23.06,
+ "1437477315": 23.07,
+ "1437477316": 23.08,
+ "1437477317": 23.09,
+ "1437477318": 23.1,
+ "1437477319": 23.12,
+ "1437477321": 23.13,
+ "1437477322": 23.14,
+ "1437477323": 23.15,
+ "1437477324": 23.16,
+ "1437477325": 23.17,
+ "1437477326": 23.18,
+ "1437477327": 23.19,
+ "1437477328": 23.2,
+ "1437477329": 23.22,
+ "1437477330": 23.23,
+ "1437477331": 23.24,
+ "1437477332": 23.25,
+ "1437477333": 23.27,
+ "1437477334": 23.28,
+ "1437477335": 23.29,
+ "1437477336": 23.31,
+ "1437477337": 23.32,
+ "1437477338": 23.33,
+ "1437477339": 23.34,
+ "1437477340": 23.35,
+ "1437477341": 23.36,
+ "1437477342": 23.37,
+ "1437477343": 23.38,
+ "1437477345": 23.39,
+ "1437477346": 23.39,
+ "1437477347": 23.4,
+ "1437477348": 23.41,
+ "1437477349": 23.41,
+ "1437477350": 23.42,
+ "1437477351": 23.42,
+ "1437477352": 23.42,
+ "1437477353": 23.42,
+ "1437477354": 23.42,
+ "1437477355": 23.42,
+ "1437477356": 23.42,
+ "1437477376": 23.42,
+ "1437477377": 23.42,
+ "1437477378": 23.42,
+ "1437477379": 23.42,
+ "1437477380": 23.42,
+ "1437477381": 23.43,
+ "1437477383": 23.43,
+ "1437477384": 23.43,
+ "1437477385": 23.43,
+ "1437477386": 23.43,
+ "1437477387": 23.43,
+ "1437477388": 23.43,
+ "1437477392": 23.43,
+ "1437477393": 23.43,
+ "1437477394": 23.43,
+ "1437477395": 23.43,
+ "1437477397": 23.43,
+ "1437477398": 23.43,
+ "1437477399": 23.43,
+ "1437477400": 23.43,
+ "1437477401": 23.43,
+ "1437477402": 23.44,
+ "1437477403": 23.44,
+ "1437477404": 23.44,
+ "1437477405": 23.44,
+ "1437477406": 23.44,
+ "1437477407": 23.44,
+ "1437477408": 23.44,
+ "1437477411": 23.44,
+ "1437477412": 23.44,
+ "1437477413": 23.44,
+ "1437477414": 23.44,
+ "1437477415": 23.44,
+ "1437477417": 23.44,
+ "1437477418": 23.44,
+ "1437477419": 23.44,
+ "1437477420": 23.44,
+ "1437477421": 23.44,
+ "1437477422": 23.44,
+ "1437477423": 23.44,
+ "1437477428": 23.44,
+ "1437477429": 23.44,
+ "1437477430": 23.44,
+ "1437477432": 23.44,
+ "1437477433": 23.44,
+ "1437477434": 23.45,
+ "1437477435": 23.45,
+ "1437477436": 23.45,
+ "1437477437": 23.45,
+ "1437477438": 23.45,
+ "1437477439": 23.45,
+ "1437477440": 23.45,
+ "1437477441": 23.45,
+ "1437477442": 23.45,
+ "1437477443": 23.45,
+ "1437477444": 23.46,
+ "1437477445": 23.46,
+ "1437477446": 23.46,
+ "1437477447": 23.46,
+ "1437477448": 23.46,
+ "1437477449": 23.46,
+ "1437477450": 23.46,
+ "1437477451": 23.46,
+ "1437477452": 23.46,
+ "1437477453": 23.46,
+ "1437477454": 23.46,
+ "1437477455": 23.47,
+ "1437477456": 23.47,
+ "1437477457": 23.47,
+ "1437477458": 23.47,
+ "1437477459": 23.47,
+ "1437477461": 23.47,
+ "1437477465": 23.47,
+ "1437477466": 23.47,
+ "1437477467": 23.47,
+ "1437477468": 23.47,
+ "1437477469": 23.47,
+ "1437477470": 23.47,
+ "1437477471": 23.47,
+ "1437477472": 23.48,
+ "1437477473": 23.48,
+ "1437477474": 23.48,
+ "1437477475": 23.48,
+ "1437477476": 23.48,
+ "1437477477": 23.48,
+ "1437477478": 23.48,
+ "1437477479": 23.48,
+ "1437477480": 23.48,
+ "1437477481": 23.49,
+ "1437477482": 23.49,
+ "1437477483": 23.49,
+ "1437477484": 23.49,
+ "1437477485": 23.49,
+ "1437477486": 23.49,
+ "1437477487": 23.49,
+ "1437477488": 23.5,
+ "1437477489": 23.5,
+ "1437477490": 23.5,
+ "1437477491": 23.5,
+ "1437477492": 23.5,
+ "1437477493": 23.5,
+ "1437477494": 23.5,
+ "1437477495": 23.5,
+ "1437477496": 23.5,
+ "1437477497": 23.51,
+ "1437477498": 23.51,
+ "1437477500": 23.51,
+ "1437477501": 23.51,
+ "1437477502": 23.52,
+ "1437477503": 23.52,
+ "1437477504": 23.52,
+ "1437477505": 23.53,
+ "1437477506": 23.53,
+ "1437477507": 23.53,
+ "1437477508": 23.54,
+ "1437477509": 23.54,
+ "1437477510": 23.55,
+ "1437477511": 23.55,
+ "1437477512": 23.55,
+ "1437477513": 23.56,
+ "1437477514": 23.56,
+ "1437477515": 23.57,
+ "1437477516": 23.57,
+ "1437477517": 23.58,
+ "1437477518": 23.58,
+ "1437477519": 23.58,
+ "1437477520": 23.59,
+ "1437477521": 23.59,
+ "1437477522": 23.59,
+ "1437477523": 23.6,
+ "1437477524": 23.6,
+ "1437477525": 23.6,
+ "1437477526": 23.6,
+ "1437477527": 23.6,
+ "1437477528": 23.6,
+ "1437477529": 23.6,
+ "1437477530": 23.6,
+ "1437477532": 23.61,
+ "1437477533": 23.61,
+ "1437477534": 23.61,
+ "1437477535": 23.61,
+ "1437477536": 23.61,
+ "1437477537": 23.61,
+ "1437477538": 23.61,
+ "1437477539": 23.61,
+ "1437477540": 23.61,
+ "1437477541": 23.61,
+ "1437477542": 23.61,
+ "1437477543": 23.61,
+ "1437477544": 23.61,
+ "1437477545": 23.62,
+ "1437477546": 23.62,
+ "1437477547": 23.62,
+ "1437477548": 23.62,
+ "1437477549": 23.62,
+ "1437477550": 23.62,
+ "1437477551": 23.62,
+ "1437477552": 23.62,
+ "1437477553": 23.62,
+ "1437477555": 23.62,
+ "1437477556": 23.62,
+ "1437477557": 23.62,
+ "1437477558": 23.62,
+ "1437477559": 23.62,
+ "1437477560": 23.62,
+ "1437477561": 23.63,
+ "1437477562": 23.63,
+ "1437477563": 23.63,
+ "1437477564": 23.63,
+ "1437477565": 23.63,
+ "1437477566": 23.63,
+ "1437477567": 23.63,
+ "1437477568": 23.63,
+ "1437477569": 23.63,
+ "1437477570": 23.63,
+ "1437477571": 23.63,
+ "1437477572": 23.63,
+ "1437477573": 23.63,
+ "1437477574": 23.63,
+ "1437477575": 23.63,
+ "1437477576": 23.63,
+ "1437477577": 23.63,
+ "1437477578": 23.63,
+ "1437477580": 23.63,
+ "1437477581": 23.63,
+ "1437477582": 23.63,
+ "1437477583": 23.63,
+ "1437477584": 23.64,
+ "1437477585": 23.64,
+ "1437477586": 23.64,
+ "1437477587": 23.64,
+ "1437477588": 23.64,
+ "1437477589": 23.64,
+ "1437477590": 23.64,
+ "1437477591": 23.64,
+ "1437477592": 23.65,
+ "1437477593": 23.65,
+ "1437477594": 23.65,
+ "1437477595": 23.65,
+ "1437477596": 23.65,
+ "1437477597": 23.65,
+ "1437477598": 23.65,
+ "1437477599": 23.65,
+ "1437477600": 23.65,
+ "1437477601": 23.65,
+ "1437477604": 23.65,
+ "1437477605": 23.65,
+ "1437477607": 23.65,
+ "1437477608": 23.66,
+ "1437477609": 23.66,
+ "1437477610": 23.66,
+ "1437477611": 23.66,
+ "1437477612": 23.66,
+ "1437477613": 23.66,
+ "1437477614": 23.67,
+ "1437477615": 23.67,
+ "1437477616": 23.67,
+ "1437477617": 23.68,
+ "1437477618": 23.68,
+ "1437477619": 23.68,
+ "1437477620": 23.69,
+ "1437477621": 23.69,
+ "1437477622": 23.7,
+ "1437477623": 23.7,
+ "1437477624": 23.71,
+ "1437477625": 23.71,
+ "1437477626": 23.72,
+ "1437477627": 23.73,
+ "1437477628": 23.73,
+ "1437477629": 23.74,
+ "1437477630": 23.75,
+ "1437477631": 23.76,
+ "1437477632": 23.77,
+ "1437477633": 23.78,
+ "1437477634": 23.79,
+ "1437477635": 23.8,
+ "1437477636": 23.81,
+ "1437477638": 23.82,
+ "1437477639": 23.83,
+ "1437477640": 23.84,
+ "1437477641": 23.85,
+ "1437477642": 23.85,
+ "1437477643": 23.86,
+ "1437477644": 23.87,
+ "1437477645": 23.88,
+ "1437477646": 23.89,
+ "1437477647": 23.9,
+ "1437477648": 23.91,
+ "1437477649": 23.92,
+ "1437477650": 23.93,
+ "1437477651": 23.94,
+ "1437477652": 23.95,
+ "1437477653": 23.96,
+ "1437477654": 23.97,
+ "1437477655": 23.98,
+ "1437477656": 23.98,
+ "1437477657": 23.99,
+ "1437477658": 23.99,
+ "1437477659": 23.99,
+ "1437477660": 24,
+ "1437477661": 24,
+ "1437477662": 24,
+ "1437477663": 24,
+ "1437477664": 24,
+ "1437477665": 24,
+ "1437477666": 24,
+ "1437477667": 24,
+ "1437477668": 24,
+ "1437477669": 24,
+ "1437477671": 24,
+ "1437477672": 24,
+ "1437477673": 24,
+ "1437477674": 24,
+ "1437477676": 24.01,
+ "1437477677": 24.01,
+ "1437477678": 24.01,
+ "1437477679": 24.01,
+ "1437477680": 24.01,
+ "1437477681": 24.01,
+ "1437477682": 24.01,
+ "1437477683": 24.01,
+ "1437477684": 24.01,
+ "1437477685": 24.01,
+ "1437477688": 24.01,
+ "1437477689": 24.01,
+ "1437477690": 24.01,
+ "1437477691": 24.01,
+ "1437477692": 24.01,
+ "1437477693": 24.01,
+ "1437477695": 24.02,
+ "1437477696": 24.02,
+ "1437477697": 24.02,
+ "1437477698": 24.02,
+ "1437477699": 24.02,
+ "1437477700": 24.02,
+ "1437477701": 24.02,
+ "1437477702": 24.02,
+ "1437477703": 24.02,
+ "1437477704": 24.02,
+ "1437477705": 24.02,
+ "1437477706": 24.02
+ },
+ "speeds": {
+ "1437474517": 12.095,
+ "1437474518": 9.787,
+ "1437474519": 8.439,
+ "1437474520": 7.538,
+ "1437474521": 8.243,
+ "1437474522": 12.327,
+ "1437474523": 23.474,
+ "1437474524": 205.761,
+ "1437474525": 0,
+ "1437474526": 0,
+ "1437474527": 490.196,
+ "1437474528": 22.104,
+ "1437474529": 12.318,
+ "1437474530": 9.358,
+ "1437474532": 7.095,
+ "1437474533": 6.136,
+ "1437474534": 5.602,
+ "1437474535": 5.038,
+ "1437474536": 4.659,
+ "1437474537": 4.409,
+ "1437474538": 4.292,
+ "1437474539": 4.191,
+ "1437474540": 4.099,
+ "1437474541": 4.868,
+ "1437474542": 6.039,
+ "1437474543": 5.834,
+ "1437474544": 4.57,
+ "1437474545": 3.849,
+ "1437474546": 3.405,
+ "1437474547": 3.161,
+ "1437474548": 2.907,
+ "1437474549": 2.699,
+ "1437474550": 2.537,
+ "1437474551": 2.379,
+ "1437474552": 2.239,
+ "1437474553": 2.117,
+ "1437474554": 2.021,
+ "1437474555": 1.938,
+ "1437474556": 1.863,
+ "1437474557": 1.8,
+ "1437474558": 1.757,
+ "1437474559": 1.726,
+ "1437474560": 1.694,
+ "1437474561": 1.665,
+ "1437474562": 1.644,
+ "1437474563": 1.627,
+ "1437474564": 1.609,
+ "1437474566": 1.593,
+ "1437474567": 1.576,
+ "1437474568": 1.562,
+ "1437474569": 1.551,
+ "1437474570": 1.539,
+ "1437474571": 1.528,
+ "1437474572": 1.515,
+ "1437474573": 1.5,
+ "1437474574": 1.489,
+ "1437474575": 1.485,
+ "1437474576": 1.481,
+ "1437474577": 1.485,
+ "1437474578": 1.485,
+ "1437474579": 1.483,
+ "1437474580": 1.483,
+ "1437474581": 1.473,
+ "1437474582": 1.465,
+ "1437474583": 1.463,
+ "1437474584": 1.475,
+ "1437474585": 1.49,
+ "1437474586": 1.511,
+ "1437474587": 1.538,
+ "1437474588": 1.557,
+ "1437474589": 1.563,
+ "1437474590": 1.568,
+ "1437474591": 1.568,
+ "1437474592": 1.566,
+ "1437474593": 1.564,
+ "1437474594": 1.562,
+ "1437474595": 1.56,
+ "1437474596": 1.56,
+ "1437474597": 1.563,
+ "1437474598": 1.566,
+ "1437474599": 1.571,
+ "1437474600": 1.59,
+ "1437474601": 1.617,
+ "1437474603": 1.63,
+ "1437474604": 1.632,
+ "1437474605": 1.625,
+ "1437474606": 1.61,
+ "1437474607": 1.598,
+ "1437474608": 1.592,
+ "1437474609": 1.588,
+ "1437474610": 1.581,
+ "1437474611": 1.57,
+ "1437474612": 1.563,
+ "1437474613": 1.558,
+ "1437474614": 1.557,
+ "1437474615": 1.56,
+ "1437474616": 1.566,
+ "1437474617": 1.568,
+ "1437474618": 1.568,
+ "1437474619": 1.566,
+ "1437474620": 1.577,
+ "1437474621": 1.594,
+ "1437474622": 1.584,
+ "1437474623": 1.576,
+ "1437474624": 1.591,
+ "1437474626": 1.615,
+ "1437474627": 1.626,
+ "1437474628": 1.639,
+ "1437474629": 1.662,
+ "1437474630": 1.708,
+ "1437474631": 1.754,
+ "1437474632": 1.79,
+ "1437474633": 1.831,
+ "1437474634": 1.888,
+ "1437474635": 1.918,
+ "1437474636": 1.937,
+ "1437474637": 1.945,
+ "1437474638": 1.944,
+ "1437474639": 1.925,
+ "1437474640": 1.905,
+ "1437474641": 1.88,
+ "1437474642": 1.845,
+ "1437474643": 1.809,
+ "1437474644": 1.797,
+ "1437474645": 1.873,
+ "1437474646": 1.97,
+ "1437474647": 2.08,
+ "1437474648": 2.207,
+ "1437474649": 2.365,
+ "1437474650": 2.515,
+ "1437474652": 2.697,
+ "1437474653": 2.883,
+ "1437474654": 3.069,
+ "1437474655": 3.263,
+ "1437474656": 3.474,
+ "1437474657": 3.678,
+ "1437474658": 3.895,
+ "1437474659": 4.012,
+ "1437474660": 3.982,
+ "1437474661": 3.872,
+ "1437474662": 3.729,
+ "1437474663": 3.552,
+ "1437474664": 3.396,
+ "1437474665": 3.285,
+ "1437474666": 3.259,
+ "1437474667": 3.426,
+ "1437474668": 3.911,
+ "1437474669": 4.414,
+ "1437474670": 4.869,
+ "1437474671": 5.231,
+ "1437474672": 5.567,
+ "1437474673": 5.877,
+ "1437474674": 5.969,
+ "1437474675": 5.98,
+ "1437474676": 5.908,
+ "1437474677": 5.834,
+ "1437474678": 5.783,
+ "1437474679": 5.679,
+ "1437474681": 5.557,
+ "1437474682": 5.447,
+ "1437474683": 5.378,
+ "1437474684": 5.347,
+ "1437474685": 5.313,
+ "1437474686": 5.299,
+ "1437474687": 5.283,
+ "1437474688": 5.269,
+ "1437474689": 5.238,
+ "1437474690": 5.241,
+ "1437474691": 5.223,
+ "1437474692": 5.218,
+ "1437474693": 5.218,
+ "1437474694": 5.168,
+ "1437474695": 5.182,
+ "1437474696": 5.261,
+ "1437474697": 5.281,
+ "1437474698": 5.171,
+ "1437474699": 5.095,
+ "1437474700": 4.981,
+ "1437474701": 4.892,
+ "1437474702": 4.853,
+ "1437474703": 4.809,
+ "1437474705": 4.803,
+ "1437474706": 4.82,
+ "1437474707": 4.865,
+ "1437474708": 4.832,
+ "1437474709": 4.818,
+ "1437474710": 4.928,
+ "1437474711": 4.756,
+ "1437474712": 4.635,
+ "1437474713": 4.522,
+ "1437474714": 4.465,
+ "1437474715": 4.389,
+ "1437474716": 4.328,
+ "1437474717": 4.276,
+ "1437474718": 4.222,
+ "1437474719": 4.191,
+ "1437474720": 4.178,
+ "1437474721": 4.172,
+ "1437474722": 4.161,
+ "1437474723": 4.15,
+ "1437474724": 4.158,
+ "1437474725": 4.151,
+ "1437474726": 4.151,
+ "1437474727": 4.172,
+ "1437474728": 4.18,
+ "1437474729": 4.212,
+ "1437474730": 4.223,
+ "1437474732": 4.278,
+ "1437474733": 4.307,
+ "1437474734": 4.366,
+ "1437474735": 4.437,
+ "1437474736": 4.393,
+ "1437474737": 4.302,
+ "1437474738": 4.169,
+ "1437474739": 3.967,
+ "1437474740": 3.746,
+ "1437474741": 3.48,
+ "1437474742": 3.189,
+ "1437474743": 2.924,
+ "1437474744": 2.693,
+ "1437474745": 2.485,
+ "1437474746": 2.31,
+ "1437474747": 2.178,
+ "1437474748": 2.105,
+ "1437474749": 2.082,
+ "1437474750": 2.111,
+ "1437474751": 2.18,
+ "1437474752": 2.279,
+ "1437474753": 2.388,
+ "1437474754": 2.494,
+ "1437474755": 2.604,
+ "1437474756": 2.714,
+ "1437474757": 2.825,
+ "1437474758": 2.923,
+ "1437474760": 3.026,
+ "1437474761": 3.118,
+ "1437474762": 3.192,
+ "1437474763": 3.256,
+ "1437474764": 3.315,
+ "1437474765": 3.363,
+ "1437474766": 3.43,
+ "1437474767": 3.479,
+ "1437474768": 3.507,
+ "1437474769": 3.543,
+ "1437474770": 3.572,
+ "1437474771": 3.605,
+ "1437474772": 3.642,
+ "1437474773": 3.692,
+ "1437474774": 3.715,
+ "1437474775": 3.733,
+ "1437474776": 3.736,
+ "1437474777": 3.745,
+ "1437474778": 3.735,
+ "1437474779": 3.74,
+ "1437474780": 3.759,
+ "1437474781": 3.784,
+ "1437474782": 3.797,
+ "1437474783": 3.787,
+ "1437474785": 3.762,
+ "1437474786": 3.744,
+ "1437474787": 3.746,
+ "1437474788": 3.724,
+ "1437474789": 3.721,
+ "1437474790": 3.736,
+ "1437474791": 3.743,
+ "1437474792": 3.759,
+ "1437474793": 3.745,
+ "1437474794": 3.729,
+ "1437474795": 3.718,
+ "1437474796": 3.721,
+ "1437474797": 3.719,
+ "1437474798": 3.719,
+ "1437474799": 3.744,
+ "1437474800": 3.756,
+ "1437474801": 3.82,
+ "1437474802": 3.844,
+ "1437474803": 3.856,
+ "1437474804": 3.865,
+ "1437474805": 3.815,
+ "1437474806": 3.726,
+ "1437474808": 3.441,
+ "1437474809": 3.033,
+ "1437474810": 2.757,
+ "1437474811": 2.559,
+ "1437474812": 2.429,
+ "1437474813": 2.367,
+ "1437474814": 2.346,
+ "1437474815": 2.358,
+ "1437474816": 2.379,
+ "1437474817": 2.415,
+ "1437474818": 2.452,
+ "1437474819": 2.485,
+ "1437474820": 2.515,
+ "1437474821": 2.529,
+ "1437474822": 2.525,
+ "1437474823": 2.516,
+ "1437474824": 2.493,
+ "1437474825": 2.465,
+ "1437474827": 2.422,
+ "1437474828": 2.356,
+ "1437474829": 2.253,
+ "1437474830": 2.144,
+ "1437474831": 2.061,
+ "1437474832": 1.988,
+ "1437474833": 1.927,
+ "1437474834": 1.867,
+ "1437474835": 1.806,
+ "1437474836": 1.754,
+ "1437474837": 1.702,
+ "1437474838": 1.654,
+ "1437474839": 1.608,
+ "1437474840": 1.567,
+ "1437474841": 1.532,
+ "1437474842": 1.497,
+ "1437474843": 1.465,
+ "1437474844": 1.435,
+ "1437474845": 1.409,
+ "1437474846": 1.387,
+ "1437474847": 1.367,
+ "1437474848": 1.346,
+ "1437474849": 1.329,
+ "1437474850": 1.316,
+ "1437474851": 1.305,
+ "1437474852": 1.299,
+ "1437474853": 1.298,
+ "1437474854": 1.301,
+ "1437474855": 1.307,
+ "1437474856": 1.319,
+ "1437474857": 1.333,
+ "1437474859": 1.355,
+ "1437474860": 1.378,
+ "1437474861": 1.396,
+ "1437474862": 1.411,
+ "1437474863": 1.424,
+ "1437474864": 1.438,
+ "1437474865": 1.453,
+ "1437474866": 1.467,
+ "1437474867": 1.477,
+ "1437474868": 1.485,
+ "1437474869": 1.491,
+ "1437474870": 1.494,
+ "1437474871": 1.5,
+ "1437474872": 1.51,
+ "1437474873": 1.52,
+ "1437474874": 1.528,
+ "1437474875": 1.536,
+ "1437474876": 1.543,
+ "1437474877": 1.548,
+ "1437474878": 1.551,
+ "1437474879": 1.552,
+ "1437474880": 1.549,
+ "1437474881": 1.54,
+ "1437474882": 1.529,
+ "1437474883": 1.516,
+ "1437474884": 1.499,
+ "1437474885": 1.481,
+ "1437474886": 1.462,
+ "1437474887": 1.443,
+ "1437474888": 1.424,
+ "1437474890": 1.407,
+ "1437474891": 1.392,
+ "1437474892": 1.378,
+ "1437474893": 1.368,
+ "1437474894": 1.359,
+ "1437474895": 1.352,
+ "1437474896": 1.351,
+ "1437474897": 1.359,
+ "1437474898": 1.37,
+ "1437474899": 1.388,
+ "1437474900": 1.403,
+ "1437474901": 1.417,
+ "1437474902": 1.431,
+ "1437474903": 1.446,
+ "1437474904": 1.462,
+ "1437474905": 1.476,
+ "1437474906": 1.488,
+ "1437474907": 1.497,
+ "1437474908": 1.502,
+ "1437474909": 1.501,
+ "1437474910": 1.495,
+ "1437474911": 1.481,
+ "1437474912": 1.458,
+ "1437474913": 1.434,
+ "1437474914": 1.408,
+ "1437474915": 1.381,
+ "1437474916": 1.357,
+ "1437474917": 1.333,
+ "1437474918": 1.312,
+ "1437474919": 1.291,
+ "1437474920": 1.271,
+ "1437474921": 1.254,
+ "1437474923": 1.239,
+ "1437474924": 1.224,
+ "1437474925": 1.211,
+ "1437474926": 1.2,
+ "1437474927": 1.191,
+ "1437474928": 1.185,
+ "1437474929": 1.185,
+ "1437474930": 1.202,
+ "1437474931": 1.255,
+ "1437474932": 1.326,
+ "1437474933": 1.402,
+ "1437474934": 1.485,
+ "1437474935": 1.571,
+ "1437474936": 1.661,
+ "1437474937": 1.749,
+ "1437474938": 1.837,
+ "1437474939": 1.931,
+ "1437474940": 2.019,
+ "1437474941": 2.097,
+ "1437474942": 2.153,
+ "1437474943": 2.179,
+ "1437474944": 2.188,
+ "1437474945": 2.182,
+ "1437474946": 2.166,
+ "1437474947": 2.144,
+ "1437474948": 2.112,
+ "1437474949": 2.079,
+ "1437474950": 2.043,
+ "1437474951": 1.999,
+ "1437474952": 1.947,
+ "1437474953": 1.907,
+ "1437474954": 1.868,
+ "1437474955": 1.831,
+ "1437474956": 1.795,
+ "1437474957": 1.76,
+ "1437474958": 1.728,
+ "1437474959": 1.697,
+ "1437474960": 1.669,
+ "1437474962": 1.64,
+ "1437474963": 1.604,
+ "1437474964": 1.568,
+ "1437474965": 1.533,
+ "1437474966": 1.499,
+ "1437474967": 1.469,
+ "1437474968": 1.446,
+ "1437474969": 1.427,
+ "1437474970": 1.414,
+ "1437474971": 1.405,
+ "1437474972": 1.402,
+ "1437474973": 1.401,
+ "1437474974": 1.402,
+ "1437474975": 1.406,
+ "1437474976": 1.41,
+ "1437474977": 1.413,
+ "1437474978": 1.412,
+ "1437474979": 1.41,
+ "1437474980": 1.407,
+ "1437474981": 1.403,
+ "1437474982": 1.4,
+ "1437474983": 1.39,
+ "1437474984": 1.37,
+ "1437474985": 1.351,
+ "1437474986": 1.328,
+ "1437474987": 1.298,
+ "1437474988": 1.262,
+ "1437474989": 1.221,
+ "1437474990": 1.185,
+ "1437474992": 1.169,
+ "1437474993": 1.16,
+ "1437474994": 1.176,
+ "1437474995": 1.217,
+ "1437474996": 1.267,
+ "1437474997": 1.313,
+ "1437474998": 1.334,
+ "1437474999": 1.325,
+ "1437475000": 1.297,
+ "1437475001": 1.268,
+ "1437475002": 1.239,
+ "1437475003": 1.21,
+ "1437475004": 1.181,
+ "1437475005": 1.16,
+ "1437475006": 1.137,
+ "1437475007": 1.108,
+ "1437475008": 1.083,
+ "1437475009": 1.056,
+ "1437475010": 1.029,
+ "1437475012": 1,
+ "1437475013": 0.981,
+ "1437475014": 0.969,
+ "1437475015": 0.963,
+ "1437475016": 0.96,
+ "1437475017": 0.961,
+ "1437475018": 0.963,
+ "1437475019": 0.965,
+ "1437475020": 0.969,
+ "1437475021": 0.974,
+ "1437475022": 0.979,
+ "1437475023": 0.985,
+ "1437475024": 0.993,
+ "1437475025": 1.003,
+ "1437475026": 1.014,
+ "1437475027": 1.024,
+ "1437475029": 1.037,
+ "1437475030": 1.049,
+ "1437475031": 1.061,
+ "1437475032": 1.072,
+ "1437475033": 1.083,
+ "1437475034": 1.094,
+ "1437475035": 1.105,
+ "1437475036": 1.116,
+ "1437475037": 1.128,
+ "1437475038": 1.139,
+ "1437475039": 1.151,
+ "1437475040": 1.165,
+ "1437475041": 1.18,
+ "1437475042": 1.198,
+ "1437475043": 1.218,
+ "1437475044": 1.239,
+ "1437475045": 1.261,
+ "1437475046": 1.285,
+ "1437475047": 1.308,
+ "1437475048": 1.334,
+ "1437475049": 1.357,
+ "1437475050": 1.375,
+ "1437475051": 1.39,
+ "1437475052": 1.404,
+ "1437475054": 1.41,
+ "1437475055": 1.415,
+ "1437475056": 1.422,
+ "1437475057": 1.43,
+ "1437475058": 1.437,
+ "1437475059": 1.444,
+ "1437475060": 1.449,
+ "1437475061": 1.456,
+ "1437475062": 1.46,
+ "1437475063": 1.463,
+ "1437475064": 1.466,
+ "1437475065": 1.469,
+ "1437475066": 1.473,
+ "1437475067": 1.477,
+ "1437475068": 1.48,
+ "1437475069": 1.482,
+ "1437475070": 1.483,
+ "1437475071": 1.482,
+ "1437475072": 1.485,
+ "1437475073": 1.479,
+ "1437475074": 1.459,
+ "1437475075": 1.434,
+ "1437475076": 1.402,
+ "1437475077": 1.364,
+ "1437475078": 1.329,
+ "1437475079": 1.3,
+ "1437475080": 1.287,
+ "1437475081": 1.297,
+ "1437475083": 1.325,
+ "1437475084": 1.362,
+ "1437475085": 1.402,
+ "1437475086": 1.446,
+ "1437475087": 1.492,
+ "1437475088": 1.529,
+ "1437475089": 1.565,
+ "1437475090": 1.608,
+ "1437475091": 1.649,
+ "1437475092": 1.69,
+ "1437475093": 1.736,
+ "1437475094": 1.779,
+ "1437475095": 1.82,
+ "1437475096": 1.859,
+ "1437475097": 1.895,
+ "1437475098": 1.93,
+ "1437475099": 1.963,
+ "1437475100": 1.994,
+ "1437475101": 2.023,
+ "1437475102": 2.048,
+ "1437475103": 2.054,
+ "1437475104": 2.044,
+ "1437475105": 2.016,
+ "1437475106": 1.969,
+ "1437475107": 1.917,
+ "1437475108": 1.864,
+ "1437475109": 1.814,
+ "1437475110": 1.774,
+ "1437475112": 1.744,
+ "1437475113": 1.725,
+ "1437475114": 1.722,
+ "1437475115": 1.737,
+ "1437475116": 1.772,
+ "1437475117": 1.824,
+ "1437475118": 1.889,
+ "1437475119": 1.96,
+ "1437475120": 2.037,
+ "1437475121": 2.119,
+ "1437475122": 2.186,
+ "1437475123": 2.247,
+ "1437475124": 2.285,
+ "1437475125": 2.301,
+ "1437475126": 2.291,
+ "1437475127": 2.253,
+ "1437475128": 2.199,
+ "1437475129": 2.149,
+ "1437475130": 2.101,
+ "1437475131": 2.056,
+ "1437475132": 2.013,
+ "1437475133": 1.971,
+ "1437475134": 1.93,
+ "1437475135": 1.887,
+ "1437475136": 1.847,
+ "1437475137": 1.81,
+ "1437475138": 1.768,
+ "1437475139": 1.728,
+ "1437475140": 1.688,
+ "1437475141": 1.643,
+ "1437475142": 1.593,
+ "1437475143": 1.541,
+ "1437475145": 1.492,
+ "1437475146": 1.443,
+ "1437475147": 1.402,
+ "1437475148": 1.371,
+ "1437475149": 1.34,
+ "1437475150": 1.315,
+ "1437475151": 1.3,
+ "1437475152": 1.293,
+ "1437475153": 1.292,
+ "1437475154": 1.295,
+ "1437475155": 1.299,
+ "1437475156": 1.303,
+ "1437475157": 1.309,
+ "1437475158": 1.316,
+ "1437475159": 1.32,
+ "1437475160": 1.325,
+ "1437475161": 1.337,
+ "1437475162": 1.351,
+ "1437475163": 1.357,
+ "1437475164": 1.34,
+ "1437475165": 1.309,
+ "1437475166": 1.282,
+ "1437475167": 1.258,
+ "1437475168": 1.237,
+ "1437475169": 1.22,
+ "1437475170": 1.212,
+ "1437475171": 1.221,
+ "1437475173": 1.242,
+ "1437475174": 1.27,
+ "1437475175": 1.299,
+ "1437475176": 1.329,
+ "1437475177": 1.359,
+ "1437475178": 1.38,
+ "1437475179": 1.396,
+ "1437475180": 1.41,
+ "1437475181": 1.423,
+ "1437475182": 1.434,
+ "1437475183": 1.444,
+ "1437475184": 1.454,
+ "1437475185": 1.464,
+ "1437475186": 1.473,
+ "1437475187": 1.481,
+ "1437475188": 1.487,
+ "1437475189": 1.493,
+ "1437475190": 1.5,
+ "1437475191": 1.504,
+ "1437475192": 1.506,
+ "1437475193": 1.509,
+ "1437475194": 1.512,
+ "1437475195": 1.513,
+ "1437475196": 1.51,
+ "1437475197": 1.507,
+ "1437475198": 1.499,
+ "1437475200": 1.491,
+ "1437475201": 1.48,
+ "1437475202": 1.465,
+ "1437475203": 1.454,
+ "1437475204": 1.452,
+ "1437475205": 1.45,
+ "1437475206": 1.447,
+ "1437475207": 1.445,
+ "1437475208": 1.444,
+ "1437475209": 1.441,
+ "1437475210": 1.438,
+ "1437475211": 1.437,
+ "1437475212": 1.437,
+ "1437475213": 1.44,
+ "1437475214": 1.454,
+ "1437475215": 1.472,
+ "1437475216": 1.491,
+ "1437475217": 1.51,
+ "1437475218": 1.53,
+ "1437475219": 1.545,
+ "1437475220": 1.556,
+ "1437475221": 1.565,
+ "1437475222": 1.573,
+ "1437475223": 1.581,
+ "1437475224": 1.588,
+ "1437475225": 1.594,
+ "1437475226": 1.601,
+ "1437475227": 1.601,
+ "1437475228": 1.593,
+ "1437475230": 1.571,
+ "1437475231": 1.538,
+ "1437475232": 1.513,
+ "1437475233": 1.492,
+ "1437475234": 1.483,
+ "1437475235": 1.483,
+ "1437475236": 1.488,
+ "1437475237": 1.492,
+ "1437475238": 1.496,
+ "1437475239": 1.499,
+ "1437475240": 1.503,
+ "1437475241": 1.507,
+ "1437475242": 1.511,
+ "1437475243": 1.517,
+ "1437475244": 1.522,
+ "1437475245": 1.524,
+ "1437475246": 1.519,
+ "1437475247": 1.516,
+ "1437475248": 1.513,
+ "1437475249": 1.518,
+ "1437475250": 1.522,
+ "1437475251": 1.527,
+ "1437475252": 1.529,
+ "1437475253": 1.53,
+ "1437475254": 1.516,
+ "1437475255": 1.493,
+ "1437475256": 1.475,
+ "1437475257": 1.481,
+ "1437475258": 1.548,
+ "1437475259": 1.631,
+ "1437475260": 1.716,
+ "1437475261": 1.811,
+ "1437475262": 1.908,
+ "1437475263": 2.008,
+ "1437475264": 2.11,
+ "1437475265": 2.219,
+ "1437475266": 2.33,
+ "1437475267": 2.44,
+ "1437475269": 2.555,
+ "1437475270": 2.665,
+ "1437475271": 2.775,
+ "1437475272": 2.873,
+ "1437475273": 2.955,
+ "1437475274": 3.028,
+ "1437475275": 3.119,
+ "1437475276": 3.198,
+ "1437475277": 3.256,
+ "1437475278": 3.346,
+ "1437475279": 3.408,
+ "1437475280": 3.462,
+ "1437475281": 3.502,
+ "1437475282": 3.537,
+ "1437475283": 3.56,
+ "1437475284": 3.573,
+ "1437475285": 3.572,
+ "1437475286": 3.607,
+ "1437475287": 3.631,
+ "1437475288": 3.657,
+ "1437475289": 3.661,
+ "1437475290": 3.659,
+ "1437475291": 3.657,
+ "1437475292": 3.618,
+ "1437475293": 3.575,
+ "1437475294": 3.523,
+ "1437475295": 3.458,
+ "1437475296": 3.385,
+ "1437475297": 3.315,
+ "1437475298": 3.243,
+ "1437475299": 3.147,
+ "1437475300": 3.046,
+ "1437475301": 2.917,
+ "1437475302": 2.782,
+ "1437475303": 2.662,
+ "1437475304": 2.548,
+ "1437475305": 2.436,
+ "1437475306": 2.335,
+ "1437475308": 2.231,
+ "1437475309": 2.128,
+ "1437475310": 2.023,
+ "1437475311": 1.924,
+ "1437475312": 1.833,
+ "1437475313": 1.748,
+ "1437475314": 1.673,
+ "1437475315": 1.605,
+ "1437475316": 1.544,
+ "1437475317": 1.485,
+ "1437475318": 1.429,
+ "1437475319": 1.378,
+ "1437475320": 1.329,
+ "1437475321": 1.281,
+ "1437475322": 1.242,
+ "1437475323": 1.212,
+ "1437475324": 1.188,
+ "1437475325": 1.172,
+ "1437475326": 1.165,
+ "1437475327": 1.17,
+ "1437475328": 1.189,
+ "1437475329": 1.218,
+ "1437475330": 1.254,
+ "1437475331": 1.297,
+ "1437475332": 1.342,
+ "1437475333": 1.39,
+ "1437475334": 1.443,
+ "1437475335": 1.495,
+ "1437475336": 1.54,
+ "1437475337": 1.578,
+ "1437475338": 1.609,
+ "1437475339": 1.633,
+ "1437475340": 1.635,
+ "1437475342": 1.552,
+ "1437475343": 1.412,
+ "1437475344": 1.406,
+ "1437475345": 1.5,
+ "1437475346": 1.61,
+ "1437475347": 1.616,
+ "1437475348": 1.596,
+ "1437475349": 1.574,
+ "1437475350": 1.553,
+ "1437475351": 1.537,
+ "1437475352": 1.533,
+ "1437475353": 1.539,
+ "1437475354": 1.541,
+ "1437475355": 1.526,
+ "1437475356": 1.511,
+ "1437475357": 1.494,
+ "1437475358": 1.472,
+ "1437475359": 1.441,
+ "1437475360": 1.392,
+ "1437475361": 1.344,
+ "1437475362": 1.305,
+ "1437475363": 1.282,
+ "1437475364": 1.297,
+ "1437475365": 1.362,
+ "1437475366": 1.452,
+ "1437475367": 1.547,
+ "1437475368": 1.628,
+ "1437475369": 1.67,
+ "1437475371": 1.678,
+ "1437475372": 1.671,
+ "1437475373": 1.655,
+ "1437475374": 1.628,
+ "1437475375": 1.59,
+ "1437475376": 1.538,
+ "1437475377": 1.468,
+ "1437475378": 1.394,
+ "1437475379": 1.331,
+ "1437475380": 1.284,
+ "1437475381": 1.26,
+ "1437475382": 1.3,
+ "1437475383": 1.361,
+ "1437475384": 1.429,
+ "1437475385": 1.496,
+ "1437475386": 1.54,
+ "1437475387": 1.574,
+ "1437475388": 1.598,
+ "1437475389": 1.621,
+ "1437475390": 1.646,
+ "1437475391": 1.68,
+ "1437475392": 1.715,
+ "1437475393": 1.733,
+ "1437475394": 1.722,
+ "1437475395": 1.72,
+ "1437475396": 1.745,
+ "1437475397": 1.788,
+ "1437475398": 1.832,
+ "1437475400": 1.845,
+ "1437475401": 1.851,
+ "1437475402": 1.851,
+ "1437475403": 1.838,
+ "1437475404": 1.794,
+ "1437475405": 1.758,
+ "1437475406": 1.731,
+ "1437475407": 1.708,
+ "1437475408": 1.688,
+ "1437475409": 1.668,
+ "1437475410": 1.65,
+ "1437475411": 1.638,
+ "1437475412": 1.628,
+ "1437475413": 1.624,
+ "1437475414": 1.639,
+ "1437475415": 1.675,
+ "1437475416": 1.717,
+ "1437475417": 1.752,
+ "1437475418": 1.775,
+ "1437475419": 1.781,
+ "1437475420": 1.773,
+ "1437475421": 1.756,
+ "1437475422": 1.734,
+ "1437475423": 1.712,
+ "1437475424": 1.687,
+ "1437475425": 1.665,
+ "1437475426": 1.642,
+ "1437475427": 1.619,
+ "1437475428": 1.598,
+ "1437475429": 1.578,
+ "1437475430": 1.559,
+ "1437475431": 1.543,
+ "1437475433": 1.527,
+ "1437475434": 1.51,
+ "1437475435": 1.494,
+ "1437475436": 1.476,
+ "1437475437": 1.461,
+ "1437475438": 1.45,
+ "1437475439": 1.441,
+ "1437475440": 1.43,
+ "1437475441": 1.423,
+ "1437475442": 1.407,
+ "1437475443": 1.395,
+ "1437475444": 1.388,
+ "1437475445": 1.389,
+ "1437475446": 1.392,
+ "1437475447": 1.397,
+ "1437475448": 1.402,
+ "1437475449": 1.407,
+ "1437475450": 1.412,
+ "1437475451": 1.426,
+ "1437475452": 1.44,
+ "1437475453": 1.455,
+ "1437475454": 1.47,
+ "1437475455": 1.485,
+ "1437475456": 1.501,
+ "1437475457": 1.517,
+ "1437475458": 1.535,
+ "1437475459": 1.553,
+ "1437475460": 1.572,
+ "1437475461": 1.592,
+ "1437475462": 1.614,
+ "1437475463": 1.638,
+ "1437475464": 1.665,
+ "1437475466": 1.695,
+ "1437475467": 1.727,
+ "1437475468": 1.762,
+ "1437475469": 1.799,
+ "1437475470": 1.84,
+ "1437475471": 1.883,
+ "1437475472": 1.927,
+ "1437475473": 1.973,
+ "1437475474": 2.021,
+ "1437475475": 2.072,
+ "1437475476": 2.124,
+ "1437475477": 2.176,
+ "1437475478": 2.369,
+ "1437475479": 2.668,
+ "1437475480": 3.029,
+ "1437475481": 3.509,
+ "1437475482": 4.136,
+ "1437475483": 5.028,
+ "1437475484": 6.342,
+ "1437475485": 8.6,
+ "1437475486": 13.398,
+ "1437475487": 29.709,
+ "1437475488": 0,
+ "1437475489": 0,
+ "1437475490": 0,
+ "1437475491": 77.16,
+ "1437475492": 29.815,
+ "1437475493": 18.077,
+ "1437475494": 13.495,
+ "1437475495": 11.178,
+ "1437475496": 9.662,
+ "1437475497": 8.595,
+ "1437475498": 7.607,
+ "1437475499": 6.635,
+ "1437475500": 6.072,
+ "1437475501": 5.64,
+ "1437475502": 5.236,
+ "1437475503": 4.839,
+ "1437475504": 4.469,
+ "1437475505": 4.186,
+ "1437475506": 3.966,
+ "1437475507": 3.769,
+ "1437475508": 3.447,
+ "1437475510": 3.358,
+ "1437475511": 3.761,
+ "1437475512": 3.674,
+ "1437475513": 3.498,
+ "1437475514": 3.343,
+ "1437475515": 3.209,
+ "1437475516": 3.097,
+ "1437475517": 3.001,
+ "1437475518": 2.907,
+ "1437475519": 2.841,
+ "1437475520": 2.775,
+ "1437475521": 2.716,
+ "1437475522": 2.666,
+ "1437475523": 2.623,
+ "1437475524": 2.576,
+ "1437475525": 2.536,
+ "1437475526": 2.5,
+ "1437475527": 2.465,
+ "1437475528": 2.433,
+ "1437475529": 2.408,
+ "1437475530": 2.385,
+ "1437475531": 2.36,
+ "1437475532": 2.334,
+ "1437475533": 2.313,
+ "1437475534": 2.292,
+ "1437475535": 2.264,
+ "1437475536": 2.246,
+ "1437475537": 2.236,
+ "1437475538": 2.225,
+ "1437475539": 2.213,
+ "1437475540": 2.204,
+ "1437475541": 2.196,
+ "1437475542": 2.187,
+ "1437475543": 2.178,
+ "1437475544": 2.168,
+ "1437475545": 2.161,
+ "1437475546": 2.157,
+ "1437475547": 2.154,
+ "1437475548": 2.15,
+ "1437475549": 2.147,
+ "1437475551": 2.144,
+ "1437475552": 2.14,
+ "1437475553": 2.133,
+ "1437475554": 2.126,
+ "1437475555": 2.12,
+ "1437475556": 2.115,
+ "1437475557": 2.111,
+ "1437475558": 2.104,
+ "1437475559": 2.092,
+ "1437475560": 2.085,
+ "1437475561": 2.08,
+ "1437475562": 2.084,
+ "1437475563": 2.088,
+ "1437475564": 2.093,
+ "1437475565": 2.099,
+ "1437475566": 2.102,
+ "1437475567": 2.105,
+ "1437475568": 2.111,
+ "1437475569": 2.115,
+ "1437475570": 2.117,
+ "1437475571": 2.119,
+ "1437475572": 2.122,
+ "1437475573": 2.126,
+ "1437475574": 2.133,
+ "1437475575": 2.143,
+ "1437475576": 2.154,
+ "1437475577": 2.161,
+ "1437475578": 2.174,
+ "1437475580": 2.196,
+ "1437475581": 2.215,
+ "1437475582": 2.237,
+ "1437475583": 2.26,
+ "1437475584": 2.286,
+ "1437475585": 2.311,
+ "1437475586": 2.336,
+ "1437475587": 2.363,
+ "1437475588": 2.387,
+ "1437475589": 2.404,
+ "1437475590": 2.428,
+ "1437475591": 2.467,
+ "1437475592": 2.521,
+ "1437475593": 2.576,
+ "1437475594": 2.713,
+ "1437475595": 3.149,
+ "1437475596": 3.747,
+ "1437475597": 4.61,
+ "1437475598": 5.961,
+ "1437475599": 8.43,
+ "1437475600": 14.582,
+ "1437475601": 44.924,
+ "1437475602": 0,
+ "1437475603": 0,
+ "1437475604": 0,
+ "1437475605": 427.35,
+ "1437475606": 20.964,
+ "1437475607": 12.219,
+ "1437475608": 9.85,
+ "1437475610": 8.413,
+ "1437475611": 7.494,
+ "1437475612": 6.91,
+ "1437475613": 6.593,
+ "1437475614": 6.364,
+ "1437475615": 6.21,
+ "1437475616": 6.132,
+ "1437475617": 6.105,
+ "1437475618": 6.184,
+ "1437475619": 6.393,
+ "1437475620": 6.588,
+ "1437475621": 6.567,
+ "1437475622": 6.388,
+ "1437475623": 6.114,
+ "1437475624": 5.779,
+ "1437475625": 5.445,
+ "1437475626": 5.149,
+ "1437475627": 4.905,
+ "1437475628": 4.687,
+ "1437475629": 4.467,
+ "1437475630": 4.275,
+ "1437475631": 4.11,
+ "1437475632": 3.94,
+ "1437475633": 3.783,
+ "1437475634": 3.641,
+ "1437475636": 3.526,
+ "1437475637": 3.427,
+ "1437475638": 3.333,
+ "1437475639": 3.248,
+ "1437475640": 3.164,
+ "1437475641": 3.07,
+ "1437475642": 3.008,
+ "1437475643": 2.958,
+ "1437475644": 2.906,
+ "1437475645": 2.858,
+ "1437475646": 2.821,
+ "1437475647": 2.794,
+ "1437475648": 2.758,
+ "1437475649": 2.723,
+ "1437475650": 2.693,
+ "1437475651": 2.667,
+ "1437475652": 2.64,
+ "1437475653": 2.616,
+ "1437475654": 2.594,
+ "1437475655": 2.574,
+ "1437475656": 2.557,
+ "1437475657": 2.54,
+ "1437475658": 2.524,
+ "1437475659": 2.511,
+ "1437475660": 2.501,
+ "1437475662": 2.483,
+ "1437475663": 2.513,
+ "1437475664": 2.787,
+ "1437475665": 2.919,
+ "1437475666": 2.884,
+ "1437475667": 2.851,
+ "1437475668": 2.807,
+ "1437475669": 2.677,
+ "1437475670": 2.598,
+ "1437475671": 2.554,
+ "1437475672": 2.534,
+ "1437475673": 2.544,
+ "1437475674": 2.622,
+ "1437475675": 2.726,
+ "1437475676": 2.838,
+ "1437475677": 2.952,
+ "1437475678": 3.092,
+ "1437475679": 3.271,
+ "1437475680": 3.724,
+ "1437475681": 4.268,
+ "1437475682": 4.265,
+ "1437475683": 4.192,
+ "1437475684": 4.068,
+ "1437475685": 3.953,
+ "1437475686": 3.869,
+ "1437475687": 3.763,
+ "1437475688": 3.649,
+ "1437475689": 3.559,
+ "1437475690": 3.451,
+ "1437475691": 3.296,
+ "1437475693": 3.174,
+ "1437475694": 3.07,
+ "1437475695": 2.986,
+ "1437475696": 2.916,
+ "1437475697": 2.831,
+ "1437475698": 2.71,
+ "1437475699": 2.635,
+ "1437475700": 2.594,
+ "1437475701": 2.73,
+ "1437475702": 3.077,
+ "1437475703": 4.005,
+ "1437475704": 4.345,
+ "1437475705": 4.694,
+ "1437475706": 5.022,
+ "1437475707": 5.495,
+ "1437475708": 5.972,
+ "1437475709": 6.43,
+ "1437475710": 6.775,
+ "1437475711": 7.231,
+ "1437475712": 7.565,
+ "1437475713": 7.799,
+ "1437475714": 7.906,
+ "1437475715": 7.895,
+ "1437475716": 7.72,
+ "1437475717": 7.72,
+ "1437475718": 7.68,
+ "1437475719": 7.825,
+ "1437475720": 7.792,
+ "1437475721": 7.642,
+ "1437475722": 7.617,
+ "1437475724": 7.688,
+ "1437475725": 7.929,
+ "1437475726": 8.15,
+ "1437475727": 8.114,
+ "1437475728": 8.009,
+ "1437475729": 7.899,
+ "1437475730": 7.952,
+ "1437475731": 8.017,
+ "1437475732": 8.146,
+ "1437475733": 8.13,
+ "1437475734": 10.187,
+ "1437475735": 9.885,
+ "1437475736": 9.213,
+ "1437475737": 8.477,
+ "1437475738": 7.673,
+ "1437475739": 7.095,
+ "1437475740": 6.661,
+ "1437475741": 6.03,
+ "1437475742": 5.33,
+ "1437475743": 5.038,
+ "1437475744": 4.975,
+ "1437475745": 5.072,
+ "1437475746": 5.373,
+ "1437475747": 5.223,
+ "1437475748": 5.16,
+ "1437475749": 5.315,
+ "1437475750": 5.906,
+ "1437475751": 7.31,
+ "1437475752": 8.999,
+ "1437475753": 10.169,
+ "1437475754": 10.815,
+ "1437475755": 10.808,
+ "1437475756": 10.256,
+ "1437475758": 9.998,
+ "1437475759": 9.927,
+ "1437475760": 9.944,
+ "1437475761": 9.673,
+ "1437475762": 9.662,
+ "1437475763": 9.584,
+ "1437475764": 9.163,
+ "1437475765": 8.903,
+ "1437475766": 8.965,
+ "1437475767": 8.842,
+ "1437475768": 8.681,
+ "1437475769": 8.508,
+ "1437475770": 8.371,
+ "1437475771": 8.317,
+ "1437475772": 8.114,
+ "1437475773": 8.106,
+ "1437475774": 8.166,
+ "1437475775": 8.118,
+ "1437475776": 8.098,
+ "1437475777": 7.918,
+ "1437475778": 7.712,
+ "1437475779": 7.617,
+ "1437475780": 7.628,
+ "1437475781": 7.457,
+ "1437475782": 7.545,
+ "1437475783": 7.6,
+ "1437475784": 7.555,
+ "1437475785": 7.67,
+ "1437475786": 8.162,
+ "1437475787": 7.974,
+ "1437475788": 7.741,
+ "1437475789": 7.638,
+ "1437475791": 7.709,
+ "1437475792": 7.774,
+ "1437475793": 7.839,
+ "1437475794": 7.821,
+ "1437475795": 7.6,
+ "1437475796": 7.45,
+ "1437475797": 7.484,
+ "1437475798": 7.624,
+ "1437475799": 7.61,
+ "1437475800": 7.59,
+ "1437475801": 7.596,
+ "1437475802": 7.638,
+ "1437475803": 7.666,
+ "1437475804": 7.555,
+ "1437475805": 7.237,
+ "1437475806": 7.313,
+ "1437475807": 7.237,
+ "1437475808": 7.119,
+ "1437475809": 7.199,
+ "1437475810": 7.323,
+ "1437475811": 7.398,
+ "1437475812": 7.384,
+ "1437475813": 7.46,
+ "1437475814": 7.645,
+ "1437475815": 7.756,
+ "1437475816": 7.843,
+ "1437475817": 7.851,
+ "1437475818": 7.854,
+ "1437475819": 7.948,
+ "1437475821": 7.99,
+ "1437475822": 8.067,
+ "1437475823": 8.071,
+ "1437475824": 7.974,
+ "1437475825": 7.91,
+ "1437475826": 8.024,
+ "1437475827": 8.146,
+ "1437475828": 8.235,
+ "1437475829": 8.263,
+ "1437475830": 8.401,
+ "1437475831": 8.465,
+ "1437475832": 8.418,
+ "1437475833": 8.401,
+ "1437475834": 8.358,
+ "1437475835": 8.371,
+ "1437475836": 8.342,
+ "1437475837": 8.239,
+ "1437475838": 8.182,
+ "1437475839": 8.469,
+ "1437475840": 8.667,
+ "1437475841": 8.49,
+ "1437475842": 8.401,
+ "1437475843": 8.247,
+ "1437475844": 8.28,
+ "1437475845": 8.418,
+ "1437475846": 8.35,
+ "1437475847": 8.134,
+ "1437475848": 8.15,
+ "1437475849": 8.247,
+ "1437475850": 8.17,
+ "1437475852": 8.259,
+ "1437475853": 8.308,
+ "1437475854": 8.321,
+ "1437475855": 8.308,
+ "1437475856": 8.439,
+ "1437475857": 8.371,
+ "1437475858": 8.304,
+ "1437475859": 8.333,
+ "1437475860": 8.46,
+ "1437475861": 8.508,
+ "1437475862": 8.591,
+ "1437475863": 8.618,
+ "1437475864": 8.726,
+ "1437475865": 12.655,
+ "1437475866": 10.739,
+ "1437475867": 9.95,
+ "1437475868": 9.491,
+ "1437475869": 9.033,
+ "1437475870": 8.721,
+ "1437475871": 8.409,
+ "1437475872": 7.741,
+ "1437475873": 7.08,
+ "1437475874": 6.759,
+ "1437475875": 6.313,
+ "1437475876": 5.803,
+ "1437475878": 5.368,
+ "1437475879": 4.974,
+ "1437475880": 4.637,
+ "1437475881": 4.301,
+ "1437475882": 3.977,
+ "1437475883": 3.653,
+ "1437475884": 3.367,
+ "1437475885": 3.142,
+ "1437475886": 2.918,
+ "1437475887": 2.767,
+ "1437475888": 2.683,
+ "1437475889": 2.666,
+ "1437475890": 2.735,
+ "1437475891": 2.892,
+ "1437475892": 3.16,
+ "1437475893": 3.429,
+ "1437475894": 3.722,
+ "1437475895": 4.014,
+ "1437475896": 4.33,
+ "1437475897": 4.675,
+ "1437475898": 4.995,
+ "1437475899": 5.286,
+ "1437475900": 5.582,
+ "1437475901": 5.72,
+ "1437475902": 5.904,
+ "1437475903": 6.047,
+ "1437475905": 6.182,
+ "1437475906": 6.282,
+ "1437475907": 6.369,
+ "1437475908": 6.505,
+ "1437475909": 6.567,
+ "1437475910": 6.549,
+ "1437475911": 6.588,
+ "1437475912": 6.585,
+ "1437475913": 6.551,
+ "1437475914": 6.352,
+ "1437475915": 6.219,
+ "1437475916": 6.159,
+ "1437475917": 6.136,
+ "1437475918": 6.109,
+ "1437475919": 6.157,
+ "1437475920": 6.285,
+ "1437475921": 6.72,
+ "1437475922": 6.63,
+ "1437475923": 6.233,
+ "1437475924": 6.065,
+ "1437475925": 6.05,
+ "1437475926": 6.391,
+ "1437475927": 6.403,
+ "1437475928": 6.378,
+ "1437475929": 6.294,
+ "1437475930": 6.308,
+ "1437475931": 6.425,
+ "1437475932": 6.536,
+ "1437475933": 6.619,
+ "1437475934": 6.893,
+ "1437475935": 7.345,
+ "1437475936": 8.17,
+ "1437475938": 10.016,
+ "1437475939": 8.922,
+ "1437475940": 8.071,
+ "1437475941": 7.481,
+ "1437475942": 7.047,
+ "1437475943": 6.8,
+ "1437475944": 6.675,
+ "1437475945": 6.862,
+ "1437475946": 7.009,
+ "1437475947": 6.91,
+ "1437475948": 6.924,
+ "1437475949": 7.047,
+ "1437475950": 7.147,
+ "1437475951": 7.297,
+ "1437475952": 7.365,
+ "1437475953": 7.401,
+ "1437475954": 7.481,
+ "1437475955": 7.565,
+ "1437475956": 7.638,
+ "1437475957": 7.494,
+ "1437475958": 7.467,
+ "1437475959": 7.691,
+ "1437475960": 7.688,
+ "1437475961": 7.99,
+ "1437475962": 8.649,
+ "1437475963": 10.288,
+ "1437475964": 71.839,
+ "1437475965": 15.029,
+ "1437475967": 11.416,
+ "1437475968": 10.194,
+ "1437475969": 20.475,
+ "1437475970": 13.495,
+ "1437475971": 8.879,
+ "1437475972": 8.413,
+ "1437475973": 8.146,
+ "1437475974": 8.102,
+ "1437475975": 8.118,
+ "1437475976": 8.009,
+ "1437475977": 7.929,
+ "1437475978": 7.899,
+ "1437475979": 7.948,
+ "1437475980": 7.974,
+ "1437475981": 7.974,
+ "1437475982": 7.888,
+ "1437475983": 7.691,
+ "1437475984": 8.001,
+ "1437475985": 8.138,
+ "1437475986": 8.198,
+ "1437475987": 7.986,
+ "1437475988": 6.971,
+ "1437475989": 6.653,
+ "1437475990": 6.622,
+ "1437475991": 6.75,
+ "1437475992": 6.956,
+ "1437475993": 7.104,
+ "1437475994": 7.193,
+ "1437475995": 7.342,
+ "1437475997": 7.424,
+ "1437475998": 7.511,
+ "1437475999": 7.562,
+ "1437476000": 7.421,
+ "1437476001": 7.316,
+ "1437476002": 7.304,
+ "1437476003": 7.135,
+ "1437476004": 6.425,
+ "1437476005": 5.452,
+ "1437476006": 4.699,
+ "1437476007": 4.081,
+ "1437476008": 3.577,
+ "1437476009": 3.316,
+ "1437476010": 3.161,
+ "1437476011": 3.129,
+ "1437476012": 3.372,
+ "1437476013": 3.91,
+ "1437476014": 4.003,
+ "1437476015": 4.136,
+ "1437476016": 4.281,
+ "1437476017": 4.424,
+ "1437476019": 4.571,
+ "1437476020": 4.709,
+ "1437476021": 4.848,
+ "1437476022": 4.957,
+ "1437476023": 5.014,
+ "1437476024": 5.083,
+ "1437476025": 5.179,
+ "1437476026": 5.248,
+ "1437476027": 5.271,
+ "1437476028": 5.251,
+ "1437476029": 5.186,
+ "1437476030": 5.094,
+ "1437476031": 5.025,
+ "1437476032": 4.944,
+ "1437476033": 4.832,
+ "1437476034": 4.709,
+ "1437476035": 4.603,
+ "1437476036": 4.479,
+ "1437476037": 4.327,
+ "1437476038": 4.188,
+ "1437476039": 4.045,
+ "1437476040": 3.911,
+ "1437476041": 3.772,
+ "1437476042": 3.619,
+ "1437476043": 3.466,
+ "1437476044": 3.321,
+ "1437476045": 3.183,
+ "1437476047": 3.045,
+ "1437476048": 2.914,
+ "1437476049": 2.8,
+ "1437476050": 2.693,
+ "1437476051": 2.591,
+ "1437476052": 2.492,
+ "1437476053": 2.348,
+ "1437476054": 2.257,
+ "1437476055": 2.197,
+ "1437476056": 2.168,
+ "1437476057": 2.136,
+ "1437476058": 2.07,
+ "1437476059": 2.01,
+ "1437476060": 1.954,
+ "1437476061": 1.903,
+ "1437476062": 1.86,
+ "1437476063": 1.82,
+ "1437476064": 1.784,
+ "1437476065": 1.751,
+ "1437476066": 1.721,
+ "1437476067": 1.693,
+ "1437476068": 1.67,
+ "1437476069": 1.648,
+ "1437476070": 1.631,
+ "1437476071": 1.617,
+ "1437476072": 1.606,
+ "1437476073": 1.602,
+ "1437476074": 1.604,
+ "1437476075": 1.611,
+ "1437476076": 1.625,
+ "1437476077": 1.649,
+ "1437476079": 1.683,
+ "1437476080": 1.723,
+ "1437476081": 1.763,
+ "1437476082": 1.804,
+ "1437476083": 1.839,
+ "1437476084": 1.867,
+ "1437476085": 1.894,
+ "1437476086": 1.916,
+ "1437476087": 1.941,
+ "1437476088": 1.969,
+ "1437476089": 1.997,
+ "1437476090": 2.024,
+ "1437476091": 2.05,
+ "1437476092": 2.083,
+ "1437476093": 2.119,
+ "1437476094": 2.142,
+ "1437476095": 2.161,
+ "1437476096": 2.18,
+ "1437476097": 2.197,
+ "1437476098": 2.215,
+ "1437476099": 2.23,
+ "1437476100": 2.236,
+ "1437476101": 2.249,
+ "1437476102": 2.264,
+ "1437476103": 2.276,
+ "1437476104": 2.278,
+ "1437476105": 2.282,
+ "1437476106": 2.291,
+ "1437476107": 2.299,
+ "1437476108": 2.302,
+ "1437476109": 2.302,
+ "1437476110": 2.293,
+ "1437476112": 2.282,
+ "1437476113": 2.273,
+ "1437476114": 2.254,
+ "1437476115": 2.227,
+ "1437476116": 2.195,
+ "1437476117": 2.16,
+ "1437476118": 2.135,
+ "1437476119": 2.106,
+ "1437476120": 2.072,
+ "1437476121": 2.037,
+ "1437476122": 2.005,
+ "1437476123": 1.976,
+ "1437476124": 1.94,
+ "1437476125": 1.913,
+ "1437476126": 1.888,
+ "1437476127": 1.864,
+ "1437476128": 1.842,
+ "1437476129": 1.823,
+ "1437476130": 1.805,
+ "1437476131": 1.79,
+ "1437476132": 1.781,
+ "1437476133": 1.776,
+ "1437476134": 1.775,
+ "1437476135": 1.785,
+ "1437476136": 1.802,
+ "1437476137": 1.819,
+ "1437476138": 1.842,
+ "1437476139": 1.866,
+ "1437476140": 1.889,
+ "1437476141": 1.909,
+ "1437476142": 1.928,
+ "1437476143": 1.942,
+ "1437476144": 1.952,
+ "1437476146": 1.961,
+ "1437476147": 1.967,
+ "1437476148": 1.968,
+ "1437476149": 1.965,
+ "1437476150": 1.958,
+ "1437476151": 1.944,
+ "1437476152": 1.923,
+ "1437476153": 1.898,
+ "1437476154": 1.868,
+ "1437476155": 1.829,
+ "1437476156": 1.783,
+ "1437476157": 1.735,
+ "1437476158": 1.686,
+ "1437476159": 1.643,
+ "1437476160": 1.597,
+ "1437476161": 1.558,
+ "1437476162": 1.521,
+ "1437476163": 1.487,
+ "1437476164": 1.456,
+ "1437476165": 1.427,
+ "1437476166": 1.401,
+ "1437476167": 1.378,
+ "1437476168": 1.358,
+ "1437476169": 1.34,
+ "1437476170": 1.324,
+ "1437476171": 1.311,
+ "1437476172": 1.303,
+ "1437476173": 1.3,
+ "1437476174": 1.317,
+ "1437476175": 1.377,
+ "1437476176": 1.463,
+ "1437476177": 1.559,
+ "1437476179": 1.667,
+ "1437476180": 1.782,
+ "1437476181": 1.909,
+ "1437476182": 2.041,
+ "1437476183": 2.187,
+ "1437476184": 2.339,
+ "1437476185": 2.497,
+ "1437476186": 2.658,
+ "1437476187": 2.812,
+ "1437476188": 2.967,
+ "1437476189": 3.103,
+ "1437476190": 3.165,
+ "1437476191": 3.067,
+ "1437476192": 3.042,
+ "1437476193": 3.036,
+ "1437476194": 3.042,
+ "1437476195": 3.072,
+ "1437476196": 2.994,
+ "1437476197": 2.915,
+ "1437476198": 2.84,
+ "1437476199": 2.775,
+ "1437476200": 2.708,
+ "1437476201": 2.645,
+ "1437476202": 2.58,
+ "1437476203": 2.517,
+ "1437476204": 2.454,
+ "1437476205": 2.389,
+ "1437476206": 2.331,
+ "1437476207": 2.28,
+ "1437476208": 2.23,
+ "1437476209": 2.184,
+ "1437476211": 2.138,
+ "1437476212": 2.093,
+ "1437476213": 2.052,
+ "1437476214": 2.015,
+ "1437476215": 1.98,
+ "1437476216": 1.94,
+ "1437476217": 1.896,
+ "1437476218": 1.849,
+ "1437476219": 1.801,
+ "1437476220": 1.756,
+ "1437476221": 1.712,
+ "1437476222": 1.671,
+ "1437476223": 1.637,
+ "1437476224": 1.61,
+ "1437476225": 1.587,
+ "1437476226": 1.572,
+ "1437476227": 1.562,
+ "1437476228": 1.556,
+ "1437476229": 1.554,
+ "1437476230": 1.554,
+ "1437476231": 1.556,
+ "1437476232": 1.558,
+ "1437476233": 1.56,
+ "1437476234": 1.562,
+ "1437476235": 1.563,
+ "1437476236": 1.563,
+ "1437476237": 1.562,
+ "1437476238": 1.561,
+ "1437476239": 1.56,
+ "1437476240": 1.556,
+ "1437476241": 1.548,
+ "1437476242": 1.535,
+ "1437476243": 1.511,
+ "1437476244": 1.475,
+ "1437476245": 1.436,
+ "1437476246": 1.392,
+ "1437476248": 1.347,
+ "1437476249": 1.311,
+ "1437476250": 1.29,
+ "1437476251": 1.291,
+ "1437476252": 1.324,
+ "1437476253": 1.379,
+ "1437476254": 1.448,
+ "1437476255": 1.512,
+ "1437476256": 1.555,
+ "1437476257": 1.561,
+ "1437476258": 1.535,
+ "1437476259": 1.5,
+ "1437476260": 1.464,
+ "1437476261": 1.432,
+ "1437476262": 1.401,
+ "1437476263": 1.37,
+ "1437476264": 1.34,
+ "1437476265": 1.31,
+ "1437476266": 1.282,
+ "1437476267": 1.254,
+ "1437476268": 1.227,
+ "1437476269": 1.196,
+ "1437476270": 1.161,
+ "1437476271": 1.126,
+ "1437476272": 1.097,
+ "1437476274": 1.077,
+ "1437476275": 1.063,
+ "1437476276": 1.057,
+ "1437476277": 1.055,
+ "1437476278": 1.056,
+ "1437476279": 1.059,
+ "1437476280": 1.063,
+ "1437476281": 1.069,
+ "1437476282": 1.075,
+ "1437476283": 1.083,
+ "1437476284": 1.091,
+ "1437476285": 1.099,
+ "1437476286": 1.11,
+ "1437476287": 1.123,
+ "1437476288": 1.136,
+ "1437476289": 1.15,
+ "1437476290": 1.166,
+ "1437476291": 1.182,
+ "1437476292": 1.199,
+ "1437476293": 1.215,
+ "1437476295": 1.232,
+ "1437476296": 1.249,
+ "1437476297": 1.268,
+ "1437476298": 1.286,
+ "1437476299": 1.304,
+ "1437476300": 1.323,
+ "1437476301": 1.343,
+ "1437476302": 1.363,
+ "1437476303": 1.383,
+ "1437476304": 1.405,
+ "1437476305": 1.428,
+ "1437476306": 1.454,
+ "1437476307": 1.482,
+ "1437476308": 1.52,
+ "1437476309": 1.563,
+ "1437476310": 1.608,
+ "1437476311": 1.656,
+ "1437476312": 1.705,
+ "1437476313": 1.759,
+ "1437476314": 1.812,
+ "1437476315": 1.862,
+ "1437476316": 1.913,
+ "1437476317": 1.97,
+ "1437476318": 2.025,
+ "1437476319": 2.081,
+ "1437476320": 2.135,
+ "1437476321": 2.188,
+ "1437476323": 2.422,
+ "1437476324": 2.714,
+ "1437476325": 3.085,
+ "1437476326": 3.548,
+ "1437476327": 4.151,
+ "1437476328": 5.026,
+ "1437476329": 6.313,
+ "1437476330": 8.422,
+ "1437476331": 12.84,
+ "1437476332": 26.371,
+ "1437476333": 5555.556,
+ "1437476334": 0,
+ "1437476335": 0,
+ "1437476338": 1041.667,
+ "1437476339": 59.737,
+ "1437476340": 31.626,
+ "1437476341": 19.794,
+ "1437476342": 14.518,
+ "1437476343": 11.779,
+ "1437476344": 9.868,
+ "1437476345": 8.622,
+ "1437476346": 7.756,
+ "1437476347": 7.297,
+ "1437476348": 6.979,
+ "1437476349": 6.75,
+ "1437476350": 6.528,
+ "1437476351": 6.299,
+ "1437476352": 6.028,
+ "1437476353": 5.801,
+ "1437476354": 5.64,
+ "1437476355": 5.491,
+ "1437476356": 5.33,
+ "1437476357": 5.163,
+ "1437476358": 5.014,
+ "1437476360": 4.901,
+ "1437476361": 4.835,
+ "1437476362": 4.795,
+ "1437476363": 4.751,
+ "1437476364": 4.686,
+ "1437476365": 4.622,
+ "1437476366": 4.561,
+ "1437476367": 4.517,
+ "1437476368": 4.477,
+ "1437476369": 4.435,
+ "1437476370": 4.388,
+ "1437476371": 4.343,
+ "1437476372": 4.32,
+ "1437476373": 4.304,
+ "1437476374": 4.268,
+ "1437476375": 4.206,
+ "1437476376": 4.138,
+ "1437476377": 4.111,
+ "1437476378": 4.097,
+ "1437476379": 4.087,
+ "1437476380": 4.065,
+ "1437476381": 4.044,
+ "1437476382": 4.031,
+ "1437476383": 4.012,
+ "1437476384": 3.988,
+ "1437476385": 3.938,
+ "1437476386": 3.883,
+ "1437476387": 3.831,
+ "1437476389": 3.777,
+ "1437476390": 3.721,
+ "1437476391": 3.66,
+ "1437476392": 3.583,
+ "1437476393": 3.484,
+ "1437476394": 3.331,
+ "1437476395": 3.179,
+ "1437476396": 3.015,
+ "1437476397": 2.875,
+ "1437476398": 2.732,
+ "1437476399": 2.586,
+ "1437476400": 2.447,
+ "1437476401": 2.318,
+ "1437476402": 2.204,
+ "1437476403": 2.105,
+ "1437476404": 2.017,
+ "1437476405": 1.938,
+ "1437476406": 1.911,
+ "1437476407": 1.922,
+ "1437476408": 1.934,
+ "1437476410": 1.973,
+ "1437476411": 2.028,
+ "1437476412": 2.104,
+ "1437476413": 2.199,
+ "1437476414": 2.295,
+ "1437476415": 2.391,
+ "1437476416": 2.486,
+ "1437476417": 2.598,
+ "1437476418": 2.726,
+ "1437476419": 2.858,
+ "1437476420": 2.999,
+ "1437476421": 3.146,
+ "1437476422": 3.306,
+ "1437476423": 3.474,
+ "1437476424": 3.652,
+ "1437476425": 3.828,
+ "1437476426": 4.011,
+ "1437476427": 4.2,
+ "1437476428": 4.377,
+ "1437476429": 4.556,
+ "1437476430": 4.758,
+ "1437476431": 4.965,
+ "1437476432": 5.189,
+ "1437476433": 5.42,
+ "1437476434": 5.614,
+ "1437476435": 5.789,
+ "1437476436": 5.978,
+ "1437476437": 6.161,
+ "1437476438": 6.28,
+ "1437476439": 6.356,
+ "1437476441": 6.325,
+ "1437476442": 6.256,
+ "1437476443": 6.175,
+ "1437476444": 6.121,
+ "1437476445": 5.735,
+ "1437476446": 4.951,
+ "1437476447": 4.63,
+ "1437476448": 4.27,
+ "1437476449": 3.96,
+ "1437476450": 3.738,
+ "1437476451": 3.637,
+ "1437476452": 3.504,
+ "1437476453": 3.351,
+ "1437476454": 3.251,
+ "1437476455": 3.151,
+ "1437476456": 3.09,
+ "1437476457": 2.957,
+ "1437476458": 2.835,
+ "1437476459": 2.714,
+ "1437476460": 2.59,
+ "1437476461": 2.468,
+ "1437476462": 2.316,
+ "1437476463": 2.186,
+ "1437476464": 2.087,
+ "1437476465": 2.004,
+ "1437476467": 1.934,
+ "1437476468": 1.859,
+ "1437476469": 1.816,
+ "1437476470": 1.795,
+ "1437476471": 1.801,
+ "1437476472": 1.819,
+ "1437476473": 1.843,
+ "1437476474": 1.88,
+ "1437476475": 1.926,
+ "1437476476": 1.967,
+ "1437476477": 1.995,
+ "1437476478": 2.024,
+ "1437476479": 2.046,
+ "1437476480": 2.043,
+ "1437476481": 2.026,
+ "1437476482": 1.98,
+ "1437476483": 1.927,
+ "1437476484": 1.878,
+ "1437476485": 1.83,
+ "1437476486": 1.779,
+ "1437476487": 1.732,
+ "1437476488": 1.698,
+ "1437476490": 1.653,
+ "1437476491": 1.611,
+ "1437476492": 1.577,
+ "1437476493": 1.54,
+ "1437476494": 1.501,
+ "1437476495": 1.463,
+ "1437476496": 1.412,
+ "1437476497": 1.361,
+ "1437476498": 1.315,
+ "1437476499": 1.275,
+ "1437476500": 1.239,
+ "1437476501": 1.212,
+ "1437476502": 1.196,
+ "1437476503": 1.185,
+ "1437476504": 1.176,
+ "1437476505": 1.175,
+ "1437476506": 1.172,
+ "1437476507": 1.165,
+ "1437476508": 1.161,
+ "1437476509": 1.156,
+ "1437476510": 1.158,
+ "1437476511": 1.167,
+ "1437476512": 1.177,
+ "1437476513": 1.184,
+ "1437476514": 1.178,
+ "1437476515": 1.162,
+ "1437476516": 1.145,
+ "1437476517": 1.126,
+ "1437476518": 1.112,
+ "1437476519": 1.098,
+ "1437476521": 1.094,
+ "1437476522": 1.105,
+ "1437476523": 1.125,
+ "1437476524": 1.141,
+ "1437476525": 1.153,
+ "1437476526": 1.164,
+ "1437476527": 1.173,
+ "1437476528": 1.179,
+ "1437476529": 1.178,
+ "1437476530": 1.179,
+ "1437476531": 1.181,
+ "1437476532": 1.181,
+ "1437476533": 1.18,
+ "1437476534": 1.184,
+ "1437476535": 1.185,
+ "1437476536": 1.189,
+ "1437476537": 1.185,
+ "1437476538": 1.189,
+ "1437476539": 1.193,
+ "1437476540": 1.197,
+ "1437476541": 1.197,
+ "1437476542": 1.196,
+ "1437476543": 1.197,
+ "1437476544": 1.201,
+ "1437476545": 1.203,
+ "1437476547": 1.204,
+ "1437476548": 1.203,
+ "1437476549": 1.211,
+ "1437476550": 1.219,
+ "1437476551": 1.228,
+ "1437476552": 1.235,
+ "1437476553": 1.238,
+ "1437476554": 1.245,
+ "1437476555": 1.252,
+ "1437476556": 1.261,
+ "1437476557": 1.28,
+ "1437476558": 1.303,
+ "1437476559": 1.324,
+ "1437476560": 1.342,
+ "1437476561": 1.357,
+ "1437476562": 1.367,
+ "1437476563": 1.384,
+ "1437476564": 1.402,
+ "1437476565": 1.418,
+ "1437476566": 1.428,
+ "1437476567": 1.433,
+ "1437476568": 1.434,
+ "1437476569": 1.436,
+ "1437476570": 1.435,
+ "1437476571": 1.428,
+ "1437476572": 1.433,
+ "1437476573": 1.432,
+ "1437476574": 1.433,
+ "1437476576": 1.436,
+ "1437476577": 1.447,
+ "1437476578": 1.461,
+ "1437476579": 1.475,
+ "1437476580": 1.491,
+ "1437476581": 1.511,
+ "1437476582": 1.529,
+ "1437476583": 1.549,
+ "1437476584": 1.569,
+ "1437476585": 1.604,
+ "1437476586": 1.627,
+ "1437476587": 1.651,
+ "1437476588": 1.678,
+ "1437476589": 1.703,
+ "1437476590": 1.706,
+ "1437476591": 1.711,
+ "1437476592": 1.725,
+ "1437476593": 1.736,
+ "1437476594": 1.748,
+ "1437476595": 1.753,
+ "1437476596": 1.733,
+ "1437476597": 1.706,
+ "1437476598": 1.685,
+ "1437476599": 1.704,
+ "1437476601": 1.824,
+ "1437476602": 1.963,
+ "1437476603": 2.092,
+ "1437476604": 2.224,
+ "1437476605": 2.361,
+ "1437476606": 2.479,
+ "1437476607": 2.555,
+ "1437476608": 2.638,
+ "1437476609": 2.704,
+ "1437476610": 2.774,
+ "1437476611": 2.861,
+ "1437476612": 2.933,
+ "1437476613": 3.006,
+ "1437476614": 3.069,
+ "1437476615": 3.116,
+ "1437476616": 3.163,
+ "1437476617": 3.206,
+ "1437476618": 3.246,
+ "1437476619": 3.258,
+ "1437476620": 3.269,
+ "1437476621": 3.278,
+ "1437476622": 3.262,
+ "1437476623": 3.262,
+ "1437476624": 3.255,
+ "1437476625": 3.243,
+ "1437476627": 3.216,
+ "1437476628": 3.215,
+ "1437476629": 3.217,
+ "1437476630": 3.197,
+ "1437476631": 3.164,
+ "1437476632": 3.145,
+ "1437476633": 3.129,
+ "1437476634": 3.109,
+ "1437476635": 3.092,
+ "1437476636": 3.063,
+ "1437476637": 3.01,
+ "1437476638": 2.975,
+ "1437476639": 2.924,
+ "1437476640": 2.722,
+ "1437476641": 2.545,
+ "1437476642": 2.43,
+ "1437476643": 2.311,
+ "1437476644": 2.197,
+ "1437476645": 2.074,
+ "1437476646": 1.964,
+ "1437476647": 1.86,
+ "1437476648": 1.759,
+ "1437476649": 1.665,
+ "1437476650": 1.59,
+ "1437476651": 1.528,
+ "1437476652": 1.47,
+ "1437476653": 1.412,
+ "1437476654": 1.356,
+ "1437476655": 1.304,
+ "1437476656": 1.257,
+ "1437476658": 1.213,
+ "1437476659": 1.171,
+ "1437476660": 1.129,
+ "1437476661": 1.096,
+ "1437476662": 1.065,
+ "1437476663": 1.041,
+ "1437476664": 1.032,
+ "1437476665": 1.031,
+ "1437476666": 1.04,
+ "1437476667": 1.059,
+ "1437476668": 1.085,
+ "1437476669": 1.114,
+ "1437476670": 1.145,
+ "1437476671": 1.174,
+ "1437476672": 1.203,
+ "1437476673": 1.233,
+ "1437476674": 1.263,
+ "1437476675": 1.288,
+ "1437476676": 1.299,
+ "1437476677": 1.267,
+ "1437476678": 1.176,
+ "1437476679": 1.184,
+ "1437476680": 1.263,
+ "1437476681": 1.297,
+ "1437476682": 1.29,
+ "1437476683": 1.279,
+ "1437476684": 1.271,
+ "1437476685": 1.271,
+ "1437476686": 1.279,
+ "1437476687": 1.282,
+ "1437476688": 1.269,
+ "1437476689": 1.257,
+ "1437476690": 1.256,
+ "1437476691": 1.244,
+ "1437476692": 1.217,
+ "1437476694": 1.185,
+ "1437476695": 1.158,
+ "1437476696": 1.139,
+ "1437476697": 1.16,
+ "1437476698": 1.22,
+ "1437476699": 1.296,
+ "1437476700": 1.373,
+ "1437476701": 1.425,
+ "1437476702": 1.448,
+ "1437476703": 1.459,
+ "1437476704": 1.457,
+ "1437476705": 1.441,
+ "1437476706": 1.411,
+ "1437476707": 1.36,
+ "1437476708": 1.307,
+ "1437476709": 1.261,
+ "1437476710": 1.222,
+ "1437476711": 1.207,
+ "1437476712": 1.245,
+ "1437476713": 1.308,
+ "1437476714": 1.379,
+ "1437476715": 1.449,
+ "1437476716": 1.497,
+ "1437476717": 1.531,
+ "1437476718": 1.556,
+ "1437476719": 1.564,
+ "1437476720": 1.57,
+ "1437476721": 1.574,
+ "1437476723": 1.579,
+ "1437476724": 1.559,
+ "1437476725": 1.551,
+ "1437476726": 1.554,
+ "1437476727": 1.557,
+ "1437476728": 1.56,
+ "1437476729": 1.55,
+ "1437476730": 1.536,
+ "1437476731": 1.517,
+ "1437476732": 1.472,
+ "1437476733": 1.435,
+ "1437476734": 1.407,
+ "1437476735": 1.382,
+ "1437476736": 1.364,
+ "1437476737": 1.35,
+ "1437476738": 1.339,
+ "1437476739": 1.334,
+ "1437476740": 1.344,
+ "1437476741": 1.367,
+ "1437476742": 1.39,
+ "1437476743": 1.402,
+ "1437476744": 1.404,
+ "1437476745": 1.39,
+ "1437476746": 1.369,
+ "1437476747": 1.346,
+ "1437476748": 1.326,
+ "1437476749": 1.306,
+ "1437476750": 1.289,
+ "1437476751": 1.275,
+ "1437476752": 1.268,
+ "1437476753": 1.262,
+ "1437476755": 1.255,
+ "1437476756": 1.248,
+ "1437476757": 1.241,
+ "1437476758": 1.234,
+ "1437476759": 1.219,
+ "1437476760": 1.201,
+ "1437476761": 1.184,
+ "1437476762": 1.168,
+ "1437476763": 1.157,
+ "1437476764": 1.152,
+ "1437476765": 1.148,
+ "1437476766": 1.148,
+ "1437476767": 1.149,
+ "1437476768": 1.15,
+ "1437476769": 1.153,
+ "1437476770": 1.158,
+ "1437476771": 1.165,
+ "1437476772": 1.166,
+ "1437476773": 1.169,
+ "1437476774": 1.173,
+ "1437476775": 1.177,
+ "1437476776": 1.187,
+ "1437476777": 1.198,
+ "1437476778": 1.208,
+ "1437476779": 1.219,
+ "1437476780": 1.231,
+ "1437476781": 1.244,
+ "1437476782": 1.259,
+ "1437476783": 1.278,
+ "1437476784": 1.291,
+ "1437476785": 1.306,
+ "1437476786": 1.325,
+ "1437476787": 1.341,
+ "1437476788": 1.341,
+ "1437476789": 1.337,
+ "1437476791": 1.329,
+ "1437476792": 1.327,
+ "1437476793": 1.34,
+ "1437476794": 1.35,
+ "1437476795": 1.358,
+ "1437476796": 1.364,
+ "1437476797": 1.378,
+ "1437476798": 1.386,
+ "1437476799": 1.389,
+ "1437476800": 1.39,
+ "1437476801": 1.394,
+ "1437476802": 1.408,
+ "1437476803": 1.425,
+ "1437476804": 1.442,
+ "1437476805": 1.46,
+ "1437476806": 1.474,
+ "1437476807": 1.487,
+ "1437476808": 1.499,
+ "1437476809": 1.513,
+ "1437476810": 1.525,
+ "1437476811": 1.535,
+ "1437476812": 1.547,
+ "1437476813": 1.561,
+ "1437476814": 1.574,
+ "1437476815": 1.588,
+ "1437476816": 1.599,
+ "1437476817": 1.608,
+ "1437476818": 1.616,
+ "1437476819": 1.613,
+ "1437476820": 1.617,
+ "1437476821": 1.624,
+ "1437476822": 1.637,
+ "1437476824": 1.643,
+ "1437476825": 1.647,
+ "1437476826": 1.651,
+ "1437476827": 1.654,
+ "1437476828": 1.655,
+ "1437476829": 1.657,
+ "1437476830": 1.657,
+ "1437476831": 1.654,
+ "1437476832": 1.656,
+ "1437476833": 1.656,
+ "1437476834": 1.652,
+ "1437476835": 1.642,
+ "1437476836": 1.63,
+ "1437476837": 1.615,
+ "1437476838": 1.598,
+ "1437476839": 1.589,
+ "1437476840": 1.587,
+ "1437476841": 1.585,
+ "1437476842": 1.587,
+ "1437476843": 1.586,
+ "1437476844": 1.584,
+ "1437476845": 1.585,
+ "1437476846": 1.586,
+ "1437476847": 1.584,
+ "1437476848": 1.581,
+ "1437476849": 1.578,
+ "1437476850": 1.584,
+ "1437476851": 1.587,
+ "1437476852": 1.588,
+ "1437476854": 1.591,
+ "1437476855": 1.593,
+ "1437476856": 1.603,
+ "1437476857": 1.617,
+ "1437476858": 1.64,
+ "1437476859": 1.666,
+ "1437476860": 1.676,
+ "1437476861": 1.676,
+ "1437476862": 1.668,
+ "1437476863": 1.655,
+ "1437476864": 1.642,
+ "1437476865": 1.637,
+ "1437476866": 1.629,
+ "1437476867": 1.622,
+ "1437476868": 1.611,
+ "1437476869": 1.597,
+ "1437476870": 1.579,
+ "1437476871": 1.567,
+ "1437476872": 1.565,
+ "1437476873": 1.56,
+ "1437476874": 1.549,
+ "1437476875": 1.537,
+ "1437476876": 1.532,
+ "1437476877": 1.528,
+ "1437476878": 1.52,
+ "1437476879": 1.517,
+ "1437476880": 1.523,
+ "1437476881": 1.532,
+ "1437476882": 1.538,
+ "1437476883": 1.544,
+ "1437476884": 1.551,
+ "1437476886": 1.564,
+ "1437476887": 1.602,
+ "1437476888": 1.639,
+ "1437476889": 1.675,
+ "1437476890": 1.709,
+ "1437476891": 1.738,
+ "1437476892": 1.749,
+ "1437476893": 1.753,
+ "1437476894": 1.748,
+ "1437476895": 1.725,
+ "1437476896": 1.704,
+ "1437476897": 1.692,
+ "1437476898": 1.681,
+ "1437476899": 1.671,
+ "1437476900": 1.703,
+ "1437476901": 1.79,
+ "1437476902": 1.887,
+ "1437476903": 1.988,
+ "1437476904": 2.107,
+ "1437476905": 2.235,
+ "1437476906": 2.384,
+ "1437476907": 2.55,
+ "1437476908": 2.722,
+ "1437476910": 2.901,
+ "1437476911": 3.107,
+ "1437476912": 3.319,
+ "1437476913": 3.566,
+ "1437476914": 3.704,
+ "1437476915": 3.703,
+ "1437476916": 3.609,
+ "1437476917": 3.494,
+ "1437476918": 3.349,
+ "1437476919": 3.271,
+ "1437476920": 3.252,
+ "1437476921": 3.309,
+ "1437476922": 3.694,
+ "1437476923": 4.3,
+ "1437476924": 4.94,
+ "1437476925": 5.434,
+ "1437476926": 5.765,
+ "1437476927": 6.065,
+ "1437476928": 6.273,
+ "1437476929": 6.306,
+ "1437476930": 6.155,
+ "1437476931": 6.107,
+ "1437476932": 6.114,
+ "1437476933": 6.092,
+ "1437476934": 6.052,
+ "1437476935": 6.112,
+ "1437476936": 6.148,
+ "1437476938": 6.089,
+ "1437476939": 6.026,
+ "1437476940": 5.976,
+ "1437476941": 5.881,
+ "1437476942": 5.775,
+ "1437476943": 5.648,
+ "1437476944": 5.526,
+ "1437476945": 5.463,
+ "1437476946": 5.401,
+ "1437476947": 5.425,
+ "1437476948": 5.468,
+ "1437476949": 5.431,
+ "1437476950": 5.402,
+ "1437476951": 5.438,
+ "1437476952": 5.448,
+ "1437476953": 5.432,
+ "1437476954": 5.418,
+ "1437476955": 5.406,
+ "1437476956": 5.352,
+ "1437476957": 5.271,
+ "1437476958": 5.315,
+ "1437476959": 5.352,
+ "1437476960": 5.338,
+ "1437476961": 5.315,
+ "1437476962": 5.286,
+ "1437476963": 5.291,
+ "1437476964": 5.296,
+ "1437476965": 5.298,
+ "1437476966": 5.352,
+ "1437476967": 5.361,
+ "1437476969": 5.306,
+ "1437476970": 5.271,
+ "1437476971": 5.243,
+ "1437476972": 5.205,
+ "1437476973": 5.152,
+ "1437476974": 5.105,
+ "1437476975": 5.133,
+ "1437476976": 5.109,
+ "1437476977": 5.072,
+ "1437476978": 5.072,
+ "1437476979": 5.141,
+ "1437476980": 5.163,
+ "1437476981": 5.155,
+ "1437476982": 5.176,
+ "1437476983": 5.225,
+ "1437476984": 5.212,
+ "1437476985": 5.254,
+ "1437476986": 5.286,
+ "1437476987": 5.32,
+ "1437476988": 5.356,
+ "1437476989": 5.347,
+ "1437476990": 5.276,
+ "1437476991": 5.253,
+ "1437476992": 5.253,
+ "1437476993": 5.228,
+ "1437476994": 5.171,
+ "1437476996": 5.139,
+ "1437476997": 5.117,
+ "1437476998": 5.072,
+ "1437476999": 5.025,
+ "1437477000": 5.032,
+ "1437477001": 4.943,
+ "1437477002": 4.712,
+ "1437477003": 4.544,
+ "1437477004": 4.322,
+ "1437477005": 4.035,
+ "1437477006": 3.6,
+ "1437477007": 3.172,
+ "1437477008": 2.877,
+ "1437477009": 2.618,
+ "1437477010": 2.402,
+ "1437477011": 2.234,
+ "1437477012": 2.129,
+ "1437477013": 2.08,
+ "1437477014": 2.088,
+ "1437477015": 2.135,
+ "1437477016": 2.224,
+ "1437477017": 2.319,
+ "1437477018": 2.413,
+ "1437477019": 2.505,
+ "1437477020": 2.601,
+ "1437477022": 2.69,
+ "1437477023": 2.763,
+ "1437477024": 2.816,
+ "1437477025": 2.889,
+ "1437477026": 2.96,
+ "1437477027": 3.028,
+ "1437477028": 3.098,
+ "1437477029": 3.15,
+ "1437477030": 3.213,
+ "1437477031": 3.253,
+ "1437477032": 3.293,
+ "1437477033": 3.311,
+ "1437477034": 3.321,
+ "1437477035": 3.337,
+ "1437477036": 3.329,
+ "1437477037": 3.315,
+ "1437477038": 3.31,
+ "1437477039": 3.298,
+ "1437477040": 3.299,
+ "1437477041": 3.333,
+ "1437477042": 3.379,
+ "1437477043": 3.388,
+ "1437477044": 3.41,
+ "1437477045": 3.41,
+ "1437477046": 3.427,
+ "1437477047": 3.444,
+ "1437477048": 3.451,
+ "1437477050": 3.435,
+ "1437477051": 3.436,
+ "1437477052": 3.429,
+ "1437477053": 3.424,
+ "1437477054": 3.428,
+ "1437477055": 3.45,
+ "1437477056": 3.469,
+ "1437477057": 3.508,
+ "1437477058": 3.559,
+ "1437477059": 3.597,
+ "1437477060": 3.651,
+ "1437477061": 3.713,
+ "1437477062": 3.719,
+ "1437477063": 3.729,
+ "1437477064": 3.724,
+ "1437477065": 3.741,
+ "1437477066": 3.772,
+ "1437477067": 3.699,
+ "1437477068": 3.345,
+ "1437477069": 2.989,
+ "1437477070": 2.734,
+ "1437477071": 2.56,
+ "1437477072": 2.446,
+ "1437477073": 2.386,
+ "1437477075": 2.379,
+ "1437477076": 2.414,
+ "1437477077": 2.459,
+ "1437477078": 2.501,
+ "1437477079": 2.527,
+ "1437477080": 2.542,
+ "1437477081": 2.534,
+ "1437477082": 2.515,
+ "1437477083": 2.501,
+ "1437477084": 2.478,
+ "1437477085": 2.447,
+ "1437477086": 2.413,
+ "1437477087": 2.359,
+ "1437477088": 2.302,
+ "1437477089": 2.246,
+ "1437477090": 2.17,
+ "1437477091": 2.082,
+ "1437477092": 1.999,
+ "1437477093": 1.934,
+ "1437477094": 1.868,
+ "1437477095": 1.806,
+ "1437477096": 1.745,
+ "1437477097": 1.689,
+ "1437477098": 1.641,
+ "1437477099": 1.596,
+ "1437477100": 1.555,
+ "1437477101": 1.517,
+ "1437477102": 1.482,
+ "1437477103": 1.445,
+ "1437477104": 1.41,
+ "1437477105": 1.379,
+ "1437477106": 1.352,
+ "1437477107": 1.327,
+ "1437477109": 1.308,
+ "1437477110": 1.294,
+ "1437477111": 1.278,
+ "1437477112": 1.263,
+ "1437477113": 1.257,
+ "1437477114": 1.256,
+ "1437477115": 1.263,
+ "1437477116": 1.278,
+ "1437477117": 1.3,
+ "1437477118": 1.326,
+ "1437477119": 1.352,
+ "1437477120": 1.376,
+ "1437477121": 1.395,
+ "1437477122": 1.41,
+ "1437477123": 1.422,
+ "1437477124": 1.432,
+ "1437477125": 1.438,
+ "1437477126": 1.442,
+ "1437477127": 1.445,
+ "1437477128": 1.453,
+ "1437477129": 1.461,
+ "1437477130": 1.467,
+ "1437477131": 1.474,
+ "1437477132": 1.483,
+ "1437477133": 1.493,
+ "1437477134": 1.505,
+ "1437477135": 1.512,
+ "1437477136": 1.516,
+ "1437477137": 1.522,
+ "1437477138": 1.527,
+ "1437477139": 1.529,
+ "1437477140": 1.529,
+ "1437477141": 1.525,
+ "1437477143": 1.517,
+ "1437477144": 1.506,
+ "1437477145": 1.49,
+ "1437477146": 1.477,
+ "1437477147": 1.464,
+ "1437477148": 1.447,
+ "1437477149": 1.427,
+ "1437477150": 1.406,
+ "1437477151": 1.383,
+ "1437477152": 1.366,
+ "1437477153": 1.357,
+ "1437477154": 1.353,
+ "1437477155": 1.35,
+ "1437477156": 1.348,
+ "1437477157": 1.354,
+ "1437477158": 1.365,
+ "1437477159": 1.374,
+ "1437477160": 1.384,
+ "1437477161": 1.393,
+ "1437477162": 1.4,
+ "1437477163": 1.404,
+ "1437477164": 1.407,
+ "1437477165": 1.409,
+ "1437477166": 1.405,
+ "1437477167": 1.397,
+ "1437477168": 1.387,
+ "1437477169": 1.374,
+ "1437477170": 1.354,
+ "1437477171": 1.331,
+ "1437477172": 1.306,
+ "1437477173": 1.286,
+ "1437477174": 1.268,
+ "1437477175": 1.25,
+ "1437477176": 1.232,
+ "1437477178": 1.216,
+ "1437477179": 1.199,
+ "1437477180": 1.184,
+ "1437477181": 1.17,
+ "1437477182": 1.159,
+ "1437477183": 1.149,
+ "1437477184": 1.14,
+ "1437477185": 1.133,
+ "1437477186": 1.129,
+ "1437477187": 1.13,
+ "1437477188": 1.153,
+ "1437477189": 1.211,
+ "1437477190": 1.279,
+ "1437477191": 1.348,
+ "1437477192": 1.419,
+ "1437477193": 1.49,
+ "1437477194": 1.566,
+ "1437477195": 1.641,
+ "1437477196": 1.713,
+ "1437477197": 1.781,
+ "1437477198": 1.838,
+ "1437477199": 1.876,
+ "1437477200": 1.893,
+ "1437477201": 1.892,
+ "1437477202": 1.875,
+ "1437477203": 1.857,
+ "1437477204": 1.833,
+ "1437477205": 1.81,
+ "1437477206": 1.785,
+ "1437477207": 1.755,
+ "1437477208": 1.723,
+ "1437477209": 1.688,
+ "1437477210": 1.657,
+ "1437477211": 1.63,
+ "1437477212": 1.601,
+ "1437477213": 1.57,
+ "1437477215": 1.54,
+ "1437477216": 1.514,
+ "1437477217": 1.487,
+ "1437477218": 1.459,
+ "1437477219": 1.428,
+ "1437477220": 1.401,
+ "1437477221": 1.378,
+ "1437477222": 1.358,
+ "1437477223": 1.343,
+ "1437477224": 1.331,
+ "1437477225": 1.325,
+ "1437477226": 1.322,
+ "1437477227": 1.321,
+ "1437477228": 1.322,
+ "1437477229": 1.325,
+ "1437477230": 1.327,
+ "1437477231": 1.327,
+ "1437477232": 1.326,
+ "1437477233": 1.325,
+ "1437477234": 1.324,
+ "1437477235": 1.323,
+ "1437477236": 1.319,
+ "1437477237": 1.312,
+ "1437477238": 1.3,
+ "1437477239": 1.28,
+ "1437477240": 1.252,
+ "1437477241": 1.217,
+ "1437477242": 1.18,
+ "1437477243": 1.147,
+ "1437477244": 1.123,
+ "1437477245": 1.115,
+ "1437477247": 1.131,
+ "1437477248": 1.168,
+ "1437477249": 1.213,
+ "1437477250": 1.247,
+ "1437477251": 1.258,
+ "1437477252": 1.244,
+ "1437477253": 1.218,
+ "1437477254": 1.193,
+ "1437477255": 1.169,
+ "1437477256": 1.147,
+ "1437477257": 1.126,
+ "1437477258": 1.103,
+ "1437477259": 1.082,
+ "1437477260": 1.061,
+ "1437477261": 1.038,
+ "1437477262": 1.011,
+ "1437477263": 0.984,
+ "1437477264": 0.961,
+ "1437477265": 0.947,
+ "1437477266": 0.939,
+ "1437477267": 0.936,
+ "1437477268": 0.935,
+ "1437477270": 0.936,
+ "1437477271": 0.937,
+ "1437477272": 0.94,
+ "1437477273": 0.943,
+ "1437477274": 0.948,
+ "1437477275": 0.953,
+ "1437477276": 0.959,
+ "1437477277": 0.97,
+ "1437477278": 0.98,
+ "1437477279": 0.99,
+ "1437477280": 1.002,
+ "1437477281": 1.014,
+ "1437477282": 1.024,
+ "1437477283": 1.031,
+ "1437477284": 1.039,
+ "1437477285": 1.05,
+ "1437477286": 1.061,
+ "1437477287": 1.076,
+ "1437477288": 1.09,
+ "1437477289": 1.105,
+ "1437477290": 1.121,
+ "1437477291": 1.138,
+ "1437477292": 1.157,
+ "1437477294": 1.178,
+ "1437477295": 1.201,
+ "1437477296": 1.228,
+ "1437477297": 1.256,
+ "1437477298": 1.281,
+ "1437477299": 1.296,
+ "1437477300": 1.314,
+ "1437477301": 1.337,
+ "1437477302": 1.365,
+ "1437477303": 1.386,
+ "1437477304": 1.407,
+ "1437477305": 1.426,
+ "1437477306": 1.44,
+ "1437477307": 1.456,
+ "1437477308": 1.472,
+ "1437477309": 1.484,
+ "1437477310": 1.496,
+ "1437477311": 1.506,
+ "1437477312": 1.52,
+ "1437477313": 1.533,
+ "1437477314": 1.54,
+ "1437477315": 1.542,
+ "1437477316": 1.544,
+ "1437477317": 1.54,
+ "1437477318": 1.547,
+ "1437477319": 1.556,
+ "1437477321": 1.561,
+ "1437477322": 1.563,
+ "1437477323": 1.567,
+ "1437477324": 1.572,
+ "1437477325": 1.561,
+ "1437477326": 1.537,
+ "1437477327": 1.51,
+ "1437477328": 1.476,
+ "1437477329": 1.436,
+ "1437477330": 1.395,
+ "1437477331": 1.36,
+ "1437477332": 1.342,
+ "1437477333": 1.349,
+ "1437477334": 1.378,
+ "1437477335": 1.417,
+ "1437477336": 1.462,
+ "1437477337": 1.514,
+ "1437477338": 1.569,
+ "1437477339": 1.631,
+ "1437477340": 1.694,
+ "1437477341": 1.759,
+ "1437477342": 1.86,
+ "1437477343": 1.984,
+ "1437477345": 2.121,
+ "1437477346": 2.369,
+ "1437477347": 2.89,
+ "1437477348": 3.572,
+ "1437477349": 4.594,
+ "1437477350": 6.386,
+ "1437477351": 10.365,
+ "1437477352": 27.1,
+ "1437477353": 0,
+ "1437477354": 0,
+ "1437477355": 0,
+ "1437477356": 0,
+ "1437477376": 222.222,
+ "1437477377": 13.959,
+ "1437477378": 9.735,
+ "1437477379": 8.676,
+ "1437477380": 8.443,
+ "1437477381": 8.271,
+ "1437477383": 9.432,
+ "1437477384": 21.177,
+ "1437477385": 980.392,
+ "1437477386": 0,
+ "1437477387": 0,
+ "1437477388": 0,
+ "1437477392": 1111.111,
+ "1437477393": 67.751,
+ "1437477394": 41.771,
+ "1437477395": 32.938,
+ "1437477397": 28.686,
+ "1437477398": 26.371,
+ "1437477399": 24.913,
+ "1437477400": 24.015,
+ "1437477401": 24.582,
+ "1437477402": 25.407,
+ "1437477403": 26.042,
+ "1437477404": 80.906,
+ "1437477405": 0,
+ "1437477406": 0,
+ "1437477407": 0,
+ "1437477408": 0,
+ "1437477411": 1111.111,
+ "1437477412": 67.751,
+ "1437477413": 41.563,
+ "1437477414": 32.425,
+ "1437477415": 28.058,
+ "1437477417": 26.795,
+ "1437477418": 26.455,
+ "1437477419": 27.457,
+ "1437477420": 29.036,
+ "1437477421": 30.248,
+ "1437477422": 72.464,
+ "1437477423": 0,
+ "1437477428": 574.713,
+ "1437477429": 33.807,
+ "1437477430": 21.07,
+ "1437477432": 17.674,
+ "1437477433": 17.2,
+ "1437477434": 18.195,
+ "1437477435": 18.983,
+ "1437477436": 19.677,
+ "1437477437": 19.936,
+ "1437477438": 19.157,
+ "1437477439": 18.096,
+ "1437477440": 17.452,
+ "1437477441": 17.618,
+ "1437477442": 18.057,
+ "1437477443": 18.56,
+ "1437477444": 18.896,
+ "1437477445": 18.896,
+ "1437477446": 18.376,
+ "1437477447": 17.806,
+ "1437477448": 18.038,
+ "1437477449": 18.175,
+ "1437477450": 18.295,
+ "1437477451": 18.116,
+ "1437477452": 17.361,
+ "1437477453": 16.852,
+ "1437477454": 16.869,
+ "1437477455": 16.852,
+ "1437477456": 16.784,
+ "1437477457": 57.67,
+ "1437477458": 0,
+ "1437477459": 0,
+ "1437477461": 0,
+ "1437477465": 406.504,
+ "1437477466": 24.913,
+ "1437477467": 15.029,
+ "1437477468": 13.072,
+ "1437477469": 12.355,
+ "1437477470": 12.99,
+ "1437477471": 13.506,
+ "1437477472": 14.443,
+ "1437477473": 15.138,
+ "1437477474": 15.461,
+ "1437477475": 15.783,
+ "1437477476": 15.934,
+ "1437477477": 15.873,
+ "1437477478": 15.62,
+ "1437477479": 15.235,
+ "1437477480": 13.866,
+ "1437477481": 12.742,
+ "1437477482": 12.165,
+ "1437477483": 11.68,
+ "1437477484": 11.208,
+ "1437477485": 10.739,
+ "1437477486": 9.944,
+ "1437477487": 9.228,
+ "1437477488": 28.785,
+ "1437477489": 0,
+ "1437477490": 103.52,
+ "1437477491": 29.603,
+ "1437477492": 17.059,
+ "1437477493": 12.55,
+ "1437477494": 10.423,
+ "1437477495": 9.073,
+ "1437477496": 8.059,
+ "1437477497": 7.464,
+ "1437477498": 6.953,
+ "1437477500": 6.493,
+ "1437477501": 6.05,
+ "1437477502": 5.644,
+ "1437477503": 5.304,
+ "1437477504": 5.01,
+ "1437477505": 4.774,
+ "1437477506": 4.57,
+ "1437477507": 4.44,
+ "1437477508": 4.329,
+ "1437477509": 4.251,
+ "1437477510": 4.192,
+ "1437477511": 4.142,
+ "1437477512": 4.109,
+ "1437477513": 4.099,
+ "1437477514": 4.118,
+ "1437477515": 4.174,
+ "1437477516": 4.271,
+ "1437477517": 4.414,
+ "1437477518": 4.632,
+ "1437477519": 4.922,
+ "1437477520": 5.303,
+ "1437477521": 5.807,
+ "1437477522": 6.442,
+ "1437477523": 7.268,
+ "1437477524": 8.333,
+ "1437477525": 9.752,
+ "1437477526": 11.639,
+ "1437477527": 14.306,
+ "1437477528": 17.693,
+ "1437477529": 20.807,
+ "1437477530": 23.343,
+ "1437477532": 24.295,
+ "1437477533": 24.51,
+ "1437477534": 22.584,
+ "1437477535": 20.008,
+ "1437477536": 18.939,
+ "1437477537": 18.875,
+ "1437477538": 18.918,
+ "1437477539": 21.422,
+ "1437477540": 23.641,
+ "1437477541": 24.876,
+ "1437477542": 25.602,
+ "1437477543": 26.001,
+ "1437477544": 26.247,
+ "1437477545": 26.455,
+ "1437477546": 26.624,
+ "1437477547": 26.882,
+ "1437477548": 27.367,
+ "1437477549": 27.685,
+ "1437477550": 26.969,
+ "1437477551": 26.667,
+ "1437477552": 25.445,
+ "1437477553": 24.618,
+ "1437477555": 25.8,
+ "1437477556": 27.144,
+ "1437477557": 28.011,
+ "1437477558": 30.303,
+ "1437477559": 31.867,
+ "1437477560": 32.552,
+ "1437477561": 32.938,
+ "1437477562": 32.938,
+ "1437477563": 32.744,
+ "1437477564": 34.507,
+ "1437477565": 41.152,
+ "1437477566": 46.041,
+ "1437477567": 50.352,
+ "1437477568": 53.248,
+ "1437477569": 44.924,
+ "1437477570": 39.494,
+ "1437477571": 37.202,
+ "1437477572": 35.997,
+ "1437477573": 36.792,
+ "1437477574": 38.402,
+ "1437477575": 39.308,
+ "1437477576": 216.45,
+ "1437477577": 238.095,
+ "1437477578": 49.31,
+ "1437477580": 29.603,
+ "1437477581": 22.957,
+ "1437477582": 19.516,
+ "1437477583": 17.902,
+ "1437477584": 17.416,
+ "1437477585": 16.276,
+ "1437477586": 15.375,
+ "1437477587": 14.697,
+ "1437477588": 14.531,
+ "1437477589": 14.646,
+ "1437477590": 14.343,
+ "1437477591": 13.866,
+ "1437477592": 13.355,
+ "1437477593": 13.365,
+ "1437477594": 13.617,
+ "1437477595": 13.854,
+ "1437477596": 14.723,
+ "1437477597": 16.244,
+ "1437477598": 21.844,
+ "1437477599": 29.815,
+ "1437477600": 42.845,
+ "1437477601": 0,
+ "1437477604": 555.556,
+ "1437477605": 36.63,
+ "1437477607": 14.1,
+ "1437477608": 11.913,
+ "1437477609": 11.307,
+ "1437477610": 10.489,
+ "1437477611": 9.673,
+ "1437477612": 8.999,
+ "1437477613": 7.72,
+ "1437477614": 6.118,
+ "1437477615": 5.078,
+ "1437477616": 5.004,
+ "1437477617": 5.226,
+ "1437477618": 5.441,
+ "1437477619": 5.327,
+ "1437477620": 4.723,
+ "1437477621": 4.124,
+ "1437477622": 3.646,
+ "1437477623": 3.253,
+ "1437477624": 2.926,
+ "1437477625": 2.648,
+ "1437477626": 2.42,
+ "1437477627": 2.238,
+ "1437477628": 2.093,
+ "1437477629": 1.98,
+ "1437477630": 1.885,
+ "1437477631": 1.814,
+ "1437477632": 1.772,
+ "1437477633": 1.756,
+ "1437477634": 1.76,
+ "1437477635": 1.779,
+ "1437477636": 1.809,
+ "1437477638": 1.852,
+ "1437477639": 1.895,
+ "1437477640": 1.932,
+ "1437477641": 1.965,
+ "1437477642": 1.994,
+ "1437477643": 2.013,
+ "1437477644": 2.016,
+ "1437477645": 1.993,
+ "1437477646": 1.95,
+ "1437477647": 1.906,
+ "1437477648": 1.854,
+ "1437477649": 1.799,
+ "1437477650": 1.758,
+ "1437477651": 1.724,
+ "1437477652": 1.692,
+ "1437477653": 1.662,
+ "1437477654": 1.639,
+ "1437477655": 2.751,
+ "1437477656": 3.102,
+ "1437477657": 3.828,
+ "1437477658": 5.043,
+ "1437477659": 7.313,
+ "1437477660": 13.144,
+ "1437477661": 46.168,
+ "1437477662": 0,
+ "1437477663": 0,
+ "1437477664": 0,
+ "1437477665": 33.944,
+ "1437477666": 15.461,
+ "1437477667": 13.376,
+ "1437477668": 13.001,
+ "1437477669": 14.802,
+ "1437477671": 17.94,
+ "1437477672": 21.758,
+ "1437477673": 25.72,
+ "1437477674": 29.343,
+ "1437477676": 32.175,
+ "1437477677": 24.876,
+ "1437477678": 19.865,
+ "1437477679": 16.667,
+ "1437477680": 15.138,
+ "1437477681": 25.445,
+ "1437477682": 0,
+ "1437477683": 0,
+ "1437477684": 0,
+ "1437477685": 0,
+ "1437477688": 505.051,
+ "1437477689": 34.578,
+ "1437477690": 18.939,
+ "1437477691": 14.658,
+ "1437477692": 15.98,
+ "1437477693": 16.955,
+ "1437477695": 17.544,
+ "1437477696": 17.094,
+ "1437477697": 16.324,
+ "1437477698": 16.534,
+ "1437477699": 15.873,
+ "1437477700": 14.594,
+ "1437477701": 13.866,
+ "1437477702": 17.712,
+ "1437477703": 126.263,
+ "1437477704": 0,
+ "1437477705": 0,
+ "1437477706": 0
+ },
+ "powers": {
+ "1437474517": 53,
+ "1437474518": 59,
+ "1437474519": 59,
+ "1437474520": 59,
+ "1437474521": 0,
+ "1437474522": 0,
+ "1437474523": 0,
+ "1437474524": 0,
+ "1437474525": 0,
+ "1437474526": 0,
+ "1437474527": 74,
+ "1437474528": 74,
+ "1437474529": 71,
+ "1437474530": 119,
+ "1437474532": 107,
+ "1437474533": 107,
+ "1437474534": 134,
+ "1437474535": 116,
+ "1437474536": 107,
+ "1437474537": 67,
+ "1437474538": 67,
+ "1437474539": 67,
+ "1437474540": 67,
+ "1437474541": 0,
+ "1437474542": 0,
+ "1437474543": 242,
+ "1437474544": 284,
+ "1437474545": 333,
+ "1437474546": 243,
+ "1437474547": 243,
+ "1437474548": 341,
+ "1437474549": 341,
+ "1437474550": 341,
+ "1437474551": 399,
+ "1437474552": 453,
+ "1437474553": 459,
+ "1437474554": 437,
+ "1437474555": 462,
+ "1437474556": 434,
+ "1437474557": 434,
+ "1437474558": 396,
+ "1437474559": 399,
+ "1437474560": 412,
+ "1437474561": 412,
+ "1437474562": 350,
+ "1437474563": 383,
+ "1437474564": 382,
+ "1437474566": 381,
+ "1437474567": 408,
+ "1437474568": 380,
+ "1437474569": 398,
+ "1437474570": 395,
+ "1437474571": 395,
+ "1437474572": 374,
+ "1437474573": 343,
+ "1437474574": 357,
+ "1437474575": 381,
+ "1437474576": 369,
+ "1437474577": 310,
+ "1437474578": 381,
+ "1437474579": 347,
+ "1437474580": 333,
+ "1437474581": 367,
+ "1437474582": 357,
+ "1437474583": 313,
+ "1437474584": 285,
+ "1437474585": 256,
+ "1437474586": 193,
+ "1437474587": 234,
+ "1437474588": 296,
+ "1437474589": 384,
+ "1437474590": 371,
+ "1437474591": 432,
+ "1437474592": 427,
+ "1437474593": 434,
+ "1437474594": 443,
+ "1437474595": 457,
+ "1437474596": 413,
+ "1437474597": 392,
+ "1437474598": 394,
+ "1437474599": 413,
+ "1437474600": 406,
+ "1437474601": 405,
+ "1437474603": 391,
+ "1437474604": 392,
+ "1437474605": 395,
+ "1437474606": 390,
+ "1437474607": 378,
+ "1437474608": 353,
+ "1437474609": 351,
+ "1437474610": 391,
+ "1437474611": 391,
+ "1437474612": 366,
+ "1437474613": 346,
+ "1437474614": 333,
+ "1437474615": 274,
+ "1437474616": 290,
+ "1437474617": 276,
+ "1437474618": 267,
+ "1437474619": 268,
+ "1437474620": 234,
+ "1437474621": 233,
+ "1437474622": 253,
+ "1437474623": 253,
+ "1437474624": 273,
+ "1437474626": 269,
+ "1437474627": 252,
+ "1437474628": 265,
+ "1437474629": 272,
+ "1437474630": 252,
+ "1437474631": 271,
+ "1437474632": 245,
+ "1437474633": 219,
+ "1437474634": 228,
+ "1437474635": 249,
+ "1437474636": 245,
+ "1437474637": 252,
+ "1437474638": 252,
+ "1437474639": 254,
+ "1437474640": 254,
+ "1437474641": 322,
+ "1437474642": 359,
+ "1437474643": 355,
+ "1437474644": 357,
+ "1437474645": 318,
+ "1437474646": 320,
+ "1437474647": 304,
+ "1437474648": 293,
+ "1437474649": 306,
+ "1437474650": 303,
+ "1437474652": 290,
+ "1437474653": 306,
+ "1437474654": 305,
+ "1437474655": 308,
+ "1437474656": 313,
+ "1437474657": 320,
+ "1437474658": 318,
+ "1437474659": 310,
+ "1437474660": 302,
+ "1437474661": 287,
+ "1437474662": 296,
+ "1437474663": 306,
+ "1437474664": 308,
+ "1437474665": 308,
+ "1437474666": 315,
+ "1437474667": 301,
+ "1437474668": 298,
+ "1437474669": 294,
+ "1437474670": 272,
+ "1437474671": 274,
+ "1437474672": 263,
+ "1437474673": 258,
+ "1437474674": 257,
+ "1437474675": 266,
+ "1437474676": 262,
+ "1437474677": 262,
+ "1437474678": 258,
+ "1437474679": 271,
+ "1437474681": 275,
+ "1437474682": 275,
+ "1437474683": 270,
+ "1437474684": 263,
+ "1437474685": 264,
+ "1437474686": 264,
+ "1437474687": 262,
+ "1437474688": 262,
+ "1437474689": 257,
+ "1437474690": 260,
+ "1437474691": 263,
+ "1437474692": 254,
+ "1437474693": 258,
+ "1437474694": 264,
+ "1437474695": 248,
+ "1437474696": 237,
+ "1437474697": 265,
+ "1437474698": 279,
+ "1437474699": 280,
+ "1437474700": 300,
+ "1437474701": 282,
+ "1437474702": 289,
+ "1437474703": 279,
+ "1437474705": 270,
+ "1437474706": 270,
+ "1437474707": 263,
+ "1437474708": 286,
+ "1437474709": 231,
+ "1437474710": 252,
+ "1437474711": 317,
+ "1437474712": 311,
+ "1437474713": 308,
+ "1437474714": 318,
+ "1437474715": 320,
+ "1437474716": 323,
+ "1437474717": 321,
+ "1437474718": 331,
+ "1437474719": 322,
+ "1437474720": 318,
+ "1437474721": 321,
+ "1437474722": 321,
+ "1437474723": 321,
+ "1437474724": 311,
+ "1437474725": 328,
+ "1437474726": 314,
+ "1437474727": 319,
+ "1437474728": 304,
+ "1437474729": 318,
+ "1437474730": 318,
+ "1437474732": 306,
+ "1437474733": 310,
+ "1437474734": 284,
+ "1437474735": 317,
+ "1437474736": 338,
+ "1437474737": 329,
+ "1437474738": 323,
+ "1437474739": 333,
+ "1437474740": 326,
+ "1437474741": 348,
+ "1437474742": 340,
+ "1437474743": 330,
+ "1437474744": 315,
+ "1437474745": 326,
+ "1437474746": 333,
+ "1437474747": 341,
+ "1437474748": 341,
+ "1437474749": 337,
+ "1437474750": 329,
+ "1437474751": 357,
+ "1437474752": 341,
+ "1437474753": 333,
+ "1437474754": 338,
+ "1437474755": 328,
+ "1437474756": 328,
+ "1437474757": 326,
+ "1437474758": 340,
+ "1437474760": 323,
+ "1437474761": 327,
+ "1437474762": 341,
+ "1437474763": 334,
+ "1437474764": 339,
+ "1437474765": 339,
+ "1437474766": 328,
+ "1437474767": 328,
+ "1437474768": 337,
+ "1437474769": 327,
+ "1437474770": 330,
+ "1437474771": 317,
+ "1437474772": 313,
+ "1437474773": 296,
+ "1437474774": 325,
+ "1437474775": 308,
+ "1437474776": 320,
+ "1437474777": 314,
+ "1437474778": 327,
+ "1437474779": 315,
+ "1437474780": 315,
+ "1437474781": 309,
+ "1437474782": 318,
+ "1437474783": 336,
+ "1437474785": 333,
+ "1437474786": 329,
+ "1437474787": 320,
+ "1437474788": 337,
+ "1437474789": 321,
+ "1437474790": 323,
+ "1437474791": 313,
+ "1437474792": 325,
+ "1437474793": 336,
+ "1437474794": 340,
+ "1437474795": 332,
+ "1437474796": 334,
+ "1437474797": 337,
+ "1437474798": 334,
+ "1437474799": 328,
+ "1437474800": 299,
+ "1437474801": 307,
+ "1437474802": 313,
+ "1437474803": 305,
+ "1437474804": 304,
+ "1437474805": 332,
+ "1437474806": 314,
+ "1437474808": 335,
+ "1437474809": 318,
+ "1437474810": 316,
+ "1437474811": 307,
+ "1437474812": 307,
+ "1437474813": 307,
+ "1437474814": 303,
+ "1437474815": 347,
+ "1437474816": 347,
+ "1437474817": 330,
+ "1437474818": 329,
+ "1437474819": 320,
+ "1437474820": 312,
+ "1437474821": 325,
+ "1437474822": 324,
+ "1437474823": 317,
+ "1437474824": 329,
+ "1437474825": 314,
+ "1437474827": 337,
+ "1437474828": 375,
+ "1437474829": 488,
+ "1437474830": 415,
+ "1437474831": 402,
+ "1437474832": 345,
+ "1437474833": 326,
+ "1437474834": 328,
+ "1437474835": 306,
+ "1437474836": 306,
+ "1437474837": 322,
+ "1437474838": 323,
+ "1437474839": 343,
+ "1437474840": 314,
+ "1437474841": 325,
+ "1437474842": 335,
+ "1437474843": 331,
+ "1437474844": 344,
+ "1437474845": 324,
+ "1437474846": 321,
+ "1437474847": 354,
+ "1437474848": 371,
+ "1437474849": 344,
+ "1437474850": 345,
+ "1437474851": 356,
+ "1437474852": 341,
+ "1437474853": 340,
+ "1437474854": 358,
+ "1437474855": 361,
+ "1437474856": 351,
+ "1437474857": 351,
+ "1437474859": 364,
+ "1437474860": 348,
+ "1437474861": 348,
+ "1437474862": 345,
+ "1437474863": 351,
+ "1437474864": 343,
+ "1437474865": 346,
+ "1437474866": 346,
+ "1437474867": 377,
+ "1437474868": 356,
+ "1437474869": 340,
+ "1437474870": 354,
+ "1437474871": 344,
+ "1437474872": 353,
+ "1437474873": 353,
+ "1437474874": 353,
+ "1437474875": 326,
+ "1437474876": 344,
+ "1437474877": 348,
+ "1437474878": 350,
+ "1437474879": 366,
+ "1437474880": 361,
+ "1437474881": 374,
+ "1437474882": 365,
+ "1437474883": 364,
+ "1437474884": 374,
+ "1437474885": 363,
+ "1437474886": 363,
+ "1437474887": 370,
+ "1437474888": 370,
+ "1437474890": 357,
+ "1437474891": 354,
+ "1437474892": 354,
+ "1437474893": 327,
+ "1437474894": 343,
+ "1437474895": 343,
+ "1437474896": 257,
+ "1437474897": 273,
+ "1437474898": 292,
+ "1437474899": 266,
+ "1437474900": 316,
+ "1437474901": 309,
+ "1437474902": 293,
+ "1437474903": 278,
+ "1437474904": 241,
+ "1437474905": 244,
+ "1437474906": 236,
+ "1437474907": 226,
+ "1437474908": 240,
+ "1437474909": 235,
+ "1437474910": 249,
+ "1437474911": 248,
+ "1437474912": 256,
+ "1437474913": 251,
+ "1437474914": 258,
+ "1437474915": 256,
+ "1437474916": 236,
+ "1437474917": 229,
+ "1437474918": 229,
+ "1437474919": 251,
+ "1437474920": 246,
+ "1437474921": 221,
+ "1437474923": 229,
+ "1437474924": 244,
+ "1437474925": 237,
+ "1437474926": 236,
+ "1437474927": 250,
+ "1437474928": 242,
+ "1437474929": 266,
+ "1437474930": 240,
+ "1437474931": 251,
+ "1437474932": 242,
+ "1437474933": 217,
+ "1437474934": 230,
+ "1437474935": 214,
+ "1437474936": 215,
+ "1437474937": 266,
+ "1437474938": 244,
+ "1437474939": 238,
+ "1437474940": 240,
+ "1437474941": 241,
+ "1437474942": 232,
+ "1437474943": 232,
+ "1437474944": 232,
+ "1437474945": 224,
+ "1437474946": 223,
+ "1437474947": 233,
+ "1437474948": 227,
+ "1437474949": 220,
+ "1437474950": 224,
+ "1437474951": 246,
+ "1437474952": 248,
+ "1437474953": 248,
+ "1437474954": 245,
+ "1437474955": 246,
+ "1437474956": 255,
+ "1437474957": 256,
+ "1437474958": 256,
+ "1437474959": 261,
+ "1437474960": 258,
+ "1437474962": 251,
+ "1437474963": 261,
+ "1437474964": 241,
+ "1437474965": 233,
+ "1437474966": 256,
+ "1437474967": 236,
+ "1437474968": 249,
+ "1437474969": 248,
+ "1437474970": 250,
+ "1437474971": 242,
+ "1437474972": 249,
+ "1437474973": 258,
+ "1437474974": 229,
+ "1437474975": 237,
+ "1437474976": 223,
+ "1437474977": 246,
+ "1437474978": 295,
+ "1437474979": 288,
+ "1437474980": 285,
+ "1437474981": 277,
+ "1437474982": 250,
+ "1437474983": 303,
+ "1437474984": 284,
+ "1437474985": 297,
+ "1437474986": 290,
+ "1437474987": 290,
+ "1437474988": 289,
+ "1437474989": 289,
+ "1437474990": 289,
+ "1437474992": 117,
+ "1437474993": 333,
+ "1437474994": 266,
+ "1437474995": 257,
+ "1437474996": 257,
+ "1437474997": 261,
+ "1437474998": 260,
+ "1437474999": 260,
+ "1437475000": 278,
+ "1437475001": 263,
+ "1437475002": 250,
+ "1437475003": 270,
+ "1437475004": 288,
+ "1437475005": 236,
+ "1437475006": 256,
+ "1437475007": 285,
+ "1437475008": 288,
+ "1437475009": 288,
+ "1437475010": 260,
+ "1437475012": 240,
+ "1437475013": 275,
+ "1437475014": 277,
+ "1437475015": 256,
+ "1437475016": 253,
+ "1437475017": 254,
+ "1437475018": 270,
+ "1437475019": 297,
+ "1437475020": 253,
+ "1437475021": 269,
+ "1437475022": 272,
+ "1437475023": 247,
+ "1437475024": 241,
+ "1437475025": 256,
+ "1437475026": 272,
+ "1437475027": 270,
+ "1437475029": 270,
+ "1437475030": 263,
+ "1437475031": 283,
+ "1437475032": 292,
+ "1437475033": 300,
+ "1437475034": 305,
+ "1437475035": 303,
+ "1437475036": 294,
+ "1437475037": 306,
+ "1437475038": 290,
+ "1437475039": 281,
+ "1437475040": 298,
+ "1437475041": 277,
+ "1437475042": 277,
+ "1437475043": 255,
+ "1437475044": 291,
+ "1437475045": 292,
+ "1437475046": 264,
+ "1437475047": 260,
+ "1437475048": 246,
+ "1437475049": 261,
+ "1437475050": 318,
+ "1437475051": 313,
+ "1437475052": 333,
+ "1437475054": 361,
+ "1437475055": 334,
+ "1437475056": 318,
+ "1437475057": 329,
+ "1437475058": 314,
+ "1437475059": 321,
+ "1437475060": 330,
+ "1437475061": 299,
+ "1437475062": 329,
+ "1437475063": 340,
+ "1437475064": 331,
+ "1437475065": 335,
+ "1437475066": 320,
+ "1437475067": 319,
+ "1437475068": 334,
+ "1437475069": 320,
+ "1437475070": 361,
+ "1437475071": 358,
+ "1437475072": 313,
+ "1437475073": 320,
+ "1437475074": 327,
+ "1437475075": 298,
+ "1437475076": 308,
+ "1437475077": 316,
+ "1437475078": 328,
+ "1437475079": 328,
+ "1437475080": 313,
+ "1437475081": 316,
+ "1437475083": 321,
+ "1437475084": 338,
+ "1437475085": 325,
+ "1437475086": 325,
+ "1437475087": 321,
+ "1437475088": 326,
+ "1437475089": 336,
+ "1437475090": 333,
+ "1437475091": 336,
+ "1437475092": 338,
+ "1437475093": 329,
+ "1437475094": 333,
+ "1437475095": 340,
+ "1437475096": 345,
+ "1437475097": 342,
+ "1437475098": 340,
+ "1437475099": 330,
+ "1437475100": 344,
+ "1437475101": 312,
+ "1437475102": 325,
+ "1437475103": 346,
+ "1437475104": 341,
+ "1437475105": 318,
+ "1437475106": 328,
+ "1437475107": 318,
+ "1437475108": 313,
+ "1437475109": 314,
+ "1437475110": 302,
+ "1437475112": 324,
+ "1437475113": 317,
+ "1437475114": 320,
+ "1437475115": 323,
+ "1437475116": 314,
+ "1437475117": 319,
+ "1437475118": 322,
+ "1437475119": 319,
+ "1437475120": 314,
+ "1437475121": 323,
+ "1437475122": 318,
+ "1437475123": 316,
+ "1437475124": 327,
+ "1437475125": 329,
+ "1437475126": 339,
+ "1437475127": 346,
+ "1437475128": 346,
+ "1437475129": 337,
+ "1437475130": 326,
+ "1437475131": 321,
+ "1437475132": 317,
+ "1437475133": 315,
+ "1437475134": 317,
+ "1437475135": 330,
+ "1437475136": 304,
+ "1437475137": 296,
+ "1437475138": 320,
+ "1437475139": 295,
+ "1437475140": 308,
+ "1437475141": 306,
+ "1437475142": 284,
+ "1437475143": 257,
+ "1437475145": 314,
+ "1437475146": 315,
+ "1437475147": 275,
+ "1437475148": 292,
+ "1437475149": 345,
+ "1437475150": 323,
+ "1437475151": 323,
+ "1437475152": 298,
+ "1437475153": 276,
+ "1437475154": 283,
+ "1437475155": 292,
+ "1437475156": 306,
+ "1437475157": 283,
+ "1437475158": 286,
+ "1437475159": 301,
+ "1437475160": 317,
+ "1437475161": 314,
+ "1437475162": 306,
+ "1437475163": 307,
+ "1437475164": 294,
+ "1437475165": 304,
+ "1437475166": 296,
+ "1437475167": 291,
+ "1437475168": 316,
+ "1437475169": 295,
+ "1437475170": 316,
+ "1437475171": 304,
+ "1437475173": 306,
+ "1437475174": 289,
+ "1437475175": 293,
+ "1437475176": 276,
+ "1437475177": 295,
+ "1437475178": 295,
+ "1437475179": 321,
+ "1437475180": 316,
+ "1437475181": 318,
+ "1437475182": 328,
+ "1437475183": 315,
+ "1437475184": 302,
+ "1437475185": 313,
+ "1437475186": 313,
+ "1437475187": 314,
+ "1437475188": 326,
+ "1437475189": 304,
+ "1437475190": 316,
+ "1437475191": 325,
+ "1437475192": 331,
+ "1437475193": 312,
+ "1437475194": 316,
+ "1437475195": 332,
+ "1437475196": 327,
+ "1437475197": 319,
+ "1437475198": 327,
+ "1437475200": 308,
+ "1437475201": 308,
+ "1437475202": 306,
+ "1437475203": 302,
+ "1437475204": 299,
+ "1437475205": 300,
+ "1437475206": 314,
+ "1437475207": 291,
+ "1437475208": 318,
+ "1437475209": 318,
+ "1437475210": 302,
+ "1437475211": 299,
+ "1437475212": 289,
+ "1437475213": 282,
+ "1437475214": 294,
+ "1437475215": 279,
+ "1437475216": 276,
+ "1437475217": 259,
+ "1437475218": 257,
+ "1437475219": 313,
+ "1437475220": 315,
+ "1437475221": 332,
+ "1437475222": 311,
+ "1437475223": 330,
+ "1437475224": 316,
+ "1437475225": 330,
+ "1437475226": 302,
+ "1437475227": 330,
+ "1437475228": 359,
+ "1437475230": 379,
+ "1437475231": 382,
+ "1437475232": 357,
+ "1437475233": 406,
+ "1437475234": 339,
+ "1437475235": 311,
+ "1437475236": 301,
+ "1437475237": 307,
+ "1437475238": 305,
+ "1437475239": 317,
+ "1437475240": 296,
+ "1437475241": 296,
+ "1437475242": 292,
+ "1437475243": 284,
+ "1437475244": 284,
+ "1437475245": 297,
+ "1437475246": 279,
+ "1437475247": 288,
+ "1437475248": 289,
+ "1437475249": 289,
+ "1437475250": 301,
+ "1437475251": 267,
+ "1437475252": 284,
+ "1437475253": 318,
+ "1437475254": 285,
+ "1437475255": 283,
+ "1437475256": 296,
+ "1437475257": 288,
+ "1437475258": 264,
+ "1437475259": 268,
+ "1437475260": 284,
+ "1437475261": 282,
+ "1437475262": 277,
+ "1437475263": 283,
+ "1437475264": 283,
+ "1437475265": 262,
+ "1437475266": 275,
+ "1437475267": 269,
+ "1437475269": 264,
+ "1437475270": 271,
+ "1437475271": 271,
+ "1437475272": 274,
+ "1437475273": 294,
+ "1437475274": 271,
+ "1437475275": 263,
+ "1437475276": 283,
+ "1437475277": 255,
+ "1437475278": 265,
+ "1437475279": 266,
+ "1437475280": 269,
+ "1437475281": 270,
+ "1437475282": 267,
+ "1437475283": 267,
+ "1437475284": 281,
+ "1437475285": 281,
+ "1437475286": 254,
+ "1437475287": 249,
+ "1437475288": 255,
+ "1437475289": 262,
+ "1437475290": 247,
+ "1437475291": 256,
+ "1437475292": 272,
+ "1437475293": 272,
+ "1437475294": 280,
+ "1437475295": 286,
+ "1437475296": 286,
+ "1437475297": 279,
+ "1437475298": 293,
+ "1437475299": 287,
+ "1437475300": 278,
+ "1437475301": 297,
+ "1437475302": 288,
+ "1437475303": 267,
+ "1437475304": 268,
+ "1437475305": 262,
+ "1437475306": 241,
+ "1437475308": 239,
+ "1437475309": 272,
+ "1437475310": 291,
+ "1437475311": 281,
+ "1437475312": 287,
+ "1437475313": 284,
+ "1437475314": 268,
+ "1437475315": 252,
+ "1437475316": 255,
+ "1437475317": 274,
+ "1437475318": 260,
+ "1437475319": 263,
+ "1437475320": 263,
+ "1437475321": 270,
+ "1437475322": 265,
+ "1437475323": 280,
+ "1437475324": 275,
+ "1437475325": 279,
+ "1437475326": 266,
+ "1437475327": 267,
+ "1437475328": 277,
+ "1437475329": 266,
+ "1437475330": 238,
+ "1437475331": 239,
+ "1437475332": 283,
+ "1437475333": 256,
+ "1437475334": 268,
+ "1437475335": 278,
+ "1437475336": 278,
+ "1437475337": 274,
+ "1437475338": 283,
+ "1437475339": 249,
+ "1437475340": 292,
+ "1437475342": 277,
+ "1437475343": 267,
+ "1437475344": 268,
+ "1437475345": 270,
+ "1437475346": 274,
+ "1437475347": 279,
+ "1437475348": 287,
+ "1437475349": 277,
+ "1437475350": 293,
+ "1437475351": 350,
+ "1437475352": 334,
+ "1437475353": 328,
+ "1437475354": 326,
+ "1437475355": 337,
+ "1437475356": 337,
+ "1437475357": 326,
+ "1437475358": 321,
+ "1437475359": 343,
+ "1437475360": 364,
+ "1437475361": 326,
+ "1437475362": 328,
+ "1437475363": 321,
+ "1437475364": 293,
+ "1437475365": 314,
+ "1437475366": 361,
+ "1437475367": 381,
+ "1437475368": 337,
+ "1437475369": 348,
+ "1437475371": 375,
+ "1437475372": 373,
+ "1437475373": 355,
+ "1437475374": 345,
+ "1437475375": 349,
+ "1437475376": 363,
+ "1437475377": 374,
+ "1437475378": 349,
+ "1437475379": 365,
+ "1437475380": 342,
+ "1437475381": 311,
+ "1437475382": 384,
+ "1437475383": 364,
+ "1437475384": 361,
+ "1437475385": 361,
+ "1437475386": 345,
+ "1437475387": 328,
+ "1437475388": 317,
+ "1437475389": 291,
+ "1437475390": 203,
+ "1437475391": 163,
+ "1437475392": 209,
+ "1437475393": 197,
+ "1437475394": 180,
+ "1437475395": 167,
+ "1437475396": 166,
+ "1437475397": 165,
+ "1437475398": 153,
+ "1437475400": 143,
+ "1437475401": 142,
+ "1437475402": 143,
+ "1437475403": 132,
+ "1437475404": 138,
+ "1437475405": 128,
+ "1437475406": 123,
+ "1437475407": 120,
+ "1437475408": 129,
+ "1437475409": 142,
+ "1437475410": 122,
+ "1437475411": 129,
+ "1437475412": 129,
+ "1437475413": 131,
+ "1437475414": 130,
+ "1437475415": 132,
+ "1437475416": 132,
+ "1437475417": 135,
+ "1437475418": 133,
+ "1437475419": 151,
+ "1437475420": 154,
+ "1437475421": 143,
+ "1437475422": 131,
+ "1437475423": 136,
+ "1437475424": 134,
+ "1437475425": 132,
+ "1437475426": 132,
+ "1437475427": 137,
+ "1437475428": 133,
+ "1437475429": 130,
+ "1437475430": 120,
+ "1437475431": 122,
+ "1437475433": 122,
+ "1437475434": 133,
+ "1437475435": 126,
+ "1437475436": 128,
+ "1437475437": 129,
+ "1437475438": 130,
+ "1437475439": 127,
+ "1437475440": 125,
+ "1437475441": 130,
+ "1437475442": 134,
+ "1437475443": 134,
+ "1437475444": 121,
+ "1437475445": 87,
+ "1437475446": 87,
+ "1437475447": 89,
+ "1437475448": 89,
+ "1437475449": 89,
+ "1437475450": 0,
+ "1437475451": 0,
+ "1437475452": 0,
+ "1437475453": 0,
+ "1437475454": 0,
+ "1437475455": 0,
+ "1437475456": 0,
+ "1437475457": 0,
+ "1437475458": 0,
+ "1437475459": 0,
+ "1437475460": 0,
+ "1437475461": 0,
+ "1437475462": 0,
+ "1437475463": 0,
+ "1437475464": 0,
+ "1437475466": 0,
+ "1437475467": 0,
+ "1437475468": 0,
+ "1437475469": 0,
+ "1437475470": 0,
+ "1437475471": 0,
+ "1437475472": 0,
+ "1437475473": 0,
+ "1437475474": 0,
+ "1437475475": 0,
+ "1437475476": 0,
+ "1437475477": 0,
+ "1437475478": 0,
+ "1437475479": 0,
+ "1437475480": 0,
+ "1437475481": 0,
+ "1437475482": 0,
+ "1437475483": 0,
+ "1437475484": 0,
+ "1437475485": 0,
+ "1437475486": 0,
+ "1437475487": 0,
+ "1437475488": 0,
+ "1437475489": 0,
+ "1437475490": 0,
+ "1437475491": 37,
+ "1437475492": 37,
+ "1437475493": 42,
+ "1437475494": 42,
+ "1437475495": 46,
+ "1437475496": 53,
+ "1437475497": 53,
+ "1437475498": 68,
+ "1437475499": 94,
+ "1437475500": 79,
+ "1437475501": 84,
+ "1437475502": 105,
+ "1437475503": 122,
+ "1437475504": 129,
+ "1437475505": 129,
+ "1437475506": 122,
+ "1437475507": 138,
+ "1437475508": 140,
+ "1437475510": 125,
+ "1437475511": 148,
+ "1437475512": 168,
+ "1437475513": 145,
+ "1437475514": 150,
+ "1437475515": 157,
+ "1437475516": 141,
+ "1437475517": 167,
+ "1437475518": 148,
+ "1437475519": 149,
+ "1437475520": 152,
+ "1437475521": 153,
+ "1437475522": 143,
+ "1437475523": 157,
+ "1437475524": 158,
+ "1437475525": 154,
+ "1437475526": 154,
+ "1437475527": 154,
+ "1437475528": 154,
+ "1437475529": 143,
+ "1437475530": 142,
+ "1437475531": 165,
+ "1437475532": 154,
+ "1437475533": 159,
+ "1437475534": 176,
+ "1437475535": 180,
+ "1437475536": 146,
+ "1437475537": 143,
+ "1437475538": 151,
+ "1437475539": 151,
+ "1437475540": 148,
+ "1437475541": 142,
+ "1437475542": 150,
+ "1437475543": 149,
+ "1437475544": 149,
+ "1437475545": 139,
+ "1437475546": 135,
+ "1437475547": 132,
+ "1437475548": 134,
+ "1437475549": 132,
+ "1437475551": 134,
+ "1437475552": 144,
+ "1437475553": 152,
+ "1437475554": 149,
+ "1437475555": 142,
+ "1437475556": 142,
+ "1437475557": 145,
+ "1437475558": 162,
+ "1437475559": 172,
+ "1437475560": 157,
+ "1437475561": 142,
+ "1437475562": 124,
+ "1437475563": 123,
+ "1437475564": 120,
+ "1437475565": 125,
+ "1437475566": 131,
+ "1437475567": 129,
+ "1437475568": 120,
+ "1437475569": 133,
+ "1437475570": 132,
+ "1437475571": 139,
+ "1437475572": 137,
+ "1437475573": 132,
+ "1437475574": 128,
+ "1437475575": 121,
+ "1437475576": 130,
+ "1437475577": 153,
+ "1437475578": 135,
+ "1437475580": 141,
+ "1437475581": 141,
+ "1437475582": 140,
+ "1437475583": 129,
+ "1437475584": 129,
+ "1437475585": 131,
+ "1437475586": 126,
+ "1437475587": 117,
+ "1437475588": 117,
+ "1437475589": 128,
+ "1437475590": 117,
+ "1437475591": 69,
+ "1437475592": 69,
+ "1437475593": 69,
+ "1437475594": 0,
+ "1437475595": 0,
+ "1437475596": 0,
+ "1437475597": 0,
+ "1437475598": 0,
+ "1437475599": 0,
+ "1437475600": 0,
+ "1437475601": 0,
+ "1437475602": 0,
+ "1437475603": 0,
+ "1437475604": 0,
+ "1437475605": 84,
+ "1437475606": 90,
+ "1437475607": 90,
+ "1437475608": 90,
+ "1437475610": 100,
+ "1437475611": 105,
+ "1437475612": 104,
+ "1437475613": 96,
+ "1437475614": 99,
+ "1437475615": 100,
+ "1437475616": 105,
+ "1437475617": 105,
+ "1437475618": 92,
+ "1437475619": 85,
+ "1437475620": 85,
+ "1437475621": 97,
+ "1437475622": 103,
+ "1437475623": 103,
+ "1437475624": 118,
+ "1437475625": 116,
+ "1437475626": 118,
+ "1437475627": 117,
+ "1437475628": 117,
+ "1437475629": 127,
+ "1437475630": 118,
+ "1437475631": 120,
+ "1437475632": 129,
+ "1437475633": 136,
+ "1437475634": 130,
+ "1437475636": 122,
+ "1437475637": 125,
+ "1437475638": 129,
+ "1437475639": 127,
+ "1437475640": 154,
+ "1437475641": 153,
+ "1437475642": 128,
+ "1437475643": 131,
+ "1437475644": 131,
+ "1437475645": 135,
+ "1437475646": 121,
+ "1437475647": 97,
+ "1437475648": 135,
+ "1437475649": 127,
+ "1437475650": 128,
+ "1437475651": 127,
+ "1437475652": 131,
+ "1437475653": 127,
+ "1437475654": 134,
+ "1437475655": 127,
+ "1437475656": 128,
+ "1437475657": 133,
+ "1437475658": 133,
+ "1437475659": 134,
+ "1437475660": 139,
+ "1437475662": 139,
+ "1437475663": 128,
+ "1437475664": 138,
+ "1437475665": 132,
+ "1437475666": 127,
+ "1437475667": 130,
+ "1437475668": 127,
+ "1437475669": 134,
+ "1437475670": 136,
+ "1437475671": 133,
+ "1437475672": 122,
+ "1437475673": 122,
+ "1437475674": 131,
+ "1437475675": 136,
+ "1437475676": 125,
+ "1437475677": 132,
+ "1437475678": 128,
+ "1437475679": 129,
+ "1437475680": 125,
+ "1437475681": 145,
+ "1437475682": 150,
+ "1437475683": 159,
+ "1437475684": 166,
+ "1437475685": 144,
+ "1437475686": 144,
+ "1437475687": 159,
+ "1437475688": 158,
+ "1437475689": 145,
+ "1437475690": 157,
+ "1437475691": 164,
+ "1437475693": 145,
+ "1437475694": 158,
+ "1437475695": 133,
+ "1437475696": 141,
+ "1437475697": 152,
+ "1437475698": 140,
+ "1437475699": 142,
+ "1437475700": 147,
+ "1437475701": 148,
+ "1437475702": 143,
+ "1437475703": 140,
+ "1437475704": 155,
+ "1437475705": 158,
+ "1437475706": 148,
+ "1437475707": 143,
+ "1437475708": 146,
+ "1437475709": 158,
+ "1437475710": 137,
+ "1437475711": 149,
+ "1437475712": 153,
+ "1437475713": 154,
+ "1437475714": 163,
+ "1437475715": 176,
+ "1437475716": 182,
+ "1437475717": 170,
+ "1437475718": 184,
+ "1437475719": 158,
+ "1437475720": 178,
+ "1437475721": 187,
+ "1437475722": 184,
+ "1437475724": 172,
+ "1437475725": 163,
+ "1437475726": 167,
+ "1437475727": 187,
+ "1437475728": 192,
+ "1437475729": 193,
+ "1437475730": 190,
+ "1437475731": 182,
+ "1437475732": 195,
+ "1437475733": 191,
+ "1437475734": 191,
+ "1437475735": 187,
+ "1437475736": 178,
+ "1437475737": 193,
+ "1437475738": 193,
+ "1437475739": 170,
+ "1437475740": 184,
+ "1437475741": 179,
+ "1437475742": 172,
+ "1437475743": 179,
+ "1437475744": 174,
+ "1437475745": 188,
+ "1437475746": 181,
+ "1437475747": 176,
+ "1437475748": 176,
+ "1437475749": 179,
+ "1437475750": 165,
+ "1437475751": 172,
+ "1437475752": 175,
+ "1437475753": 176,
+ "1437475754": 170,
+ "1437475755": 179,
+ "1437475756": 186,
+ "1437475758": 186,
+ "1437475759": 180,
+ "1437475760": 178,
+ "1437475761": 183,
+ "1437475762": 170,
+ "1437475763": 179,
+ "1437475764": 188,
+ "1437475765": 183,
+ "1437475766": 179,
+ "1437475767": 171,
+ "1437475768": 181,
+ "1437475769": 180,
+ "1437475770": 180,
+ "1437475771": 184,
+ "1437475772": 192,
+ "1437475773": 182,
+ "1437475774": 168,
+ "1437475775": 176,
+ "1437475776": 176,
+ "1437475777": 190,
+ "1437475778": 189,
+ "1437475779": 180,
+ "1437475780": 178,
+ "1437475781": 177,
+ "1437475782": 169,
+ "1437475783": 177,
+ "1437475784": 180,
+ "1437475785": 167,
+ "1437475786": 159,
+ "1437475787": 183,
+ "1437475788": 183,
+ "1437475789": 176,
+ "1437475791": 167,
+ "1437475792": 167,
+ "1437475793": 168,
+ "1437475794": 174,
+ "1437475795": 187,
+ "1437475796": 178,
+ "1437475797": 170,
+ "1437475798": 172,
+ "1437475799": 175,
+ "1437475800": 173,
+ "1437475801": 169,
+ "1437475802": 164,
+ "1437475803": 177,
+ "1437475804": 199,
+ "1437475805": 172,
+ "1437475806": 172,
+ "1437475807": 192,
+ "1437475808": 184,
+ "1437475809": 172,
+ "1437475810": 179,
+ "1437475811": 175,
+ "1437475812": 175,
+ "1437475813": 174,
+ "1437475814": 162,
+ "1437475815": 160,
+ "1437475816": 159,
+ "1437475817": 169,
+ "1437475818": 159,
+ "1437475819": 155,
+ "1437475821": 160,
+ "1437475822": 153,
+ "1437475823": 163,
+ "1437475824": 165,
+ "1437475825": 165,
+ "1437475826": 151,
+ "1437475827": 152,
+ "1437475828": 151,
+ "1437475829": 149,
+ "1437475830": 145,
+ "1437475831": 150,
+ "1437475832": 157,
+ "1437475833": 155,
+ "1437475834": 155,
+ "1437475835": 155,
+ "1437475836": 157,
+ "1437475837": 163,
+ "1437475838": 151,
+ "1437475839": 146,
+ "1437475840": 163,
+ "1437475841": 157,
+ "1437475842": 158,
+ "1437475843": 164,
+ "1437475844": 149,
+ "1437475845": 147,
+ "1437475846": 159,
+ "1437475847": 170,
+ "1437475848": 149,
+ "1437475849": 155,
+ "1437475850": 159,
+ "1437475852": 151,
+ "1437475853": 157,
+ "1437475854": 158,
+ "1437475855": 159,
+ "1437475856": 157,
+ "1437475857": 163,
+ "1437475858": 163,
+ "1437475859": 154,
+ "1437475860": 152,
+ "1437475861": 152,
+ "1437475862": 154,
+ "1437475863": 155,
+ "1437475864": 160,
+ "1437475865": 158,
+ "1437475866": 148,
+ "1437475867": 150,
+ "1437475868": 154,
+ "1437475869": 152,
+ "1437475870": 150,
+ "1437475871": 150,
+ "1437475872": 159,
+ "1437475873": 147,
+ "1437475874": 151,
+ "1437475875": 166,
+ "1437475876": 164,
+ "1437475878": 163,
+ "1437475879": 160,
+ "1437475880": 147,
+ "1437475881": 149,
+ "1437475882": 155,
+ "1437475883": 160,
+ "1437475884": 132,
+ "1437475885": 155,
+ "1437475886": 187,
+ "1437475887": 157,
+ "1437475888": 169,
+ "1437475889": 163,
+ "1437475890": 176,
+ "1437475891": 176,
+ "1437475892": 173,
+ "1437475893": 173,
+ "1437475894": 184,
+ "1437475895": 184,
+ "1437475896": 177,
+ "1437475897": 171,
+ "1437475898": 181,
+ "1437475899": 176,
+ "1437475900": 174,
+ "1437475901": 192,
+ "1437475902": 177,
+ "1437475903": 184,
+ "1437475905": 180,
+ "1437475906": 181,
+ "1437475907": 174,
+ "1437475908": 168,
+ "1437475909": 182,
+ "1437475910": 178,
+ "1437475911": 176,
+ "1437475912": 184,
+ "1437475913": 175,
+ "1437475914": 178,
+ "1437475915": 188,
+ "1437475916": 185,
+ "1437475917": 190,
+ "1437475918": 191,
+ "1437475919": 170,
+ "1437475920": 148,
+ "1437475921": 90,
+ "1437475922": 157,
+ "1437475923": 212,
+ "1437475924": 189,
+ "1437475925": 197,
+ "1437475926": 111,
+ "1437475927": 196,
+ "1437475928": 178,
+ "1437475929": 198,
+ "1437475930": 170,
+ "1437475931": 170,
+ "1437475932": 183,
+ "1437475933": 180,
+ "1437475934": 173,
+ "1437475935": 175,
+ "1437475936": 175,
+ "1437475938": 179,
+ "1437475939": 180,
+ "1437475940": 169,
+ "1437475941": 195,
+ "1437475942": 184,
+ "1437475943": 184,
+ "1437475944": 164,
+ "1437475945": 166,
+ "1437475946": 181,
+ "1437475947": 167,
+ "1437475948": 167,
+ "1437475949": 164,
+ "1437475950": 150,
+ "1437475951": 151,
+ "1437475952": 154,
+ "1437475953": 157,
+ "1437475954": 150,
+ "1437475955": 150,
+ "1437475956": 149,
+ "1437475957": 171,
+ "1437475958": 156,
+ "1437475959": 130,
+ "1437475960": 122,
+ "1437475961": 128,
+ "1437475962": 133,
+ "1437475963": 140,
+ "1437475964": 136,
+ "1437475965": 136,
+ "1437475967": 136,
+ "1437475968": 136,
+ "1437475969": 0,
+ "1437475970": 235,
+ "1437475971": 155,
+ "1437475972": 155,
+ "1437475973": 154,
+ "1437475974": 143,
+ "1437475975": 145,
+ "1437475976": 152,
+ "1437475977": 150,
+ "1437475978": 149,
+ "1437475979": 147,
+ "1437475980": 147,
+ "1437475981": 145,
+ "1437475982": 164,
+ "1437475983": 163,
+ "1437475984": 133,
+ "1437475985": 144,
+ "1437475986": 144,
+ "1437475987": 167,
+ "1437475988": 165,
+ "1437475989": 156,
+ "1437475990": 156,
+ "1437475991": 157,
+ "1437475992": 159,
+ "1437475993": 164,
+ "1437475994": 158,
+ "1437475995": 158,
+ "1437475997": 154,
+ "1437475998": 153,
+ "1437475999": 164,
+ "1437476000": 171,
+ "1437476001": 165,
+ "1437476002": 157,
+ "1437476003": 160,
+ "1437476004": 160,
+ "1437476005": 152,
+ "1437476006": 162,
+ "1437476007": 161,
+ "1437476008": 152,
+ "1437476009": 147,
+ "1437476010": 158,
+ "1437476011": 154,
+ "1437476012": 149,
+ "1437476013": 148,
+ "1437476014": 143,
+ "1437476015": 143,
+ "1437476016": 147,
+ "1437476017": 147,
+ "1437476019": 145,
+ "1437476020": 145,
+ "1437476021": 138,
+ "1437476022": 146,
+ "1437476023": 155,
+ "1437476024": 135,
+ "1437476025": 131,
+ "1437476026": 133,
+ "1437476027": 140,
+ "1437476028": 140,
+ "1437476029": 146,
+ "1437476030": 149,
+ "1437476031": 139,
+ "1437476032": 141,
+ "1437476033": 145,
+ "1437476034": 140,
+ "1437476035": 140,
+ "1437476036": 152,
+ "1437476037": 152,
+ "1437476038": 146,
+ "1437476039": 146,
+ "1437476040": 139,
+ "1437476041": 147,
+ "1437476042": 154,
+ "1437476043": 157,
+ "1437476044": 152,
+ "1437476045": 154,
+ "1437476047": 156,
+ "1437476048": 140,
+ "1437476049": 138,
+ "1437476050": 135,
+ "1437476051": 143,
+ "1437476052": 139,
+ "1437476053": 144,
+ "1437476054": 135,
+ "1437476055": 143,
+ "1437476056": 146,
+ "1437476057": 146,
+ "1437476058": 146,
+ "1437476059": 145,
+ "1437476060": 148,
+ "1437476061": 141,
+ "1437476062": 135,
+ "1437476063": 140,
+ "1437476064": 136,
+ "1437476065": 134,
+ "1437476066": 134,
+ "1437476067": 135,
+ "1437476068": 136,
+ "1437476069": 136,
+ "1437476070": 140,
+ "1437476071": 137,
+ "1437476072": 135,
+ "1437476073": 135,
+ "1437476074": 135,
+ "1437476075": 135,
+ "1437476076": 122,
+ "1437476077": 125,
+ "1437476079": 126,
+ "1437476080": 143,
+ "1437476081": 154,
+ "1437476082": 139,
+ "1437476083": 157,
+ "1437476084": 157,
+ "1437476085": 142,
+ "1437476086": 143,
+ "1437476087": 140,
+ "1437476088": 132,
+ "1437476089": 132,
+ "1437476090": 143,
+ "1437476091": 135,
+ "1437476092": 99,
+ "1437476093": 133,
+ "1437476094": 152,
+ "1437476095": 152,
+ "1437476096": 153,
+ "1437476097": 150,
+ "1437476098": 144,
+ "1437476099": 172,
+ "1437476100": 170,
+ "1437476101": 144,
+ "1437476102": 142,
+ "1437476103": 157,
+ "1437476104": 170,
+ "1437476105": 151,
+ "1437476106": 143,
+ "1437476107": 141,
+ "1437476108": 145,
+ "1437476109": 152,
+ "1437476110": 164,
+ "1437476112": 145,
+ "1437476113": 148,
+ "1437476114": 158,
+ "1437476115": 159,
+ "1437476116": 167,
+ "1437476117": 128,
+ "1437476118": 129,
+ "1437476119": 139,
+ "1437476120": 139,
+ "1437476121": 143,
+ "1437476122": 119,
+ "1437476123": 134,
+ "1437476124": 126,
+ "1437476125": 126,
+ "1437476126": 122,
+ "1437476127": 129,
+ "1437476128": 123,
+ "1437476129": 133,
+ "1437476130": 138,
+ "1437476131": 129,
+ "1437476132": 121,
+ "1437476133": 138,
+ "1437476134": 134,
+ "1437476135": 134,
+ "1437476136": 143,
+ "1437476137": 146,
+ "1437476138": 121,
+ "1437476139": 127,
+ "1437476140": 133,
+ "1437476141": 133,
+ "1437476142": 139,
+ "1437476143": 148,
+ "1437476144": 142,
+ "1437476146": 130,
+ "1437476147": 130,
+ "1437476148": 135,
+ "1437476149": 123,
+ "1437476150": 122,
+ "1437476151": 128,
+ "1437476152": 123,
+ "1437476153": 123,
+ "1437476154": 126,
+ "1437476155": 146,
+ "1437476156": 149,
+ "1437476157": 167,
+ "1437476158": 152,
+ "1437476159": 158,
+ "1437476160": 172,
+ "1437476161": 163,
+ "1437476162": 151,
+ "1437476163": 156,
+ "1437476164": 154,
+ "1437476165": 154,
+ "1437476166": 142,
+ "1437476167": 148,
+ "1437476168": 151,
+ "1437476169": 153,
+ "1437476170": 149,
+ "1437476171": 137,
+ "1437476172": 153,
+ "1437476173": 153,
+ "1437476174": 115,
+ "1437476175": 118,
+ "1437476176": 124,
+ "1437476177": 118,
+ "1437476179": 127,
+ "1437476180": 119,
+ "1437476181": 122,
+ "1437476182": 126,
+ "1437476183": 123,
+ "1437476184": 123,
+ "1437476185": 135,
+ "1437476186": 138,
+ "1437476187": 128,
+ "1437476188": 128,
+ "1437476189": 141,
+ "1437476190": 172,
+ "1437476191": 172,
+ "1437476192": 142,
+ "1437476193": 176,
+ "1437476194": 167,
+ "1437476195": 168,
+ "1437476196": 170,
+ "1437476197": 160,
+ "1437476198": 147,
+ "1437476199": 143,
+ "1437476200": 145,
+ "1437476201": 140,
+ "1437476202": 140,
+ "1437476203": 144,
+ "1437476204": 153,
+ "1437476205": 157,
+ "1437476206": 142,
+ "1437476207": 143,
+ "1437476208": 146,
+ "1437476209": 138,
+ "1437476211": 153,
+ "1437476212": 148,
+ "1437476213": 146,
+ "1437476214": 147,
+ "1437476215": 141,
+ "1437476216": 146,
+ "1437476217": 140,
+ "1437476218": 147,
+ "1437476219": 140,
+ "1437476220": 153,
+ "1437476221": 156,
+ "1437476222": 146,
+ "1437476223": 148,
+ "1437476224": 147,
+ "1437476225": 146,
+ "1437476226": 142,
+ "1437476227": 154,
+ "1437476228": 141,
+ "1437476229": 141,
+ "1437476230": 138,
+ "1437476231": 137,
+ "1437476232": 135,
+ "1437476233": 135,
+ "1437476234": 134,
+ "1437476235": 146,
+ "1437476236": 145,
+ "1437476237": 146,
+ "1437476238": 140,
+ "1437476239": 134,
+ "1437476240": 134,
+ "1437476241": 122,
+ "1437476242": 107,
+ "1437476243": 116,
+ "1437476244": 115,
+ "1437476245": 99,
+ "1437476246": 95,
+ "1437476248": 99,
+ "1437476249": 93,
+ "1437476250": 97,
+ "1437476251": 94,
+ "1437476252": 94,
+ "1437476253": 99,
+ "1437476254": 94,
+ "1437476255": 94,
+ "1437476256": 111,
+ "1437476257": 111,
+ "1437476258": 111,
+ "1437476259": 110,
+ "1437476260": 110,
+ "1437476261": 110,
+ "1437476262": 110,
+ "1437476263": 110,
+ "1437476264": 109,
+ "1437476265": 107,
+ "1437476266": 110,
+ "1437476267": 101,
+ "1437476268": 90,
+ "1437476269": 104,
+ "1437476270": 102,
+ "1437476271": 93,
+ "1437476272": 98,
+ "1437476274": 113,
+ "1437476275": 107,
+ "1437476276": 79,
+ "1437476277": 57,
+ "1437476278": 43,
+ "1437476279": 43,
+ "1437476280": 43,
+ "1437476281": 47,
+ "1437476282": 47,
+ "1437476283": 48,
+ "1437476284": 51,
+ "1437476285": 51,
+ "1437476286": 49,
+ "1437476287": 49,
+ "1437476288": 49,
+ "1437476289": 48,
+ "1437476290": 49,
+ "1437476291": 50,
+ "1437476292": 50,
+ "1437476293": 51,
+ "1437476295": 47,
+ "1437476296": 47,
+ "1437476297": 48,
+ "1437476298": 49,
+ "1437476299": 49,
+ "1437476300": 46,
+ "1437476301": 46,
+ "1437476302": 46,
+ "1437476303": 44,
+ "1437476304": 67,
+ "1437476305": 67,
+ "1437476306": 67,
+ "1437476307": 67,
+ "1437476308": 0,
+ "1437476309": 0,
+ "1437476310": 0,
+ "1437476311": 0,
+ "1437476312": 0,
+ "1437476313": 0,
+ "1437476314": 0,
+ "1437476315": 0,
+ "1437476316": 0,
+ "1437476317": 0,
+ "1437476318": 0,
+ "1437476319": 0,
+ "1437476320": 0,
+ "1437476321": 0,
+ "1437476323": 0,
+ "1437476324": 0,
+ "1437476325": 0,
+ "1437476326": 0,
+ "1437476327": 0,
+ "1437476328": 0,
+ "1437476329": 0,
+ "1437476330": 0,
+ "1437476331": 0,
+ "1437476332": 0,
+ "1437476333": 0,
+ "1437476334": 0,
+ "1437476335": 0,
+ "1437476338": 26,
+ "1437476339": 26,
+ "1437476340": 26,
+ "1437476341": 35,
+ "1437476342": 40,
+ "1437476343": 40,
+ "1437476344": 54,
+ "1437476345": 53,
+ "1437476346": 53,
+ "1437476347": 38,
+ "1437476348": 32,
+ "1437476349": 32,
+ "1437476350": 38,
+ "1437476351": 38,
+ "1437476352": 50,
+ "1437476353": 40,
+ "1437476354": 40,
+ "1437476355": 42,
+ "1437476356": 52,
+ "1437476357": 51,
+ "1437476358": 51,
+ "1437476360": 38,
+ "1437476361": 38,
+ "1437476362": 32,
+ "1437476363": 41,
+ "1437476364": 41,
+ "1437476365": 42,
+ "1437476366": 42,
+ "1437476367": 38,
+ "1437476368": 38,
+ "1437476369": 38,
+ "1437476370": 43,
+ "1437476371": 43,
+ "1437476372": 33,
+ "1437476373": 33,
+ "1437476374": 42,
+ "1437476375": 58,
+ "1437476376": 40,
+ "1437476377": 40,
+ "1437476378": 34,
+ "1437476379": 40,
+ "1437476380": 40,
+ "1437476381": 37,
+ "1437476382": 37,
+ "1437476383": 38,
+ "1437476384": 54,
+ "1437476385": 54,
+ "1437476386": 60,
+ "1437476387": 57,
+ "1437476389": 65,
+ "1437476390": 65,
+ "1437476391": 71,
+ "1437476392": 82,
+ "1437476393": 104,
+ "1437476394": 94,
+ "1437476395": 94,
+ "1437476396": 85,
+ "1437476397": 88,
+ "1437476398": 102,
+ "1437476399": 104,
+ "1437476400": 98,
+ "1437476401": 85,
+ "1437476402": 90,
+ "1437476403": 90,
+ "1437476404": 94,
+ "1437476405": 102,
+ "1437476406": 103,
+ "1437476407": 99,
+ "1437476408": 102,
+ "1437476410": 97,
+ "1437476411": 109,
+ "1437476412": 70,
+ "1437476413": 90,
+ "1437476414": 90,
+ "1437476415": 128,
+ "1437476416": 104,
+ "1437476417": 104,
+ "1437476418": 103,
+ "1437476419": 98,
+ "1437476420": 95,
+ "1437476421": 96,
+ "1437476422": 92,
+ "1437476423": 94,
+ "1437476424": 97,
+ "1437476425": 97,
+ "1437476426": 91,
+ "1437476427": 102,
+ "1437476428": 99,
+ "1437476429": 99,
+ "1437476430": 93,
+ "1437476431": 93,
+ "1437476432": 85,
+ "1437476433": 89,
+ "1437476434": 96,
+ "1437476435": 89,
+ "1437476436": 89,
+ "1437476437": 89,
+ "1437476438": 94,
+ "1437476439": 104,
+ "1437476441": 116,
+ "1437476442": 111,
+ "1437476443": 122,
+ "1437476444": 115,
+ "1437476445": 222,
+ "1437476446": 287,
+ "1437476447": 209,
+ "1437476448": 300,
+ "1437476449": 289,
+ "1437476450": 264,
+ "1437476451": 254,
+ "1437476452": 298,
+ "1437476453": 275,
+ "1437476454": 261,
+ "1437476455": 255,
+ "1437476456": 257,
+ "1437476457": 268,
+ "1437476458": 257,
+ "1437476459": 255,
+ "1437476460": 262,
+ "1437476461": 262,
+ "1437476462": 294,
+ "1437476463": 274,
+ "1437476464": 329,
+ "1437476465": 309,
+ "1437476467": 468,
+ "1437476468": 416,
+ "1437476469": 452,
+ "1437476470": 424,
+ "1437476471": 442,
+ "1437476472": 442,
+ "1437476473": 470,
+ "1437476474": 439,
+ "1437476475": 441,
+ "1437476476": 444,
+ "1437476477": 446,
+ "1437476478": 371,
+ "1437476479": 407,
+ "1437476480": 366,
+ "1437476481": 397,
+ "1437476482": 450,
+ "1437476483": 402,
+ "1437476484": 410,
+ "1437476485": 423,
+ "1437476486": 483,
+ "1437476487": 403,
+ "1437476488": 353,
+ "1437476490": 437,
+ "1437476491": 430,
+ "1437476492": 405,
+ "1437476493": 419,
+ "1437476494": 411,
+ "1437476495": 420,
+ "1437476496": 446,
+ "1437476497": 444,
+ "1437476498": 422,
+ "1437476499": 422,
+ "1437476500": 483,
+ "1437476501": 391,
+ "1437476502": 396,
+ "1437476503": 402,
+ "1437476504": 443,
+ "1437476505": 419,
+ "1437476506": 395,
+ "1437476507": 408,
+ "1437476508": 429,
+ "1437476509": 407,
+ "1437476510": 388,
+ "1437476511": 413,
+ "1437476512": 397,
+ "1437476513": 395,
+ "1437476514": 393,
+ "1437476515": 366,
+ "1437476516": 433,
+ "1437476517": 446,
+ "1437476518": 415,
+ "1437476519": 430,
+ "1437476521": 418,
+ "1437476522": 440,
+ "1437476523": 459,
+ "1437476524": 533,
+ "1437476525": 564,
+ "1437476526": 527,
+ "1437476527": 535,
+ "1437476528": 537,
+ "1437476529": 548,
+ "1437476530": 506,
+ "1437476531": 485,
+ "1437476532": 521,
+ "1437476533": 508,
+ "1437476534": 546,
+ "1437476535": 498,
+ "1437476536": 530,
+ "1437476537": 556,
+ "1437476538": 547,
+ "1437476539": 510,
+ "1437476540": 518,
+ "1437476541": 523,
+ "1437476542": 467,
+ "1437476543": 467,
+ "1437476544": 354,
+ "1437476545": 358,
+ "1437476547": 360,
+ "1437476548": 356,
+ "1437476549": 370,
+ "1437476550": 359,
+ "1437476551": 359,
+ "1437476552": 361,
+ "1437476553": 361,
+ "1437476554": 361,
+ "1437476555": 367,
+ "1437476556": 352,
+ "1437476557": 331,
+ "1437476558": 311,
+ "1437476559": 327,
+ "1437476560": 314,
+ "1437476561": 308,
+ "1437476562": 308,
+ "1437476563": 314,
+ "1437476564": 308,
+ "1437476565": 309,
+ "1437476566": 304,
+ "1437476567": 298,
+ "1437476568": 301,
+ "1437476569": 304,
+ "1437476570": 304,
+ "1437476571": 289,
+ "1437476572": 273,
+ "1437476573": 272,
+ "1437476574": 272,
+ "1437476576": 274,
+ "1437476577": 260,
+ "1437476578": 237,
+ "1437476579": 234,
+ "1437476580": 194,
+ "1437476581": 176,
+ "1437476582": 181,
+ "1437476583": 155,
+ "1437476584": 149,
+ "1437476585": 135,
+ "1437476586": 128,
+ "1437476587": 100,
+ "1437476588": 97,
+ "1437476589": 111,
+ "1437476590": 111,
+ "1437476591": 129,
+ "1437476592": 163,
+ "1437476593": 165,
+ "1437476594": 165,
+ "1437476595": 161,
+ "1437476596": 172,
+ "1437476597": 163,
+ "1437476598": 171,
+ "1437476599": 184,
+ "1437476601": 171,
+ "1437476602": 173,
+ "1437476603": 181,
+ "1437476604": 185,
+ "1437476605": 185,
+ "1437476606": 263,
+ "1437476607": 314,
+ "1437476608": 303,
+ "1437476609": 360,
+ "1437476610": 290,
+ "1437476611": 303,
+ "1437476612": 318,
+ "1437476613": 285,
+ "1437476614": 308,
+ "1437476615": 306,
+ "1437476616": 309,
+ "1437476617": 296,
+ "1437476618": 309,
+ "1437476619": 321,
+ "1437476620": 309,
+ "1437476621": 307,
+ "1437476622": 311,
+ "1437476623": 308,
+ "1437476624": 315,
+ "1437476625": 319,
+ "1437476627": 329,
+ "1437476628": 304,
+ "1437476629": 327,
+ "1437476630": 343,
+ "1437476631": 345,
+ "1437476632": 334,
+ "1437476633": 323,
+ "1437476634": 318,
+ "1437476635": 316,
+ "1437476636": 329,
+ "1437476637": 349,
+ "1437476638": 329,
+ "1437476639": 391,
+ "1437476640": 570,
+ "1437476641": 456,
+ "1437476642": 480,
+ "1437476643": 466,
+ "1437476644": 471,
+ "1437476645": 482,
+ "1437476646": 451,
+ "1437476647": 478,
+ "1437476648": 473,
+ "1437476649": 467,
+ "1437476650": 447,
+ "1437476651": 416,
+ "1437476652": 436,
+ "1437476653": 476,
+ "1437476654": 505,
+ "1437476655": 504,
+ "1437476656": 493,
+ "1437476658": 492,
+ "1437476659": 500,
+ "1437476660": 507,
+ "1437476661": 490,
+ "1437476662": 487,
+ "1437476663": 472,
+ "1437476664": 485,
+ "1437476665": 462,
+ "1437476666": 481,
+ "1437476667": 474,
+ "1437476668": 469,
+ "1437476669": 466,
+ "1437476670": 497,
+ "1437476671": 489,
+ "1437476672": 455,
+ "1437476673": 485,
+ "1437476674": 444,
+ "1437476675": 455,
+ "1437476676": 430,
+ "1437476677": 446,
+ "1437476678": 448,
+ "1437476679": 442,
+ "1437476680": 463,
+ "1437476681": 447,
+ "1437476682": 465,
+ "1437476683": 441,
+ "1437476684": 424,
+ "1437476685": 405,
+ "1437476686": 429,
+ "1437476687": 466,
+ "1437476688": 440,
+ "1437476689": 390,
+ "1437476690": 389,
+ "1437476691": 389,
+ "1437476692": 386,
+ "1437476694": 398,
+ "1437476695": 378,
+ "1437476696": 389,
+ "1437476697": 367,
+ "1437476698": 372,
+ "1437476699": 354,
+ "1437476700": 352,
+ "1437476701": 356,
+ "1437476702": 348,
+ "1437476703": 365,
+ "1437476704": 356,
+ "1437476705": 360,
+ "1437476706": 343,
+ "1437476707": 304,
+ "1437476708": 314,
+ "1437476709": 310,
+ "1437476710": 337,
+ "1437476711": 312,
+ "1437476712": 308,
+ "1437476713": 347,
+ "1437476714": 331,
+ "1437476715": 333,
+ "1437476716": 323,
+ "1437476717": 311,
+ "1437476718": 339,
+ "1437476719": 344,
+ "1437476720": 371,
+ "1437476721": 369,
+ "1437476723": 337,
+ "1437476724": 352,
+ "1437476725": 369,
+ "1437476726": 364,
+ "1437476727": 369,
+ "1437476728": 358,
+ "1437476729": 356,
+ "1437476730": 353,
+ "1437476731": 289,
+ "1437476732": 335,
+ "1437476733": 335,
+ "1437476734": 317,
+ "1437476735": 350,
+ "1437476736": 331,
+ "1437476737": 335,
+ "1437476738": 317,
+ "1437476739": 320,
+ "1437476740": 331,
+ "1437476741": 331,
+ "1437476742": 325,
+ "1437476743": 345,
+ "1437476744": 312,
+ "1437476745": 316,
+ "1437476746": 299,
+ "1437476747": 302,
+ "1437476748": 298,
+ "1437476749": 311,
+ "1437476750": 333,
+ "1437476751": 299,
+ "1437476752": 271,
+ "1437476753": 248,
+ "1437476755": 267,
+ "1437476756": 264,
+ "1437476757": 274,
+ "1437476758": 280,
+ "1437476759": 283,
+ "1437476760": 265,
+ "1437476761": 263,
+ "1437476762": 276,
+ "1437476763": 280,
+ "1437476764": 267,
+ "1437476765": 261,
+ "1437476766": 265,
+ "1437476767": 281,
+ "1437476768": 273,
+ "1437476769": 260,
+ "1437476770": 249,
+ "1437476771": 262,
+ "1437476772": 277,
+ "1437476773": 271,
+ "1437476774": 277,
+ "1437476775": 258,
+ "1437476776": 264,
+ "1437476777": 264,
+ "1437476778": 272,
+ "1437476779": 274,
+ "1437476780": 279,
+ "1437476781": 287,
+ "1437476782": 226,
+ "1437476783": 262,
+ "1437476784": 356,
+ "1437476785": 317,
+ "1437476786": 257,
+ "1437476787": 343,
+ "1437476788": 479,
+ "1437476789": 501,
+ "1437476791": 553,
+ "1437476792": 344,
+ "1437476793": 261,
+ "1437476794": 268,
+ "1437476795": 307,
+ "1437476796": 294,
+ "1437476797": 281,
+ "1437476798": 311,
+ "1437476799": 287,
+ "1437476800": 270,
+ "1437476801": 261,
+ "1437476802": 220,
+ "1437476803": 242,
+ "1437476804": 202,
+ "1437476805": 228,
+ "1437476806": 228,
+ "1437476807": 237,
+ "1437476808": 236,
+ "1437476809": 229,
+ "1437476810": 235,
+ "1437476811": 236,
+ "1437476812": 211,
+ "1437476813": 197,
+ "1437476814": 216,
+ "1437476815": 225,
+ "1437476816": 228,
+ "1437476817": 200,
+ "1437476818": 203,
+ "1437476819": 194,
+ "1437476820": 227,
+ "1437476821": 216,
+ "1437476822": 226,
+ "1437476824": 234,
+ "1437476825": 231,
+ "1437476826": 225,
+ "1437476827": 249,
+ "1437476828": 244,
+ "1437476829": 228,
+ "1437476830": 240,
+ "1437476831": 234,
+ "1437476832": 246,
+ "1437476833": 259,
+ "1437476834": 266,
+ "1437476835": 278,
+ "1437476836": 303,
+ "1437476837": 298,
+ "1437476838": 302,
+ "1437476839": 261,
+ "1437476840": 288,
+ "1437476841": 284,
+ "1437476842": 282,
+ "1437476843": 317,
+ "1437476844": 324,
+ "1437476845": 304,
+ "1437476846": 301,
+ "1437476847": 309,
+ "1437476848": 313,
+ "1437476849": 312,
+ "1437476850": 304,
+ "1437476851": 346,
+ "1437476852": 332,
+ "1437476854": 335,
+ "1437476855": 320,
+ "1437476856": 327,
+ "1437476857": 351,
+ "1437476858": 337,
+ "1437476859": 352,
+ "1437476860": 335,
+ "1437476861": 324,
+ "1437476862": 357,
+ "1437476863": 343,
+ "1437476864": 349,
+ "1437476865": 334,
+ "1437476866": 342,
+ "1437476867": 362,
+ "1437476868": 368,
+ "1437476869": 391,
+ "1437476870": 377,
+ "1437476871": 299,
+ "1437476872": 282,
+ "1437476873": 295,
+ "1437476874": 305,
+ "1437476875": 289,
+ "1437476876": 300,
+ "1437476877": 298,
+ "1437476878": 328,
+ "1437476879": 307,
+ "1437476880": 283,
+ "1437476881": 277,
+ "1437476882": 291,
+ "1437476883": 293,
+ "1437476884": 286,
+ "1437476886": 285,
+ "1437476887": 299,
+ "1437476888": 277,
+ "1437476889": 283,
+ "1437476890": 343,
+ "1437476891": 343,
+ "1437476892": 304,
+ "1437476893": 295,
+ "1437476894": 301,
+ "1437476895": 311,
+ "1437476896": 287,
+ "1437476897": 290,
+ "1437476898": 297,
+ "1437476899": 297,
+ "1437476900": 277,
+ "1437476901": 291,
+ "1437476902": 326,
+ "1437476903": 312,
+ "1437476904": 310,
+ "1437476905": 293,
+ "1437476906": 309,
+ "1437476907": 311,
+ "1437476908": 324,
+ "1437476910": 298,
+ "1437476911": 310,
+ "1437476912": 302,
+ "1437476913": 321,
+ "1437476914": 312,
+ "1437476915": 303,
+ "1437476916": 301,
+ "1437476917": 294,
+ "1437476918": 303,
+ "1437476919": 248,
+ "1437476920": 248,
+ "1437476921": 276,
+ "1437476922": 245,
+ "1437476923": 267,
+ "1437476924": 249,
+ "1437476925": 264,
+ "1437476926": 253,
+ "1437476927": 248,
+ "1437476928": 249,
+ "1437476929": 255,
+ "1437476930": 270,
+ "1437476931": 244,
+ "1437476932": 251,
+ "1437476933": 236,
+ "1437476934": 249,
+ "1437476935": 224,
+ "1437476936": 230,
+ "1437476938": 238,
+ "1437476939": 237,
+ "1437476940": 237,
+ "1437476941": 247,
+ "1437476942": 252,
+ "1437476943": 261,
+ "1437476944": 263,
+ "1437476945": 255,
+ "1437476946": 262,
+ "1437476947": 238,
+ "1437476948": 241,
+ "1437476949": 258,
+ "1437476950": 237,
+ "1437476951": 241,
+ "1437476952": 248,
+ "1437476953": 246,
+ "1437476954": 245,
+ "1437476955": 253,
+ "1437476956": 253,
+ "1437476957": 253,
+ "1437476958": 231,
+ "1437476959": 241,
+ "1437476960": 249,
+ "1437476961": 254,
+ "1437476962": 246,
+ "1437476963": 248,
+ "1437476964": 245,
+ "1437476965": 247,
+ "1437476966": 236,
+ "1437476967": 250,
+ "1437476969": 255,
+ "1437476970": 261,
+ "1437476971": 247,
+ "1437476972": 263,
+ "1437476973": 263,
+ "1437476974": 263,
+ "1437476975": 246,
+ "1437476976": 261,
+ "1437476977": 267,
+ "1437476978": 254,
+ "1437476979": 247,
+ "1437476980": 249,
+ "1437476981": 255,
+ "1437476982": 231,
+ "1437476983": 256,
+ "1437476984": 243,
+ "1437476985": 243,
+ "1437476986": 242,
+ "1437476987": 239,
+ "1437476988": 241,
+ "1437476989": 252,
+ "1437476990": 257,
+ "1437476991": 255,
+ "1437476992": 257,
+ "1437476993": 265,
+ "1437476994": 272,
+ "1437476996": 252,
+ "1437476997": 267,
+ "1437476998": 272,
+ "1437476999": 272,
+ "1437477000": 248,
+ "1437477001": 275,
+ "1437477002": 266,
+ "1437477003": 242,
+ "1437477004": 268,
+ "1437477005": 306,
+ "1437477006": 406,
+ "1437477007": 341,
+ "1437477008": 349,
+ "1437477009": 353,
+ "1437477010": 368,
+ "1437477011": 366,
+ "1437477012": 367,
+ "1437477013": 360,
+ "1437477014": 366,
+ "1437477015": 385,
+ "1437477016": 379,
+ "1437477017": 395,
+ "1437477018": 367,
+ "1437477019": 394,
+ "1437477020": 363,
+ "1437477022": 372,
+ "1437477023": 396,
+ "1437477024": 392,
+ "1437477025": 344,
+ "1437477026": 359,
+ "1437477027": 338,
+ "1437477028": 357,
+ "1437477029": 341,
+ "1437477030": 348,
+ "1437477031": 350,
+ "1437477032": 354,
+ "1437477033": 383,
+ "1437477034": 358,
+ "1437477035": 366,
+ "1437477036": 385,
+ "1437477037": 378,
+ "1437477038": 380,
+ "1437477039": 389,
+ "1437477040": 358,
+ "1437477041": 333,
+ "1437477042": 333,
+ "1437477043": 369,
+ "1437477044": 354,
+ "1437477045": 366,
+ "1437477046": 350,
+ "1437477047": 346,
+ "1437477048": 364,
+ "1437477050": 379,
+ "1437477051": 351,
+ "1437477052": 371,
+ "1437477053": 363,
+ "1437477054": 354,
+ "1437477055": 341,
+ "1437477056": 341,
+ "1437477057": 325,
+ "1437477058": 327,
+ "1437477059": 325,
+ "1437477060": 311,
+ "1437477061": 310,
+ "1437477062": 325,
+ "1437477063": 325,
+ "1437477064": 329,
+ "1437477065": 304,
+ "1437477066": 298,
+ "1437477067": 330,
+ "1437477068": 332,
+ "1437477069": 303,
+ "1437477070": 305,
+ "1437477071": 315,
+ "1437477072": 315,
+ "1437477073": 315,
+ "1437477075": 304,
+ "1437477076": 292,
+ "1437477077": 312,
+ "1437477078": 312,
+ "1437477079": 337,
+ "1437477080": 358,
+ "1437477081": 382,
+ "1437477082": 372,
+ "1437477083": 348,
+ "1437477084": 348,
+ "1437477085": 348,
+ "1437477086": 355,
+ "1437477087": 350,
+ "1437477088": 344,
+ "1437477089": 331,
+ "1437477090": 361,
+ "1437477091": 403,
+ "1437477092": 322,
+ "1437477093": 325,
+ "1437477094": 345,
+ "1437477095": 349,
+ "1437477096": 356,
+ "1437477097": 316,
+ "1437477098": 340,
+ "1437477099": 334,
+ "1437477100": 339,
+ "1437477101": 341,
+ "1437477102": 334,
+ "1437477103": 348,
+ "1437477104": 323,
+ "1437477105": 323,
+ "1437477106": 328,
+ "1437477107": 328,
+ "1437477109": 332,
+ "1437477110": 319,
+ "1437477111": 353,
+ "1437477112": 303,
+ "1437477113": 316,
+ "1437477114": 336,
+ "1437477115": 321,
+ "1437477116": 322,
+ "1437477117": 333,
+ "1437477118": 327,
+ "1437477119": 335,
+ "1437477120": 329,
+ "1437477121": 342,
+ "1437477122": 369,
+ "1437477123": 364,
+ "1437477124": 436,
+ "1437477125": 416,
+ "1437477126": 457,
+ "1437477127": 421,
+ "1437477128": 398,
+ "1437477129": 399,
+ "1437477130": 431,
+ "1437477131": 397,
+ "1437477132": 367,
+ "1437477133": 325,
+ "1437477134": 358,
+ "1437477135": 380,
+ "1437477136": 357,
+ "1437477137": 342,
+ "1437477138": 346,
+ "1437477139": 345,
+ "1437477140": 337,
+ "1437477141": 343,
+ "1437477143": 331,
+ "1437477144": 323,
+ "1437477145": 343,
+ "1437477146": 309,
+ "1437477147": 306,
+ "1437477148": 327,
+ "1437477149": 321,
+ "1437477150": 319,
+ "1437477151": 328,
+ "1437477152": 348,
+ "1437477153": 331,
+ "1437477154": 293,
+ "1437477155": 328,
+ "1437477156": 349,
+ "1437477157": 318,
+ "1437477158": 342,
+ "1437477159": 338,
+ "1437477160": 346,
+ "1437477161": 325,
+ "1437477162": 341,
+ "1437477163": 334,
+ "1437477164": 311,
+ "1437477165": 323,
+ "1437477166": 325,
+ "1437477167": 322,
+ "1437477168": 302,
+ "1437477169": 307,
+ "1437477170": 302,
+ "1437477171": 307,
+ "1437477172": 325,
+ "1437477173": 301,
+ "1437477174": 299,
+ "1437477175": 291,
+ "1437477176": 306,
+ "1437477178": 302,
+ "1437477179": 302,
+ "1437477180": 301,
+ "1437477181": 291,
+ "1437477182": 282,
+ "1437477183": 298,
+ "1437477184": 300,
+ "1437477185": 288,
+ "1437477186": 287,
+ "1437477187": 299,
+ "1437477188": 294,
+ "1437477189": 296,
+ "1437477190": 296,
+ "1437477191": 315,
+ "1437477192": 317,
+ "1437477193": 304,
+ "1437477194": 312,
+ "1437477195": 296,
+ "1437477196": 313,
+ "1437477197": 300,
+ "1437477198": 302,
+ "1437477199": 295,
+ "1437477200": 302,
+ "1437477201": 334,
+ "1437477202": 334,
+ "1437477203": 298,
+ "1437477204": 283,
+ "1437477205": 270,
+ "1437477206": 295,
+ "1437477207": 286,
+ "1437477208": 299,
+ "1437477209": 278,
+ "1437477210": 265,
+ "1437477211": 262,
+ "1437477212": 301,
+ "1437477213": 325,
+ "1437477215": 316,
+ "1437477216": 294,
+ "1437477217": 294,
+ "1437477218": 290,
+ "1437477219": 274,
+ "1437477220": 283,
+ "1437477221": 292,
+ "1437477222": 292,
+ "1437477223": 311,
+ "1437477224": 306,
+ "1437477225": 306,
+ "1437477226": 303,
+ "1437477227": 320,
+ "1437477228": 315,
+ "1437477229": 307,
+ "1437477230": 343,
+ "1437477231": 344,
+ "1437477232": 343,
+ "1437477233": 336,
+ "1437477234": 322,
+ "1437477235": 317,
+ "1437477236": 318,
+ "1437477237": 327,
+ "1437477238": 331,
+ "1437477239": 336,
+ "1437477240": 342,
+ "1437477241": 329,
+ "1437477242": 344,
+ "1437477243": 336,
+ "1437477244": 336,
+ "1437477245": 357,
+ "1437477247": 349,
+ "1437477248": 354,
+ "1437477249": 363,
+ "1437477250": 356,
+ "1437477251": 345,
+ "1437477252": 339,
+ "1437477253": 351,
+ "1437477254": 351,
+ "1437477255": 343,
+ "1437477256": 343,
+ "1437477257": 343,
+ "1437477258": 380,
+ "1437477259": 348,
+ "1437477260": 355,
+ "1437477261": 373,
+ "1437477262": 373,
+ "1437477263": 348,
+ "1437477264": 361,
+ "1437477265": 365,
+ "1437477266": 352,
+ "1437477267": 369,
+ "1437477268": 363,
+ "1437477270": 363,
+ "1437477271": 389,
+ "1437477272": 378,
+ "1437477273": 364,
+ "1437477274": 371,
+ "1437477275": 379,
+ "1437477276": 384,
+ "1437477277": 285,
+ "1437477278": 353,
+ "1437477279": 365,
+ "1437477280": 292,
+ "1437477281": 310,
+ "1437477282": 417,
+ "1437477283": 436,
+ "1437477284": 409,
+ "1437477285": 381,
+ "1437477286": 347,
+ "1437477287": 278,
+ "1437477288": 293,
+ "1437477289": 288,
+ "1437477290": 274,
+ "1437477291": 263,
+ "1437477292": 265,
+ "1437477294": 260,
+ "1437477295": 254,
+ "1437477296": 191,
+ "1437477297": 210,
+ "1437477298": 197,
+ "1437477299": 205,
+ "1437477300": 221,
+ "1437477301": 225,
+ "1437477302": 231,
+ "1437477303": 226,
+ "1437477304": 217,
+ "1437477305": 246,
+ "1437477306": 234,
+ "1437477307": 220,
+ "1437477308": 234,
+ "1437477309": 245,
+ "1437477310": 241,
+ "1437477311": 249,
+ "1437477312": 223,
+ "1437477313": 245,
+ "1437477314": 304,
+ "1437477315": 293,
+ "1437477316": 297,
+ "1437477317": 257,
+ "1437477318": 249,
+ "1437477319": 247,
+ "1437477321": 297,
+ "1437477322": 287,
+ "1437477323": 268,
+ "1437477324": 263,
+ "1437477325": 297,
+ "1437477326": 277,
+ "1437477327": 267,
+ "1437477328": 278,
+ "1437477329": 299,
+ "1437477330": 279,
+ "1437477331": 268,
+ "1437477332": 235,
+ "1437477333": 261,
+ "1437477334": 278,
+ "1437477335": 283,
+ "1437477336": 267,
+ "1437477337": 247,
+ "1437477338": 249,
+ "1437477339": 214,
+ "1437477340": 214,
+ "1437477341": 214,
+ "1437477342": 0,
+ "1437477343": 0,
+ "1437477345": 0,
+ "1437477346": 0,
+ "1437477347": 0,
+ "1437477348": 0,
+ "1437477349": 0,
+ "1437477350": 0,
+ "1437477351": 0,
+ "1437477352": 0,
+ "1437477353": 0,
+ "1437477354": 0,
+ "1437477355": 0,
+ "1437477356": 0,
+ "1437477376": 138,
+ "1437477377": 140,
+ "1437477378": 125,
+ "1437477379": 87,
+ "1437477380": 87,
+ "1437477381": 87,
+ "1437477383": 0,
+ "1437477384": 0,
+ "1437477385": 0,
+ "1437477386": 0,
+ "1437477387": 0,
+ "1437477388": 0,
+ "1437477392": 28,
+ "1437477393": 28,
+ "1437477394": 28,
+ "1437477395": 28,
+ "1437477397": 28,
+ "1437477398": 28,
+ "1437477399": 28,
+ "1437477400": 28,
+ "1437477401": 23,
+ "1437477402": 23,
+ "1437477403": 23,
+ "1437477404": 0,
+ "1437477405": 0,
+ "1437477406": 0,
+ "1437477407": 0,
+ "1437477408": 0,
+ "1437477411": 28,
+ "1437477412": 28,
+ "1437477413": 28,
+ "1437477414": 29,
+ "1437477415": 29,
+ "1437477417": 24,
+ "1437477418": 24,
+ "1437477419": 19,
+ "1437477420": 19,
+ "1437477421": 19,
+ "1437477422": 0,
+ "1437477423": 0,
+ "1437477428": 55,
+ "1437477429": 55,
+ "1437477430": 48,
+ "1437477432": 48,
+ "1437477433": 30,
+ "1437477434": 30,
+ "1437477435": 29,
+ "1437477436": 29,
+ "1437477437": 34,
+ "1437477438": 38,
+ "1437477439": 38,
+ "1437477440": 38,
+ "1437477441": 34,
+ "1437477442": 31,
+ "1437477443": 31,
+ "1437477444": 31,
+ "1437477445": 32,
+ "1437477446": 37,
+ "1437477447": 33,
+ "1437477448": 33,
+ "1437477449": 33,
+ "1437477450": 32,
+ "1437477451": 38,
+ "1437477452": 38,
+ "1437477453": 38,
+ "1437477454": 35,
+ "1437477455": 35,
+ "1437477456": 35,
+ "1437477457": 0,
+ "1437477458": 0,
+ "1437477459": 0,
+ "1437477461": 0,
+ "1437477465": 69,
+ "1437477466": 69,
+ "1437477467": 69,
+ "1437477468": 52,
+ "1437477469": 31,
+ "1437477470": 31,
+ "1437477471": 31,
+ "1437477472": 25,
+ "1437477473": 25,
+ "1437477474": 26,
+ "1437477475": 26,
+ "1437477476": 28,
+ "1437477477": 28,
+ "1437477478": 29,
+ "1437477479": 29,
+ "1437477480": 42,
+ "1437477481": 42,
+ "1437477482": 36,
+ "1437477483": 36,
+ "1437477484": 36,
+ "1437477485": 36,
+ "1437477486": 46,
+ "1437477487": 46,
+ "1437477488": 33,
+ "1437477489": 44,
+ "1437477490": 44,
+ "1437477491": 49,
+ "1437477492": 49,
+ "1437477493": 50,
+ "1437477494": 50,
+ "1437477495": 54,
+ "1437477496": 54,
+ "1437477497": 40,
+ "1437477498": 41,
+ "1437477500": 41,
+ "1437477501": 49,
+ "1437477502": 49,
+ "1437477503": 46,
+ "1437477504": 39,
+ "1437477505": 39,
+ "1437477506": 39,
+ "1437477507": 23,
+ "1437477508": 23,
+ "1437477509": 17,
+ "1437477510": 17,
+ "1437477511": 25,
+ "1437477512": 25,
+ "1437477513": 28,
+ "1437477514": 28,
+ "1437477515": 28,
+ "1437477516": 28,
+ "1437477517": 28,
+ "1437477518": 26,
+ "1437477519": 26,
+ "1437477520": 26,
+ "1437477521": 26,
+ "1437477522": 29,
+ "1437477523": 29,
+ "1437477524": 29,
+ "1437477525": 29,
+ "1437477526": 25,
+ "1437477527": 25,
+ "1437477528": 25,
+ "1437477529": 27,
+ "1437477530": 27,
+ "1437477532": 33,
+ "1437477533": 33,
+ "1437477534": 49,
+ "1437477535": 49,
+ "1437477536": 45,
+ "1437477537": 45,
+ "1437477538": 45,
+ "1437477539": 31,
+ "1437477540": 31,
+ "1437477541": 33,
+ "1437477542": 33,
+ "1437477543": 33,
+ "1437477544": 33,
+ "1437477545": 33,
+ "1437477546": 33,
+ "1437477547": 32,
+ "1437477548": 32,
+ "1437477549": 32,
+ "1437477550": 35,
+ "1437477551": 35,
+ "1437477552": 39,
+ "1437477553": 39,
+ "1437477555": 31,
+ "1437477556": 31,
+ "1437477557": 31,
+ "1437477558": 27,
+ "1437477559": 27,
+ "1437477560": 28,
+ "1437477561": 28,
+ "1437477562": 28,
+ "1437477563": 28,
+ "1437477564": 17,
+ "1437477565": 17,
+ "1437477566": 17,
+ "1437477567": 16,
+ "1437477568": 16,
+ "1437477569": 27,
+ "1437477570": 27,
+ "1437477571": 27,
+ "1437477572": 27,
+ "1437477573": 23,
+ "1437477574": 23,
+ "1437477575": 23,
+ "1437477576": 0,
+ "1437477577": 38,
+ "1437477578": 38,
+ "1437477580": 53,
+ "1437477581": 53,
+ "1437477582": 58,
+ "1437477583": 55,
+ "1437477584": 55,
+ "1437477585": 63,
+ "1437477586": 66,
+ "1437477587": 66,
+ "1437477588": 63,
+ "1437477589": 61,
+ "1437477590": 68,
+ "1437477591": 68,
+ "1437477592": 71,
+ "1437477593": 61,
+ "1437477594": 59,
+ "1437477595": 59,
+ "1437477596": 46,
+ "1437477597": 17,
+ "1437477598": 17,
+ "1437477599": 5,
+ "1437477600": 5,
+ "1437477601": 4,
+ "1437477604": 54,
+ "1437477605": 54,
+ "1437477607": 135,
+ "1437477608": 74,
+ "1437477609": 82,
+ "1437477610": 94,
+ "1437477611": 92,
+ "1437477612": 89,
+ "1437477613": 89,
+ "1437477614": 94,
+ "1437477615": 102,
+ "1437477616": 90,
+ "1437477617": 86,
+ "1437477618": 73,
+ "1437477619": 75,
+ "1437477620": 75,
+ "1437477621": 89,
+ "1437477622": 96,
+ "1437477623": 115,
+ "1437477624": 123,
+ "1437477625": 154,
+ "1437477626": 143,
+ "1437477627": 143,
+ "1437477628": 124,
+ "1437477629": 123,
+ "1437477630": 160,
+ "1437477631": 157,
+ "1437477632": 101,
+ "1437477633": 123,
+ "1437477634": 138,
+ "1437477635": 140,
+ "1437477636": 98,
+ "1437477638": 99,
+ "1437477639": 99,
+ "1437477640": 93,
+ "1437477641": 93,
+ "1437477642": 40,
+ "1437477643": 31,
+ "1437477644": 31,
+ "1437477645": 76,
+ "1437477646": 107,
+ "1437477647": 88,
+ "1437477648": 148,
+ "1437477649": 148,
+ "1437477650": 80,
+ "1437477651": 78,
+ "1437477652": 78,
+ "1437477653": 78,
+ "1437477654": 0,
+ "1437477655": 0,
+ "1437477656": 0,
+ "1437477657": 0,
+ "1437477658": 0,
+ "1437477659": 0,
+ "1437477660": 0,
+ "1437477661": 0,
+ "1437477662": 0,
+ "1437477663": 0,
+ "1437477664": 0,
+ "1437477665": 91,
+ "1437477666": 91,
+ "1437477667": 54,
+ "1437477668": 54,
+ "1437477669": 19,
+ "1437477671": 19,
+ "1437477672": 15,
+ "1437477673": 15,
+ "1437477674": 15,
+ "1437477676": 39,
+ "1437477677": 39,
+ "1437477678": 51,
+ "1437477679": 51,
+ "1437477680": 51,
+ "1437477681": 0,
+ "1437477682": 0,
+ "1437477683": 0,
+ "1437477684": 0,
+ "1437477685": 0,
+ "1437477688": 56,
+ "1437477689": 56,
+ "1437477690": 73,
+ "1437477691": 32,
+ "1437477692": 32,
+ "1437477693": 34,
+ "1437477695": 34,
+ "1437477696": 43,
+ "1437477697": 43,
+ "1437477698": 38,
+ "1437477699": 53,
+ "1437477700": 53,
+ "1437477701": 53,
+ "1437477702": 0,
+ "1437477703": 0,
+ "1437477704": 0,
+ "1437477705": 0,
+ "1437477706": 0
+ },
+ "temperatures": null
+}
\ No newline at end of file
diff --git a/Sources/src/data/model/manager/ActivityManager.php b/Sources/src/data/model/manager/ActivityManager.php
index 6d3147b0..0e6be16c 100644
--- a/Sources/src/data/model/manager/ActivityManager.php
+++ b/Sources/src/data/model/manager/ActivityManager.php
@@ -12,8 +12,16 @@
namespace Manager;
use adriangibbons\phpFITFileAnalysis;
+use Database\ActivityGateway;
+use Database\ActivityMapper;
+use Database\Connexion;
+use Database\NotificationGateway;
+use Database\NotificationMapper;
+use DateTime;
use Exception;
use Model\Activity;
+use Model\Athlete;
+use Model\Notification;
use Network\IAuthService;
use Shared\Log;
use Stub\AuthService;
@@ -118,17 +126,25 @@ class ActivityManager
$lastTimestamp = end($monFichierFit->data_mesgs['record']['timestamp']);
// Conversion des timestamps en objets DateTime
- $startDate = \DateTime::createFromFormat('Y-m-d', date('Y-m-d', $firstTimestamp));
- $startTime = \DateTime::createFromFormat('H:i:s', date('H:i:s', $firstTimestamp));
- $endTime = ($lastTimestamp) ? \DateTime::createFromFormat('H:i:s', date('H:i:s', $lastTimestamp)) : null;
+ $startDate = new DateTime();
+// $startDate = $startDate->format('Y-m-d');
+ $startTime = new DateTime();//\DateTime::createFromFormat('H:i:s', date('H:i:s', $firstTimestamp));
+// $startTime = $startTime->format('H:i:s');
+ $endTime = ($lastTimestamp) ? new DateTime() : null;
+// if(!empty($endTime)) {
+// $endTime = $endTime->format('H:i:s');
+// }
// Vérification des conversions en DateTime
if (!$startDate || !$startTime || ($lastTimestamp && !$endTime)) {
throw new \Exception("La conversion en DateTime a échoué.");
+ return false;
}
// Extraction des autres données nécessaires
- $heartRateList = $monFichierFit->data_mesgs['record']['heart_rate'];
+ if(!($heartRateList = $monFichierFit->data_mesgs['record']['heart_rate'])) {
+ throw new \InvalidArgumentException("Fichier .fit ne comportant pas de fréquences cardiaques.\n Fichier Invalide !");
+ }
$variability = max($heartRateList) - min($heartRateList);
$average = number_format(array_sum($heartRateList) / count($heartRateList), 2);
$varianceV = array_sum(array_map(fn($x) => pow($x - $average, 2), $heartRateList)) / count($heartRateList);
@@ -136,7 +152,8 @@ class ActivityManager
$standardDeviation = number_format(sqrt($variance), 2);
$maximum = max($heartRateList);
$minimum = min($heartRateList);
- if(isset($monFichierFit->data_mesgs['record']['temperature'])){
+
+ if(!empty($monFichierFit->data_mesgs['record']['temperature']) && isset($monFichierFit->data_mesgs['record']['temperature'])){
// Extraction de la température moyenne (si disponible
$temperatureList = $monFichierFit->data_mesgs['record']['temperature'];
$averageTemperature = (!empty($temperatureList)) ? number_format(array_sum($temperatureList) / count($temperatureList), 1) : -200;
@@ -145,10 +162,15 @@ class ActivityManager
$averageTemperature = -200;
}
- $isPaused = count($monFichierFit->isPaused()) > 0;
+ if($monFichierFit->data_mesgs['record']['speed']) {
+ $isPaused = count($monFichierFit->isPaused()) > 0;
+ } else {
+ $isPaused = false;
+ }
// Création de l'objet Activity
$newActivity = new Activity(
+ 13,
$type,
$startDate,
$startTime,
@@ -166,9 +188,16 @@ class ActivityManager
// $this->dataManager->activityRepository->add($newActivity);
// if ($this->saveFitFileToJSON($monFichierFit)) {
// Ajout de l'activité et enregistrement du fichier FIT en JSON
- if ($this->authService->getCurrentUser()->getRole()->addActivity($newActivity)) {
+ $activityGateway = new ActivityGateway(new Connexion(DSN, DB_USER, DB_PASSWORD));
+ $map = new ActivityMapper();
+ $activityEntity = $map->activityToEntity($newActivity);
+ if($activityGateway->addActivity($activityEntity)) {
return true;
}
+ // TODO : add the activity
+// if ($this->authService->getCurrentUser()->getRole()->addActivity($newActivity)) {
+// return true;
+// }
// }
diff --git a/Sources/src/data/model/manager/AthleteManager.php b/Sources/src/data/model/manager/AthleteManager.php
index 71207c18..29ddea9d 100644
--- a/Sources/src/data/model/manager/AthleteManager.php
+++ b/Sources/src/data/model/manager/AthleteManager.php
@@ -18,7 +18,6 @@ use Stub\AuthService;
* @brief Classe pour gérer les opérations liées aux athlètes.
*/
class AthleteManager {
-
private IAuthService $authService;
private DataManager $dataManager;
@@ -31,7 +30,6 @@ class AthleteManager {
{
$this->authService = $authService;
$this->dataManager = $dataManager;
-
}
/**
diff --git a/Sources/src/data/model/manager/UserManager.php b/Sources/src/data/model/manager/UserManager.php
index 183ac6d3..79e04dd2 100644
--- a/Sources/src/data/model/manager/UserManager.php
+++ b/Sources/src/data/model/manager/UserManager.php
@@ -1,4 +1,13 @@
relationshipService = $relationshipService;
}
+
public function getCurrentUser(): ?User
{
return $this->currentUser;
}
+ /**
+ * Connecte un utilisateur avec les identifiants fournis.
+ *
+ * @param string $loginUser Le nom d'utilisateur.
+ * @param string $passwordUser Le mot de passe de l'utilisateur.
+ * @return bool Retourne true en cas de connexion réussie, sinon false.
+ * @throws \Exception En cas d'erreur dans les informations d'identification.
+ */
public function login($emailUser, $passwordUser): bool
{
// Validate data format
@@ -63,7 +81,7 @@ class UserManager
}
- public function addFriend(string $newFriend): bool
+ /*public function addFriend(string $newFriend): bool
{
$newFriend = $this->dataManager->userRepository->getItemByName($newFriend, 0, 1);
if ($newFriend === null) {
@@ -73,11 +91,15 @@ class UserManager
if (in_array($newFriend, $this->currentUser->getRole()->getUsersList())) {
throw new \Exception("Already friend");
}
- var_dump("====================1=========================");
if($this->relationshipService->sendRequest($this->currentUser, $newFriend)){
return true;
};
return false;
+ }*/
+
+ public function addFriend(User $user1, User $user2)
+ {
+ $this->dataManager->userRepository->addFriend($user1, $user2);
}
public function respondToFriendRequest(int $requestId, bool $choice): bool
@@ -115,9 +137,16 @@ class UserManager
{
return $this->dataManager->userRepository->getItemsByName($name, 0, 10);
}
-
- public function getFriends(): array{
- return $this->currentUser->getRole()->getUsersList();
+
+ public function searchUserByName(string $name): ?User
+ {
+ return $this->dataManager->userRepository->getItemByName($name, 0, 10);
+ }
+
+ public function getFriends(): array {
+ $user=$this->dataManager->userRepository->getItemById(1);
+ return $user->getListFriend();
+ //return $this->currentUser->getRole()->getUsersList();
}
// NEED TO PERSIST
@@ -148,6 +177,13 @@ class UserManager
/**
* @throws \Exception
+ * Enregistre un nouvel utilisateur avec les informations fournies.
+ *
+ * @param string $loginUser Le nom d'utilisateur.
+ * @param string $passwordUser Le mot de passe de l'utilisateur.
+ * @param array $data Les données supplémentaires pour l'enregistrement.
+ * @return bool Retourne true en cas d'enregistrement réussi, sinon false.
+ * @throws \Exception En cas d'erreur lors de la validation des données ou de l'enregistrement.
*/
public function register($loginUser, $passwordUser, $data): bool
{
@@ -189,6 +225,11 @@ class UserManager
return false;
}
+ /**
+ * Déconnecte l'utilisateur actuel.
+ *
+ * @return bool Retourne true en cas de déconnexion réussie, sinon false.
+ */
public function deconnecter(): bool
{
if ($this->authService->logoutUser()) {
@@ -197,7 +238,9 @@ class UserManager
return false;
}
-}
-
+ public function getUserById(int $id): ?User {
+ return $this->dataManager->userRepository->getItemById($id);
+ }
-?>
\ No newline at end of file
+}
+?>
diff --git a/Sources/src/data/model/repository/ITrainingRepository.php b/Sources/src/data/model/repository/ITrainingRepository.php
index d4563a3b..3cc1a4da 100644
--- a/Sources/src/data/model/repository/ITrainingRepository.php
+++ b/Sources/src/data/model/repository/ITrainingRepository.php
@@ -5,4 +5,4 @@ namespace Repository;
interface ITrainingRepository extends IGenericRepository
{
-}
\ No newline at end of file
+}
diff --git a/Sources/src/data/model/repository/IUserRepository.php b/Sources/src/data/model/repository/IUserRepository.php
index c46ec3eb..5506c1e6 100644
--- a/Sources/src/data/model/repository/IUserRepository.php
+++ b/Sources/src/data/model/repository/IUserRepository.php
@@ -1,9 +1,10 @@
userRepository = new UserRepository();
$this->relationshipRequestRepository = new RelationshipRequestRepository();
@@ -15,4 +45,4 @@ class StubData extends DataManager{
}
}
-?>
\ No newline at end of file
+?>
diff --git a/Sources/src/data/stub/repository/NotificationRepository.php b/Sources/src/data/stub/repository/NotificationRepository.php
index e712a676..249e017d 100644
--- a/Sources/src/data/stub/repository/NotificationRepository.php
+++ b/Sources/src/data/stub/repository/NotificationRepository.php
@@ -2,6 +2,7 @@
namespace Stub;
+use DateTime;
use Repository\INotificationRepository;
use Model\Notification;
@@ -10,13 +11,13 @@ class NotificationRepository implements INotificationRepository
private $notifications = []; // Array to store notifications
public function __construct()
{
+ $date = DateTime::createFromFormat('d/m/Y', date('d/m/Y'));
// Initialize with some sample notifications for user IDs 1, 2, and 3
- $this->notifications[] = new Notification(1, 'info', 'Welcome to our service!');
- $this->notifications[] = new Notification(2, 'alert', 'Your subscription is about to expire.');
- $this->notifications[] = new Notification(3, 'info', 'New features available.');
- $this->notifications[] = new Notification(1, 'reminder', 'Don’t forget your upcoming appointment.');
- $this->notifications[] = new Notification(2, 'update', 'Service update completed.');
- // Add more notifications as needed
+ $this->notifications[] = new Notification(1, 'info', $date,'Welcome to our service!', '1', 1);
+ $this->notifications[] = new Notification(2, 'info', $date,'Welcome to our service!', '1', 1);
+ $this->notifications[] = new Notification(3, 'info', $date,'Welcome to our service!', '1', 1);
+ $this->notifications[] = new Notification(1, 'info', $date,'Welcome to our service!', '1', 1);
+ $this->notifications[] = new Notification(2, 'info', $date,'Welcome to our service!', '1', 1);
}
public function getItemById(int $id)
{
diff --git a/Sources/src/data/stub/repository/UserRepository.php b/Sources/src/data/stub/repository/UserRepository.php
index 33421376..cd506dbc 100644
--- a/Sources/src/data/stub/repository/UserRepository.php
+++ b/Sources/src/data/stub/repository/UserRepository.php
@@ -1,4 +1,13 @@
users[] = new User(1, "Doe", "John", "Doe","john.doe@example.com", '$2y$10$U59ioMTGZBM2FGQv.3lcbuL0IkO4Fx1jQU7f5hF7o/hvCX2t46mby', 'M', 1.80, 75, new \DateTime("1985-05-15"), new CoachAthlete());
$this->users[] = new User(2, "Smith", "Jane","Smith", "jane.smith@example.com", '$2y$10$U59ioMTGZBM2FGQv.3lcbuL0IkO4Fx1jQU7f5hF7o/hvCX2t46mby', 'F', 1.65, 60, new \DateTime("1990-03-10"), new Athlete());
$this->users[] = new User(3, "Martin", "Paul","Martin", "paul.martin@example.com", '$2y$10$U59ioMTGZBM2FGQv.3lcbuL0IkO4Fx1jQU7f5hF7o/hvCX2t46mby', 'M', 1.75, 68, new \DateTime("1988-08-20"), new CoachAthlete());
$this->users[] = new User(4, "Brown", "Anna","Brown", "anna.brown@example.com", '$2y$10$U59ioMTGZBM2FGQv.3lcbuL0IkO4Fx1jQU7f5hF7o/hvCX2t46mby', 'F', 1.70, 58, new \DateTime("1992-11-25"), new Athlete());
$this->users[] = new User(5, "Lee", "Bruce","Lee", "bruce.lee@example.com", '$2y$10$U59ioMTGZBM2FGQv.3lcbuL0IkO4Fx1jQU7f5hF7o/hvCX2t46mby', 'M', 1.72, 70, new \DateTime("1970-02-05"), new Athlete());
+// $this->users[] = new User(1, "Doe", "John", "Doe","john.doe@example.com", "password123", 'M', 1.80, 75, new \DateTime("1985-05-15"), new CoachAthlete());
+// $this->users[] = new User(2, "Smith", "Jane","Smith", "jane.smith@example.com", "secure456", 'F', 1.65, 60, new \DateTime("1990-03-10"), new Athlete());
+// $this->users[] = new User(3, "Martin", "Paul","Martin", "paul.martin@example.com", "super789", 'M', 1.75, 68, new \DateTime("1988-08-20"), new CoachAthlete());
+// $this->users[] = new User(4, "Brown", "Anna","Brown", "anna.brown@example.com", "test000", 'F', 1.70, 58, new \DateTime("1992-11-25"), new Athlete());
+// $this->users[] = new User(5, "Lee", "Bruce","Lee", "bruce.lee@example.com", "hello321", 'M', 1.72, 70, new \DateTime("1970-02-05"), new Athlete());
+// $this->users[] = new User(6, "Truc", "Bruce","Truc", "bruce.lee@example.com", "hello321", 'M', 1.72, 70, new \DateTime("1970-02-05"), new Athlete());
+// $this->users[] = new User(1, "Doe", "John", "Doe","john.doe@example.com", "password123", 'M', 1.80, 75, new \DateTime("1985-05-15"), new CoachAthlete());
+// $this->users[] = new User(2, "Smith", "Jane","Smith", "jane.smith@example.com", "secure456", 'F', 1.65, 60, new \DateTime("1990-03-10"), new Athlete());
+// $this->users[] = new User(3, "Martin", "Paul","Martin", "paul.martin@example.com", "super789", 'M', 1.75, 68, new \DateTime("1988-08-20"), new CoachAthlete());
+// $this->users[] = new User(4, "Brown", "Anna","Brown", "anna.brown@example.com", "test000", 'F', 1.70, 58, new \DateTime("1992-11-25"), new Athlete());
+// $this->users[] = new User(5, "Lee", "Bruce","Lee", "bruce.lee@example.com", "hello321", 'M', 1.72, 70, new \DateTime("1970-02-05"), new Athlete());
+// $this->users[] = new User(1, "Doe", "John", "Doe","john.doe@example.com", '$2y$10$U59ioMTGZBM2FGQv.3lcbuL0IkO4Fx1jQU7f5hF7o/hvCX2t46mby', 'M', 1.80, 75, new \DateTime("1985-05-15"), new CoachAthlete());
+// $this->users[] = new User(2, "Smith", "Jane","Smith", "jane.smith@example.com", '$2y$10$U59ioMTGZBM2FGQv.3lcbuL0IkO4Fx1jQU7f5hF7o/hvCX2t46mby', 'F', 1.65, 60, new \DateTime("1990-03-10"), new Athlete());
+// $this->users[] = new User(3, "Martin", "Paul","Martin", "paul.martin@example.com", '$2y$10$U59ioMTGZBM2FGQv.3lcbuL0IkO4Fx1jQU7f5hF7o/hvCX2t46mby', 'M', 1.75, 68, new \DateTime("1988-08-20"), new CoachAthlete());
+// $this->users[] = new User(4, "Brown", "Anna","Brown", "anna.brown@example.com", '$2y$10$U59ioMTGZBM2FGQv.3lcbuL0IkO4Fx1jQU7f5hF7o/hvCX2t46mby', 'F', 1.70, 58, new \DateTime("1992-11-25"), new Athlete());
+// $this->users[] = new User(5, "Lee", "Bruce","Lee", "bruce.lee@example.com", '$2y$10$U59ioMTGZBM2FGQv.3lcbuL0IkO4Fx1jQU7f5hF7o/hvCX2t46mby', 'M', 1.72, 70, new \DateTime("1970-02-05"), new Athlete());
}
+ /**
+ * Obtient un utilisateur par son identifiant.
+ *
+ * @param int $id L'identifiant de l'utilisateur.
+ * @return User|null L'utilisateur correspondant à l'identifiant donné, ou null s'il n'existe pas.
+ */
public function getItemById(int $id): ?User {
foreach ($this->users as $user) {
if ($user->getId() === $id) {
@@ -27,6 +65,26 @@ class UserRepository implements IUserRepository {
return null;
}
+ /**
+ * Obtient un utilisateur par son rôle.
+ *
+ * @return User|null L'utilisateur ayant le rôle spécifié, ou null s'il n'y en a pas.
+ */
+ public function getItemByRole(): ?User {
+ foreach ($this->users as $user) {
+ if ($user->getRole() instanceof \Model\Coach) {
+ return $user;
+ }
+ }
+ return null;
+ }
+
+ /**
+ * Obtient un utilisateur par son adresse e-mail.
+ *
+ * @param string $email L'adresse e-mail de l'utilisateur.
+ * @return User|null L'utilisateur correspondant à l'adresse e-mail donnée, ou null s'il n'existe pas.
+ */
public function getItemByEmail(string $email): ?User {
foreach ($this->users as $user) {
if ($user->getEmail() === $email) {
@@ -36,6 +94,12 @@ class UserRepository implements IUserRepository {
return null;
}
+
+ /**
+ * Obtient le nombre total d'utilisateurs dans le dépôt.
+ *
+ * @return int Le nombre total d'utilisateurs.
+ */
public function getNbItems(): int {
return count($this->users);
}
@@ -45,31 +109,67 @@ class UserRepository implements IUserRepository {
return array_slice($this->users, $index, $count);
}
+ /**
+ * Obtient un tableau d'utilisateurs dont le nom ou le prénom contient la sous-chaîne spécifiée.
+ *
+ * @param string $substring La sous-chaîne pour la recherche.
+ * @param int $index L'indice de départ dans le tableau.
+ * @param int $count Le nombre d'utilisateurs à récupérer.
+ * @param string|null $orderingPropertyName Le nom de la propriété pour l'ordonnancement (facultatif).
+ * @param bool $descending Indique si l'ordonnancement doit être effectué en ordre descendant (facultatif, par défaut false).
+ * @return array|null Le tableau d'utilisateurs filtré, ou null s'il n'y a aucun utilisateur correspondant.
+ */
public function getItemsByName(string $substring, int $index, int $count, ?string $orderingPropertyName = null, bool $descending = false): array {
$filteredUsers = array_filter($this->users, function ($user) use ($substring) {
return str_contains(strtolower($user->getNom()), strtolower($substring)) || str_contains(strtolower($user->getPrenom()), strtolower($substring));
});
return array_slice($filteredUsers, $index, $count);
}
+
+ /**
+ * Obtient un utilisateur dont le nom ou le prénom contient la sous-chaîne spécifiée.
+ *
+ * @param string $substring La sous-chaîne pour la recherche.
+ * @param int $index L'indice de départ dans le tableau.
+ * @param int $count Le nombre d'utilisateurs à récupérer.
+ * @param string|null $orderingPropertyName Le nom de la propriété pour l'ordonnancement (facultatif).
+ * @param bool $descending Indique si l'ordonnancement doit être effectué en ordre descendant (facultatif, par défaut false).
+ * @return User|null L'utilisateur filtré, ou null s'il n'y a aucun utilisateur correspondant.
+ */
public function getItemByName(string $substring, int $index, int $count, ?string $orderingPropertyName = null, bool $descending = false): ?User {
$filteredUsers = $this->GetItemsByName($substring, $index, $count, $orderingPropertyName, $descending);
return $filteredUsers[0] ?? null;
}
-
- // should have type here
+ /**
+ * Met à jour un utilisateur existant dans le dépôt.
+ *
+ * @param User $oldItem L'ancienne instance de l'utilisateur.
+ * @param User $newItem La nouvelle instance de l'utilisateur.
+ * @return void
+ */
public function updateItem($oldUser, $newUser): void {
$index = array_search($oldUser, $this->users);
if ($index !== false) {
- $this->users[$index] = $newUser;
+ $this->users[$index] = $newItem;
}
}
- // should have type here
+ /**
+ * Ajoute un nouvel utilisateur au dépôt.
+ *
+ * @param User $user L'instance de l'utilisateur à ajouter.
+ * @return void
+ */
public function addItem( $user): void {
$this->users[] = $user;
}
- // should have type here
+ /**
+ * Supprime un utilisateur du dépôt.
+ *
+ * @param User $user L'instance de l'utilisateur à supprimer.
+ * @return bool Retourne true si la suppression a réussi, sinon false.
+ */
public function deleteItem( $user): bool {
$index = array_search($user, $this->users);
if ($index !== false) {
@@ -79,16 +179,15 @@ class UserRepository implements IUserRepository {
return false;
}
- public function addFriend(int $user1, int $user2)
+
+ public function deleteFriend(User $user1, User $user2)
{
- return true;
+ return true;
}
-
- public function deleteFriend(int $user1, int $user2)
+ public function addFriend(User $user1, User $user2)
{
- return true;
+ $user1->addFriend($user2);
}
}
-
-?>
\ No newline at end of file
+?>
diff --git a/Sources/src/data/stub/service/AuthService.php b/Sources/src/data/stub/service/AuthService.php
index d17a80b3..fd82f326 100644
--- a/Sources/src/data/stub/service/AuthService.php
+++ b/Sources/src/data/stub/service/AuthService.php
@@ -28,7 +28,6 @@ class AuthService implements IAuthService
public function login(string $emailUser, string $password): bool
{
$user = $this->userRepository->getItemByEmail($emailUser);
-
if (!$user instanceof User) {
throw new \Exception('Unable to find user with that name');
}
@@ -37,8 +36,6 @@ class AuthService implements IAuthService
}
$this->currentUser = $user;
return true;
-
-
}
public function register(string $username, string $password, $data): bool
@@ -51,7 +48,6 @@ class AuthService implements IAuthService
if ($existingUser != null || $existingUser instanceof User) {
throw new \Exception('User already exists');
}
-
$prenom = $data['prenom'];
$username = $data['username'];
$nom = $data['nom'];
@@ -81,7 +77,6 @@ class AuthService implements IAuthService
//should use reflexion
$role
);
-
$this->userRepository->addItem($user);
$this->currentUser = $user;
return true;
diff --git a/Sources/tests/DataManager/CoachManager.php b/Sources/tests/DataManager/CoachManager.php
new file mode 100644
index 00000000..d2b189b5
--- /dev/null
+++ b/Sources/tests/DataManager/CoachManager.php
@@ -0,0 +1,13 @@
+getAthlete();
+ //var_dump($result);
+ }
+
+ /* Fonctionne mais en commentaire pour pas add et del a chaque fois
+ public function testAddAthlete(){
+ $dsn = "mysql:host=londres;dbname=dbkemonteiro2;";
+ $username = "kemonteiro2";
+ $password = "#Phpmyadmin63";
+
+ $connexion = new Connexion($dsn,$username,$password);
+
+
+ $athleteGateway = new AthleteGateway($connexion);
+
+ $dateSpecifique = "2023-11-26";
+ $timestamp = strtotime($dateSpecifique);
+ $dateSQL = date("Y-m-d", $timestamp);
+
+ $athleteEntity = new AthleteEntity();
+ $athleteEntity->setNom('John');
+ $athleteEntity->setPrenom('Doe');
+ $athleteEntity->setIdAthlete(1234);
+ $athleteEntity->setEmail('kevin.monteiro@gmail.fr');
+ $athleteEntity->setSexe('H');
+ $athleteEntity->setTaille(169);
+ $athleteEntity->setPoids(69);
+ $athleteEntity->setMotDePasse('motdepasse');
+ $athleteEntity->setDateNaissance($dateSQL);
+
+ $result2 = $athleteGateway->addAthlete($athleteEntity);
+ }
+
+
+ public function testDeleteAthlete(){
+ $dsn = "mysql:host=londres;dbname=dbkemonteiro2;";
+ $username = "kemonteiro2";
+ $password = "#Phpmyadmin63";
+
+ $connexion = new Connexion($dsn,$username,$password);
+
+ $athleteGateway = new AthleteGateway($connexion);
+ $result = $athleteGateway->deleteAthlete( //idAthlete );
+ var_dump($result);
+
+ }*/
+
+ public function testUpdateAthlete(){
+ $dsn = "mysql:host=londres;dbname=dbkemonteiro2;";
+ $username = "kemonteiro2";
+ $password = "#Phpmyadmin63";
+
+ $connexion = new Connexion($dsn,$username,$password);
+
+ $athleteGateway = new AthleteGateway($connexion);
+
+ $dateSpecifique = "2004-08-26";
+ $timestamp = strtotime($dateSpecifique);
+ $dateSQL = date("Y-m-d", $timestamp);
+
+ $athleteEntity = new AthleteEntity();
+ $athleteEntity->setNom('John');
+ $athleteEntity->setPrenom('Doe');
+ $athleteEntity->setIdAthlete(13);
+ $athleteEntity->setEmail('kevin.monteiro@gmail.fr');
+ $athleteEntity->setSexe('H');
+ $athleteEntity->setTaille(169);
+ $athleteEntity->setPoids(69);
+ $athleteEntity->setMotDePasse('motdepasse');
+ $athleteEntity->setDateNaissance($dateSQL);
+ $athleteEntity->setIsCoach(FALSE);
+ $athleteEntity->setCoachId(NULL);
+
+ $athleteEntity2 = new AthleteEntity();
+ $athleteEntity2->setNom('Monteiro');
+ $athleteEntity2->setPrenom('Kevin');
+ $athleteEntity2->setIdAthlete(13);
+ $athleteEntity2->setEmail('kevin.monteiro@gmail.fr');
+ $athleteEntity2->setSexe('H');
+ $athleteEntity2->setTaille(169);
+ $athleteEntity2->setPoids(69);
+ $athleteEntity2->setMotDePasse('motdepasse');
+ $athleteEntity2->setDateNaissance($dateSQL);
+ $athleteEntity2->setIsCoach(TRUE);
+ $athleteEntity2->setCoachId(1);
+
+ $result = $athleteGateway->updateAthlete($athleteEntity, $athleteEntity2);
+ }
+
+ //Partie concernant les Coachs
+
+ public function testGetCoach() {
+
+ //$dsn = "pgsql:host=londres;port=8888;dbname=dbkemonteiro2;user=kemonteiro2;password=Mdp";
+
+ $dsn = "mysql:host=londres;dbname=dbkemonteiro2;";
+ $username = "kemonteiro2";
+ $password = "#Phpmyadmin63";
+
+ $connexion = new Connexion($dsn,$username,$password);
+
+
+ $coachGateway = new CoachGateway($connexion);
+ $result = $coachGateway->getCoach();
+ var_dump($result);
+ }
+ /*
+ //Fonctionne PAS A PARTIR DE LA
+ public function testAddCoach(){
+ $dsn = "mysql:host=londres;dbname=dbkemonteiro2;";
+ $username = "kemonteiro2";
+ $password = "#Phpmyadmin63";
+
+ $connexion = new Connexion($dsn,$username,$password);
+
+
+ $coachGateway = new CoachGateway($connexion);
+
+ $dateSpecifique = "2023-11-26";
+ $timestamp = strtotime($dateSpecifique);
+ $dateSQL = date("Y-m-d", $timestamp);
+
+ $coachEntity = new CoachEntity();
+ $coachEntity->setNom('John');
+ $coachEntity->setPrenom('Doe');
+ $coachEntity->setIdCoach(1234);
+ $coachEntity->setEmail('kevin.monteiro@gmail.fr');
+ $coachEntity->setSexe('H');
+ $coachEntity->setTaille(169);
+ $coachEntity->setPoids(69);
+ $coachEntity->setMotDePasse('motdepasse');
+ $coachEntity->setDateNaissance($dateSQL);
+
+ $result2 = $coachGateway->addCoach($coachEntity);
+ }
+
+
+ public function testDeleteAthlete(){
+ $dsn = "mysql:host=londres;dbname=dbkemonteiro2;";
+ $username = "kemonteiro2";
+ $password = "#Phpmyadmin63";
+
+ $connexion = new Connexion($dsn,$username,$password);
+
+ $athleteGateway = new AthleteGateway($connexion);
+ $result = $athleteGateway->deleteAthlete( //idAthlete );
+ var_dump($result);
+
+ }*/
+ /*
+ public function testUpdateAthlete(){
+ $dsn = "mysql:host=londres;dbname=dbkemonteiro2;";
+ $username = "kemonteiro2";
+ $password = "#Phpmyadmin63";
+
+ $connexion = new Connexion($dsn,$username,$password);
+
+ $athleteGateway = new AthleteGateway($connexion);
+
+ $dateSpecifique = "2004-08-26";
+ $timestamp = strtotime($dateSpecifique);
+ $dateSQL = date("Y-m-d", $timestamp);
+
+ $athleteEntity = new AthleteEntity();
+ $athleteEntity->setNom('John');
+ $athleteEntity->setPrenom('Doe');
+ $athleteEntity->setIdAthlete(13);
+ $athleteEntity->setEmail('kevin.monteiro@gmail.fr');
+ $athleteEntity->setSexe('H');
+ $athleteEntity->setTaille(169);
+ $athleteEntity->setPoids(69);
+ $athleteEntity->setMotDePasse('motdepasse');
+ $athleteEntity->setDateNaissance($dateSQL);
+
+ $athleteEntity2 = new AthleteEntity();
+ $athleteEntity2->setNom('Monteiro');
+ $athleteEntity2->setPrenom('Kevin');
+ $athleteEntity2->setIdAthlete(13);
+ $athleteEntity2->setEmail('kevin.monteiro@gmail.fr');
+ $athleteEntity2->setSexe('H');
+ $athleteEntity2->setTaille(169);
+ $athleteEntity2->setPoids(69);
+ $athleteEntity2->setMotDePasse('motdepasse');
+ $athleteEntity2->setDateNaissance($dateSQL);
+
+ $result = $athleteGateway->updateAthlete($athleteEntity, $athleteEntity2);
+ }*/
+}
diff --git a/Sources/tests/MapperTest.php b/Sources/tests/MapperTest.php
new file mode 100644
index 00000000..2e5565a0
--- /dev/null
+++ b/Sources/tests/MapperTest.php
@@ -0,0 +1,43 @@
+getAthlete();
+
+ $map = new AthleteMapper ();
+ //SQL To AthleteEntity
+ $athleteEntity = $map->athleteSqlToEntity($result);
+
+
+ foreach($athleteEntity as $ath){
+
+ $result = $ath->getNom();
+ var_dump($result);
+ //Pour chaque AthleteEntity : Athlete Entity To User avec Role Athlete(Model)
+ $user = $map->athleteEntityToModel($ath);
+ var_dump($user->getId());
+ //Pour chaque Athlete du Model -> Athlete Entity
+ $res = $map->athleteToEntity($user);
+ var_dump($res->getIdAthlete());
+ }
+ }
+}
\ No newline at end of file
diff --git a/Sources/tests/loginDatabase.php b/Sources/tests/loginDatabase.php
new file mode 100644
index 00000000..97c9dc4a
--- /dev/null
+++ b/Sources/tests/loginDatabase.php
@@ -0,0 +1,7 @@
+
\ No newline at end of file
diff --git a/Sources/vendor/composer/autoload_classmap.php b/Sources/vendor/composer/autoload_classmap.php
index b61fe968..997e9208 100644
--- a/Sources/vendor/composer/autoload_classmap.php
+++ b/Sources/vendor/composer/autoload_classmap.php
@@ -430,7 +430,6 @@ return array(
'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnValueMap.php',
'PHPUnit\\Framework\\MockObject\\Stub\\Stub' => $vendorDir . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/Stub.php',
'PHPUnit\\Framework\\NoChildTestSuiteException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php',
- 'PHPUnit\\Framework\\PhptAssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/PhptAssertionFailedError.php',
'PHPUnit\\Framework\\ProcessIsolationException' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception/ProcessIsolationException.php',
'PHPUnit\\Framework\\Reorderable' => $vendorDir . '/phpunit/phpunit/src/Framework/Reorderable.php',
'PHPUnit\\Framework\\SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
@@ -956,93 +955,6 @@ return array(
'PharIo\\Version\\VersionConstraintValue' => $vendorDir . '/phar-io/version/src/VersionConstraintValue.php',
'PharIo\\Version\\VersionNumber' => $vendorDir . '/phar-io/version/src/VersionNumber.php',
'PhpToken' => $vendorDir . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
- 'SebastianBergmann\\CliParser\\AmbiguousOptionException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php',
- 'SebastianBergmann\\CliParser\\Exception' => $vendorDir . '/sebastian/cli-parser/src/exceptions/Exception.php',
- 'SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php',
- 'SebastianBergmann\\CliParser\\Parser' => $vendorDir . '/sebastian/cli-parser/src/Parser.php',
- 'SebastianBergmann\\CliParser\\RequiredOptionArgumentMissingException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/RequiredOptionArgumentMissingException.php',
- 'SebastianBergmann\\CliParser\\UnknownOptionException' => $vendorDir . '/sebastian/cli-parser/src/exceptions/UnknownOptionException.php',
- 'SebastianBergmann\\CodeCoverage\\BranchAndPathCoverageNotSupportedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php',
- 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php',
- 'SebastianBergmann\\CodeCoverage\\Data\\ProcessedCodeCoverageData' => $vendorDir . '/phpunit/php-code-coverage/src/Data/ProcessedCodeCoverageData.php',
- 'SebastianBergmann\\CodeCoverage\\Data\\RawCodeCoverageData' => $vendorDir . '/phpunit/php-code-coverage/src/Data/RawCodeCoverageData.php',
- 'SebastianBergmann\\CodeCoverage\\DeadCodeDetectionNotSupportedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/DeadCodeDetectionNotSupportedException.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\PathExistsButIsNotDirectoryException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/PathExistsButIsNotDirectoryException.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\PcovDriver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PcovDriver.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\PcovNotAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/PcovNotAvailableException.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\Selector' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Selector.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\WriteOperationFailedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/WriteOperationFailedException.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\XdebugDriver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/XdebugDriver.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/XdebugNotAvailableException.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotEnabledException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/XdebugNotEnabledException.php',
- 'SebastianBergmann\\CodeCoverage\\Exception' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Exception.php',
- 'SebastianBergmann\\CodeCoverage\\FileCouldNotBeWrittenException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/FileCouldNotBeWrittenException.php',
- 'SebastianBergmann\\CodeCoverage\\Filter' => $vendorDir . '/phpunit/php-code-coverage/src/Filter.php',
- 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php',
- 'SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverAvailableException.php',
- 'SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverWithPathCoverageSupportAvailableException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => $vendorDir . '/phpunit/php-code-coverage/src/Node/AbstractNode.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Builder.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\CrapIndex' => $vendorDir . '/phpunit/php-code-coverage/src/Node/CrapIndex.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Directory.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Node/File.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Iterator.php',
- 'SebastianBergmann\\CodeCoverage\\ParserException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/ParserException.php',
- 'SebastianBergmann\\CodeCoverage\\ReflectionException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/ReflectionException.php',
- 'SebastianBergmann\\CodeCoverage\\ReportAlreadyFinalizedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/ReportAlreadyFinalizedException.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Clover.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Cobertura' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Cobertura.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Crap4j.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Colors' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Colors.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\CustomCssFile' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/CustomCssFile.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Facade.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => $vendorDir . '/phpunit/php-code-coverage/src/Report/PHP.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Text.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Thresholds' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Thresholds.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/File.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Method.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Node.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Project.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Report.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Source.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysisCacheNotConfiguredException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CacheWarmer' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CacheWarmer.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingFileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CachingFileAnalyser.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CodeUnitFindingVisitor' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/CodeUnitFindingVisitor.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ExecutableLinesFindingVisitor' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/ExecutableLinesFindingVisitor.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\FileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/FileAnalyser.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\IgnoredLinesFindingVisitor' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/IgnoredLinesFindingVisitor.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingFileAnalyser' => $vendorDir . '/phpunit/php-code-coverage/src/StaticAnalysis/ParsingFileAnalyser.php',
- 'SebastianBergmann\\CodeCoverage\\TestIdMissingException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/TestIdMissingException.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\Known' => $vendorDir . '/phpunit/php-code-coverage/src/TestSize/Known.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\Large' => $vendorDir . '/phpunit/php-code-coverage/src/TestSize/Large.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\Medium' => $vendorDir . '/phpunit/php-code-coverage/src/TestSize/Medium.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\Small' => $vendorDir . '/phpunit/php-code-coverage/src/TestSize/Small.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\TestSize' => $vendorDir . '/phpunit/php-code-coverage/src/TestSize/TestSize.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\Unknown' => $vendorDir . '/phpunit/php-code-coverage/src/TestSize/Unknown.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestStatus\\Failure' => $vendorDir . '/phpunit/php-code-coverage/src/TestStatus/Failure.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestStatus\\Known' => $vendorDir . '/phpunit/php-code-coverage/src/TestStatus/Known.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestStatus\\Success' => $vendorDir . '/phpunit/php-code-coverage/src/TestStatus/Success.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestStatus\\TestStatus' => $vendorDir . '/phpunit/php-code-coverage/src/TestStatus/TestStatus.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestStatus\\Unknown' => $vendorDir . '/phpunit/php-code-coverage/src/TestStatus/Unknown.php',
- 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php',
- 'SebastianBergmann\\CodeCoverage\\Util\\DirectoryCouldNotBeCreatedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php',
- 'SebastianBergmann\\CodeCoverage\\Util\\Filesystem' => $vendorDir . '/phpunit/php-code-coverage/src/Util/Filesystem.php',
- 'SebastianBergmann\\CodeCoverage\\Util\\Percentage' => $vendorDir . '/phpunit/php-code-coverage/src/Util/Percentage.php',
- 'SebastianBergmann\\CodeCoverage\\Version' => $vendorDir . '/phpunit/php-code-coverage/src/Version.php',
- 'SebastianBergmann\\CodeCoverage\\XmlException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/XmlException.php',
'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => $vendorDir . '/sebastian/code-unit-reverse-lookup/src/Wizard.php',
'SebastianBergmann\\CodeUnit\\ClassMethodUnit' => $vendorDir . '/sebastian/code-unit/src/ClassMethodUnit.php',
'SebastianBergmann\\CodeUnit\\ClassUnit' => $vendorDir . '/sebastian/code-unit/src/ClassUnit.php',
diff --git a/Sources/vendor/composer/autoload_psr4.php b/Sources/vendor/composer/autoload_psr4.php
index 60f7c08a..218aa369 100644
--- a/Sources/vendor/composer/autoload_psr4.php
+++ b/Sources/vendor/composer/autoload_psr4.php
@@ -16,9 +16,9 @@ return array(
'Shared\\Attributes\\' => array($baseDir . '/src/shared/attributes'),
'Shared\\' => array($baseDir . '/src/shared'),
'Repository\\' => array($baseDir . '/src/data/model/repository'),
- 'Psr\\Container\\' => array($vendorDir . '/psr/container/src'),
+ 'Psr\\Container\\' => array($vendorDir . '/psr/container/src', $vendorDir . '/sebastian/cli-parser/src'),
'PhpParser\\' => array($vendorDir . '/nikic/php-parser/lib/PhpParser'),
- 'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src/PhpOption'),
+ 'PhpOption\\' => array($vendorDir . '/phpoption/phpoption/src/PhpOption', $vendorDir . '/phpunit/php-code-coverage/src/PhpOption'),
'Network\\' => array($baseDir . '/src/data/core/network'),
'Model\\' => array($baseDir . '/src/data/model'),
'Manager\\' => array($baseDir . '/src/data/model/manager'),
@@ -26,6 +26,7 @@ return array(
'GrahamCampbell\\ResultType\\' => array($vendorDir . '/graham-campbell/result-type/src'),
'Dotenv\\' => array($vendorDir . '/vlucas/phpdotenv/src'),
'DeepCopy\\' => array($vendorDir . '/myclabs/deep-copy/src/DeepCopy'),
+ 'Database\\' => array($baseDir . '/src/data/core/database'),
'Data\\Core\\' => array($baseDir . '/src/data/core'),
'Data\\' => array($baseDir . '/src/data'),
'Console\\' => array($baseDir . '/src/console'),
diff --git a/Sources/vendor/composer/autoload_static.php b/Sources/vendor/composer/autoload_static.php
index bac1e2e2..daa6f6ec 100644
--- a/Sources/vendor/composer/autoload_static.php
+++ b/Sources/vendor/composer/autoload_static.php
@@ -64,6 +64,7 @@ class ComposerStaticInit1887e85fc3cfddacf8d7e17588dae6f1
array (
'Dotenv\\' => 7,
'DeepCopy\\' => 9,
+ 'Database\\' => 9,
'Data\\Core\\' => 10,
'Data\\' => 5,
),
@@ -129,6 +130,7 @@ class ComposerStaticInit1887e85fc3cfddacf8d7e17588dae6f1
'Psr\\Container\\' =>
array (
0 => __DIR__ . '/..' . '/psr/container/src',
+ 1 => __DIR__ . '/..' . '/sebastian/cli-parser/src',
),
'PhpParser\\' =>
array (
@@ -137,6 +139,7 @@ class ComposerStaticInit1887e85fc3cfddacf8d7e17588dae6f1
'PhpOption\\' =>
array (
0 => __DIR__ . '/..' . '/phpoption/phpoption/src/PhpOption',
+ 1 => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/PhpOption',
),
'Network\\' =>
array (
@@ -166,6 +169,10 @@ class ComposerStaticInit1887e85fc3cfddacf8d7e17588dae6f1
array (
0 => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy',
),
+ 'Database\\' =>
+ array (
+ 0 => __DIR__ . '/../..' . '/src/data/core/database',
+ ),
'Data\\Core\\' =>
array (
0 => __DIR__ . '/../..' . '/src/data/core',
@@ -633,7 +640,6 @@ class ComposerStaticInit1887e85fc3cfddacf8d7e17588dae6f1
'PHPUnit\\Framework\\MockObject\\Stub\\ReturnValueMap' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnValueMap.php',
'PHPUnit\\Framework\\MockObject\\Stub\\Stub' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/Stub.php',
'PHPUnit\\Framework\\NoChildTestSuiteException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php',
- 'PHPUnit\\Framework\\PhptAssertionFailedError' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/PhptAssertionFailedError.php',
'PHPUnit\\Framework\\ProcessIsolationException' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Exception/ProcessIsolationException.php',
'PHPUnit\\Framework\\Reorderable' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Reorderable.php',
'PHPUnit\\Framework\\SelfDescribing' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
@@ -1159,93 +1165,6 @@ class ComposerStaticInit1887e85fc3cfddacf8d7e17588dae6f1
'PharIo\\Version\\VersionConstraintValue' => __DIR__ . '/..' . '/phar-io/version/src/VersionConstraintValue.php',
'PharIo\\Version\\VersionNumber' => __DIR__ . '/..' . '/phar-io/version/src/VersionNumber.php',
'PhpToken' => __DIR__ . '/..' . '/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
- 'SebastianBergmann\\CliParser\\AmbiguousOptionException' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php',
- 'SebastianBergmann\\CliParser\\Exception' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/Exception.php',
- 'SebastianBergmann\\CliParser\\OptionDoesNotAllowArgumentException' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php',
- 'SebastianBergmann\\CliParser\\Parser' => __DIR__ . '/..' . '/sebastian/cli-parser/src/Parser.php',
- 'SebastianBergmann\\CliParser\\RequiredOptionArgumentMissingException' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/RequiredOptionArgumentMissingException.php',
- 'SebastianBergmann\\CliParser\\UnknownOptionException' => __DIR__ . '/..' . '/sebastian/cli-parser/src/exceptions/UnknownOptionException.php',
- 'SebastianBergmann\\CodeCoverage\\BranchAndPathCoverageNotSupportedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php',
- 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/CodeCoverage.php',
- 'SebastianBergmann\\CodeCoverage\\Data\\ProcessedCodeCoverageData' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Data/ProcessedCodeCoverageData.php',
- 'SebastianBergmann\\CodeCoverage\\Data\\RawCodeCoverageData' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Data/RawCodeCoverageData.php',
- 'SebastianBergmann\\CodeCoverage\\DeadCodeDetectionNotSupportedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/DeadCodeDetectionNotSupportedException.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Driver.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\PathExistsButIsNotDirectoryException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/PathExistsButIsNotDirectoryException.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\PcovDriver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/PcovDriver.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\PcovNotAvailableException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/PcovNotAvailableException.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\Selector' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/Selector.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\WriteOperationFailedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/WriteOperationFailedException.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\XdebugDriver' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Driver/XdebugDriver.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotAvailableException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/XdebugNotAvailableException.php',
- 'SebastianBergmann\\CodeCoverage\\Driver\\XdebugNotEnabledException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/XdebugNotEnabledException.php',
- 'SebastianBergmann\\CodeCoverage\\Exception' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/Exception.php',
- 'SebastianBergmann\\CodeCoverage\\FileCouldNotBeWrittenException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/FileCouldNotBeWrittenException.php',
- 'SebastianBergmann\\CodeCoverage\\Filter' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Filter.php',
- 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php',
- 'SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverAvailableException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverAvailableException.php',
- 'SebastianBergmann\\CodeCoverage\\NoCodeCoverageDriverWithPathCoverageSupportAvailableException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/AbstractNode.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Builder.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\CrapIndex' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/CrapIndex.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Directory.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/File.php',
- 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Node/Iterator.php',
- 'SebastianBergmann\\CodeCoverage\\ParserException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/ParserException.php',
- 'SebastianBergmann\\CodeCoverage\\ReflectionException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/ReflectionException.php',
- 'SebastianBergmann\\CodeCoverage\\ReportAlreadyFinalizedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/ReportAlreadyFinalizedException.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Clover.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Cobertura' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Cobertura.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Crap4j.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Colors' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Colors.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\CustomCssFile' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/CustomCssFile.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Facade.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/PHP.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Text' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Text.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Thresholds' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Thresholds.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/File.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Method.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Node.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Project.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Report.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Source.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php',
- 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysisCacheNotConfiguredException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CacheWarmer' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/CacheWarmer.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CachingFileAnalyser' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/CachingFileAnalyser.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\CodeUnitFindingVisitor' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/CodeUnitFindingVisitor.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ExecutableLinesFindingVisitor' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/ExecutableLinesFindingVisitor.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\FileAnalyser' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/FileAnalyser.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\IgnoredLinesFindingVisitor' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/IgnoredLinesFindingVisitor.php',
- 'SebastianBergmann\\CodeCoverage\\StaticAnalysis\\ParsingFileAnalyser' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/StaticAnalysis/ParsingFileAnalyser.php',
- 'SebastianBergmann\\CodeCoverage\\TestIdMissingException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/TestIdMissingException.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\Known' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestSize/Known.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\Large' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestSize/Large.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\Medium' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestSize/Medium.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\Small' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestSize/Small.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\TestSize' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestSize/TestSize.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestSize\\Unknown' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestSize/Unknown.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestStatus\\Failure' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestStatus/Failure.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestStatus\\Known' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestStatus/Known.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestStatus\\Success' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestStatus/Success.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestStatus\\TestStatus' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestStatus/TestStatus.php',
- 'SebastianBergmann\\CodeCoverage\\Test\\TestStatus\\Unknown' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/TestStatus/Unknown.php',
- 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php',
- 'SebastianBergmann\\CodeCoverage\\Util\\DirectoryCouldNotBeCreatedException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php',
- 'SebastianBergmann\\CodeCoverage\\Util\\Filesystem' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Util/Filesystem.php',
- 'SebastianBergmann\\CodeCoverage\\Util\\Percentage' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Util/Percentage.php',
- 'SebastianBergmann\\CodeCoverage\\Version' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Version.php',
- 'SebastianBergmann\\CodeCoverage\\XmlException' => __DIR__ . '/..' . '/phpunit/php-code-coverage/src/Exception/XmlException.php',
'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => __DIR__ . '/..' . '/sebastian/code-unit-reverse-lookup/src/Wizard.php',
'SebastianBergmann\\CodeUnit\\ClassMethodUnit' => __DIR__ . '/..' . '/sebastian/code-unit/src/ClassMethodUnit.php',
'SebastianBergmann\\CodeUnit\\ClassUnit' => __DIR__ . '/..' . '/sebastian/code-unit/src/ClassUnit.php',
diff --git a/Sources/vendor/composer/installed.json b/Sources/vendor/composer/installed.json
index 5ea31310..c5a21d6b 100644
--- a/Sources/vendor/composer/installed.json
+++ b/Sources/vendor/composer/installed.json
@@ -99,6 +99,177 @@
},
"install-path": "../altorouter/altorouter"
},
+ {
+ "name": "doctrine/instantiator",
+ "version": "1.5.0",
+ "version_normalized": "1.5.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/adriangibbons/php-fit-file-analysis.git",
+ "reference": "8efd36b1b963f01c42dc5329626519c040dec664"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/adriangibbons/php-fit-file-analysis/zipball/8efd36b1b963f01c42dc5329626519c040dec664",
+ "reference": "8efd36b1b963f01c42dc5329626519c040dec664",
+ "shasum": ""
+ },
+ "require-dev": {
+ "phpunit/phpunit": "4.8.*",
+ "satooshi/php-coveralls": "^2.0",
+ "squizlabs/php_codesniffer": "2.*"
+ },
+ "time": "2019-11-20T06:58:56+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "adriangibbons\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "description": "A PHP class for analysing FIT files created by Garmin GPS devices",
+ "homepage": "https://github.com/adriangibbons/php-fit-file-analysis",
+ "keywords": [
+ "Fit",
+ "garmin"
+ ],
+ "support": {
+ "issues": "https://github.com/adriangibbons/php-fit-file-analysis/issues",
+ "source": "https://github.com/adriangibbons/php-fit-file-analysis/tree/master"
+ },
+ "install-path": "../adriangibbons/php-fit-file-analysis"
+ },
+ {
+ "name": "graham-campbell/result-type",
+ "version": "v1.1.2",
+ "version_normalized": "1.1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/GrahamCampbell/Result-Type.git",
+ "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
+ "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "phpoption/phpoption": "^1.9.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
+ },
+ "time": "2023-11-12T22:16:48+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "GrahamCampbell\\ResultType\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ }
+ ],
+ "description": "An Implementation Of The Result Type",
+ "keywords": [
+ "Graham Campbell",
+ "GrahamCampbell",
+ "Result Type",
+ "Result-Type",
+ "result"
+ ],
+ "support": {
+ "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
+ "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
+ "type": "tidelift"
+ }
+ ],
+ "install-path": "../graham-campbell/result-type"
+ },
+ {
+ "name": "graham-campbell/result-type",
+ "version": "v1.1.2",
+ "version_normalized": "1.1.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/GrahamCampbell/Result-Type.git",
+ "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
+ "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0",
+ "phpoption/phpoption": "^1.9.2"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
+ },
+ "time": "2023-11-12T22:16:48+00:00",
+ "type": "library",
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "GrahamCampbell\\ResultType\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ }
+ ],
+ "description": "An Implementation Of The Result Type",
+ "keywords": [
+ "Graham Campbell",
+ "GrahamCampbell",
+ "Result Type",
+ "Result-Type",
+ "result"
+ ],
+ "support": {
+ "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
+ "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
+ "type": "tidelift"
+ }
+ ],
+ "install-path": "../graham-campbell/result-type"
+ },
{
"name": "graham-campbell/result-type",
"version": "v1.1.2",
@@ -480,6 +651,84 @@
],
"install-path": "../phpoption/phpoption"
},
+ {
+ "name": "phpunit/php-code-coverage",
+ "version": "10.1.9",
+ "version_normalized": "10.1.9.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/schmittjoh/php-option.git",
+ "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
+ "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2.5 || ^8.0"
+ },
+ "require-dev": {
+ "bamarni/composer-bin-plugin": "^1.8.2",
+ "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
+ },
+ "time": "2023-11-12T21:59:55+00:00",
+ "type": "library",
+ "extra": {
+ "bamarni-bin": {
+ "bin-links": true,
+ "forward-command": true
+ },
+ "branch-alias": {
+ "dev-master": "1.9-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "PhpOption\\": "src/PhpOption/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "Apache-2.0"
+ ],
+ "authors": [
+ {
+ "name": "Johannes M. Schmitt",
+ "email": "schmittjoh@gmail.com",
+ "homepage": "https://github.com/schmittjoh"
+ },
+ {
+ "name": "Graham Campbell",
+ "email": "hello@gjcampbell.co.uk",
+ "homepage": "https://github.com/GrahamCampbell"
+ }
+ ],
+ "description": "Option Type for PHP",
+ "keywords": [
+ "language",
+ "option",
+ "php",
+ "type"
+ ],
+ "support": {
+ "issues": "https://github.com/schmittjoh/php-option/issues",
+ "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/GrahamCampbell",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
+ "type": "tidelift"
+ }
+ ],
+ "install-path": "../phpoption/phpoption"
+ },
{
"name": "phpunit/php-code-coverage",
"version": "10.1.9",
@@ -976,6 +1225,62 @@
},
"install-path": "../psr/container"
},
+ {
+ "name": "sebastian/cli-parser",
+ "version": "2.0.0",
+ "version_normalized": "2.0.0.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/php-fig/container.git",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=7.4.0"
+ },
+ "time": "2021-11-05T16:47:00+00:00",
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "installation-source": "dist",
+ "autoload": {
+ "psr-4": {
+ "Psr\\Container\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "PHP-FIG",
+ "homepage": "https://www.php-fig.org/"
+ }
+ ],
+ "description": "Common Container Interface (PHP FIG PSR-11)",
+ "homepage": "https://github.com/php-fig/container",
+ "keywords": [
+ "PSR-11",
+ "container",
+ "container-interface",
+ "container-interop",
+ "psr"
+ ],
+ "support": {
+ "issues": "https://github.com/php-fig/container/issues",
+ "source": "https://github.com/php-fig/container/tree/2.0.2"
+ },
+ "install-path": "../psr/container"
+ },
{
"name": "sebastian/cli-parser",
"version": "2.0.0",
diff --git a/Sources/vendor/composer/installed.php b/Sources/vendor/composer/installed.php
index 88b397a4..5c38c8e3 100644
--- a/Sources/vendor/composer/installed.php
+++ b/Sources/vendor/composer/installed.php
@@ -28,6 +28,33 @@
'aliases' => array(),
'dev_requirement' => false,
),
+ 'doctrine/instantiator' => array(
+ 'pretty_version' => '1.5.0',
+ 'version' => '1.5.0.0',
+ 'reference' => '0a0fa9780f5d4e507415a065172d26a98d02047b',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../adriangibbons/php-fit-file-analysis',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'graham-campbell/result-type' => array(
+ 'pretty_version' => 'v1.1.2',
+ 'version' => '1.1.2.0',
+ 'reference' => 'fbd48bce38f73f8a4ec8583362e732e4095e5862',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../graham-campbell/result-type',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
+ 'graham-campbell/result-type' => array(
+ 'pretty_version' => 'v1.1.2',
+ 'version' => '1.1.2.0',
+ 'reference' => 'fbd48bce38f73f8a4ec8583362e732e4095e5862',
+ 'type' => 'library',
+ 'install_path' => __DIR__ . '/../graham-campbell/result-type',
+ 'aliases' => array(),
+ 'dev_requirement' => false,
+ ),
'graham-campbell/result-type' => array(
'pretty_version' => 'v1.1.2',
'version' => '1.1.2.0',
diff --git a/Sources/vendor/phpunit/phpunit/src/Framework/Exception/PhptAssertionFailedError.php b/Sources/vendor/phpunit/phpunit/src/Framework/Exception/PhptAssertionFailedError.php
deleted file mode 100644
index e645e69f..00000000
--- a/Sources/vendor/phpunit/phpunit/src/Framework/Exception/PhptAssertionFailedError.php
+++ /dev/null
@@ -1,53 +0,0 @@
-
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-namespace PHPUnit\Framework;
-
-/**
- * @psalm-immutable
- *
- * @internal This class is not covered by the backward compatibility promise for PHPUnit
- */
-final class PhptAssertionFailedError extends AssertionFailedError
-{
- private readonly string $syntheticFile;
- private readonly int $syntheticLine;
- private readonly array $syntheticTrace;
- private readonly string $diff;
-
- public function __construct(string $message, int $code, string $file, int $line, array $trace, string $diff)
- {
- parent::__construct($message, $code);
-
- $this->syntheticFile = $file;
- $this->syntheticLine = $line;
- $this->syntheticTrace = $trace;
- $this->diff = $diff;
- }
-
- public function syntheticFile(): string
- {
- return $this->syntheticFile;
- }
-
- public function syntheticLine(): int
- {
- return $this->syntheticLine;
- }
-
- public function syntheticTrace(): array
- {
- return $this->syntheticTrace;
- }
-
- public function diff(): string
- {
- return $this->diff;
- }
-}
diff --git a/package-lock.json b/package-lock.json
new file mode 100644
index 00000000..b143d20d
--- /dev/null
+++ b/package-lock.json
@@ -0,0 +1,28 @@
+{
+ "name": "Web",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "dependencies": {
+ "chart.js": "^4.4.1"
+ }
+ },
+ "node_modules/@kurkle/color": {
+ "version": "0.3.2",
+ "resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.2.tgz",
+ "integrity": "sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw=="
+ },
+ "node_modules/chart.js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.4.1.tgz",
+ "integrity": "sha512-C74QN1bxwV1v2PEujhmKjOZ7iUM4w6BWs23Md/6aOZZSlwMzeCIDGuZay++rBgChYru7/+QFeoQW0fQoP534Dg==",
+ "dependencies": {
+ "@kurkle/color": "^0.3.0"
+ },
+ "engines": {
+ "pnpm": ">=7"
+ }
+ }
+ }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 00000000..3df43b72
--- /dev/null
+++ b/package.json
@@ -0,0 +1,5 @@
+{
+ "dependencies": {
+ "chart.js": "^4.4.1"
+ }
+}