diff --git a/data/php/dataParser.php b/data/php/dataParser.php
index a5db5f2..84efafe 100644
--- a/data/php/dataParser.php
+++ b/data/php/dataParser.php
@@ -37,40 +37,40 @@
- if (date("I",strtotime($date)) == 1) $daylightAdjust = 3600; //Add an hour for BST
+ if (date("I", strtotime($date)) == 1) $daylightAdjust = 3600; //Add an hour for BST
else $daylightAdjust = 0;
//For some reason, known only to the UKHO - some of them do high/low tide in the wrong order....
- if ($array[10] == "X") $tides[strtotime($date . " " . substr_replace($array[7], ":", 2, 0 ) . ":00")+$daylightAdjust] = $array[9];
- else $tides[strtotime($date . " " . substr_replace($array[10], ":", 2, 0 ) . ":00")+$daylightAdjust] = $array[12];
+ if ($array[10] == "X") $tides[strtotime($date . " " . substr_replace($array[7], ":", 2, 0) . ":00") + $daylightAdjust] = $array[9];
+ else $tides[strtotime($date . " " . substr_replace($array[10], ":", 2, 0) . ":00") + $daylightAdjust] = $array[12];
if (($array[13] != "X" and count($array) == 17) or count($array) == 20) {
- if ($array[13] != "X") $tides[strtotime($date . " " . substr_replace($array[13], ":", 2, 0 ) . ":00")+$daylightAdjust] = $array[15]; //Two tides on that day
- else $tides[strtotime($date . " " . substr_replace($array[16], ":", 2, 0 ) . ":00")+$daylightAdjust] = $array[18]; //Two tides on that day
+ if ($array[13] != "X") $tides[strtotime($date . " " . substr_replace($array[13], ":", 2, 0) . ":00") + $daylightAdjust] = $array[15]; //Two tides on that day
+ else $tides[strtotime($date . " " . substr_replace($array[16], ":", 2, 0) . ":00") + $daylightAdjust] = $array[18]; //Two tides on that day
}
}
}
-ksort ($tides); //Put the tides in ascending order
+ksort($tides); //Put the tides in ascending order
$tidesDays = [];
-foreach ($tides as $time=>$height) {
+foreach ($tides as $time => $height) {
if (!isset($tidesDays[date("d M Y", $time)])) $tidesDays[date("d M Y", $time)] = [];
$tidesDays[date("d M Y", $time)][] = ["time" => date("H:i:s", $time), "height" => $height];
}
//Generate timings in the format that the app likes
$tidesApp = [];
-foreach ($tidesDays as $time=>$day) {
- $tidesApp[] = ["date" => date("Y-m-d", strtotime($time)), "groups" => $day];
+foreach ($tidesDays as $time => $day) {
+ $tidesApp[] = ["date" => date("Y-m-d", strtotime($time)), "groups" => $day, "sunrise" => date_sunrise(strtotime($time), SUNFUNCS_RET_STRING, 52.92, -4.13, ini_get("date.sunrise_zenith"), date("I", strtotime($time))), "sunset" => date_sunset(strtotime($time), SUNFUNCS_RET_STRING, 52.92, -4.13, ini_get("date.sunrise_zenith"), date("I", strtotime($time)))];
}
//Generate tide tables as PDFs that look nice
$tidesMonths = [];
-foreach ($tidesDays as $time=>$day) {
+foreach ($tidesDays as $time => $day) {
if (!isset($tidesMonths[date("M Y", strtotime($time))])) $tidesMonths[date("M Y", strtotime($time))] = [];
$tidesMonths[date("M Y", strtotime($time))][$time] = $day;
}
$pdfs = [];
-foreach ($tidesMonths as $month=>$data) {
+foreach ($tidesMonths as $month => $data) {
//Generate a PDF
$pdf = ["name" => date("F Y", strtotime($month)), "date" => date("Y-m-d", strtotime($month)), "filename" => strtolower(date("Y/m", strtotime($month))) . '.pdf', "htmlfilename" => strtolower(date("Y/m", strtotime($month))) . '.html', "url" => strtolower(date("Y/m", strtotime($month)))];
@@ -92,7 +92,7 @@
- ' . date("F",strtotime($month)) . ' ' . date("Y",strtotime($month)) . '
+ ' . date("F", strtotime($month)) . ' ' . date("Y", strtotime($month)) . '
|
Porthmadog
@@ -140,24 +140,25 @@
|
';
- foreach ($data as $dayDate=>$day) {
- $output .= '
+ foreach ($data as $dayDate => $day) {
+ $output .= '
' . date('l', strtotime($dayDate)) . ' |
' . date('d', strtotime($dayDate)) . ' |
- ' . date_sunrise(strtotime($dayDate), SUNFUNCS_RET_STRING,52.92,-4.13,ini_get("date.sunrise_zenith"),date("I",strtotime($dayDate))) . ' |
+ ' . date_sunrise(strtotime($dayDate), SUNFUNCS_RET_STRING, 52.92, -4.13, ini_get("date.sunrise_zenith"), date("I", strtotime($dayDate))) . ' |
' . date('H:i', strtotime($day[0]['time'])) . ' |
' . $day[0]['height'] . 'm | ';
- if (count($day)>1) {
- $output .= ' ' . date('H:i', strtotime($day[1]['time'])) . ' |
+ if (count($day) > 1) {
+ $output .= ' ' . date('H:i', strtotime($day[1]['time'])) . ' |
' . $day[1]['height'] . 'm | ';
- } else {
- $output .= ' | ';
- }
- $output .= '' . date_sunset (strtotime($dayDate), SUNFUNCS_RET_STRING,52.92,-4.13,ini_get("date.sunrise_zenith"),date("I",strtotime($dayDate))) . ' |
';
- }
+ } else {
+ $output .= ' | ';
+ }
+ $output .= '' . date_sunset(strtotime($dayDate), SUNFUNCS_RET_STRING, 52.92, -4.13, ini_get("date.sunrise_zenith"), date("I", strtotime($dayDate))) . ' | ';
+ }
$output .= '
';
$footer = 'Copyright Information: All Tidal Data is ©Crown Copyright. Reproduced by permission of the Controller of Her Majesty\'s Stationery Office and the UK Hydrographic Office (www.ukho.gov.uk). No tidal data may be reproduced without the expressed permission of the ukho licencing department.
Disclaimer: Tidal Predictions are provided for use by all water users though the providers of this table can not be held accountable for the accuracy of this data or any accidents that result from the use of this data. Time Zone Information: All Tidal Predictions above are displayed in GMT/BST
Table provided by port-tides.com
';
- $mpdf=new \Mpdf\Mpdf(['format' => 'A4',
+ $mpdf = new \Mpdf\Mpdf([
+ 'format' => 'A4',
'margin_left' => 10,
'margin_right' => 10,
'margin_top' => 9,
@@ -166,13 +167,13 @@
'margin_footer' => 9
]);
$mpdf->SetHTMLFooter($footer);
- $mpdf->SetTitle('Porthmadog Tide Times | ' . date("F",strtotime($month)));
- $mpdf->SetAuthor ('port-tides.com');
+ $mpdf->SetTitle('Porthmadog Tide Times | ' . date("F", strtotime($month)));
+ $mpdf->SetAuthor('port-tides.com');
$mpdf->SetProtection(array('print'), '');
$mpdf->WriteHTML($output);
- if (!is_dir(__DIR__ . '/../../static/tide-tables/' . date("Y",strtotime($month)))) mkdir(__DIR__ . '/../../static/tide-tables/' . date("Y",strtotime($month)));
- $mpdf->Output(__DIR__ . '/../../static/tide-tables/' . $pdf['filename'],'F');
- file_put_contents(__DIR__ . '/../../static/tide-tables/' . $pdf['htmlfilename'],($output.$footer));
+ if (!is_dir(__DIR__ . '/../../static/tide-tables/' . date("Y", strtotime($month)))) mkdir(__DIR__ . '/../../static/tide-tables/' . date("Y", strtotime($month)));
+ $mpdf->Output(__DIR__ . '/../../static/tide-tables/' . $pdf['filename'], 'F');
+ file_put_contents(__DIR__ . '/../../static/tide-tables/' . $pdf['htmlfilename'], ($output . $footer));
echo "Generated PDF for " . $pdf['filename'] . "\n";
$pdfs[] = $pdf;
}
@@ -190,7 +191,7 @@
$fp = fopen(__DIR__ . '/../tides.json', 'w');
fwrite($fp, json_encode($output));
fclose($fp);
-
+$fp = fopen(__DIR__ . '/../tides-pretty.json', 'w');
+fwrite($fp, json_encode($output, JSON_PRETTY_PRINT));
+fclose($fp);
echo "Finished";
-?>
-
diff --git a/data/tides-pretty.json b/data/tides-pretty.json
new file mode 100644
index 0000000..e22ba3a
--- /dev/null
+++ b/data/tides-pretty.json
@@ -0,0 +1,63311 @@
+{
+ "schedule": [
+ {
+ "date": "2014-09-01",
+ "groups": [
+ {
+ "time": "13:07:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2014-09-02",
+ "groups": [
+ {
+ "time": "01:29:00",
+ "height": "4.1"
+ },
+ {
+ "time": "14:00:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2014-09-03",
+ "groups": [
+ {
+ "time": "02:30:00",
+ "height": "3.8"
+ },
+ {
+ "time": "15:14:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2014-09-04",
+ "groups": [
+ {
+ "time": "03:56:00",
+ "height": "3.6"
+ },
+ {
+ "time": "16:48:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2014-09-05",
+ "groups": [
+ {
+ "time": "05:27:00",
+ "height": "3.7"
+ },
+ {
+ "time": "18:08:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2014-09-06",
+ "groups": [
+ {
+ "time": "06:41:00",
+ "height": "4.1"
+ },
+ {
+ "time": "19:12:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2014-09-07",
+ "groups": [
+ {
+ "time": "07:41:00",
+ "height": "4.6"
+ },
+ {
+ "time": "20:04:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2014-09-08",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "5.1"
+ },
+ {
+ "time": "20:52:00",
+ "height": "5.5"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2014-09-09",
+ "groups": [
+ {
+ "time": "09:16:00",
+ "height": "5.4"
+ },
+ {
+ "time": "21:35:00",
+ "height": "5.8"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2014-09-10",
+ "groups": [
+ {
+ "time": "09:58:00",
+ "height": "5.6"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.8"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:44"
+ },
+ {
+ "date": "2014-09-11",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "5.6"
+ },
+ {
+ "time": "22:58:00",
+ "height": "5.7"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:42"
+ },
+ {
+ "date": "2014-09-12",
+ "groups": [
+ {
+ "time": "11:18:00",
+ "height": "5.4"
+ },
+ {
+ "time": "23:41:00",
+ "height": "5.4"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:40"
+ },
+ {
+ "date": "2014-09-13",
+ "groups": [
+ {
+ "time": "12:02:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:37"
+ },
+ {
+ "date": "2014-09-14",
+ "groups": [
+ {
+ "time": "00:25:00",
+ "height": "5.0"
+ },
+ {
+ "time": "12:45:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:35"
+ },
+ {
+ "date": "2014-09-15",
+ "groups": [
+ {
+ "time": "01:11:00",
+ "height": "4.5"
+ },
+ {
+ "time": "13:30:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:32"
+ },
+ {
+ "date": "2014-09-16",
+ "groups": [
+ {
+ "time": "02:01:00",
+ "height": "3.9"
+ },
+ {
+ "time": "14:26:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:30"
+ },
+ {
+ "date": "2014-09-17",
+ "groups": [
+ {
+ "time": "03:05:00",
+ "height": "3.5"
+ },
+ {
+ "time": "15:44:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "19:28"
+ },
+ {
+ "date": "2014-09-18",
+ "groups": [
+ {
+ "time": "04:35:00",
+ "height": "3.2"
+ },
+ {
+ "time": "17:18:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "19:25"
+ },
+ {
+ "date": "2014-09-19",
+ "groups": [
+ {
+ "time": "05:58:00",
+ "height": "3.4"
+ },
+ {
+ "time": "18:31:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "19:23"
+ },
+ {
+ "date": "2014-09-20",
+ "groups": [
+ {
+ "time": "07:00:00",
+ "height": "3.7"
+ },
+ {
+ "time": "19:23:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "19:20"
+ },
+ {
+ "date": "2014-09-21",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "4.1"
+ },
+ {
+ "time": "20:01:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "19:18"
+ },
+ {
+ "date": "2014-09-22",
+ "groups": [
+ {
+ "time": "08:20:00",
+ "height": "4.4"
+ },
+ {
+ "time": "20:35:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "19:16"
+ },
+ {
+ "date": "2014-09-23",
+ "groups": [
+ {
+ "time": "08:53:00",
+ "height": "4.7"
+ },
+ {
+ "time": "21:06:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "19:13"
+ },
+ {
+ "date": "2014-09-24",
+ "groups": [
+ {
+ "time": "09:23:00",
+ "height": "4.9"
+ },
+ {
+ "time": "21:36:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "19:11"
+ },
+ {
+ "date": "2014-09-25",
+ "groups": [
+ {
+ "time": "09:52:00",
+ "height": "5.0"
+ },
+ {
+ "time": "22:05:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "19:08"
+ },
+ {
+ "date": "2014-09-26",
+ "groups": [
+ {
+ "time": "10:21:00",
+ "height": "5.0"
+ },
+ {
+ "time": "22:34:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "19:06"
+ },
+ {
+ "date": "2014-09-27",
+ "groups": [
+ {
+ "time": "10:50:00",
+ "height": "5.0"
+ },
+ {
+ "time": "23:04:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "19:04"
+ },
+ {
+ "date": "2014-09-28",
+ "groups": [
+ {
+ "time": "11:23:00",
+ "height": "4.9"
+ },
+ {
+ "time": "23:39:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "19:01"
+ },
+ {
+ "date": "2014-09-29",
+ "groups": [
+ {
+ "time": "12:00:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "18:59"
+ },
+ {
+ "date": "2014-09-30",
+ "groups": [
+ {
+ "time": "00:20:00",
+ "height": "4.5"
+ },
+ {
+ "time": "12:44:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "18:56"
+ },
+ {
+ "date": "2014-10-01",
+ "groups": [
+ {
+ "time": "01:08:00",
+ "height": "4.2"
+ },
+ {
+ "time": "13:39:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "18:54"
+ },
+ {
+ "date": "2014-10-02",
+ "groups": [
+ {
+ "time": "02:12:00",
+ "height": "3.8"
+ },
+ {
+ "time": "14:55:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "18:52"
+ },
+ {
+ "date": "2014-10-03",
+ "groups": [
+ {
+ "time": "03:38:00",
+ "height": "3.6"
+ },
+ {
+ "time": "16:30:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "18:49"
+ },
+ {
+ "date": "2014-10-04",
+ "groups": [
+ {
+ "time": "05:13:00",
+ "height": "3.7"
+ },
+ {
+ "time": "17:52:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "18:47"
+ },
+ {
+ "date": "2014-10-05",
+ "groups": [
+ {
+ "time": "06:27:00",
+ "height": "4.1"
+ },
+ {
+ "time": "18:55:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "18:45"
+ },
+ {
+ "date": "2014-10-06",
+ "groups": [
+ {
+ "time": "07:25:00",
+ "height": "4.7"
+ },
+ {
+ "time": "19:47:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "18:42"
+ },
+ {
+ "date": "2014-10-07",
+ "groups": [
+ {
+ "time": "08:13:00",
+ "height": "5.1"
+ },
+ {
+ "time": "20:34:00",
+ "height": "5.5"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2014-10-08",
+ "groups": [
+ {
+ "time": "08:57:00",
+ "height": "5.4"
+ },
+ {
+ "time": "21:17:00",
+ "height": "5.7"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2014-10-09",
+ "groups": [
+ {
+ "time": "09:37:00",
+ "height": "5.6"
+ },
+ {
+ "time": "21:58:00",
+ "height": "5.7"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2014-10-10",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "5.6"
+ },
+ {
+ "time": "22:37:00",
+ "height": "5.6"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2014-10-11",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "5.4"
+ },
+ {
+ "time": "23:14:00",
+ "height": "5.3"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2014-10-12",
+ "groups": [
+ {
+ "time": "11:32:00",
+ "height": "5.1"
+ },
+ {
+ "time": "23:56:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2014-10-13",
+ "groups": [
+ {
+ "time": "12:15:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2014-10-14",
+ "groups": [
+ {
+ "time": "00:39:00",
+ "height": "4.4"
+ },
+ {
+ "time": "12:58:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2014-10-15",
+ "groups": [
+ {
+ "time": "01:25:00",
+ "height": "3.9"
+ },
+ {
+ "time": "13:48:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2014-10-16",
+ "groups": [
+ {
+ "time": "02:22:00",
+ "height": "3.5"
+ },
+ {
+ "time": "14:54:00",
+ "height": "3.5"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2014-10-17",
+ "groups": [
+ {
+ "time": "03:43:00",
+ "height": "3.2"
+ },
+ {
+ "time": "16:29:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2014-10-18",
+ "groups": [
+ {
+ "time": "05:16:00",
+ "height": "3.3"
+ },
+ {
+ "time": "17:49:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2014-10-19",
+ "groups": [
+ {
+ "time": "06:22:00",
+ "height": "3.6"
+ },
+ {
+ "time": "18:45:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2014-10-20",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.0"
+ },
+ {
+ "time": "19:28:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2014-10-21",
+ "groups": [
+ {
+ "time": "07:48:00",
+ "height": "4.3"
+ },
+ {
+ "time": "20:03:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2014-10-22",
+ "groups": [
+ {
+ "time": "08:22:00",
+ "height": "4.7"
+ },
+ {
+ "time": "20:36:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2014-10-23",
+ "groups": [
+ {
+ "time": "08:54:00",
+ "height": "4.9"
+ },
+ {
+ "time": "21:08:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2014-10-24",
+ "groups": [
+ {
+ "time": "09:25:00",
+ "height": "5.1"
+ },
+ {
+ "time": "21:39:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2014-10-25",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "5.2"
+ },
+ {
+ "time": "22:11:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2014-10-26",
+ "groups": [
+ {
+ "time": "10:29:00",
+ "height": "5.2"
+ },
+ {
+ "time": "22:45:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2014-10-27",
+ "groups": [
+ {
+ "time": "10:03:00",
+ "height": "5.1"
+ },
+ {
+ "time": "22:23:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "16:56"
+ },
+ {
+ "date": "2014-10-28",
+ "groups": [
+ {
+ "time": "10:44:00",
+ "height": "4.9"
+ },
+ {
+ "time": "23:07:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "16:54"
+ },
+ {
+ "date": "2014-10-29",
+ "groups": [
+ {
+ "time": "11:33:00",
+ "height": "4.6"
+ },
+ {
+ "time": "23:59:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2014-10-30",
+ "groups": [
+ {
+ "time": "12:31:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2014-10-31",
+ "groups": [
+ {
+ "time": "01:05:00",
+ "height": "4.0"
+ },
+ {
+ "time": "13:45:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2014-11-01",
+ "groups": [
+ {
+ "time": "02:27:00",
+ "height": "3.8"
+ },
+ {
+ "time": "15:13:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2014-11-02",
+ "groups": [
+ {
+ "time": "03:55:00",
+ "height": "3.8"
+ },
+ {
+ "time": "16:30:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2014-11-03",
+ "groups": [
+ {
+ "time": "05:06:00",
+ "height": "4.2"
+ },
+ {
+ "time": "17:34:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2014-11-04",
+ "groups": [
+ {
+ "time": "06:04:00",
+ "height": "4.6"
+ },
+ {
+ "time": "18:28:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2014-11-05",
+ "groups": [
+ {
+ "time": "06:54:00",
+ "height": "5.0"
+ },
+ {
+ "time": "19:15:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2014-11-06",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "5.2"
+ },
+ {
+ "time": "19:58:00",
+ "height": "5.4"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2014-11-07",
+ "groups": [
+ {
+ "time": "08:18:00",
+ "height": "5.4"
+ },
+ {
+ "time": "20:38:00",
+ "height": "5.4"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2014-11-08",
+ "groups": [
+ {
+ "time": "08:56:00",
+ "height": "5.4"
+ },
+ {
+ "time": "21:17:00",
+ "height": "5.3"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2014-11-09",
+ "groups": [
+ {
+ "time": "09:33:00",
+ "height": "5.3"
+ },
+ {
+ "time": "21:54:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2014-11-10",
+ "groups": [
+ {
+ "time": "10:09:00",
+ "height": "5.0"
+ },
+ {
+ "time": "22:32:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2014-11-11",
+ "groups": [
+ {
+ "time": "10:49:00",
+ "height": "4.7"
+ },
+ {
+ "time": "23:13:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2014-11-12",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "4.4"
+ },
+ {
+ "time": "23:56:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2014-11-13",
+ "groups": [
+ {
+ "time": "12:15:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2014-11-14",
+ "groups": [
+ {
+ "time": "00:46:00",
+ "height": "3.7"
+ },
+ {
+ "time": "13:09:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2014-11-15",
+ "groups": [
+ {
+ "time": "01:47:00",
+ "height": "3.4"
+ },
+ {
+ "time": "14:20:00",
+ "height": "3.5"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2014-11-16",
+ "groups": [
+ {
+ "time": "03:10:00",
+ "height": "3.3"
+ },
+ {
+ "time": "15:47:00",
+ "height": "3.5"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2014-11-17",
+ "groups": [
+ {
+ "time": "04:28:00",
+ "height": "3.4"
+ },
+ {
+ "time": "16:53:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2014-11-18",
+ "groups": [
+ {
+ "time": "05:25:00",
+ "height": "3.7"
+ },
+ {
+ "time": "17:44:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2014-11-19",
+ "groups": [
+ {
+ "time": "06:10:00",
+ "height": "4.1"
+ },
+ {
+ "time": "18:27:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2014-11-20",
+ "groups": [
+ {
+ "time": "06:48:00",
+ "height": "4.5"
+ },
+ {
+ "time": "19:04:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2014-11-21",
+ "groups": [
+ {
+ "time": "07:24:00",
+ "height": "4.8"
+ },
+ {
+ "time": "19:40:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2014-11-22",
+ "groups": [
+ {
+ "time": "08:00:00",
+ "height": "5.0"
+ },
+ {
+ "time": "20:16:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2014-11-23",
+ "groups": [
+ {
+ "time": "08:36:00",
+ "height": "5.2"
+ },
+ {
+ "time": "20:53:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2014-11-24",
+ "groups": [
+ {
+ "time": "09:13:00",
+ "height": "5.3"
+ },
+ {
+ "time": "21:32:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2014-11-25",
+ "groups": [
+ {
+ "time": "09:52:00",
+ "height": "5.2"
+ },
+ {
+ "time": "22:13:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2014-11-26",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "5.1"
+ },
+ {
+ "time": "23:02:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2014-11-27",
+ "groups": [
+ {
+ "time": "11:29:00",
+ "height": "4.9"
+ },
+ {
+ "time": "23:56:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2014-11-28",
+ "groups": [
+ {
+ "time": "12:26:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2014-11-29",
+ "groups": [
+ {
+ "time": "00:59:00",
+ "height": "4.2"
+ },
+ {
+ "time": "13:33:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2014-11-30",
+ "groups": [
+ {
+ "time": "02:09:00",
+ "height": "4.0"
+ },
+ {
+ "time": "14:48:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2014-12-01",
+ "groups": [
+ {
+ "time": "03:29:00",
+ "height": "4.0"
+ },
+ {
+ "time": "16:03:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2014-12-02",
+ "groups": [
+ {
+ "time": "04:38:00",
+ "height": "4.1"
+ },
+ {
+ "time": "17:08:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2014-12-03",
+ "groups": [
+ {
+ "time": "05:40:00",
+ "height": "4.4"
+ },
+ {
+ "time": "18:05:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2014-12-04",
+ "groups": [
+ {
+ "time": "06:33:00",
+ "height": "4.6"
+ },
+ {
+ "time": "18:57:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2014-12-05",
+ "groups": [
+ {
+ "time": "07:20:00",
+ "height": "4.9"
+ },
+ {
+ "time": "19:42:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2014-12-06",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "5.0"
+ },
+ {
+ "time": "20:22:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2014-12-07",
+ "groups": [
+ {
+ "time": "08:41:00",
+ "height": "5.1"
+ },
+ {
+ "time": "21:01:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2014-12-08",
+ "groups": [
+ {
+ "time": "09:18:00",
+ "height": "5.1"
+ },
+ {
+ "time": "21:38:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-09",
+ "groups": [
+ {
+ "time": "09:53:00",
+ "height": "5.0"
+ },
+ {
+ "time": "22:12:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-10",
+ "groups": [
+ {
+ "time": "10:28:00",
+ "height": "4.8"
+ },
+ {
+ "time": "22:51:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-11",
+ "groups": [
+ {
+ "time": "11:07:00",
+ "height": "4.6"
+ },
+ {
+ "time": "23:30:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-12",
+ "groups": [
+ {
+ "time": "11:46:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-13",
+ "groups": [
+ {
+ "time": "00:12:00",
+ "height": "4.0"
+ },
+ {
+ "time": "12:30:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-14",
+ "groups": [
+ {
+ "time": "01:00:00",
+ "height": "3.7"
+ },
+ {
+ "time": "13:22:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-15",
+ "groups": [
+ {
+ "time": "01:58:00",
+ "height": "3.5"
+ },
+ {
+ "time": "14:26:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-16",
+ "groups": [
+ {
+ "time": "03:11:00",
+ "height": "3.4"
+ },
+ {
+ "time": "15:42:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-17",
+ "groups": [
+ {
+ "time": "04:23:00",
+ "height": "3.5"
+ },
+ {
+ "time": "16:49:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-18",
+ "groups": [
+ {
+ "time": "05:23:00",
+ "height": "3.8"
+ },
+ {
+ "time": "17:43:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2014-12-19",
+ "groups": [
+ {
+ "time": "06:12:00",
+ "height": "4.2"
+ },
+ {
+ "time": "18:30:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2014-12-20",
+ "groups": [
+ {
+ "time": "06:56:00",
+ "height": "4.6"
+ },
+ {
+ "time": "19:15:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2014-12-21",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "4.9"
+ },
+ {
+ "time": "19:57:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2014-12-22",
+ "groups": [
+ {
+ "time": "08:19:00",
+ "height": "5.2"
+ },
+ {
+ "time": "20:40:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2014-12-23",
+ "groups": [
+ {
+ "time": "09:01:00",
+ "height": "5.4"
+ },
+ {
+ "time": "21:22:00",
+ "height": "5.3"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2014-12-24",
+ "groups": [
+ {
+ "time": "09:43:00",
+ "height": "5.4"
+ },
+ {
+ "time": "22:06:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2014-12-25",
+ "groups": [
+ {
+ "time": "10:29:00",
+ "height": "5.4"
+ },
+ {
+ "time": "22:55:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2014-12-26",
+ "groups": [
+ {
+ "time": "11:21:00",
+ "height": "5.2"
+ },
+ {
+ "time": "23:47:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2014-12-27",
+ "groups": [
+ {
+ "time": "12:15:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2014-12-28",
+ "groups": [
+ {
+ "time": "00:42:00",
+ "height": "4.6"
+ },
+ {
+ "time": "13:13:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2014-12-29",
+ "groups": [
+ {
+ "time": "01:43:00",
+ "height": "4.2"
+ },
+ {
+ "time": "14:18:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2014-12-30",
+ "groups": [
+ {
+ "time": "02:52:00",
+ "height": "4.0"
+ },
+ {
+ "time": "15:30:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2014-12-31",
+ "groups": [
+ {
+ "time": "04:06:00",
+ "height": "3.9"
+ },
+ {
+ "time": "16:38:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2015-01-01",
+ "groups": [
+ {
+ "time": "05:13:00",
+ "height": "4.0"
+ },
+ {
+ "time": "17:43:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2015-01-02",
+ "groups": [
+ {
+ "time": "06:15:00",
+ "height": "4.2"
+ },
+ {
+ "time": "18:41:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2015-01-03",
+ "groups": [
+ {
+ "time": "07:06:00",
+ "height": "4.5"
+ },
+ {
+ "time": "19:29:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2015-01-04",
+ "groups": [
+ {
+ "time": "07:50:00",
+ "height": "4.7"
+ },
+ {
+ "time": "20:11:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2015-01-05",
+ "groups": [
+ {
+ "time": "08:29:00",
+ "height": "4.9"
+ },
+ {
+ "time": "20:49:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2015-01-06",
+ "groups": [
+ {
+ "time": "09:05:00",
+ "height": "5.0"
+ },
+ {
+ "time": "21:22:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2015-01-07",
+ "groups": [
+ {
+ "time": "09:37:00",
+ "height": "5.0"
+ },
+ {
+ "time": "21:54:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2015-01-08",
+ "groups": [
+ {
+ "time": "10:09:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:28:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2015-01-09",
+ "groups": [
+ {
+ "time": "10:43:00",
+ "height": "4.8"
+ },
+ {
+ "time": "23:03:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2015-01-10",
+ "groups": [
+ {
+ "time": "11:18:00",
+ "height": "4.6"
+ },
+ {
+ "time": "23:39:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2015-01-11",
+ "groups": [
+ {
+ "time": "11:56:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2015-01-12",
+ "groups": [
+ {
+ "time": "00:18:00",
+ "height": "4.0"
+ },
+ {
+ "time": "12:37:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2015-01-13",
+ "groups": [
+ {
+ "time": "01:03:00",
+ "height": "3.8"
+ },
+ {
+ "time": "13:26:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2015-01-14",
+ "groups": [
+ {
+ "time": "01:59:00",
+ "height": "3.5"
+ },
+ {
+ "time": "14:27:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2015-01-15",
+ "groups": [
+ {
+ "time": "03:11:00",
+ "height": "3.4"
+ },
+ {
+ "time": "15:44:00",
+ "height": "3.5"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2015-01-16",
+ "groups": [
+ {
+ "time": "04:28:00",
+ "height": "3.5"
+ },
+ {
+ "time": "16:57:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2015-01-17",
+ "groups": [
+ {
+ "time": "05:34:00",
+ "height": "3.9"
+ },
+ {
+ "time": "17:59:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2015-01-18",
+ "groups": [
+ {
+ "time": "06:28:00",
+ "height": "4.3"
+ },
+ {
+ "time": "18:53:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2015-01-19",
+ "groups": [
+ {
+ "time": "07:17:00",
+ "height": "4.8"
+ },
+ {
+ "time": "19:41:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2015-01-20",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "5.2"
+ },
+ {
+ "time": "20:27:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2015-01-21",
+ "groups": [
+ {
+ "time": "08:49:00",
+ "height": "5.5"
+ },
+ {
+ "time": "21:11:00",
+ "height": "5.4"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2015-01-22",
+ "groups": [
+ {
+ "time": "09:33:00",
+ "height": "5.7"
+ },
+ {
+ "time": "21:54:00",
+ "height": "5.5"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2015-01-23",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "5.7"
+ },
+ {
+ "time": "22:41:00",
+ "height": "5.4"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:43"
+ },
+ {
+ "date": "2015-01-24",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "5.5"
+ },
+ {
+ "time": "23:30:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2015-01-25",
+ "groups": [
+ {
+ "time": "11:56:00",
+ "height": "5.3"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:47"
+ },
+ {
+ "date": "2015-01-26",
+ "groups": [
+ {
+ "time": "00:20:00",
+ "height": "4.8"
+ },
+ {
+ "time": "12:48:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:49"
+ },
+ {
+ "date": "2015-01-27",
+ "groups": [
+ {
+ "time": "01:13:00",
+ "height": "4.4"
+ },
+ {
+ "time": "13:44:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2015-01-28",
+ "groups": [
+ {
+ "time": "02:14:00",
+ "height": "4.0"
+ },
+ {
+ "time": "14:52:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2015-01-29",
+ "groups": [
+ {
+ "time": "03:30:00",
+ "height": "3.7"
+ },
+ {
+ "time": "16:07:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:54"
+ },
+ {
+ "date": "2015-01-30",
+ "groups": [
+ {
+ "time": "04:46:00",
+ "height": "3.7"
+ },
+ {
+ "time": "17:22:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:56"
+ },
+ {
+ "date": "2015-01-31",
+ "groups": [
+ {
+ "time": "05:57:00",
+ "height": "3.9"
+ },
+ {
+ "time": "18:27:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:58"
+ },
+ {
+ "date": "2015-02-01",
+ "groups": [
+ {
+ "time": "06:54:00",
+ "height": "4.2"
+ },
+ {
+ "time": "19:16:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "17:00"
+ },
+ {
+ "date": "2015-02-02",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "4.5"
+ },
+ {
+ "time": "19:57:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "17:02"
+ },
+ {
+ "date": "2015-02-03",
+ "groups": [
+ {
+ "time": "08:15:00",
+ "height": "4.7"
+ },
+ {
+ "time": "20:33:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "17:04"
+ },
+ {
+ "date": "2015-02-04",
+ "groups": [
+ {
+ "time": "08:49:00",
+ "height": "4.9"
+ },
+ {
+ "time": "21:05:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "17:06"
+ },
+ {
+ "date": "2015-02-05",
+ "groups": [
+ {
+ "time": "09:19:00",
+ "height": "4.9"
+ },
+ {
+ "time": "21:35:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "17:08"
+ },
+ {
+ "date": "2015-02-06",
+ "groups": [
+ {
+ "time": "09:48:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:04:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "17:09"
+ },
+ {
+ "date": "2015-02-07",
+ "groups": [
+ {
+ "time": "10:17:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:34:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "17:11"
+ },
+ {
+ "date": "2015-02-08",
+ "groups": [
+ {
+ "time": "10:50:00",
+ "height": "4.8"
+ },
+ {
+ "time": "23:07:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "17:13"
+ },
+ {
+ "date": "2015-02-09",
+ "groups": [
+ {
+ "time": "11:22:00",
+ "height": "4.6"
+ },
+ {
+ "time": "23:42:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "17:15"
+ },
+ {
+ "date": "2015-02-10",
+ "groups": [
+ {
+ "time": "11:58:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "17:17"
+ },
+ {
+ "date": "2015-02-11",
+ "groups": [
+ {
+ "time": "00:18:00",
+ "height": "4.0"
+ },
+ {
+ "time": "12:39:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "17:19"
+ },
+ {
+ "date": "2015-02-12",
+ "groups": [
+ {
+ "time": "01:06:00",
+ "height": "3.8"
+ },
+ {
+ "time": "13:32:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "17:21"
+ },
+ {
+ "date": "2015-02-13",
+ "groups": [
+ {
+ "time": "02:10:00",
+ "height": "3.5"
+ },
+ {
+ "time": "14:46:00",
+ "height": "3.5"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "17:23"
+ },
+ {
+ "date": "2015-02-14",
+ "groups": [
+ {
+ "time": "03:36:00",
+ "height": "3.4"
+ },
+ {
+ "time": "16:14:00",
+ "height": "3.5"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "17:25"
+ },
+ {
+ "date": "2015-02-15",
+ "groups": [
+ {
+ "time": "04:58:00",
+ "height": "3.7"
+ },
+ {
+ "time": "17:32:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "17:27"
+ },
+ {
+ "date": "2015-02-16",
+ "groups": [
+ {
+ "time": "06:05:00",
+ "height": "4.1"
+ },
+ {
+ "time": "18:33:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "17:29"
+ },
+ {
+ "date": "2015-02-17",
+ "groups": [
+ {
+ "time": "07:00:00",
+ "height": "4.7"
+ },
+ {
+ "time": "19:25:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "17:31"
+ },
+ {
+ "date": "2015-02-18",
+ "groups": [
+ {
+ "time": "07:47:00",
+ "height": "5.2"
+ },
+ {
+ "time": "20:12:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "17:33"
+ },
+ {
+ "date": "2015-02-19",
+ "groups": [
+ {
+ "time": "08:34:00",
+ "height": "5.6"
+ },
+ {
+ "time": "20:56:00",
+ "height": "5.5"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "17:35"
+ },
+ {
+ "date": "2015-02-20",
+ "groups": [
+ {
+ "time": "09:17:00",
+ "height": "5.8"
+ },
+ {
+ "time": "21:38:00",
+ "height": "5.6"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "17:37"
+ },
+ {
+ "date": "2015-02-21",
+ "groups": [
+ {
+ "time": "09:59:00",
+ "height": "5.9"
+ },
+ {
+ "time": "22:20:00",
+ "height": "5.6"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "17:38"
+ },
+ {
+ "date": "2015-02-22",
+ "groups": [
+ {
+ "time": "10:44:00",
+ "height": "5.7"
+ },
+ {
+ "time": "23:07:00",
+ "height": "5.3"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "17:40"
+ },
+ {
+ "date": "2015-02-23",
+ "groups": [
+ {
+ "time": "11:32:00",
+ "height": "5.4"
+ },
+ {
+ "time": "23:52:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "17:42"
+ },
+ {
+ "date": "2015-02-24",
+ "groups": [
+ {
+ "time": "12:20:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "17:44"
+ },
+ {
+ "date": "2015-02-25",
+ "groups": [
+ {
+ "time": "00:41:00",
+ "height": "4.5"
+ },
+ {
+ "time": "13:12:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "17:46"
+ },
+ {
+ "date": "2015-02-26",
+ "groups": [
+ {
+ "time": "01:36:00",
+ "height": "4.0"
+ },
+ {
+ "time": "14:13:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "17:48"
+ },
+ {
+ "date": "2015-02-27",
+ "groups": [
+ {
+ "time": "02:48:00",
+ "height": "3.6"
+ },
+ {
+ "time": "15:35:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "17:50"
+ },
+ {
+ "date": "2015-02-28",
+ "groups": [
+ {
+ "time": "04:16:00",
+ "height": "3.4"
+ },
+ {
+ "time": "16:57:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "17:52"
+ },
+ {
+ "date": "2015-03-01",
+ "groups": [
+ {
+ "time": "05:36:00",
+ "height": "3.6"
+ },
+ {
+ "time": "18:08:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "17:54"
+ },
+ {
+ "date": "2015-03-02",
+ "groups": [
+ {
+ "time": "06:34:00",
+ "height": "4.0"
+ },
+ {
+ "time": "18:59:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "17:55"
+ },
+ {
+ "date": "2015-03-03",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.4"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "17:57"
+ },
+ {
+ "date": "2015-03-04",
+ "groups": [
+ {
+ "time": "07:54:00",
+ "height": "4.6"
+ },
+ {
+ "time": "20:11:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "17:59"
+ },
+ {
+ "date": "2015-03-05",
+ "groups": [
+ {
+ "time": "08:27:00",
+ "height": "4.8"
+ },
+ {
+ "time": "20:43:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2015-03-06",
+ "groups": [
+ {
+ "time": "08:56:00",
+ "height": "4.9"
+ },
+ {
+ "time": "21:11:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2015-03-07",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "5.0"
+ },
+ {
+ "time": "21:38:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "18:05"
+ },
+ {
+ "date": "2015-03-08",
+ "groups": [
+ {
+ "time": "09:52:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:06:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2015-03-09",
+ "groups": [
+ {
+ "time": "10:19:00",
+ "height": "4.8"
+ },
+ {
+ "time": "22:37:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2015-03-10",
+ "groups": [
+ {
+ "time": "10:52:00",
+ "height": "4.7"
+ },
+ {
+ "time": "23:09:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2015-03-11",
+ "groups": [
+ {
+ "time": "11:26:00",
+ "height": "4.5"
+ },
+ {
+ "time": "23:46:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "18:12"
+ },
+ {
+ "date": "2015-03-12",
+ "groups": [
+ {
+ "time": "12:05:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2015-03-13",
+ "groups": [
+ {
+ "time": "00:30:00",
+ "height": "4.0"
+ },
+ {
+ "time": "12:55:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2015-03-14",
+ "groups": [
+ {
+ "time": "01:30:00",
+ "height": "3.7"
+ },
+ {
+ "time": "14:07:00",
+ "height": "3.5"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2015-03-15",
+ "groups": [
+ {
+ "time": "02:57:00",
+ "height": "3.5"
+ },
+ {
+ "time": "15:43:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2015-03-16",
+ "groups": [
+ {
+ "time": "04:28:00",
+ "height": "3.6"
+ },
+ {
+ "time": "17:08:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2015-03-17",
+ "groups": [
+ {
+ "time": "05:41:00",
+ "height": "4.1"
+ },
+ {
+ "time": "18:13:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "18:23"
+ },
+ {
+ "date": "2015-03-18",
+ "groups": [
+ {
+ "time": "06:39:00",
+ "height": "4.7"
+ },
+ {
+ "time": "19:07:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2015-03-19",
+ "groups": [
+ {
+ "time": "07:29:00",
+ "height": "5.2"
+ },
+ {
+ "time": "19:53:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "18:27"
+ },
+ {
+ "date": "2015-03-20",
+ "groups": [
+ {
+ "time": "08:15:00",
+ "height": "5.6"
+ },
+ {
+ "time": "20:36:00",
+ "height": "5.6"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2015-03-21",
+ "groups": [
+ {
+ "time": "08:58:00",
+ "height": "5.8"
+ },
+ {
+ "time": "21:19:00",
+ "height": "5.7"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2015-03-22",
+ "groups": [
+ {
+ "time": "09:39:00",
+ "height": "5.8"
+ },
+ {
+ "time": "21:58:00",
+ "height": "5.6"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2015-03-23",
+ "groups": [
+ {
+ "time": "10:20:00",
+ "height": "5.6"
+ },
+ {
+ "time": "22:41:00",
+ "height": "5.4"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "18:34"
+ },
+ {
+ "date": "2015-03-24",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "5.3"
+ },
+ {
+ "time": "23:25:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2015-03-25",
+ "groups": [
+ {
+ "time": "11:51:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2015-03-26",
+ "groups": [
+ {
+ "time": "00:11:00",
+ "height": "4.5"
+ },
+ {
+ "time": "12:40:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "18:39"
+ },
+ {
+ "date": "2015-03-27",
+ "groups": [
+ {
+ "time": "01:03:00",
+ "height": "4.0"
+ },
+ {
+ "time": "13:38:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "18:41"
+ },
+ {
+ "date": "2015-03-28",
+ "groups": [
+ {
+ "time": "02:09:00",
+ "height": "3.6"
+ },
+ {
+ "time": "14:56:00",
+ "height": "3.3"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "18:43"
+ },
+ {
+ "date": "2015-03-29",
+ "groups": [
+ {
+ "time": "03:39:00",
+ "height": "3.4"
+ },
+ {
+ "time": "16:24:00",
+ "height": "3.3"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2015-03-30",
+ "groups": [
+ {
+ "time": "06:01:00",
+ "height": "3.5"
+ },
+ {
+ "time": "18:38:00",
+ "height": "3.5"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "19:46"
+ },
+ {
+ "date": "2015-03-31",
+ "groups": [
+ {
+ "time": "07:03:00",
+ "height": "3.8"
+ },
+ {
+ "time": "19:29:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "19:48"
+ },
+ {
+ "date": "2015-04-01",
+ "groups": [
+ {
+ "time": "07:49:00",
+ "height": "4.2"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2015-04-02",
+ "groups": [
+ {
+ "time": "08:26:00",
+ "height": "4.5"
+ },
+ {
+ "time": "20:44:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2015-04-03",
+ "groups": [
+ {
+ "time": "08:58:00",
+ "height": "4.7"
+ },
+ {
+ "time": "21:15:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2015-04-04",
+ "groups": [
+ {
+ "time": "09:29:00",
+ "height": "4.8"
+ },
+ {
+ "time": "21:44:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:55"
+ },
+ {
+ "date": "2015-04-05",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:12:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2015-04-06",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:40:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2015-04-07",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "4.9"
+ },
+ {
+ "time": "23:10:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2015-04-08",
+ "groups": [
+ {
+ "time": "11:26:00",
+ "height": "4.7"
+ },
+ {
+ "time": "23:44:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "20:02"
+ },
+ {
+ "date": "2015-04-09",
+ "groups": [
+ {
+ "time": "12:03:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "20:04"
+ },
+ {
+ "date": "2015-04-10",
+ "groups": [
+ {
+ "time": "00:23:00",
+ "height": "4.5"
+ },
+ {
+ "time": "12:45:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2015-04-11",
+ "groups": [
+ {
+ "time": "01:10:00",
+ "height": "4.2"
+ },
+ {
+ "time": "13:37:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2015-04-12",
+ "groups": [
+ {
+ "time": "02:10:00",
+ "height": "3.9"
+ },
+ {
+ "time": "14:48:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2015-04-13",
+ "groups": [
+ {
+ "time": "03:34:00",
+ "height": "3.7"
+ },
+ {
+ "time": "16:20:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:11"
+ },
+ {
+ "date": "2015-04-14",
+ "groups": [
+ {
+ "time": "05:04:00",
+ "height": "3.8"
+ },
+ {
+ "time": "17:44:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2015-04-15",
+ "groups": [
+ {
+ "time": "06:17:00",
+ "height": "4.2"
+ },
+ {
+ "time": "18:50:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:15"
+ },
+ {
+ "date": "2015-04-16",
+ "groups": [
+ {
+ "time": "07:16:00",
+ "height": "4.7"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2015-04-17",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "5.1"
+ },
+ {
+ "time": "20:31:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2015-04-18",
+ "groups": [
+ {
+ "time": "08:53:00",
+ "height": "5.4"
+ },
+ {
+ "time": "21:16:00",
+ "height": "5.4"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:20"
+ },
+ {
+ "date": "2015-04-19",
+ "groups": [
+ {
+ "time": "09:37:00",
+ "height": "5.6"
+ },
+ {
+ "time": "21:57:00",
+ "height": "5.5"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2015-04-20",
+ "groups": [
+ {
+ "time": "10:19:00",
+ "height": "5.6"
+ },
+ {
+ "time": "22:38:00",
+ "height": "5.5"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2015-04-21",
+ "groups": [
+ {
+ "time": "10:59:00",
+ "height": "5.4"
+ },
+ {
+ "time": "23:17:00",
+ "height": "5.3"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2015-04-22",
+ "groups": [
+ {
+ "time": "11:42:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2015-04-23",
+ "groups": [
+ {
+ "time": "00:00:00",
+ "height": "4.9"
+ },
+ {
+ "time": "12:26:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2015-04-24",
+ "groups": [
+ {
+ "time": "00:45:00",
+ "height": "4.5"
+ },
+ {
+ "time": "13:13:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2015-04-25",
+ "groups": [
+ {
+ "time": "01:34:00",
+ "height": "4.1"
+ },
+ {
+ "time": "14:06:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2015-04-26",
+ "groups": [
+ {
+ "time": "02:32:00",
+ "height": "3.7"
+ },
+ {
+ "time": "15:13:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:34"
+ },
+ {
+ "date": "2015-04-27",
+ "groups": [
+ {
+ "time": "03:49:00",
+ "height": "3.4"
+ },
+ {
+ "time": "16:39:00",
+ "height": "3.2"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2015-04-28",
+ "groups": [
+ {
+ "time": "05:13:00",
+ "height": "3.4"
+ },
+ {
+ "time": "17:53:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2015-04-29",
+ "groups": [
+ {
+ "time": "06:19:00",
+ "height": "3.7"
+ },
+ {
+ "time": "18:49:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2015-04-30",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "4.0"
+ },
+ {
+ "time": "19:33:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2015-05-01",
+ "groups": [
+ {
+ "time": "07:49:00",
+ "height": "4.3"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2015-05-02",
+ "groups": [
+ {
+ "time": "08:25:00",
+ "height": "4.5"
+ },
+ {
+ "time": "20:43:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2015-05-03",
+ "groups": [
+ {
+ "time": "08:58:00",
+ "height": "4.7"
+ },
+ {
+ "time": "21:15:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2015-05-04",
+ "groups": [
+ {
+ "time": "09:30:00",
+ "height": "4.8"
+ },
+ {
+ "time": "21:46:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2015-05-05",
+ "groups": [
+ {
+ "time": "10:01:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2015-05-06",
+ "groups": [
+ {
+ "time": "10:33:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:50:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2015-05-07",
+ "groups": [
+ {
+ "time": "11:07:00",
+ "height": "4.8"
+ },
+ {
+ "time": "23:27:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2015-05-08",
+ "groups": [
+ {
+ "time": "11:47:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2015-05-09",
+ "groups": [
+ {
+ "time": "00:11:00",
+ "height": "4.6"
+ },
+ {
+ "time": "12:35:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2015-05-10",
+ "groups": [
+ {
+ "time": "01:01:00",
+ "height": "4.4"
+ },
+ {
+ "time": "13:30:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2015-05-11",
+ "groups": [
+ {
+ "time": "02:04:00",
+ "height": "4.1"
+ },
+ {
+ "time": "14:40:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2015-05-12",
+ "groups": [
+ {
+ "time": "03:19:00",
+ "height": "4.0"
+ },
+ {
+ "time": "16:01:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2015-05-13",
+ "groups": [
+ {
+ "time": "04:41:00",
+ "height": "4.0"
+ },
+ {
+ "time": "17:19:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2015-05-14",
+ "groups": [
+ {
+ "time": "05:51:00",
+ "height": "4.3"
+ },
+ {
+ "time": "18:25:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2015-05-15",
+ "groups": [
+ {
+ "time": "06:51:00",
+ "height": "4.6"
+ },
+ {
+ "time": "19:20:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2015-05-16",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "4.9"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2015-05-17",
+ "groups": [
+ {
+ "time": "08:32:00",
+ "height": "5.1"
+ },
+ {
+ "time": "20:55:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2015-05-18",
+ "groups": [
+ {
+ "time": "09:18:00",
+ "height": "5.3"
+ },
+ {
+ "time": "21:37:00",
+ "height": "5.3"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2015-05-19",
+ "groups": [
+ {
+ "time": "10:00:00",
+ "height": "5.3"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.3"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2015-05-20",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "5.1"
+ },
+ {
+ "time": "22:57:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2015-05-21",
+ "groups": [
+ {
+ "time": "11:20:00",
+ "height": "4.9"
+ },
+ {
+ "time": "23:39:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2015-05-22",
+ "groups": [
+ {
+ "time": "12:04:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2015-05-23",
+ "groups": [
+ {
+ "time": "00:22:00",
+ "height": "4.6"
+ },
+ {
+ "time": "12:48:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2015-05-24",
+ "groups": [
+ {
+ "time": "01:07:00",
+ "height": "4.2"
+ },
+ {
+ "time": "13:36:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2015-05-25",
+ "groups": [
+ {
+ "time": "01:56:00",
+ "height": "3.9"
+ },
+ {
+ "time": "14:30:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2015-05-26",
+ "groups": [
+ {
+ "time": "02:56:00",
+ "height": "3.6"
+ },
+ {
+ "time": "15:38:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2015-05-27",
+ "groups": [
+ {
+ "time": "04:10:00",
+ "height": "3.5"
+ },
+ {
+ "time": "16:54:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2015-05-28",
+ "groups": [
+ {
+ "time": "05:22:00",
+ "height": "3.5"
+ },
+ {
+ "time": "17:57:00",
+ "height": "3.5"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2015-05-29",
+ "groups": [
+ {
+ "time": "06:20:00",
+ "height": "3.7"
+ },
+ {
+ "time": "18:48:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2015-05-30",
+ "groups": [
+ {
+ "time": "07:07:00",
+ "height": "4.0"
+ },
+ {
+ "time": "19:31:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2015-05-31",
+ "groups": [
+ {
+ "time": "07:48:00",
+ "height": "4.3"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2015-06-01",
+ "groups": [
+ {
+ "time": "08:26:00",
+ "height": "4.5"
+ },
+ {
+ "time": "20:46:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2015-06-02",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "4.7"
+ },
+ {
+ "time": "21:21:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2015-06-03",
+ "groups": [
+ {
+ "time": "09:39:00",
+ "height": "4.8"
+ },
+ {
+ "time": "21:58:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2015-06-04",
+ "groups": [
+ {
+ "time": "10:17:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:36:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2015-06-05",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "4.9"
+ },
+ {
+ "time": "23:16:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2015-06-06",
+ "groups": [
+ {
+ "time": "11:40:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2015-06-07",
+ "groups": [
+ {
+ "time": "00:04:00",
+ "height": "4.9"
+ },
+ {
+ "time": "12:30:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2015-06-08",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "4.7"
+ },
+ {
+ "time": "13:25:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2015-06-09",
+ "groups": [
+ {
+ "time": "01:55:00",
+ "height": "4.5"
+ },
+ {
+ "time": "14:27:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2015-06-10",
+ "groups": [
+ {
+ "time": "03:01:00",
+ "height": "4.3"
+ },
+ {
+ "time": "15:38:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2015-06-11",
+ "groups": [
+ {
+ "time": "04:15:00",
+ "height": "4.2"
+ },
+ {
+ "time": "16:52:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2015-06-12",
+ "groups": [
+ {
+ "time": "05:23:00",
+ "height": "4.2"
+ },
+ {
+ "time": "17:57:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2015-06-13",
+ "groups": [
+ {
+ "time": "06:26:00",
+ "height": "4.4"
+ },
+ {
+ "time": "18:57:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2015-06-14",
+ "groups": [
+ {
+ "time": "07:24:00",
+ "height": "4.6"
+ },
+ {
+ "time": "19:50:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2015-06-15",
+ "groups": [
+ {
+ "time": "08:15:00",
+ "height": "4.8"
+ },
+ {
+ "time": "20:38:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2015-06-16",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "4.9"
+ },
+ {
+ "time": "21:22:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2015-06-17",
+ "groups": [
+ {
+ "time": "09:45:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:03:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2015-06-18",
+ "groups": [
+ {
+ "time": "10:24:00",
+ "height": "4.9"
+ },
+ {
+ "time": "22:41:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2015-06-19",
+ "groups": [
+ {
+ "time": "11:02:00",
+ "height": "4.8"
+ },
+ {
+ "time": "23:18:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2015-06-20",
+ "groups": [
+ {
+ "time": "11:42:00",
+ "height": "4.6"
+ },
+ {
+ "time": "23:58:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2015-06-21",
+ "groups": [
+ {
+ "time": "12:22:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2015-06-22",
+ "groups": [
+ {
+ "time": "00:38:00",
+ "height": "4.4"
+ },
+ {
+ "time": "13:03:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2015-06-23",
+ "groups": [
+ {
+ "time": "01:21:00",
+ "height": "4.2"
+ },
+ {
+ "time": "13:48:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2015-06-24",
+ "groups": [
+ {
+ "time": "02:08:00",
+ "height": "3.9"
+ },
+ {
+ "time": "14:40:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2015-06-25",
+ "groups": [
+ {
+ "time": "03:04:00",
+ "height": "3.7"
+ },
+ {
+ "time": "15:43:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2015-06-26",
+ "groups": [
+ {
+ "time": "04:11:00",
+ "height": "3.5"
+ },
+ {
+ "time": "16:53:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2015-06-27",
+ "groups": [
+ {
+ "time": "05:21:00",
+ "height": "3.5"
+ },
+ {
+ "time": "17:57:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2015-06-28",
+ "groups": [
+ {
+ "time": "06:20:00",
+ "height": "3.7"
+ },
+ {
+ "time": "18:51:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2015-06-29",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.0"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2015-06-30",
+ "groups": [
+ {
+ "time": "07:57:00",
+ "height": "4.3"
+ },
+ {
+ "time": "20:19:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2015-07-01",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "4.6"
+ },
+ {
+ "time": "21:01:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2015-07-02",
+ "groups": [
+ {
+ "time": "09:21:00",
+ "height": "4.8"
+ },
+ {
+ "time": "21:42:00",
+ "height": "5.1"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2015-07-03",
+ "groups": [
+ {
+ "time": "10:03:00",
+ "height": "5.0"
+ },
+ {
+ "time": "22:23:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2015-07-04",
+ "groups": [
+ {
+ "time": "10:44:00",
+ "height": "5.1"
+ },
+ {
+ "time": "23:05:00",
+ "height": "5.3"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2015-07-05",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "5.0"
+ },
+ {
+ "time": "23:54:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2015-07-06",
+ "groups": [
+ {
+ "time": "12:20:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2015-07-07",
+ "groups": [
+ {
+ "time": "00:46:00",
+ "height": "5.0"
+ },
+ {
+ "time": "13:12:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2015-07-08",
+ "groups": [
+ {
+ "time": "01:40:00",
+ "height": "4.8"
+ },
+ {
+ "time": "14:08:00",
+ "height": "4.4"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2015-07-09",
+ "groups": [
+ {
+ "time": "02:40:00",
+ "height": "4.5"
+ },
+ {
+ "time": "15:11:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2015-07-10",
+ "groups": [
+ {
+ "time": "03:46:00",
+ "height": "4.2"
+ },
+ {
+ "time": "16:23:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2015-07-11",
+ "groups": [
+ {
+ "time": "04:57:00",
+ "height": "4.1"
+ },
+ {
+ "time": "17:32:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2015-07-12",
+ "groups": [
+ {
+ "time": "06:04:00",
+ "height": "4.1"
+ },
+ {
+ "time": "18:38:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2015-07-13",
+ "groups": [
+ {
+ "time": "07:08:00",
+ "height": "4.2"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2015-07-14",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "4.4"
+ },
+ {
+ "time": "20:27:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2015-07-15",
+ "groups": [
+ {
+ "time": "08:50:00",
+ "height": "4.6"
+ },
+ {
+ "time": "21:10:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2015-07-16",
+ "groups": [
+ {
+ "time": "09:32:00",
+ "height": "4.7"
+ },
+ {
+ "time": "21:49:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2015-07-17",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "4.8"
+ },
+ {
+ "time": "22:24:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2015-07-18",
+ "groups": [
+ {
+ "time": "10:43:00",
+ "height": "4.7"
+ },
+ {
+ "time": "22:57:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2015-07-19",
+ "groups": [
+ {
+ "time": "11:16:00",
+ "height": "4.7"
+ },
+ {
+ "time": "23:32:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2015-07-20",
+ "groups": [
+ {
+ "time": "11:53:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2015-07-21",
+ "groups": [
+ {
+ "time": "00:08:00",
+ "height": "4.6"
+ },
+ {
+ "time": "12:29:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2015-07-22",
+ "groups": [
+ {
+ "time": "00:44:00",
+ "height": "4.4"
+ },
+ {
+ "time": "13:07:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2015-07-23",
+ "groups": [
+ {
+ "time": "01:24:00",
+ "height": "4.1"
+ },
+ {
+ "time": "13:49:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2015-07-24",
+ "groups": [
+ {
+ "time": "02:08:00",
+ "height": "3.9"
+ },
+ {
+ "time": "14:39:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2015-07-25",
+ "groups": [
+ {
+ "time": "03:05:00",
+ "height": "3.6"
+ },
+ {
+ "time": "15:44:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2015-07-26",
+ "groups": [
+ {
+ "time": "04:15:00",
+ "height": "3.5"
+ },
+ {
+ "time": "17:00:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2015-07-27",
+ "groups": [
+ {
+ "time": "05:30:00",
+ "height": "3.5"
+ },
+ {
+ "time": "18:09:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2015-07-28",
+ "groups": [
+ {
+ "time": "06:36:00",
+ "height": "3.8"
+ },
+ {
+ "time": "19:07:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2015-07-29",
+ "groups": [
+ {
+ "time": "07:30:00",
+ "height": "4.2"
+ },
+ {
+ "time": "19:57:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2015-07-30",
+ "groups": [
+ {
+ "time": "08:19:00",
+ "height": "4.6"
+ },
+ {
+ "time": "20:42:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2015-07-31",
+ "groups": [
+ {
+ "time": "09:04:00",
+ "height": "4.9"
+ },
+ {
+ "time": "21:26:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2015-08-01",
+ "groups": [
+ {
+ "time": "09:49:00",
+ "height": "5.2"
+ },
+ {
+ "time": "22:09:00",
+ "height": "5.5"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2015-08-02",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "5.3"
+ },
+ {
+ "time": "22:52:00",
+ "height": "5.6"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2015-08-03",
+ "groups": [
+ {
+ "time": "11:14:00",
+ "height": "5.3"
+ },
+ {
+ "time": "23:38:00",
+ "height": "5.5"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2015-08-04",
+ "groups": [
+ {
+ "time": "12:03:00",
+ "height": "5.2"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2015-08-05",
+ "groups": [
+ {
+ "time": "00:28:00",
+ "height": "5.3"
+ },
+ {
+ "time": "12:51:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2015-08-06",
+ "groups": [
+ {
+ "time": "01:18:00",
+ "height": "5.0"
+ },
+ {
+ "time": "13:43:00",
+ "height": "4.6"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2015-08-07",
+ "groups": [
+ {
+ "time": "02:13:00",
+ "height": "4.6"
+ },
+ {
+ "time": "14:41:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2015-08-08",
+ "groups": [
+ {
+ "time": "03:17:00",
+ "height": "4.1"
+ },
+ {
+ "time": "15:51:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2015-08-09",
+ "groups": [
+ {
+ "time": "04:31:00",
+ "height": "3.8"
+ },
+ {
+ "time": "17:09:00",
+ "height": "3.7"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2015-08-10",
+ "groups": [
+ {
+ "time": "05:46:00",
+ "height": "3.8"
+ },
+ {
+ "time": "18:24:00",
+ "height": "3.9"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2015-08-11",
+ "groups": [
+ {
+ "time": "06:57:00",
+ "height": "3.9"
+ },
+ {
+ "time": "19:27:00",
+ "height": "4.2"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2015-08-12",
+ "groups": [
+ {
+ "time": "07:53:00",
+ "height": "4.2"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2015-08-13",
+ "groups": [
+ {
+ "time": "08:38:00",
+ "height": "4.5"
+ },
+ {
+ "time": "20:56:00",
+ "height": "4.7"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2015-08-14",
+ "groups": [
+ {
+ "time": "09:16:00",
+ "height": "4.7"
+ },
+ {
+ "time": "21:32:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2015-08-15",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "4.8"
+ },
+ {
+ "time": "22:05:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2015-08-16",
+ "groups": [
+ {
+ "time": "10:22:00",
+ "height": "4.8"
+ },
+ {
+ "time": "22:35:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2015-08-17",
+ "groups": [
+ {
+ "time": "10:51:00",
+ "height": "4.8"
+ },
+ {
+ "time": "23:04:00",
+ "height": "4.9"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2015-08-18",
+ "groups": [
+ {
+ "time": "11:21:00",
+ "height": "4.7"
+ },
+ {
+ "time": "23:36:00",
+ "height": "4.8"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2015-08-19",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2015-08-20",
+ "groups": [
+ {
+ "time": "00:08:00",
+ "height": "4.6"
+ },
+ {
+ "time": "12:28:00",
+ "height": "4.3"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2015-08-21",
+ "groups": [
+ {
+ "time": "00:43:00",
+ "height": "4.3"
+ },
+ {
+ "time": "13:03:00",
+ "height": "4.1"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2015-08-22",
+ "groups": [
+ {
+ "time": "01:22:00",
+ "height": "4.0"
+ },
+ {
+ "time": "13:48:00",
+ "height": "3.8"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2015-08-23",
+ "groups": [
+ {
+ "time": "02:10:00",
+ "height": "3.7"
+ },
+ {
+ "time": "14:45:00",
+ "height": "3.5"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2015-08-24",
+ "groups": [
+ {
+ "time": "03:18:00",
+ "height": "3.5"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.4"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2015-08-25",
+ "groups": [
+ {
+ "time": "04:45:00",
+ "height": "3.4"
+ },
+ {
+ "time": "17:32:00",
+ "height": "3.6"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2015-08-26",
+ "groups": [
+ {
+ "time": "06:06:00",
+ "height": "3.6"
+ },
+ {
+ "time": "18:41:00",
+ "height": "4.0"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:20"
+ },
+ {
+ "date": "2015-08-27",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "4.1"
+ },
+ {
+ "time": "19:35:00",
+ "height": "4.5"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2015-08-28",
+ "groups": [
+ {
+ "time": "08:00:00",
+ "height": "4.6"
+ },
+ {
+ "time": "20:23:00",
+ "height": "5.0"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2015-08-29",
+ "groups": [
+ {
+ "time": "08:47:00",
+ "height": "5.1"
+ },
+ {
+ "time": "21:08:00",
+ "height": "5.4"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2015-08-30",
+ "groups": [
+ {
+ "time": "09:32:00",
+ "height": "5.4"
+ },
+ {
+ "time": "21:51:00",
+ "height": "5.7"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:11"
+ },
+ {
+ "date": "2015-08-31",
+ "groups": [
+ {
+ "time": "10:13:00",
+ "height": "5.6"
+ },
+ {
+ "time": "22:34:00",
+ "height": "5.8"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2015-09-01",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "5.590"
+ },
+ {
+ "time": "23:17:00",
+ "height": "5.747"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2015-09-02",
+ "groups": [
+ {
+ "time": "11:40:00",
+ "height": "5.422"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:04"
+ },
+ {
+ "date": "2015-09-03",
+ "groups": [
+ {
+ "time": "00:05:00",
+ "height": "5.475"
+ },
+ {
+ "time": "12:26:00",
+ "height": "5.100"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:02"
+ },
+ {
+ "date": "2015-09-04",
+ "groups": [
+ {
+ "time": "00:54:00",
+ "height": "5.048"
+ },
+ {
+ "time": "13:15:00",
+ "height": "4.667"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2015-09-05",
+ "groups": [
+ {
+ "time": "01:46:00",
+ "height": "4.527"
+ },
+ {
+ "time": "14:10:00",
+ "height": "4.193"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2015-09-06",
+ "groups": [
+ {
+ "time": "02:46:00",
+ "height": "4.002"
+ },
+ {
+ "time": "15:20:00",
+ "height": "3.776"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "19:55"
+ },
+ {
+ "date": "2015-09-07",
+ "groups": [
+ {
+ "time": "04:03:00",
+ "height": "3.608"
+ },
+ {
+ "time": "16:47:00",
+ "height": "3.575"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2015-09-08",
+ "groups": [
+ {
+ "time": "05:28:00",
+ "height": "3.517"
+ },
+ {
+ "time": "18:09:00",
+ "height": "3.714"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2015-09-09",
+ "groups": [
+ {
+ "time": "06:43:00",
+ "height": "3.750"
+ },
+ {
+ "time": "19:12:00",
+ "height": "4.066"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2015-09-10",
+ "groups": [
+ {
+ "time": "07:38:00",
+ "height": "4.110"
+ },
+ {
+ "time": "19:59:00",
+ "height": "4.429"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "19:45"
+ },
+ {
+ "date": "2015-09-11",
+ "groups": [
+ {
+ "time": "08:19:00",
+ "height": "4.438"
+ },
+ {
+ "time": "20:37:00",
+ "height": "4.708"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:43"
+ },
+ {
+ "date": "2015-09-12",
+ "groups": [
+ {
+ "time": "08:55:00",
+ "height": "4.679"
+ },
+ {
+ "time": "21:10:00",
+ "height": "4.887"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:40"
+ },
+ {
+ "date": "2015-09-13",
+ "groups": [
+ {
+ "time": "09:27:00",
+ "height": "4.829"
+ },
+ {
+ "time": "21:41:00",
+ "height": "4.981"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "19:38"
+ },
+ {
+ "date": "2015-09-14",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "4.903"
+ },
+ {
+ "time": "22:09:00",
+ "height": "5.008"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:35"
+ },
+ {
+ "date": "2015-09-15",
+ "groups": [
+ {
+ "time": "10:24:00",
+ "height": "4.913"
+ },
+ {
+ "time": "22:37:00",
+ "height": "4.974"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:33"
+ },
+ {
+ "date": "2015-09-16",
+ "groups": [
+ {
+ "time": "10:52:00",
+ "height": "4.861"
+ },
+ {
+ "time": "23:04:00",
+ "height": "4.879"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:31"
+ },
+ {
+ "date": "2015-09-17",
+ "groups": [
+ {
+ "time": "11:20:00",
+ "height": "4.742"
+ },
+ {
+ "time": "23:34:00",
+ "height": "4.714"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "19:28"
+ },
+ {
+ "date": "2015-09-18",
+ "groups": [
+ {
+ "time": "11:53:00",
+ "height": "4.555"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "19:26"
+ },
+ {
+ "date": "2015-09-19",
+ "groups": [
+ {
+ "time": "00:08:00",
+ "height": "4.480"
+ },
+ {
+ "time": "12:28:00",
+ "height": "4.306"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:23"
+ },
+ {
+ "date": "2015-09-20",
+ "groups": [
+ {
+ "time": "00:45:00",
+ "height": "4.188"
+ },
+ {
+ "time": "13:09:00",
+ "height": "4.012"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "19:21"
+ },
+ {
+ "date": "2015-09-21",
+ "groups": [
+ {
+ "time": "01:31:00",
+ "height": "3.859"
+ },
+ {
+ "time": "14:04:00",
+ "height": "3.710"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "19:19"
+ },
+ {
+ "date": "2015-09-22",
+ "groups": [
+ {
+ "time": "02:36:00",
+ "height": "3.546"
+ },
+ {
+ "time": "15:24:00",
+ "height": "3.502"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "19:16"
+ },
+ {
+ "date": "2015-09-23",
+ "groups": [
+ {
+ "time": "04:09:00",
+ "height": "3.409"
+ },
+ {
+ "time": "17:00:00",
+ "height": "3.592"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "19:14"
+ },
+ {
+ "date": "2015-09-24",
+ "groups": [
+ {
+ "time": "05:39:00",
+ "height": "3.638"
+ },
+ {
+ "time": "18:15:00",
+ "height": "4.022"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "19:11"
+ },
+ {
+ "date": "2015-09-25",
+ "groups": [
+ {
+ "time": "06:47:00",
+ "height": "4.139"
+ },
+ {
+ "time": "19:13:00",
+ "height": "4.592"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "19:09"
+ },
+ {
+ "date": "2015-09-26",
+ "groups": [
+ {
+ "time": "07:41:00",
+ "height": "4.698"
+ },
+ {
+ "time": "20:02:00",
+ "height": "5.139"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "19:07"
+ },
+ {
+ "date": "2015-09-27",
+ "groups": [
+ {
+ "time": "08:28:00",
+ "height": "5.186"
+ },
+ {
+ "time": "20:48:00",
+ "height": "5.571"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "19:04"
+ },
+ {
+ "date": "2015-09-28",
+ "groups": [
+ {
+ "time": "09:11:00",
+ "height": "5.536"
+ },
+ {
+ "time": "21:32:00",
+ "height": "5.838"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "19:02"
+ },
+ {
+ "date": "2015-09-29",
+ "groups": [
+ {
+ "time": "09:53:00",
+ "height": "5.717"
+ },
+ {
+ "time": "22:14:00",
+ "height": "5.913"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "18:59"
+ },
+ {
+ "date": "2015-09-30",
+ "groups": [
+ {
+ "time": "10:35:00",
+ "height": "5.714"
+ },
+ {
+ "time": "22:55:00",
+ "height": "5.786"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "18:57"
+ },
+ {
+ "date": "2015-10-01",
+ "groups": [
+ {
+ "time": "11:15:00",
+ "height": "5.528"
+ },
+ {
+ "time": "23:41:00",
+ "height": "5.469"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "18:55"
+ },
+ {
+ "date": "2015-10-02",
+ "groups": [
+ {
+ "time": "12:02:00",
+ "height": "5.184"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "18:52"
+ },
+ {
+ "date": "2015-10-03",
+ "groups": [
+ {
+ "time": "00:29:00",
+ "height": "5.003"
+ },
+ {
+ "time": "12:49:00",
+ "height": "4.730"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "18:50"
+ },
+ {
+ "date": "2015-10-04",
+ "groups": [
+ {
+ "time": "01:18:00",
+ "height": "4.455"
+ },
+ {
+ "time": "13:42:00",
+ "height": "4.234"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "18:47"
+ },
+ {
+ "date": "2015-10-05",
+ "groups": [
+ {
+ "time": "02:17:00",
+ "height": "3.915"
+ },
+ {
+ "time": "14:48:00",
+ "height": "3.790"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "18:45"
+ },
+ {
+ "date": "2015-10-06",
+ "groups": [
+ {
+ "time": "03:32:00",
+ "height": "3.507"
+ },
+ {
+ "time": "16:16:00",
+ "height": "3.546"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "18:43"
+ },
+ {
+ "date": "2015-10-07",
+ "groups": [
+ {
+ "time": "05:03:00",
+ "height": "3.403"
+ },
+ {
+ "time": "17:41:00",
+ "height": "3.643"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2015-10-08",
+ "groups": [
+ {
+ "time": "06:18:00",
+ "height": "3.635"
+ },
+ {
+ "time": "18:46:00",
+ "height": "3.971"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2015-10-09",
+ "groups": [
+ {
+ "time": "07:13:00",
+ "height": "4.010"
+ },
+ {
+ "time": "19:33:00",
+ "height": "4.331"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2015-10-10",
+ "groups": [
+ {
+ "time": "07:54:00",
+ "height": "4.364"
+ },
+ {
+ "time": "20:11:00",
+ "height": "4.625"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2015-10-11",
+ "groups": [
+ {
+ "time": "08:29:00",
+ "height": "4.641"
+ },
+ {
+ "time": "20:44:00",
+ "height": "4.829"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2015-10-12",
+ "groups": [
+ {
+ "time": "09:01:00",
+ "height": "4.831"
+ },
+ {
+ "time": "21:14:00",
+ "height": "4.952"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2015-10-13",
+ "groups": [
+ {
+ "time": "09:30:00",
+ "height": "4.945"
+ },
+ {
+ "time": "21:43:00",
+ "height": "5.007"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "18:27"
+ },
+ {
+ "date": "2015-10-14",
+ "groups": [
+ {
+ "time": "09:58:00",
+ "height": "4.994"
+ },
+ {
+ "time": "22:11:00",
+ "height": "5.004"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2015-10-15",
+ "groups": [
+ {
+ "time": "10:26:00",
+ "height": "4.981"
+ },
+ {
+ "time": "22:38:00",
+ "height": "4.938"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2015-10-16",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "4.899"
+ },
+ {
+ "time": "23:08:00",
+ "height": "4.803"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2015-10-17",
+ "groups": [
+ {
+ "time": "11:26:00",
+ "height": "4.743"
+ },
+ {
+ "time": "23:42:00",
+ "height": "4.597"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2015-10-18",
+ "groups": [
+ {
+ "time": "12:03:00",
+ "height": "4.517"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2015-10-19",
+ "groups": [
+ {
+ "time": "00:21:00",
+ "height": "4.325"
+ },
+ {
+ "time": "12:45:00",
+ "height": "4.237"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2015-10-20",
+ "groups": [
+ {
+ "time": "01:09:00",
+ "height": "4.007"
+ },
+ {
+ "time": "13:41:00",
+ "height": "3.940"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2015-10-21",
+ "groups": [
+ {
+ "time": "02:14:00",
+ "height": "3.702"
+ },
+ {
+ "time": "14:58:00",
+ "height": "3.725"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2015-10-22",
+ "groups": [
+ {
+ "time": "03:43:00",
+ "height": "3.555"
+ },
+ {
+ "time": "16:32:00",
+ "height": "3.769"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2015-10-23",
+ "groups": [
+ {
+ "time": "05:13:00",
+ "height": "3.738"
+ },
+ {
+ "time": "17:49:00",
+ "height": "4.127"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2015-10-24",
+ "groups": [
+ {
+ "time": "06:23:00",
+ "height": "4.189"
+ },
+ {
+ "time": "18:49:00",
+ "height": "4.636"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2015-10-25",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.711"
+ },
+ {
+ "time": "19:41:00",
+ "height": "5.131"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2015-10-26",
+ "groups": [
+ {
+ "time": "07:06:00",
+ "height": "5.170"
+ },
+ {
+ "time": "19:28:00",
+ "height": "5.515"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "16:58"
+ },
+ {
+ "date": "2015-10-27",
+ "groups": [
+ {
+ "time": "07:50:00",
+ "height": "5.501"
+ },
+ {
+ "time": "20:12:00",
+ "height": "5.740"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "16:56"
+ },
+ {
+ "date": "2015-10-28",
+ "groups": [
+ {
+ "time": "08:34:00",
+ "height": "5.672"
+ },
+ {
+ "time": "20:55:00",
+ "height": "5.785"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "16:54"
+ },
+ {
+ "date": "2015-10-29",
+ "groups": [
+ {
+ "time": "09:15:00",
+ "height": "5.674"
+ },
+ {
+ "time": "21:37:00",
+ "height": "5.649"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2015-10-30",
+ "groups": [
+ {
+ "time": "09:55:00",
+ "height": "5.510"
+ },
+ {
+ "time": "22:19:00",
+ "height": "5.349"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2015-10-31",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "5.202"
+ },
+ {
+ "time": "23:07:00",
+ "height": "4.924"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2015-11-01",
+ "groups": [
+ {
+ "time": "11:26:00",
+ "height": "4.792"
+ },
+ {
+ "time": "23:56:00",
+ "height": "4.434"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2015-11-02",
+ "groups": [
+ {
+ "time": "12:17:00",
+ "height": "4.342"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2015-11-03",
+ "groups": [
+ {
+ "time": "00:50:00",
+ "height": "3.954"
+ },
+ {
+ "time": "13:17:00",
+ "height": "3.925"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2015-11-04",
+ "groups": [
+ {
+ "time": "01:56:00",
+ "height": "3.569"
+ },
+ {
+ "time": "14:32:00",
+ "height": "3.640"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2015-11-05",
+ "groups": [
+ {
+ "time": "03:19:00",
+ "height": "3.399"
+ },
+ {
+ "time": "15:57:00",
+ "height": "3.605"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2015-11-06",
+ "groups": [
+ {
+ "time": "04:37:00",
+ "height": "3.519"
+ },
+ {
+ "time": "17:04:00",
+ "height": "3.810"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2015-11-07",
+ "groups": [
+ {
+ "time": "05:35:00",
+ "height": "3.823"
+ },
+ {
+ "time": "17:57:00",
+ "height": "4.111"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2015-11-08",
+ "groups": [
+ {
+ "time": "06:21:00",
+ "height": "4.166"
+ },
+ {
+ "time": "18:38:00",
+ "height": "4.402"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2015-11-09",
+ "groups": [
+ {
+ "time": "06:59:00",
+ "height": "4.470"
+ },
+ {
+ "time": "19:14:00",
+ "height": "4.636"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2015-11-10",
+ "groups": [
+ {
+ "time": "07:31:00",
+ "height": "4.710"
+ },
+ {
+ "time": "19:47:00",
+ "height": "4.804"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2015-11-11",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "4.883"
+ },
+ {
+ "time": "20:17:00",
+ "height": "4.909"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2015-11-12",
+ "groups": [
+ {
+ "time": "08:34:00",
+ "height": "4.990"
+ },
+ {
+ "time": "20:48:00",
+ "height": "4.957"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2015-11-13",
+ "groups": [
+ {
+ "time": "09:04:00",
+ "height": "5.033"
+ },
+ {
+ "time": "21:18:00",
+ "height": "4.943"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2015-11-14",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "5.006"
+ },
+ {
+ "time": "21:50:00",
+ "height": "4.861"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2015-11-15",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "4.902"
+ },
+ {
+ "time": "22:26:00",
+ "height": "4.704"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2015-11-16",
+ "groups": [
+ {
+ "time": "10:47:00",
+ "height": "4.725"
+ },
+ {
+ "time": "23:09:00",
+ "height": "4.479"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2015-11-17",
+ "groups": [
+ {
+ "time": "11:34:00",
+ "height": "4.490"
+ },
+ {
+ "time": "23:59:00",
+ "height": "4.207"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2015-11-18",
+ "groups": [
+ {
+ "time": "12:30:00",
+ "height": "4.236"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2015-11-19",
+ "groups": [
+ {
+ "time": "01:03:00",
+ "height": "3.943"
+ },
+ {
+ "time": "13:42:00",
+ "height": "4.039"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2015-11-20",
+ "groups": [
+ {
+ "time": "02:21:00",
+ "height": "3.793"
+ },
+ {
+ "time": "15:04:00",
+ "height": "4.013"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2015-11-21",
+ "groups": [
+ {
+ "time": "03:45:00",
+ "height": "3.870"
+ },
+ {
+ "time": "16:20:00",
+ "height": "4.212"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2015-11-22",
+ "groups": [
+ {
+ "time": "04:54:00",
+ "height": "4.172"
+ },
+ {
+ "time": "17:23:00",
+ "height": "4.560"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2015-11-23",
+ "groups": [
+ {
+ "time": "05:53:00",
+ "height": "4.576"
+ },
+ {
+ "time": "18:18:00",
+ "height": "4.932"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2015-11-24",
+ "groups": [
+ {
+ "time": "06:44:00",
+ "height": "4.964"
+ },
+ {
+ "time": "19:08:00",
+ "height": "5.237"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2015-11-25",
+ "groups": [
+ {
+ "time": "07:31:00",
+ "height": "5.265"
+ },
+ {
+ "time": "19:54:00",
+ "height": "5.427"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2015-11-26",
+ "groups": [
+ {
+ "time": "08:17:00",
+ "height": "5.445"
+ },
+ {
+ "time": "20:39:00",
+ "height": "5.482"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2015-11-27",
+ "groups": [
+ {
+ "time": "08:59:00",
+ "height": "5.489"
+ },
+ {
+ "time": "21:22:00",
+ "height": "5.397"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2015-11-28",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "5.394"
+ },
+ {
+ "time": "22:03:00",
+ "height": "5.183"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2015-11-29",
+ "groups": [
+ {
+ "time": "10:21:00",
+ "height": "5.176"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.868"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2015-11-30",
+ "groups": [
+ {
+ "time": "11:07:00",
+ "height": "4.865"
+ },
+ {
+ "time": "23:33:00",
+ "height": "4.493"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2015-12-01",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "4.505"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2015-12-02",
+ "groups": [
+ {
+ "time": "00:21:00",
+ "height": "4.107"
+ },
+ {
+ "time": "12:42:00",
+ "height": "4.144"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2015-12-03",
+ "groups": [
+ {
+ "time": "01:14:00",
+ "height": "3.759"
+ },
+ {
+ "time": "13:41:00",
+ "height": "3.833"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2015-12-04",
+ "groups": [
+ {
+ "time": "02:19:00",
+ "height": "3.507"
+ },
+ {
+ "time": "14:52:00",
+ "height": "3.636"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2015-12-05",
+ "groups": [
+ {
+ "time": "03:37:00",
+ "height": "3.431"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.627"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2015-12-06",
+ "groups": [
+ {
+ "time": "04:44:00",
+ "height": "3.567"
+ },
+ {
+ "time": "17:08:00",
+ "height": "3.791"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2015-12-07",
+ "groups": [
+ {
+ "time": "05:39:00",
+ "height": "3.837"
+ },
+ {
+ "time": "17:58:00",
+ "height": "4.038"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2015-12-08",
+ "groups": [
+ {
+ "time": "06:23:00",
+ "height": "4.149"
+ },
+ {
+ "time": "18:41:00",
+ "height": "4.298"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2015-12-09",
+ "groups": [
+ {
+ "time": "07:01:00",
+ "height": "4.447"
+ },
+ {
+ "time": "19:18:00",
+ "height": "4.531"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2015-12-10",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "4.700"
+ },
+ {
+ "time": "19:53:00",
+ "height": "4.720"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2015-12-11",
+ "groups": [
+ {
+ "time": "08:11:00",
+ "height": "4.897"
+ },
+ {
+ "time": "20:27:00",
+ "height": "4.856"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2015-12-12",
+ "groups": [
+ {
+ "time": "08:46:00",
+ "height": "5.030"
+ },
+ {
+ "time": "21:03:00",
+ "height": "4.933"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2015-12-13",
+ "groups": [
+ {
+ "time": "09:21:00",
+ "height": "5.093"
+ },
+ {
+ "time": "21:38:00",
+ "height": "4.939"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2015-12-14",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "5.077"
+ },
+ {
+ "time": "22:16:00",
+ "height": "4.865"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2015-12-15",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "4.980"
+ },
+ {
+ "time": "23:03:00",
+ "height": "4.712"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2015-12-16",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "4.812"
+ },
+ {
+ "time": "23:52:00",
+ "height": "4.495"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2015-12-17",
+ "groups": [
+ {
+ "time": "12:22:00",
+ "height": "4.597"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2015-12-18",
+ "groups": [
+ {
+ "time": "00:50:00",
+ "height": "4.254"
+ },
+ {
+ "time": "13:23:00",
+ "height": "4.380"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2015-12-19",
+ "groups": [
+ {
+ "time": "01:57:00",
+ "height": "4.048"
+ },
+ {
+ "time": "14:34:00",
+ "height": "4.226"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2015-12-20",
+ "groups": [
+ {
+ "time": "03:12:00",
+ "height": "3.960"
+ },
+ {
+ "time": "15:49:00",
+ "height": "4.203"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2015-12-21",
+ "groups": [
+ {
+ "time": "04:24:00",
+ "height": "4.051"
+ },
+ {
+ "time": "16:55:00",
+ "height": "4.333"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2015-12-22",
+ "groups": [
+ {
+ "time": "05:29:00",
+ "height": "4.296"
+ },
+ {
+ "time": "17:57:00",
+ "height": "4.561"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2015-12-23",
+ "groups": [
+ {
+ "time": "06:27:00",
+ "height": "4.610"
+ },
+ {
+ "time": "18:52:00",
+ "height": "4.809"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2015-12-24",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.908"
+ },
+ {
+ "time": "19:42:00",
+ "height": "5.012"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2015-12-25",
+ "groups": [
+ {
+ "time": "08:04:00",
+ "height": "5.132"
+ },
+ {
+ "time": "20:28:00",
+ "height": "5.129"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2015-12-26",
+ "groups": [
+ {
+ "time": "08:48:00",
+ "height": "5.250"
+ },
+ {
+ "time": "21:09:00",
+ "height": "5.142"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2015-12-27",
+ "groups": [
+ {
+ "time": "09:27:00",
+ "height": "5.252"
+ },
+ {
+ "time": "21:49:00",
+ "height": "5.050"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2015-12-28",
+ "groups": [
+ {
+ "time": "10:05:00",
+ "height": "5.144"
+ },
+ {
+ "time": "22:28:00",
+ "height": "4.866"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2015-12-29",
+ "groups": [
+ {
+ "time": "10:46:00",
+ "height": "4.944"
+ },
+ {
+ "time": "23:09:00",
+ "height": "4.614"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2015-12-30",
+ "groups": [
+ {
+ "time": "11:26:00",
+ "height": "4.681"
+ },
+ {
+ "time": "23:49:00",
+ "height": "4.321"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2015-12-31",
+ "groups": [
+ {
+ "time": "12:08:00",
+ "height": "4.383"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2016-01-01",
+ "groups": [
+ {
+ "time": "00:33:00",
+ "height": "4.015"
+ },
+ {
+ "time": "12:52:00",
+ "height": "4.074"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2016-01-02",
+ "groups": [
+ {
+ "time": "01:20:00",
+ "height": "3.721"
+ },
+ {
+ "time": "13:44:00",
+ "height": "3.781"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2016-01-03",
+ "groups": [
+ {
+ "time": "02:20:00",
+ "height": "3.480"
+ },
+ {
+ "time": "14:49:00",
+ "height": "3.557"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2016-01-04",
+ "groups": [
+ {
+ "time": "03:35:00",
+ "height": "3.371"
+ },
+ {
+ "time": "16:04:00",
+ "height": "3.489"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2016-01-05",
+ "groups": [
+ {
+ "time": "04:45:00",
+ "height": "3.474"
+ },
+ {
+ "time": "17:10:00",
+ "height": "3.621"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2016-01-06",
+ "groups": [
+ {
+ "time": "05:43:00",
+ "height": "3.748"
+ },
+ {
+ "time": "18:04:00",
+ "height": "3.884"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2016-01-07",
+ "groups": [
+ {
+ "time": "06:30:00",
+ "height": "4.097"
+ },
+ {
+ "time": "18:50:00",
+ "height": "4.196"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2016-01-08",
+ "groups": [
+ {
+ "time": "07:13:00",
+ "height": "4.451"
+ },
+ {
+ "time": "19:31:00",
+ "height": "4.501"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2016-01-09",
+ "groups": [
+ {
+ "time": "07:51:00",
+ "height": "4.770"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.766"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2016-01-10",
+ "groups": [
+ {
+ "time": "08:30:00",
+ "height": "5.030"
+ },
+ {
+ "time": "20:49:00",
+ "height": "4.970"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2016-01-11",
+ "groups": [
+ {
+ "time": "09:08:00",
+ "height": "5.214"
+ },
+ {
+ "time": "21:27:00",
+ "height": "5.092"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2016-01-12",
+ "groups": [
+ {
+ "time": "09:47:00",
+ "height": "5.308"
+ },
+ {
+ "time": "22:07:00",
+ "height": "5.115"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2016-01-13",
+ "groups": [
+ {
+ "time": "10:30:00",
+ "height": "5.298"
+ },
+ {
+ "time": "22:53:00",
+ "height": "5.029"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2016-01-14",
+ "groups": [
+ {
+ "time": "11:17:00",
+ "height": "5.176"
+ },
+ {
+ "time": "23:41:00",
+ "height": "4.838"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2016-01-15",
+ "groups": [
+ {
+ "time": "12:08:00",
+ "height": "4.953"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2016-01-16",
+ "groups": [
+ {
+ "time": "00:33:00",
+ "height": "4.566"
+ },
+ {
+ "time": "13:02:00",
+ "height": "4.657"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2016-01-17",
+ "groups": [
+ {
+ "time": "01:30:00",
+ "height": "4.260"
+ },
+ {
+ "time": "14:05:00",
+ "height": "4.340"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2016-01-18",
+ "groups": [
+ {
+ "time": "02:38:00",
+ "height": "3.991"
+ },
+ {
+ "time": "15:17:00",
+ "height": "4.089"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2016-01-19",
+ "groups": [
+ {
+ "time": "03:54:00",
+ "height": "3.867"
+ },
+ {
+ "time": "16:30:00",
+ "height": "4.008"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2016-01-20",
+ "groups": [
+ {
+ "time": "05:07:00",
+ "height": "3.964"
+ },
+ {
+ "time": "17:41:00",
+ "height": "4.133"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2016-01-21",
+ "groups": [
+ {
+ "time": "06:13:00",
+ "height": "4.242"
+ },
+ {
+ "time": "18:43:00",
+ "height": "4.388"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2016-01-22",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "4.579"
+ },
+ {
+ "time": "19:33:00",
+ "height": "4.659"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2016-01-23",
+ "groups": [
+ {
+ "time": "07:56:00",
+ "height": "4.870"
+ },
+ {
+ "time": "20:18:00",
+ "height": "4.865"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:43"
+ },
+ {
+ "date": "2016-01-24",
+ "groups": [
+ {
+ "time": "08:37:00",
+ "height": "5.061"
+ },
+ {
+ "time": "20:57:00",
+ "height": "4.976"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2016-01-25",
+ "groups": [
+ {
+ "time": "09:14:00",
+ "height": "5.142"
+ },
+ {
+ "time": "21:33:00",
+ "height": "4.988"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2016-01-26",
+ "groups": [
+ {
+ "time": "09:48:00",
+ "height": "5.119"
+ },
+ {
+ "time": "22:06:00",
+ "height": "4.909"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2016-01-27",
+ "groups": [
+ {
+ "time": "10:23:00",
+ "height": "5.008"
+ },
+ {
+ "time": "22:42:00",
+ "height": "4.755"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2016-01-28",
+ "groups": [
+ {
+ "time": "10:57:00",
+ "height": "4.825"
+ },
+ {
+ "time": "23:17:00",
+ "height": "4.541"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2016-01-29",
+ "groups": [
+ {
+ "time": "11:33:00",
+ "height": "4.585"
+ },
+ {
+ "time": "23:52:00",
+ "height": "4.278"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:54"
+ },
+ {
+ "date": "2016-01-30",
+ "groups": [
+ {
+ "time": "12:09:00",
+ "height": "4.297"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:56"
+ },
+ {
+ "date": "2016-01-31",
+ "groups": [
+ {
+ "time": "00:31:00",
+ "height": "3.979"
+ },
+ {
+ "time": "12:50:00",
+ "height": "3.973"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:58"
+ },
+ {
+ "date": "2016-02-01",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "3.668"
+ },
+ {
+ "time": "13:40:00",
+ "height": "3.644"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:59"
+ },
+ {
+ "date": "2016-02-02",
+ "groups": [
+ {
+ "time": "02:14:00",
+ "height": "3.394"
+ },
+ {
+ "time": "14:46:00",
+ "height": "3.378"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "17:01"
+ },
+ {
+ "date": "2016-02-03",
+ "groups": [
+ {
+ "time": "03:35:00",
+ "height": "3.263"
+ },
+ {
+ "time": "16:08:00",
+ "height": "3.306"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "17:03"
+ },
+ {
+ "date": "2016-02-04",
+ "groups": [
+ {
+ "time": "04:54:00",
+ "height": "3.406"
+ },
+ {
+ "time": "17:25:00",
+ "height": "3.517"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "17:05"
+ },
+ {
+ "date": "2016-02-05",
+ "groups": [
+ {
+ "time": "05:57:00",
+ "height": "3.776"
+ },
+ {
+ "time": "18:22:00",
+ "height": "3.902"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "17:07"
+ },
+ {
+ "date": "2016-02-06",
+ "groups": [
+ {
+ "time": "06:47:00",
+ "height": "4.231"
+ },
+ {
+ "time": "19:09:00",
+ "height": "4.335"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "17:09"
+ },
+ {
+ "date": "2016-02-07",
+ "groups": [
+ {
+ "time": "07:31:00",
+ "height": "4.680"
+ },
+ {
+ "time": "19:52:00",
+ "height": "4.741"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "17:11"
+ },
+ {
+ "date": "2016-02-08",
+ "groups": [
+ {
+ "time": "08:12:00",
+ "height": "5.073"
+ },
+ {
+ "time": "20:33:00",
+ "height": "5.074"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "17:13"
+ },
+ {
+ "date": "2016-02-09",
+ "groups": [
+ {
+ "time": "08:52:00",
+ "height": "5.375"
+ },
+ {
+ "time": "21:13:00",
+ "height": "5.303"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "17:15"
+ },
+ {
+ "date": "2016-02-10",
+ "groups": [
+ {
+ "time": "09:33:00",
+ "height": "5.560"
+ },
+ {
+ "time": "21:53:00",
+ "height": "5.399"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "17:17"
+ },
+ {
+ "date": "2016-02-11",
+ "groups": [
+ {
+ "time": "10:14:00",
+ "height": "5.600"
+ },
+ {
+ "time": "22:37:00",
+ "height": "5.345"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "17:19"
+ },
+ {
+ "date": "2016-02-12",
+ "groups": [
+ {
+ "time": "11:00:00",
+ "height": "5.480"
+ },
+ {
+ "time": "23:22:00",
+ "height": "5.141"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "17:21"
+ },
+ {
+ "date": "2016-02-13",
+ "groups": [
+ {
+ "time": "11:48:00",
+ "height": "5.204"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "17:23"
+ },
+ {
+ "date": "2016-02-14",
+ "groups": [
+ {
+ "time": "00:10:00",
+ "height": "4.812"
+ },
+ {
+ "time": "12:39:00",
+ "height": "4.804"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "17:24"
+ },
+ {
+ "date": "2016-02-15",
+ "groups": [
+ {
+ "time": "01:03:00",
+ "height": "4.403"
+ },
+ {
+ "time": "13:36:00",
+ "height": "4.340"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "17:26"
+ },
+ {
+ "date": "2016-02-16",
+ "groups": [
+ {
+ "time": "02:07:00",
+ "height": "3.990"
+ },
+ {
+ "time": "14:47:00",
+ "height": "3.916"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "17:28"
+ },
+ {
+ "date": "2016-02-17",
+ "groups": [
+ {
+ "time": "03:26:00",
+ "height": "3.702"
+ },
+ {
+ "time": "16:08:00",
+ "height": "3.693"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "17:30"
+ },
+ {
+ "date": "2016-02-18",
+ "groups": [
+ {
+ "time": "04:48:00",
+ "height": "3.698"
+ },
+ {
+ "time": "17:27:00",
+ "height": "3.783"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "17:32"
+ },
+ {
+ "date": "2016-02-19",
+ "groups": [
+ {
+ "time": "06:02:00",
+ "height": "3.980"
+ },
+ {
+ "time": "18:33:00",
+ "height": "4.094"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "17:34"
+ },
+ {
+ "date": "2016-02-20",
+ "groups": [
+ {
+ "time": "06:59:00",
+ "height": "4.365"
+ },
+ {
+ "time": "19:23:00",
+ "height": "4.439"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "17:36"
+ },
+ {
+ "date": "2016-02-21",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "4.700"
+ },
+ {
+ "time": "20:04:00",
+ "height": "4.710"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "17:38"
+ },
+ {
+ "date": "2016-02-22",
+ "groups": [
+ {
+ "time": "08:22:00",
+ "height": "4.926"
+ },
+ {
+ "time": "20:40:00",
+ "height": "4.880"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "17:40"
+ },
+ {
+ "date": "2016-02-23",
+ "groups": [
+ {
+ "time": "08:56:00",
+ "height": "5.044"
+ },
+ {
+ "time": "21:13:00",
+ "height": "4.954"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "17:42"
+ },
+ {
+ "date": "2016-02-24",
+ "groups": [
+ {
+ "time": "09:27:00",
+ "height": "5.069"
+ },
+ {
+ "time": "21:43:00",
+ "height": "4.944"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "17:44"
+ },
+ {
+ "date": "2016-02-25",
+ "groups": [
+ {
+ "time": "09:56:00",
+ "height": "5.016"
+ },
+ {
+ "time": "22:12:00",
+ "height": "4.860"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "17:46"
+ },
+ {
+ "date": "2016-02-26",
+ "groups": [
+ {
+ "time": "10:27:00",
+ "height": "4.894"
+ },
+ {
+ "time": "22:44:00",
+ "height": "4.707"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "17:47"
+ },
+ {
+ "date": "2016-02-27",
+ "groups": [
+ {
+ "time": "10:58:00",
+ "height": "4.703"
+ },
+ {
+ "time": "23:16:00",
+ "height": "4.489"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "17:49"
+ },
+ {
+ "date": "2016-02-28",
+ "groups": [
+ {
+ "time": "11:31:00",
+ "height": "4.445"
+ },
+ {
+ "time": "23:49:00",
+ "height": "4.212"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "17:51"
+ },
+ {
+ "date": "2016-02-29",
+ "groups": [
+ {
+ "time": "12:07:00",
+ "height": "4.131"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "17:53"
+ },
+ {
+ "date": "2016-03-01",
+ "groups": [
+ {
+ "time": "00:28:00",
+ "height": "3.893"
+ },
+ {
+ "time": "12:48:00",
+ "height": "3.779"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "17:55"
+ },
+ {
+ "date": "2016-03-02",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "3.563"
+ },
+ {
+ "time": "13:44:00",
+ "height": "3.435"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "17:57"
+ },
+ {
+ "date": "2016-03-03",
+ "groups": [
+ {
+ "time": "02:26:00",
+ "height": "3.298"
+ },
+ {
+ "time": "15:07:00",
+ "height": "3.215"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "17:59"
+ },
+ {
+ "date": "2016-03-04",
+ "groups": [
+ {
+ "time": "04:00:00",
+ "height": "3.270"
+ },
+ {
+ "time": "16:40:00",
+ "height": "3.315"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2016-03-05",
+ "groups": [
+ {
+ "time": "05:21:00",
+ "height": "3.596"
+ },
+ {
+ "time": "17:52:00",
+ "height": "3.732"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2016-03-06",
+ "groups": [
+ {
+ "time": "06:19:00",
+ "height": "4.111"
+ },
+ {
+ "time": "18:44:00",
+ "height": "4.260"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2016-03-07",
+ "groups": [
+ {
+ "time": "07:07:00",
+ "height": "4.654"
+ },
+ {
+ "time": "19:31:00",
+ "height": "4.769"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2016-03-08",
+ "groups": [
+ {
+ "time": "07:50:00",
+ "height": "5.139"
+ },
+ {
+ "time": "20:13:00",
+ "height": "5.191"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2016-03-09",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "5.512"
+ },
+ {
+ "time": "20:54:00",
+ "height": "5.481"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2016-03-10",
+ "groups": [
+ {
+ "time": "09:14:00",
+ "height": "5.735"
+ },
+ {
+ "time": "21:35:00",
+ "height": "5.610"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "18:12"
+ },
+ {
+ "date": "2016-03-11",
+ "groups": [
+ {
+ "time": "09:55:00",
+ "height": "5.779"
+ },
+ {
+ "time": "22:15:00",
+ "height": "5.560"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2016-03-12",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "5.627"
+ },
+ {
+ "time": "23:00:00",
+ "height": "5.334"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2016-03-13",
+ "groups": [
+ {
+ "time": "11:26:00",
+ "height": "5.292"
+ },
+ {
+ "time": "23:48:00",
+ "height": "4.959"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2016-03-14",
+ "groups": [
+ {
+ "time": "12:16:00",
+ "height": "4.815"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2016-03-15",
+ "groups": [
+ {
+ "time": "00:39:00",
+ "height": "4.489"
+ },
+ {
+ "time": "13:12:00",
+ "height": "4.270"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2016-03-16",
+ "groups": [
+ {
+ "time": "01:40:00",
+ "height": "4.003"
+ },
+ {
+ "time": "14:21:00",
+ "height": "3.770"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2016-03-17",
+ "groups": [
+ {
+ "time": "02:59:00",
+ "height": "3.635"
+ },
+ {
+ "time": "15:47:00",
+ "height": "3.492"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2016-03-18",
+ "groups": [
+ {
+ "time": "04:27:00",
+ "height": "3.574"
+ },
+ {
+ "time": "17:10:00",
+ "height": "3.581"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2016-03-19",
+ "groups": [
+ {
+ "time": "05:44:00",
+ "height": "3.842"
+ },
+ {
+ "time": "18:16:00",
+ "height": "3.923"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2016-03-20",
+ "groups": [
+ {
+ "time": "06:41:00",
+ "height": "4.226"
+ },
+ {
+ "time": "19:04:00",
+ "height": "4.296"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2016-03-21",
+ "groups": [
+ {
+ "time": "07:23:00",
+ "height": "4.558"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.592"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2016-03-22",
+ "groups": [
+ {
+ "time": "08:00:00",
+ "height": "4.786"
+ },
+ {
+ "time": "20:18:00",
+ "height": "4.788"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2016-03-23",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.916"
+ },
+ {
+ "time": "20:49:00",
+ "height": "4.896"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2016-03-24",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "4.968"
+ },
+ {
+ "time": "21:18:00",
+ "height": "4.931"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2016-03-25",
+ "groups": [
+ {
+ "time": "09:31:00",
+ "height": "4.954"
+ },
+ {
+ "time": "21:45:00",
+ "height": "4.899"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "18:39"
+ },
+ {
+ "date": "2016-03-26",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "4.877"
+ },
+ {
+ "time": "22:12:00",
+ "height": "4.799"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2016-03-27",
+ "groups": [
+ {
+ "time": "10:27:00",
+ "height": "4.730"
+ },
+ {
+ "time": "22:43:00",
+ "height": "4.628"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "18:42"
+ },
+ {
+ "date": "2016-03-28",
+ "groups": [
+ {
+ "time": "11:58:00",
+ "height": "4.514"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "19:44"
+ },
+ {
+ "date": "2016-03-29",
+ "groups": [
+ {
+ "time": "00:16:00",
+ "height": "4.391"
+ },
+ {
+ "time": "12:33:00",
+ "height": "4.234"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:46"
+ },
+ {
+ "date": "2016-03-30",
+ "groups": [
+ {
+ "time": "00:52:00",
+ "height": "4.101"
+ },
+ {
+ "time": "13:13:00",
+ "height": "3.909"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "19:48"
+ },
+ {
+ "date": "2016-03-31",
+ "groups": [
+ {
+ "time": "01:38:00",
+ "height": "3.782"
+ },
+ {
+ "time": "14:05:00",
+ "height": "3.571"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2016-04-01",
+ "groups": [
+ {
+ "time": "02:43:00",
+ "height": "3.489"
+ },
+ {
+ "time": "15:22:00",
+ "height": "3.314"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:51"
+ },
+ {
+ "date": "2016-04-02",
+ "groups": [
+ {
+ "time": "04:14:00",
+ "height": "3.378"
+ },
+ {
+ "time": "16:59:00",
+ "height": "3.337"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2016-04-03",
+ "groups": [
+ {
+ "time": "05:41:00",
+ "height": "3.618"
+ },
+ {
+ "time": "18:18:00",
+ "height": "3.718"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "19:55"
+ },
+ {
+ "date": "2016-04-04",
+ "groups": [
+ {
+ "time": "06:46:00",
+ "height": "4.114"
+ },
+ {
+ "time": "19:16:00",
+ "height": "4.260"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2016-04-05",
+ "groups": [
+ {
+ "time": "07:39:00",
+ "height": "4.669"
+ },
+ {
+ "time": "20:04:00",
+ "height": "4.796"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:58"
+ },
+ {
+ "date": "2016-04-06",
+ "groups": [
+ {
+ "time": "08:26:00",
+ "height": "5.168"
+ },
+ {
+ "time": "20:49:00",
+ "height": "5.239"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2016-04-07",
+ "groups": [
+ {
+ "time": "09:10:00",
+ "height": "5.542"
+ },
+ {
+ "time": "21:32:00",
+ "height": "5.540"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "20:02"
+ },
+ {
+ "date": "2016-04-08",
+ "groups": [
+ {
+ "time": "09:53:00",
+ "height": "5.751"
+ },
+ {
+ "time": "22:14:00",
+ "height": "5.672"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "20:04"
+ },
+ {
+ "date": "2016-04-09",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "5.770"
+ },
+ {
+ "time": "22:54:00",
+ "height": "5.620"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2016-04-10",
+ "groups": [
+ {
+ "time": "11:18:00",
+ "height": "5.591"
+ },
+ {
+ "time": "23:39:00",
+ "height": "5.391"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2016-04-11",
+ "groups": [
+ {
+ "time": "12:06:00",
+ "height": "5.232"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2016-04-12",
+ "groups": [
+ {
+ "time": "00:26:00",
+ "height": "5.015"
+ },
+ {
+ "time": "12:56:00",
+ "height": "4.745"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:11"
+ },
+ {
+ "date": "2016-04-13",
+ "groups": [
+ {
+ "time": "01:17:00",
+ "height": "4.548"
+ },
+ {
+ "time": "13:51:00",
+ "height": "4.209"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2016-04-14",
+ "groups": [
+ {
+ "time": "02:17:00",
+ "height": "4.069"
+ },
+ {
+ "time": "14:57:00",
+ "height": "3.727"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2016-04-15",
+ "groups": [
+ {
+ "time": "03:31:00",
+ "height": "3.694"
+ },
+ {
+ "time": "16:20:00",
+ "height": "3.447"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2016-04-16",
+ "groups": [
+ {
+ "time": "04:59:00",
+ "height": "3.578"
+ },
+ {
+ "time": "17:41:00",
+ "height": "3.495"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2016-04-17",
+ "groups": [
+ {
+ "time": "06:13:00",
+ "height": "3.759"
+ },
+ {
+ "time": "18:47:00",
+ "height": "3.787"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:20"
+ },
+ {
+ "date": "2016-04-18",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.072"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.133"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2016-04-19",
+ "groups": [
+ {
+ "time": "07:55:00",
+ "height": "4.368"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.427"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2016-04-20",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "4.589"
+ },
+ {
+ "time": "20:49:00",
+ "height": "4.641"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2016-04-21",
+ "groups": [
+ {
+ "time": "09:04:00",
+ "height": "4.733"
+ },
+ {
+ "time": "21:20:00",
+ "height": "4.781"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2016-04-22",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "4.810"
+ },
+ {
+ "time": "21:50:00",
+ "height": "4.856"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2016-04-23",
+ "groups": [
+ {
+ "time": "10:04:00",
+ "height": "4.831"
+ },
+ {
+ "time": "22:19:00",
+ "height": "4.870"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:30"
+ },
+ {
+ "date": "2016-04-24",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "4.795"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.821"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2016-04-25",
+ "groups": [
+ {
+ "time": "11:00:00",
+ "height": "4.698"
+ },
+ {
+ "time": "23:16:00",
+ "height": "4.705"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:34"
+ },
+ {
+ "date": "2016-04-26",
+ "groups": [
+ {
+ "time": "11:32:00",
+ "height": "4.534"
+ },
+ {
+ "time": "23:51:00",
+ "height": "4.521"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2016-04-27",
+ "groups": [
+ {
+ "time": "12:09:00",
+ "height": "4.310"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2016-04-28",
+ "groups": [
+ {
+ "time": "00:30:00",
+ "height": "4.282"
+ },
+ {
+ "time": "12:51:00",
+ "height": "4.039"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2016-04-29",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "4.011"
+ },
+ {
+ "time": "13:44:00",
+ "height": "3.754"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2016-04-30",
+ "groups": [
+ {
+ "time": "02:19:00",
+ "height": "3.760"
+ },
+ {
+ "time": "14:56:00",
+ "height": "3.534"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2016-05-01",
+ "groups": [
+ {
+ "time": "03:40:00",
+ "height": "3.647"
+ },
+ {
+ "time": "16:26:00",
+ "height": "3.527"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2016-05-02",
+ "groups": [
+ {
+ "time": "05:05:00",
+ "height": "3.801"
+ },
+ {
+ "time": "17:42:00",
+ "height": "3.814"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2016-05-03",
+ "groups": [
+ {
+ "time": "06:12:00",
+ "height": "4.190"
+ },
+ {
+ "time": "18:44:00",
+ "height": "4.274"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2016-05-04",
+ "groups": [
+ {
+ "time": "07:10:00",
+ "height": "4.662"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.753"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2016-05-05",
+ "groups": [
+ {
+ "time": "08:00:00",
+ "height": "5.093"
+ },
+ {
+ "time": "20:24:00",
+ "height": "5.157"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2016-05-06",
+ "groups": [
+ {
+ "time": "08:47:00",
+ "height": "5.412"
+ },
+ {
+ "time": "21:09:00",
+ "height": "5.436"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2016-05-07",
+ "groups": [
+ {
+ "time": "09:33:00",
+ "height": "5.582"
+ },
+ {
+ "time": "21:53:00",
+ "height": "5.564"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2016-05-08",
+ "groups": [
+ {
+ "time": "10:17:00",
+ "height": "5.584"
+ },
+ {
+ "time": "22:37:00",
+ "height": "5.531"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2016-05-09",
+ "groups": [
+ {
+ "time": "11:00:00",
+ "height": "5.416"
+ },
+ {
+ "time": "23:20:00",
+ "height": "5.339"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2016-05-10",
+ "groups": [
+ {
+ "time": "11:49:00",
+ "height": "5.098"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2016-05-11",
+ "groups": [
+ {
+ "time": "00:09:00",
+ "height": "5.017"
+ },
+ {
+ "time": "12:38:00",
+ "height": "4.677"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2016-05-12",
+ "groups": [
+ {
+ "time": "01:00:00",
+ "height": "4.614"
+ },
+ {
+ "time": "13:30:00",
+ "height": "4.220"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2016-05-13",
+ "groups": [
+ {
+ "time": "01:55:00",
+ "height": "4.197"
+ },
+ {
+ "time": "14:30:00",
+ "height": "3.805"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2016-05-14",
+ "groups": [
+ {
+ "time": "03:00:00",
+ "height": "3.844"
+ },
+ {
+ "time": "15:43:00",
+ "height": "3.525"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2016-05-15",
+ "groups": [
+ {
+ "time": "04:17:00",
+ "height": "3.653"
+ },
+ {
+ "time": "16:59:00",
+ "height": "3.471"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2016-05-16",
+ "groups": [
+ {
+ "time": "05:29:00",
+ "height": "3.684"
+ },
+ {
+ "time": "18:04:00",
+ "height": "3.636"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2016-05-17",
+ "groups": [
+ {
+ "time": "06:28:00",
+ "height": "3.872"
+ },
+ {
+ "time": "18:57:00",
+ "height": "3.908"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2016-05-18",
+ "groups": [
+ {
+ "time": "07:17:00",
+ "height": "4.109"
+ },
+ {
+ "time": "19:41:00",
+ "height": "4.187"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2016-05-19",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.326"
+ },
+ {
+ "time": "20:17:00",
+ "height": "4.425"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2016-05-20",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.495"
+ },
+ {
+ "time": "20:51:00",
+ "height": "4.607"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2016-05-21",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "4.612"
+ },
+ {
+ "time": "21:23:00",
+ "height": "4.732"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2016-05-22",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "4.680"
+ },
+ {
+ "time": "21:54:00",
+ "height": "4.802"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2016-05-23",
+ "groups": [
+ {
+ "time": "10:09:00",
+ "height": "4.699"
+ },
+ {
+ "time": "22:25:00",
+ "height": "4.814"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2016-05-24",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "4.664"
+ },
+ {
+ "time": "22:57:00",
+ "height": "4.764"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2016-05-25",
+ "groups": [
+ {
+ "time": "11:14:00",
+ "height": "4.570"
+ },
+ {
+ "time": "23:33:00",
+ "height": "4.650"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2016-05-26",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "4.418"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2016-05-27",
+ "groups": [
+ {
+ "time": "00:16:00",
+ "height": "4.481"
+ },
+ {
+ "time": "12:38:00",
+ "height": "4.219"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2016-05-28",
+ "groups": [
+ {
+ "time": "01:05:00",
+ "height": "4.279"
+ },
+ {
+ "time": "13:33:00",
+ "height": "4.002"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2016-05-29",
+ "groups": [
+ {
+ "time": "02:04:00",
+ "height": "4.086"
+ },
+ {
+ "time": "14:38:00",
+ "height": "3.824"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2016-05-30",
+ "groups": [
+ {
+ "time": "03:15:00",
+ "height": "3.973"
+ },
+ {
+ "time": "15:54:00",
+ "height": "3.776"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2016-05-31",
+ "groups": [
+ {
+ "time": "04:33:00",
+ "height": "4.020"
+ },
+ {
+ "time": "17:09:00",
+ "height": "3.922"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2016-06-01",
+ "groups": [
+ {
+ "time": "05:40:00",
+ "height": "4.240"
+ },
+ {
+ "time": "18:13:00",
+ "height": "4.230"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2016-06-02",
+ "groups": [
+ {
+ "time": "06:41:00",
+ "height": "4.558"
+ },
+ {
+ "time": "19:11:00",
+ "height": "4.598"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2016-06-03",
+ "groups": [
+ {
+ "time": "07:36:00",
+ "height": "4.877"
+ },
+ {
+ "time": "20:02:00",
+ "height": "4.939"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2016-06-04",
+ "groups": [
+ {
+ "time": "08:27:00",
+ "height": "5.131"
+ },
+ {
+ "time": "20:50:00",
+ "height": "5.199"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2016-06-05",
+ "groups": [
+ {
+ "time": "09:15:00",
+ "height": "5.281"
+ },
+ {
+ "time": "21:36:00",
+ "height": "5.345"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2016-06-06",
+ "groups": [
+ {
+ "time": "10:02:00",
+ "height": "5.307"
+ },
+ {
+ "time": "22:22:00",
+ "height": "5.361"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2016-06-07",
+ "groups": [
+ {
+ "time": "10:46:00",
+ "height": "5.202"
+ },
+ {
+ "time": "23:04:00",
+ "height": "5.245"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2016-06-08",
+ "groups": [
+ {
+ "time": "11:31:00",
+ "height": "4.978"
+ },
+ {
+ "time": "23:52:00",
+ "height": "5.013"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2016-06-09",
+ "groups": [
+ {
+ "time": "12:19:00",
+ "height": "4.666"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2016-06-10",
+ "groups": [
+ {
+ "time": "00:39:00",
+ "height": "4.702"
+ },
+ {
+ "time": "13:08:00",
+ "height": "4.311"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2016-06-11",
+ "groups": [
+ {
+ "time": "01:28:00",
+ "height": "4.356"
+ },
+ {
+ "time": "13:59:00",
+ "height": "3.962"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2016-06-12",
+ "groups": [
+ {
+ "time": "02:22:00",
+ "height": "4.026"
+ },
+ {
+ "time": "14:56:00",
+ "height": "3.670"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2016-06-13",
+ "groups": [
+ {
+ "time": "03:24:00",
+ "height": "3.761"
+ },
+ {
+ "time": "16:04:00",
+ "height": "3.494"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2016-06-14",
+ "groups": [
+ {
+ "time": "04:35:00",
+ "height": "3.624"
+ },
+ {
+ "time": "17:12:00",
+ "height": "3.489"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2016-06-15",
+ "groups": [
+ {
+ "time": "05:38:00",
+ "height": "3.650"
+ },
+ {
+ "time": "18:11:00",
+ "height": "3.645"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2016-06-16",
+ "groups": [
+ {
+ "time": "06:33:00",
+ "height": "3.801"
+ },
+ {
+ "time": "19:01:00",
+ "height": "3.890"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2016-06-17",
+ "groups": [
+ {
+ "time": "07:21:00",
+ "height": "4.008"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.156"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2016-06-18",
+ "groups": [
+ {
+ "time": "08:02:00",
+ "height": "4.220"
+ },
+ {
+ "time": "20:23:00",
+ "height": "4.399"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2016-06-19",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "4.403"
+ },
+ {
+ "time": "20:59:00",
+ "height": "4.599"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2016-06-20",
+ "groups": [
+ {
+ "time": "09:16:00",
+ "height": "4.547"
+ },
+ {
+ "time": "21:34:00",
+ "height": "4.747"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2016-06-21",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "4.647"
+ },
+ {
+ "time": "22:07:00",
+ "height": "4.841"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2016-06-22",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "4.699"
+ },
+ {
+ "time": "22:43:00",
+ "height": "4.876"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2016-06-23",
+ "groups": [
+ {
+ "time": "11:01:00",
+ "height": "4.692"
+ },
+ {
+ "time": "23:21:00",
+ "height": "4.847"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2016-06-24",
+ "groups": [
+ {
+ "time": "11:42:00",
+ "height": "4.619"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2016-06-25",
+ "groups": [
+ {
+ "time": "00:06:00",
+ "height": "4.752"
+ },
+ {
+ "time": "12:29:00",
+ "height": "4.484"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2016-06-26",
+ "groups": [
+ {
+ "time": "00:55:00",
+ "height": "4.602"
+ },
+ {
+ "time": "13:20:00",
+ "height": "4.304"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2016-06-27",
+ "groups": [
+ {
+ "time": "01:49:00",
+ "height": "4.423"
+ },
+ {
+ "time": "14:18:00",
+ "height": "4.116"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2016-06-28",
+ "groups": [
+ {
+ "time": "02:52:00",
+ "height": "4.254"
+ },
+ {
+ "time": "15:25:00",
+ "height": "3.974"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2016-06-29",
+ "groups": [
+ {
+ "time": "04:02:00",
+ "height": "4.151"
+ },
+ {
+ "time": "16:39:00",
+ "height": "3.951"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2016-06-30",
+ "groups": [
+ {
+ "time": "05:12:00",
+ "height": "4.172"
+ },
+ {
+ "time": "17:46:00",
+ "height": "4.088"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2016-07-01",
+ "groups": [
+ {
+ "time": "06:17:00",
+ "height": "4.323"
+ },
+ {
+ "time": "18:49:00",
+ "height": "4.348"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2016-07-02",
+ "groups": [
+ {
+ "time": "07:17:00",
+ "height": "4.551"
+ },
+ {
+ "time": "19:45:00",
+ "height": "4.653"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2016-07-03",
+ "groups": [
+ {
+ "time": "08:13:00",
+ "height": "4.786"
+ },
+ {
+ "time": "20:37:00",
+ "height": "4.930"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2016-07-04",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "4.970"
+ },
+ {
+ "time": "21:25:00",
+ "height": "5.127"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2016-07-05",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "5.064"
+ },
+ {
+ "time": "22:09:00",
+ "height": "5.213"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2016-07-06",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "5.050"
+ },
+ {
+ "time": "22:50:00",
+ "height": "5.179"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2016-07-07",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "4.930"
+ },
+ {
+ "time": "23:31:00",
+ "height": "5.034"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2016-07-08",
+ "groups": [
+ {
+ "time": "11:56:00",
+ "height": "4.720"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2016-07-09",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "4.801"
+ },
+ {
+ "time": "12:38:00",
+ "height": "4.451"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2016-07-10",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "4.514"
+ },
+ {
+ "time": "13:21:00",
+ "height": "4.152"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2016-07-11",
+ "groups": [
+ {
+ "time": "01:40:00",
+ "height": "4.203"
+ },
+ {
+ "time": "14:06:00",
+ "height": "3.854"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2016-07-12",
+ "groups": [
+ {
+ "time": "02:28:00",
+ "height": "3.895"
+ },
+ {
+ "time": "14:59:00",
+ "height": "3.588"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2016-07-13",
+ "groups": [
+ {
+ "time": "03:25:00",
+ "height": "3.628"
+ },
+ {
+ "time": "16:05:00",
+ "height": "3.412"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2016-07-14",
+ "groups": [
+ {
+ "time": "04:36:00",
+ "height": "3.471"
+ },
+ {
+ "time": "17:17:00",
+ "height": "3.407"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2016-07-15",
+ "groups": [
+ {
+ "time": "05:44:00",
+ "height": "3.496"
+ },
+ {
+ "time": "18:20:00",
+ "height": "3.591"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2016-07-16",
+ "groups": [
+ {
+ "time": "06:43:00",
+ "height": "3.684"
+ },
+ {
+ "time": "19:12:00",
+ "height": "3.888"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2016-07-17",
+ "groups": [
+ {
+ "time": "07:33:00",
+ "height": "3.954"
+ },
+ {
+ "time": "19:57:00",
+ "height": "4.214"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2016-07-18",
+ "groups": [
+ {
+ "time": "08:15:00",
+ "height": "4.237"
+ },
+ {
+ "time": "20:36:00",
+ "height": "4.517"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2016-07-19",
+ "groups": [
+ {
+ "time": "08:55:00",
+ "height": "4.495"
+ },
+ {
+ "time": "21:14:00",
+ "height": "4.774"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2016-07-20",
+ "groups": [
+ {
+ "time": "09:33:00",
+ "height": "4.708"
+ },
+ {
+ "time": "21:51:00",
+ "height": "4.973"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2016-07-21",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "4.863"
+ },
+ {
+ "time": "22:29:00",
+ "height": "5.103"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2016-07-22",
+ "groups": [
+ {
+ "time": "10:48:00",
+ "height": "4.942"
+ },
+ {
+ "time": "23:07:00",
+ "height": "5.149"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2016-07-23",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "4.930"
+ },
+ {
+ "time": "23:52:00",
+ "height": "5.099"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2016-07-24",
+ "groups": [
+ {
+ "time": "12:13:00",
+ "height": "4.820"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2016-07-25",
+ "groups": [
+ {
+ "time": "00:38:00",
+ "height": "4.950"
+ },
+ {
+ "time": "13:02:00",
+ "height": "4.621"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2016-07-26",
+ "groups": [
+ {
+ "time": "01:29:00",
+ "height": "4.717"
+ },
+ {
+ "time": "13:55:00",
+ "height": "4.362"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2016-07-27",
+ "groups": [
+ {
+ "time": "02:27:00",
+ "height": "4.432"
+ },
+ {
+ "time": "14:57:00",
+ "height": "4.096"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2016-07-28",
+ "groups": [
+ {
+ "time": "03:33:00",
+ "height": "4.158"
+ },
+ {
+ "time": "16:10:00",
+ "height": "3.906"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2016-07-29",
+ "groups": [
+ {
+ "time": "04:49:00",
+ "height": "3.995"
+ },
+ {
+ "time": "17:25:00",
+ "height": "3.900"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2016-07-30",
+ "groups": [
+ {
+ "time": "06:00:00",
+ "height": "4.029"
+ },
+ {
+ "time": "18:35:00",
+ "height": "4.106"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2016-07-31",
+ "groups": [
+ {
+ "time": "07:08:00",
+ "height": "4.241"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.436"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2016-08-01",
+ "groups": [
+ {
+ "time": "08:05:00",
+ "height": "4.528"
+ },
+ {
+ "time": "20:30:00",
+ "height": "4.768"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2016-08-02",
+ "groups": [
+ {
+ "time": "08:54:00",
+ "height": "4.784"
+ },
+ {
+ "time": "21:15:00",
+ "height": "5.018"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2016-08-03",
+ "groups": [
+ {
+ "time": "09:37:00",
+ "height": "4.949"
+ },
+ {
+ "time": "21:55:00",
+ "height": "5.151"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2016-08-04",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "5.005"
+ },
+ {
+ "time": "22:33:00",
+ "height": "5.166"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2016-08-05",
+ "groups": [
+ {
+ "time": "10:52:00",
+ "height": "4.957"
+ },
+ {
+ "time": "23:08:00",
+ "height": "5.074"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2016-08-06",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "4.820"
+ },
+ {
+ "time": "23:44:00",
+ "height": "4.897"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2016-08-07",
+ "groups": [
+ {
+ "time": "12:05:00",
+ "height": "4.612"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2016-08-08",
+ "groups": [
+ {
+ "time": "00:21:00",
+ "height": "4.655"
+ },
+ {
+ "time": "12:41:00",
+ "height": "4.353"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2016-08-09",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "4.365"
+ },
+ {
+ "time": "13:18:00",
+ "height": "4.061"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2016-08-10",
+ "groups": [
+ {
+ "time": "01:37:00",
+ "height": "4.042"
+ },
+ {
+ "time": "14:02:00",
+ "height": "3.752"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2016-08-11",
+ "groups": [
+ {
+ "time": "02:23:00",
+ "height": "3.707"
+ },
+ {
+ "time": "14:56:00",
+ "height": "3.466"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2016-08-12",
+ "groups": [
+ {
+ "time": "03:24:00",
+ "height": "3.412"
+ },
+ {
+ "time": "16:11:00",
+ "height": "3.288"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2016-08-13",
+ "groups": [
+ {
+ "time": "04:46:00",
+ "height": "3.272"
+ },
+ {
+ "time": "17:34:00",
+ "height": "3.357"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2016-08-14",
+ "groups": [
+ {
+ "time": "06:05:00",
+ "height": "3.409"
+ },
+ {
+ "time": "18:41:00",
+ "height": "3.672"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2016-08-15",
+ "groups": [
+ {
+ "time": "07:05:00",
+ "height": "3.747"
+ },
+ {
+ "time": "19:31:00",
+ "height": "4.091"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2016-08-16",
+ "groups": [
+ {
+ "time": "07:53:00",
+ "height": "4.151"
+ },
+ {
+ "time": "20:14:00",
+ "height": "4.514"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2016-08-17",
+ "groups": [
+ {
+ "time": "08:34:00",
+ "height": "4.540"
+ },
+ {
+ "time": "20:53:00",
+ "height": "4.890"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2016-08-18",
+ "groups": [
+ {
+ "time": "09:13:00",
+ "height": "4.872"
+ },
+ {
+ "time": "21:32:00",
+ "height": "5.193"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2016-08-19",
+ "groups": [
+ {
+ "time": "09:52:00",
+ "height": "5.121"
+ },
+ {
+ "time": "22:11:00",
+ "height": "5.399"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:34"
+ },
+ {
+ "date": "2016-08-20",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "5.261"
+ },
+ {
+ "time": "22:50:00",
+ "height": "5.486"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2016-08-21",
+ "groups": [
+ {
+ "time": "11:10:00",
+ "height": "5.272"
+ },
+ {
+ "time": "23:32:00",
+ "height": "5.432"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:30"
+ },
+ {
+ "date": "2016-08-22",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "5.144"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2016-08-23",
+ "groups": [
+ {
+ "time": "00:19:00",
+ "height": "5.231"
+ },
+ {
+ "time": "12:41:00",
+ "height": "4.887"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2016-08-24",
+ "groups": [
+ {
+ "time": "01:08:00",
+ "height": "4.900"
+ },
+ {
+ "time": "13:31:00",
+ "height": "4.535"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2016-08-25",
+ "groups": [
+ {
+ "time": "02:03:00",
+ "height": "4.482"
+ },
+ {
+ "time": "14:31:00",
+ "height": "4.148"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2016-08-26",
+ "groups": [
+ {
+ "time": "03:09:00",
+ "height": "4.060"
+ },
+ {
+ "time": "15:45:00",
+ "height": "3.831"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2016-08-27",
+ "groups": [
+ {
+ "time": "04:30:00",
+ "height": "3.776"
+ },
+ {
+ "time": "17:10:00",
+ "height": "3.745"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2016-08-28",
+ "groups": [
+ {
+ "time": "05:51:00",
+ "height": "3.780"
+ },
+ {
+ "time": "18:27:00",
+ "height": "3.965"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2016-08-29",
+ "groups": [
+ {
+ "time": "07:02:00",
+ "height": "4.054"
+ },
+ {
+ "time": "19:31:00",
+ "height": "4.353"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2016-08-30",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.418"
+ },
+ {
+ "time": "20:20:00",
+ "height": "4.725"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2016-08-31",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "4.726"
+ },
+ {
+ "time": "21:02:00",
+ "height": "4.990"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2017-01-01",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "4.933"
+ },
+ {
+ "time": "22:24:00",
+ "height": "4.713"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2017-01-02",
+ "groups": [
+ {
+ "time": "10:45:00",
+ "height": "4.853"
+ },
+ {
+ "time": "23:05:00",
+ "height": "4.593"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2017-01-03",
+ "groups": [
+ {
+ "time": "11:29:00",
+ "height": "4.712"
+ },
+ {
+ "time": "23:50:00",
+ "height": "4.416"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2017-01-04",
+ "groups": [
+ {
+ "time": "12:17:00",
+ "height": "4.524"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2017-01-05",
+ "groups": [
+ {
+ "time": "00:42:00",
+ "height": "4.206"
+ },
+ {
+ "time": "13:13:00",
+ "height": "4.318"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2017-01-06",
+ "groups": [
+ {
+ "time": "01:43:00",
+ "height": "4.004"
+ },
+ {
+ "time": "14:20:00",
+ "height": "4.143"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2017-01-07",
+ "groups": [
+ {
+ "time": "02:56:00",
+ "height": "3.883"
+ },
+ {
+ "time": "15:35:00",
+ "height": "4.075"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2017-01-08",
+ "groups": [
+ {
+ "time": "04:11:00",
+ "height": "3.930"
+ },
+ {
+ "time": "16:45:00",
+ "height": "4.175"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2017-01-09",
+ "groups": [
+ {
+ "time": "05:19:00",
+ "height": "4.169"
+ },
+ {
+ "time": "17:50:00",
+ "height": "4.422"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2017-01-10",
+ "groups": [
+ {
+ "time": "06:21:00",
+ "height": "4.522"
+ },
+ {
+ "time": "18:49:00",
+ "height": "4.730"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2017-01-11",
+ "groups": [
+ {
+ "time": "07:16:00",
+ "height": "4.892"
+ },
+ {
+ "time": "19:43:00",
+ "height": "5.017"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2017-01-12",
+ "groups": [
+ {
+ "time": "08:05:00",
+ "height": "5.200"
+ },
+ {
+ "time": "20:31:00",
+ "height": "5.216"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2017-01-13",
+ "groups": [
+ {
+ "time": "08:51:00",
+ "height": "5.394"
+ },
+ {
+ "time": "21:15:00",
+ "height": "5.294"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2017-01-14",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "5.447"
+ },
+ {
+ "time": "21:56:00",
+ "height": "5.237"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2017-01-15",
+ "groups": [
+ {
+ "time": "10:15:00",
+ "height": "5.358"
+ },
+ {
+ "time": "22:40:00",
+ "height": "5.056"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2017-01-16",
+ "groups": [
+ {
+ "time": "10:59:00",
+ "height": "5.142"
+ },
+ {
+ "time": "23:22:00",
+ "height": "4.778"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2017-01-17",
+ "groups": [
+ {
+ "time": "11:42:00",
+ "height": "4.834"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2017-01-18",
+ "groups": [
+ {
+ "time": "00:04:00",
+ "height": "4.440"
+ },
+ {
+ "time": "12:24:00",
+ "height": "4.473"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2017-01-19",
+ "groups": [
+ {
+ "time": "00:49:00",
+ "height": "4.081"
+ },
+ {
+ "time": "13:09:00",
+ "height": "4.097"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2017-01-20",
+ "groups": [
+ {
+ "time": "01:38:00",
+ "height": "3.737"
+ },
+ {
+ "time": "14:02:00",
+ "height": "3.745"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2017-01-21",
+ "groups": [
+ {
+ "time": "02:38:00",
+ "height": "3.459"
+ },
+ {
+ "time": "15:11:00",
+ "height": "3.480"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2017-01-22",
+ "groups": [
+ {
+ "time": "03:56:00",
+ "height": "3.340"
+ },
+ {
+ "time": "16:27:00",
+ "height": "3.408"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2017-01-23",
+ "groups": [
+ {
+ "time": "05:07:00",
+ "height": "3.459"
+ },
+ {
+ "time": "17:34:00",
+ "height": "3.558"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2017-01-24",
+ "groups": [
+ {
+ "time": "06:06:00",
+ "height": "3.749"
+ },
+ {
+ "time": "18:28:00",
+ "height": "3.837"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2017-01-25",
+ "groups": [
+ {
+ "time": "06:53:00",
+ "height": "4.095"
+ },
+ {
+ "time": "19:12:00",
+ "height": "4.144"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2017-01-26",
+ "groups": [
+ {
+ "time": "07:32:00",
+ "height": "4.425"
+ },
+ {
+ "time": "19:50:00",
+ "height": "4.425"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2017-01-27",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "4.705"
+ },
+ {
+ "time": "20:25:00",
+ "height": "4.659"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:51"
+ },
+ {
+ "date": "2017-01-28",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "4.925"
+ },
+ {
+ "time": "21:00:00",
+ "height": "4.840"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:53"
+ },
+ {
+ "date": "2017-01-29",
+ "groups": [
+ {
+ "time": "09:17:00",
+ "height": "5.082"
+ },
+ {
+ "time": "21:34:00",
+ "height": "4.955"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:55"
+ },
+ {
+ "date": "2017-01-30",
+ "groups": [
+ {
+ "time": "09:52:00",
+ "height": "5.165"
+ },
+ {
+ "time": "22:09:00",
+ "height": "4.987"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:57"
+ },
+ {
+ "date": "2017-01-31",
+ "groups": [
+ {
+ "time": "10:30:00",
+ "height": "5.158"
+ },
+ {
+ "time": "22:50:00",
+ "height": "4.923"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:59"
+ },
+ {
+ "date": "2017-02-01",
+ "groups": [
+ {
+ "time": "11:12:00",
+ "height": "5.050"
+ },
+ {
+ "time": "23:33:00",
+ "height": "4.758"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "17:01"
+ },
+ {
+ "date": "2017-02-02",
+ "groups": [
+ {
+ "time": "11:58:00",
+ "height": "4.843"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "17:03"
+ },
+ {
+ "date": "2017-02-03",
+ "groups": [
+ {
+ "time": "00:20:00",
+ "height": "4.509"
+ },
+ {
+ "time": "12:49:00",
+ "height": "4.556"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "17:05"
+ },
+ {
+ "date": "2017-02-04",
+ "groups": [
+ {
+ "time": "01:14:00",
+ "height": "4.207"
+ },
+ {
+ "time": "13:48:00",
+ "height": "4.230"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "17:07"
+ },
+ {
+ "date": "2017-02-05",
+ "groups": [
+ {
+ "time": "02:21:00",
+ "height": "3.919"
+ },
+ {
+ "time": "15:03:00",
+ "height": "3.956"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "17:09"
+ },
+ {
+ "date": "2017-02-06",
+ "groups": [
+ {
+ "time": "03:42:00",
+ "height": "3.768"
+ },
+ {
+ "time": "16:22:00",
+ "height": "3.873"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "17:10"
+ },
+ {
+ "date": "2017-02-07",
+ "groups": [
+ {
+ "time": "05:00:00",
+ "height": "3.880"
+ },
+ {
+ "time": "17:37:00",
+ "height": "4.050"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "17:12"
+ },
+ {
+ "date": "2017-02-08",
+ "groups": [
+ {
+ "time": "06:11:00",
+ "height": "4.223"
+ },
+ {
+ "time": "18:43:00",
+ "height": "4.395"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "17:14"
+ },
+ {
+ "date": "2017-02-09",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "4.647"
+ },
+ {
+ "time": "19:35:00",
+ "height": "4.759"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "17:16"
+ },
+ {
+ "date": "2017-02-10",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "5.018"
+ },
+ {
+ "time": "20:21:00",
+ "height": "5.038"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "17:18"
+ },
+ {
+ "date": "2017-02-11",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "5.266"
+ },
+ {
+ "time": "21:02:00",
+ "height": "5.190"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "17:20"
+ },
+ {
+ "date": "2017-02-12",
+ "groups": [
+ {
+ "time": "09:20:00",
+ "height": "5.369"
+ },
+ {
+ "time": "21:39:00",
+ "height": "5.208"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "17:22"
+ },
+ {
+ "date": "2017-02-13",
+ "groups": [
+ {
+ "time": "09:55:00",
+ "height": "5.331"
+ },
+ {
+ "time": "22:15:00",
+ "height": "5.102"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "17:24"
+ },
+ {
+ "date": "2017-02-14",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "5.169"
+ },
+ {
+ "time": "22:53:00",
+ "height": "4.894"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "17:26"
+ },
+ {
+ "date": "2017-02-15",
+ "groups": [
+ {
+ "time": "11:09:00",
+ "height": "4.912"
+ },
+ {
+ "time": "23:29:00",
+ "height": "4.609"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "17:28"
+ },
+ {
+ "date": "2017-02-16",
+ "groups": [
+ {
+ "time": "11:45:00",
+ "height": "4.587"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "17:30"
+ },
+ {
+ "date": "2017-02-17",
+ "groups": [
+ {
+ "time": "00:04:00",
+ "height": "4.276"
+ },
+ {
+ "time": "12:23:00",
+ "height": "4.218"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "17:32"
+ },
+ {
+ "date": "2017-02-18",
+ "groups": [
+ {
+ "time": "00:44:00",
+ "height": "3.914"
+ },
+ {
+ "time": "13:05:00",
+ "height": "3.825"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "17:34"
+ },
+ {
+ "date": "2017-02-19",
+ "groups": [
+ {
+ "time": "01:32:00",
+ "height": "3.553"
+ },
+ {
+ "time": "13:58:00",
+ "height": "3.446"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "17:36"
+ },
+ {
+ "date": "2017-02-20",
+ "groups": [
+ {
+ "time": "02:38:00",
+ "height": "3.254"
+ },
+ {
+ "time": "15:16:00",
+ "height": "3.175"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "17:37"
+ },
+ {
+ "date": "2017-02-21",
+ "groups": [
+ {
+ "time": "04:10:00",
+ "height": "3.173"
+ },
+ {
+ "time": "16:49:00",
+ "height": "3.195"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "17:39"
+ },
+ {
+ "date": "2017-02-22",
+ "groups": [
+ {
+ "time": "05:29:00",
+ "height": "3.417"
+ },
+ {
+ "time": "17:57:00",
+ "height": "3.502"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "17:41"
+ },
+ {
+ "date": "2017-02-23",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "3.826"
+ },
+ {
+ "time": "18:47:00",
+ "height": "3.911"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "17:43"
+ },
+ {
+ "date": "2017-02-24",
+ "groups": [
+ {
+ "time": "07:07:00",
+ "height": "4.259"
+ },
+ {
+ "time": "19:28:00",
+ "height": "4.319"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "17:45"
+ },
+ {
+ "date": "2017-02-25",
+ "groups": [
+ {
+ "time": "07:46:00",
+ "height": "4.655"
+ },
+ {
+ "time": "20:04:00",
+ "height": "4.681"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "17:47"
+ },
+ {
+ "date": "2017-02-26",
+ "groups": [
+ {
+ "time": "08:22:00",
+ "height": "4.988"
+ },
+ {
+ "time": "20:40:00",
+ "height": "4.975"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "17:49"
+ },
+ {
+ "date": "2017-02-27",
+ "groups": [
+ {
+ "time": "08:57:00",
+ "height": "5.243"
+ },
+ {
+ "time": "21:15:00",
+ "height": "5.179"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "17:51"
+ },
+ {
+ "date": "2017-02-28",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "5.398"
+ },
+ {
+ "time": "21:51:00",
+ "height": "5.271"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "17:53"
+ },
+ {
+ "date": "2017-03-01",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "5.427"
+ },
+ {
+ "time": "22:30:00",
+ "height": "5.226"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "17:55"
+ },
+ {
+ "date": "2017-03-02",
+ "groups": [
+ {
+ "time": "10:53:00",
+ "height": "5.312"
+ },
+ {
+ "time": "23:12:00",
+ "height": "5.044"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2017-03-03",
+ "groups": [
+ {
+ "time": "11:37:00",
+ "height": "5.052"
+ },
+ {
+ "time": "23:58:00",
+ "height": "4.738"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2017-03-04",
+ "groups": [
+ {
+ "time": "12:27:00",
+ "height": "4.671"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2017-03-05",
+ "groups": [
+ {
+ "time": "00:50:00",
+ "height": "4.348"
+ },
+ {
+ "time": "13:25:00",
+ "height": "4.223"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2017-03-06",
+ "groups": [
+ {
+ "time": "01:55:00",
+ "height": "3.944"
+ },
+ {
+ "time": "14:39:00",
+ "height": "3.817"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2017-03-07",
+ "groups": [
+ {
+ "time": "03:19:00",
+ "height": "3.673"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.643"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2017-03-08",
+ "groups": [
+ {
+ "time": "04:46:00",
+ "height": "3.725"
+ },
+ {
+ "time": "17:28:00",
+ "height": "3.821"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2017-03-09",
+ "groups": [
+ {
+ "time": "06:01:00",
+ "height": "4.081"
+ },
+ {
+ "time": "18:34:00",
+ "height": "4.216"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2017-03-10",
+ "groups": [
+ {
+ "time": "06:59:00",
+ "height": "4.526"
+ },
+ {
+ "time": "19:24:00",
+ "height": "4.618"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2017-03-11",
+ "groups": [
+ {
+ "time": "07:45:00",
+ "height": "4.897"
+ },
+ {
+ "time": "20:06:00",
+ "height": "4.919"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2017-03-12",
+ "groups": [
+ {
+ "time": "08:24:00",
+ "height": "5.134"
+ },
+ {
+ "time": "20:44:00",
+ "height": "5.091"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2017-03-13",
+ "groups": [
+ {
+ "time": "09:00:00",
+ "height": "5.234"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.141"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2017-03-14",
+ "groups": [
+ {
+ "time": "09:33:00",
+ "height": "5.216"
+ },
+ {
+ "time": "21:49:00",
+ "height": "5.086"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2017-03-15",
+ "groups": [
+ {
+ "time": "10:03:00",
+ "height": "5.099"
+ },
+ {
+ "time": "22:20:00",
+ "height": "4.940"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2017-03-16",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "4.897"
+ },
+ {
+ "time": "22:53:00",
+ "height": "4.718"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2017-03-17",
+ "groups": [
+ {
+ "time": "11:08:00",
+ "height": "4.626"
+ },
+ {
+ "time": "23:25:00",
+ "height": "4.432"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2017-03-18",
+ "groups": [
+ {
+ "time": "11:42:00",
+ "height": "4.296"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2017-03-19",
+ "groups": [
+ {
+ "time": "00:01:00",
+ "height": "4.097"
+ },
+ {
+ "time": "12:20:00",
+ "height": "3.920"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "18:27"
+ },
+ {
+ "date": "2017-03-20",
+ "groups": [
+ {
+ "time": "00:42:00",
+ "height": "3.731"
+ },
+ {
+ "time": "13:05:00",
+ "height": "3.523"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2017-03-21",
+ "groups": [
+ {
+ "time": "01:38:00",
+ "height": "3.375"
+ },
+ {
+ "time": "14:11:00",
+ "height": "3.175"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2017-03-22",
+ "groups": [
+ {
+ "time": "03:01:00",
+ "height": "3.147"
+ },
+ {
+ "time": "15:50:00",
+ "height": "3.045"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2017-03-23",
+ "groups": [
+ {
+ "time": "04:40:00",
+ "height": "3.257"
+ },
+ {
+ "time": "17:18:00",
+ "height": "3.307"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2017-03-24",
+ "groups": [
+ {
+ "time": "05:47:00",
+ "height": "3.664"
+ },
+ {
+ "time": "18:14:00",
+ "height": "3.772"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2017-03-25",
+ "groups": [
+ {
+ "time": "06:35:00",
+ "height": "4.158"
+ },
+ {
+ "time": "18:58:00",
+ "height": "4.269"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2017-03-26",
+ "groups": [
+ {
+ "time": "07:16:00",
+ "height": "4.636"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.725"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2017-03-27",
+ "groups": [
+ {
+ "time": "08:55:00",
+ "height": "5.050"
+ },
+ {
+ "time": "21:15:00",
+ "height": "5.098"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "19:42"
+ },
+ {
+ "date": "2017-03-28",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "5.366"
+ },
+ {
+ "time": "21:52:00",
+ "height": "5.357"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "19:44"
+ },
+ {
+ "date": "2017-03-29",
+ "groups": [
+ {
+ "time": "10:12:00",
+ "height": "5.554"
+ },
+ {
+ "time": "22:30:00",
+ "height": "5.476"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:45"
+ },
+ {
+ "date": "2017-03-30",
+ "groups": [
+ {
+ "time": "10:51:00",
+ "height": "5.586"
+ },
+ {
+ "time": "23:09:00",
+ "height": "5.434"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2017-03-31",
+ "groups": [
+ {
+ "time": "11:32:00",
+ "height": "5.442"
+ },
+ {
+ "time": "23:53:00",
+ "height": "5.230"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2017-04-01",
+ "groups": [
+ {
+ "time": "12:20:00",
+ "height": "5.130"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "19:51"
+ },
+ {
+ "date": "2017-04-02",
+ "groups": [
+ {
+ "time": "00:39:00",
+ "height": "4.886"
+ },
+ {
+ "time": "13:10:00",
+ "height": "4.687"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2017-04-03",
+ "groups": [
+ {
+ "time": "01:33:00",
+ "height": "4.451"
+ },
+ {
+ "time": "14:09:00",
+ "height": "4.185"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2017-04-04",
+ "groups": [
+ {
+ "time": "02:39:00",
+ "height": "4.009"
+ },
+ {
+ "time": "15:24:00",
+ "height": "3.750"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2017-04-05",
+ "groups": [
+ {
+ "time": "04:03:00",
+ "height": "3.711"
+ },
+ {
+ "time": "16:53:00",
+ "height": "3.570"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:58"
+ },
+ {
+ "date": "2017-04-06",
+ "groups": [
+ {
+ "time": "05:31:00",
+ "height": "3.736"
+ },
+ {
+ "time": "18:13:00",
+ "height": "3.749"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2017-04-07",
+ "groups": [
+ {
+ "time": "06:44:00",
+ "height": "4.050"
+ },
+ {
+ "time": "19:17:00",
+ "height": "4.127"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2017-04-08",
+ "groups": [
+ {
+ "time": "07:40:00",
+ "height": "4.436"
+ },
+ {
+ "time": "20:05:00",
+ "height": "4.499"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2017-04-09",
+ "groups": [
+ {
+ "time": "08:24:00",
+ "height": "4.747"
+ },
+ {
+ "time": "20:45:00",
+ "height": "4.775"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2017-04-10",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "4.939"
+ },
+ {
+ "time": "21:19:00",
+ "height": "4.939"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2017-04-11",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "5.023"
+ },
+ {
+ "time": "21:52:00",
+ "height": "5.007"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2017-04-12",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.021"
+ },
+ {
+ "time": "22:22:00",
+ "height": "4.995"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2017-04-13",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "4.948"
+ },
+ {
+ "time": "22:51:00",
+ "height": "4.909"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2017-04-14",
+ "groups": [
+ {
+ "time": "11:05:00",
+ "height": "4.806"
+ },
+ {
+ "time": "23:20:00",
+ "height": "4.752"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2017-04-15",
+ "groups": [
+ {
+ "time": "11:37:00",
+ "height": "4.598"
+ },
+ {
+ "time": "23:53:00",
+ "height": "4.528"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2017-04-16",
+ "groups": [
+ {
+ "time": "12:09:00",
+ "height": "4.327"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2017-04-17",
+ "groups": [
+ {
+ "time": "00:28:00",
+ "height": "4.247"
+ },
+ {
+ "time": "12:46:00",
+ "height": "4.004"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2017-04-18",
+ "groups": [
+ {
+ "time": "01:08:00",
+ "height": "3.925"
+ },
+ {
+ "time": "13:29:00",
+ "height": "3.655"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2017-04-19",
+ "groups": [
+ {
+ "time": "01:57:00",
+ "height": "3.597"
+ },
+ {
+ "time": "14:29:00",
+ "height": "3.330"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2017-04-20",
+ "groups": [
+ {
+ "time": "03:10:00",
+ "height": "3.347"
+ },
+ {
+ "time": "15:53:00",
+ "height": "3.157"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2017-04-21",
+ "groups": [
+ {
+ "time": "04:43:00",
+ "height": "3.340"
+ },
+ {
+ "time": "17:25:00",
+ "height": "3.308"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2017-04-22",
+ "groups": [
+ {
+ "time": "05:59:00",
+ "height": "3.653"
+ },
+ {
+ "time": "18:31:00",
+ "height": "3.735"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2017-04-23",
+ "groups": [
+ {
+ "time": "06:56:00",
+ "height": "4.128"
+ },
+ {
+ "time": "19:22:00",
+ "height": "4.248"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:30"
+ },
+ {
+ "date": "2017-04-24",
+ "groups": [
+ {
+ "time": "07:42:00",
+ "height": "4.624"
+ },
+ {
+ "time": "20:05:00",
+ "height": "4.737"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2017-04-25",
+ "groups": [
+ {
+ "time": "08:25:00",
+ "height": "5.061"
+ },
+ {
+ "time": "20:47:00",
+ "height": "5.140"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2017-04-26",
+ "groups": [
+ {
+ "time": "09:07:00",
+ "height": "5.390"
+ },
+ {
+ "time": "21:28:00",
+ "height": "5.419"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2017-04-27",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "5.576"
+ },
+ {
+ "time": "22:09:00",
+ "height": "5.548"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2017-04-28",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "5.595"
+ },
+ {
+ "time": "22:50:00",
+ "height": "5.512"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2017-04-29",
+ "groups": [
+ {
+ "time": "11:14:00",
+ "height": "5.435"
+ },
+ {
+ "time": "23:36:00",
+ "height": "5.314"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2017-04-30",
+ "groups": [
+ {
+ "time": "12:05:00",
+ "height": "5.113"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2017-05-01",
+ "groups": [
+ {
+ "time": "00:26:00",
+ "height": "4.980"
+ },
+ {
+ "time": "12:58:00",
+ "height": "4.676"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2017-05-02",
+ "groups": [
+ {
+ "time": "01:22:00",
+ "height": "4.566"
+ },
+ {
+ "time": "13:57:00",
+ "height": "4.205"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2017-05-03",
+ "groups": [
+ {
+ "time": "02:26:00",
+ "height": "4.155"
+ },
+ {
+ "time": "15:08:00",
+ "height": "3.810"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2017-05-04",
+ "groups": [
+ {
+ "time": "03:44:00",
+ "height": "3.867"
+ },
+ {
+ "time": "16:32:00",
+ "height": "3.628"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2017-05-05",
+ "groups": [
+ {
+ "time": "05:06:00",
+ "height": "3.823"
+ },
+ {
+ "time": "17:46:00",
+ "height": "3.730"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2017-05-06",
+ "groups": [
+ {
+ "time": "06:15:00",
+ "height": "4.008"
+ },
+ {
+ "time": "18:48:00",
+ "height": "4.010"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2017-05-07",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.275"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.312"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2017-05-08",
+ "groups": [
+ {
+ "time": "07:56:00",
+ "height": "4.508"
+ },
+ {
+ "time": "20:17:00",
+ "height": "4.553"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2017-05-09",
+ "groups": [
+ {
+ "time": "08:34:00",
+ "height": "4.665"
+ },
+ {
+ "time": "20:53:00",
+ "height": "4.717"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2017-05-10",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "4.752"
+ },
+ {
+ "time": "21:25:00",
+ "height": "4.812"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2017-05-11",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "4.781"
+ },
+ {
+ "time": "21:56:00",
+ "height": "4.845"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2017-05-12",
+ "groups": [
+ {
+ "time": "10:11:00",
+ "height": "4.757"
+ },
+ {
+ "time": "22:26:00",
+ "height": "4.819"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2017-05-13",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "4.677"
+ },
+ {
+ "time": "22:55:00",
+ "height": "4.730"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2017-05-14",
+ "groups": [
+ {
+ "time": "11:10:00",
+ "height": "4.539"
+ },
+ {
+ "time": "23:27:00",
+ "height": "4.578"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2017-05-15",
+ "groups": [
+ {
+ "time": "11:44:00",
+ "height": "4.344"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2017-05-16",
+ "groups": [
+ {
+ "time": "00:04:00",
+ "height": "4.371"
+ },
+ {
+ "time": "12:22:00",
+ "height": "4.102"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2017-05-17",
+ "groups": [
+ {
+ "time": "00:44:00",
+ "height": "4.124"
+ },
+ {
+ "time": "13:05:00",
+ "height": "3.836"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2017-05-18",
+ "groups": [
+ {
+ "time": "01:33:00",
+ "height": "3.868"
+ },
+ {
+ "time": "14:01:00",
+ "height": "3.585"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2017-05-19",
+ "groups": [
+ {
+ "time": "02:35:00",
+ "height": "3.662"
+ },
+ {
+ "time": "15:12:00",
+ "height": "3.431"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2017-05-20",
+ "groups": [
+ {
+ "time": "03:53:00",
+ "height": "3.606"
+ },
+ {
+ "time": "16:35:00",
+ "height": "3.486"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2017-05-21",
+ "groups": [
+ {
+ "time": "05:10:00",
+ "height": "3.783"
+ },
+ {
+ "time": "17:45:00",
+ "height": "3.785"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2017-05-22",
+ "groups": [
+ {
+ "time": "06:13:00",
+ "height": "4.146"
+ },
+ {
+ "time": "18:42:00",
+ "height": "4.220"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2017-05-23",
+ "groups": [
+ {
+ "time": "07:07:00",
+ "height": "4.574"
+ },
+ {
+ "time": "19:33:00",
+ "height": "4.670"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2017-05-24",
+ "groups": [
+ {
+ "time": "07:56:00",
+ "height": "4.971"
+ },
+ {
+ "time": "20:20:00",
+ "height": "5.059"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2017-05-25",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "5.276"
+ },
+ {
+ "time": "21:05:00",
+ "height": "5.340"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2017-05-26",
+ "groups": [
+ {
+ "time": "09:30:00",
+ "height": "5.452"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.487"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2017-05-27",
+ "groups": [
+ {
+ "time": "10:15:00",
+ "height": "5.477"
+ },
+ {
+ "time": "22:36:00",
+ "height": "5.487"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2017-05-28",
+ "groups": [
+ {
+ "time": "11:01:00",
+ "height": "5.348"
+ },
+ {
+ "time": "23:21:00",
+ "height": "5.340"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2017-05-29",
+ "groups": [
+ {
+ "time": "11:52:00",
+ "height": "5.080"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2017-05-30",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "5.070"
+ },
+ {
+ "time": "12:46:00",
+ "height": "4.713"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2017-05-31",
+ "groups": [
+ {
+ "time": "01:10:00",
+ "height": "4.720"
+ },
+ {
+ "time": "13:42:00",
+ "height": "4.314"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2017-06-01",
+ "groups": [
+ {
+ "time": "02:08:00",
+ "height": "4.356"
+ },
+ {
+ "time": "14:45:00",
+ "height": "3.956"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2017-06-02",
+ "groups": [
+ {
+ "time": "03:15:00",
+ "height": "4.051"
+ },
+ {
+ "time": "15:57:00",
+ "height": "3.726"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2017-06-03",
+ "groups": [
+ {
+ "time": "04:30:00",
+ "height": "3.884"
+ },
+ {
+ "time": "17:07:00",
+ "height": "3.686"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2017-06-04",
+ "groups": [
+ {
+ "time": "05:36:00",
+ "height": "3.889"
+ },
+ {
+ "time": "18:09:00",
+ "height": "3.819"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2017-06-05",
+ "groups": [
+ {
+ "time": "06:34:00",
+ "height": "4.015"
+ },
+ {
+ "time": "19:02:00",
+ "height": "4.037"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2017-06-06",
+ "groups": [
+ {
+ "time": "07:23:00",
+ "height": "4.183"
+ },
+ {
+ "time": "19:47:00",
+ "height": "4.261"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2017-06-07",
+ "groups": [
+ {
+ "time": "08:05:00",
+ "height": "4.339"
+ },
+ {
+ "time": "20:26:00",
+ "height": "4.451"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2017-06-08",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "4.461"
+ },
+ {
+ "time": "21:01:00",
+ "height": "4.594"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2017-06-09",
+ "groups": [
+ {
+ "time": "09:17:00",
+ "height": "4.543"
+ },
+ {
+ "time": "21:34:00",
+ "height": "4.686"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2017-06-10",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "4.579"
+ },
+ {
+ "time": "22:06:00",
+ "height": "4.724"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2017-06-11",
+ "groups": [
+ {
+ "time": "10:21:00",
+ "height": "4.570"
+ },
+ {
+ "time": "22:37:00",
+ "height": "4.709"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2017-06-12",
+ "groups": [
+ {
+ "time": "10:52:00",
+ "height": "4.512"
+ },
+ {
+ "time": "23:08:00",
+ "height": "4.640"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2017-06-13",
+ "groups": [
+ {
+ "time": "11:26:00",
+ "height": "4.408"
+ },
+ {
+ "time": "23:45:00",
+ "height": "4.519"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2017-06-14",
+ "groups": [
+ {
+ "time": "12:05:00",
+ "height": "4.259"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2017-06-15",
+ "groups": [
+ {
+ "time": "00:26:00",
+ "height": "4.358"
+ },
+ {
+ "time": "12:48:00",
+ "height": "4.080"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2017-06-16",
+ "groups": [
+ {
+ "time": "01:13:00",
+ "height": "4.175"
+ },
+ {
+ "time": "13:38:00",
+ "height": "3.895"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2017-06-17",
+ "groups": [
+ {
+ "time": "02:08:00",
+ "height": "4.008"
+ },
+ {
+ "time": "14:39:00",
+ "height": "3.751"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2017-06-18",
+ "groups": [
+ {
+ "time": "03:14:00",
+ "height": "3.909"
+ },
+ {
+ "time": "15:50:00",
+ "height": "3.713"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2017-06-19",
+ "groups": [
+ {
+ "time": "04:29:00",
+ "height": "3.941"
+ },
+ {
+ "time": "17:04:00",
+ "height": "3.843"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2017-06-20",
+ "groups": [
+ {
+ "time": "05:35:00",
+ "height": "4.132"
+ },
+ {
+ "time": "18:08:00",
+ "height": "4.133"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2017-06-21",
+ "groups": [
+ {
+ "time": "06:36:00",
+ "height": "4.431"
+ },
+ {
+ "time": "19:05:00",
+ "height": "4.500"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2017-06-22",
+ "groups": [
+ {
+ "time": "07:31:00",
+ "height": "4.757"
+ },
+ {
+ "time": "19:58:00",
+ "height": "4.863"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2017-06-23",
+ "groups": [
+ {
+ "time": "08:24:00",
+ "height": "5.040"
+ },
+ {
+ "time": "20:47:00",
+ "height": "5.162"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2017-06-24",
+ "groups": [
+ {
+ "time": "09:14:00",
+ "height": "5.236"
+ },
+ {
+ "time": "21:36:00",
+ "height": "5.359"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2017-06-25",
+ "groups": [
+ {
+ "time": "10:03:00",
+ "height": "5.316"
+ },
+ {
+ "time": "22:23:00",
+ "height": "5.430"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2017-06-26",
+ "groups": [
+ {
+ "time": "10:50:00",
+ "height": "5.265"
+ },
+ {
+ "time": "23:10:00",
+ "height": "5.365"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2017-06-27",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "5.087"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2017-06-28",
+ "groups": [
+ {
+ "time": "00:00:00",
+ "height": "5.172"
+ },
+ {
+ "time": "12:29:00",
+ "height": "4.805"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2017-06-29",
+ "groups": [
+ {
+ "time": "00:51:00",
+ "height": "4.879"
+ },
+ {
+ "time": "13:20:00",
+ "height": "4.461"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2017-06-30",
+ "groups": [
+ {
+ "time": "01:42:00",
+ "height": "4.530"
+ },
+ {
+ "time": "14:13:00",
+ "height": "4.110"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2017-07-01",
+ "groups": [
+ {
+ "time": "02:38:00",
+ "height": "4.179"
+ },
+ {
+ "time": "15:11:00",
+ "height": "3.807"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2017-07-02",
+ "groups": [
+ {
+ "time": "03:39:00",
+ "height": "3.885"
+ },
+ {
+ "time": "16:18:00",
+ "height": "3.614"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2017-07-03",
+ "groups": [
+ {
+ "time": "04:48:00",
+ "height": "3.712"
+ },
+ {
+ "time": "17:23:00",
+ "height": "3.586"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2017-07-04",
+ "groups": [
+ {
+ "time": "05:50:00",
+ "height": "3.698"
+ },
+ {
+ "time": "18:24:00",
+ "height": "3.717"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2017-07-05",
+ "groups": [
+ {
+ "time": "06:47:00",
+ "height": "3.816"
+ },
+ {
+ "time": "19:15:00",
+ "height": "3.941"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2017-07-06",
+ "groups": [
+ {
+ "time": "07:36:00",
+ "height": "4.002"
+ },
+ {
+ "time": "20:00:00",
+ "height": "4.188"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2017-07-07",
+ "groups": [
+ {
+ "time": "08:18:00",
+ "height": "4.195"
+ },
+ {
+ "time": "20:38:00",
+ "height": "4.409"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2017-07-08",
+ "groups": [
+ {
+ "time": "08:56:00",
+ "height": "4.359"
+ },
+ {
+ "time": "21:14:00",
+ "height": "4.582"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2017-07-09",
+ "groups": [
+ {
+ "time": "09:31:00",
+ "height": "4.481"
+ },
+ {
+ "time": "21:48:00",
+ "height": "4.700"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2017-07-10",
+ "groups": [
+ {
+ "time": "10:04:00",
+ "height": "4.558"
+ },
+ {
+ "time": "22:21:00",
+ "height": "4.767"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2017-07-11",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "4.592"
+ },
+ {
+ "time": "22:53:00",
+ "height": "4.783"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2017-07-12",
+ "groups": [
+ {
+ "time": "11:09:00",
+ "height": "4.578"
+ },
+ {
+ "time": "23:29:00",
+ "height": "4.745"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2017-07-13",
+ "groups": [
+ {
+ "time": "11:47:00",
+ "height": "4.511"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2017-07-14",
+ "groups": [
+ {
+ "time": "00:09:00",
+ "height": "4.651"
+ },
+ {
+ "time": "12:30:00",
+ "height": "4.389"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2017-07-15",
+ "groups": [
+ {
+ "time": "00:54:00",
+ "height": "4.507"
+ },
+ {
+ "time": "13:15:00",
+ "height": "4.225"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2017-07-16",
+ "groups": [
+ {
+ "time": "01:42:00",
+ "height": "4.331"
+ },
+ {
+ "time": "14:08:00",
+ "height": "4.045"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2017-07-17",
+ "groups": [
+ {
+ "time": "02:41:00",
+ "height": "4.153"
+ },
+ {
+ "time": "15:12:00",
+ "height": "3.894"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2017-07-18",
+ "groups": [
+ {
+ "time": "03:50:00",
+ "height": "4.027"
+ },
+ {
+ "time": "16:27:00",
+ "height": "3.849"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2017-07-19",
+ "groups": [
+ {
+ "time": "05:04:00",
+ "height": "4.028"
+ },
+ {
+ "time": "17:38:00",
+ "height": "3.982"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2017-07-20",
+ "groups": [
+ {
+ "time": "06:12:00",
+ "height": "4.196"
+ },
+ {
+ "time": "18:44:00",
+ "height": "4.278"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2017-07-21",
+ "groups": [
+ {
+ "time": "07:15:00",
+ "height": "4.479"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.650"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2017-07-22",
+ "groups": [
+ {
+ "time": "08:13:00",
+ "height": "4.793"
+ },
+ {
+ "time": "20:37:00",
+ "height": "5.005"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2017-07-23",
+ "groups": [
+ {
+ "time": "09:04:00",
+ "height": "5.058"
+ },
+ {
+ "time": "21:26:00",
+ "height": "5.276"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2017-07-24",
+ "groups": [
+ {
+ "time": "09:52:00",
+ "height": "5.221"
+ },
+ {
+ "time": "22:12:00",
+ "height": "5.420"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2017-07-25",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "5.253"
+ },
+ {
+ "time": "22:55:00",
+ "height": "5.417"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2017-07-26",
+ "groups": [
+ {
+ "time": "11:19:00",
+ "height": "5.148"
+ },
+ {
+ "time": "23:40:00",
+ "height": "5.270"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2017-07-27",
+ "groups": [
+ {
+ "time": "12:05:00",
+ "height": "4.924"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2017-07-28",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "5.001"
+ },
+ {
+ "time": "12:49:00",
+ "height": "4.612"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2017-07-29",
+ "groups": [
+ {
+ "time": "01:09:00",
+ "height": "4.651"
+ },
+ {
+ "time": "13:34:00",
+ "height": "4.257"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2017-07-30",
+ "groups": [
+ {
+ "time": "01:54:00",
+ "height": "4.263"
+ },
+ {
+ "time": "14:21:00",
+ "height": "3.900"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2017-07-31",
+ "groups": [
+ {
+ "time": "02:44:00",
+ "height": "3.883"
+ },
+ {
+ "time": "15:17:00",
+ "height": "3.589"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2017-08-01",
+ "groups": [
+ {
+ "time": "03:46:00",
+ "height": "3.567"
+ },
+ {
+ "time": "16:29:00",
+ "height": "3.400"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2017-08-02",
+ "groups": [
+ {
+ "time": "05:00:00",
+ "height": "3.405"
+ },
+ {
+ "time": "17:41:00",
+ "height": "3.426"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2017-08-03",
+ "groups": [
+ {
+ "time": "06:10:00",
+ "height": "3.471"
+ },
+ {
+ "time": "18:44:00",
+ "height": "3.656"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2017-08-04",
+ "groups": [
+ {
+ "time": "07:10:00",
+ "height": "3.705"
+ },
+ {
+ "time": "19:36:00",
+ "height": "3.979"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2017-08-05",
+ "groups": [
+ {
+ "time": "07:57:00",
+ "height": "3.997"
+ },
+ {
+ "time": "20:17:00",
+ "height": "4.300"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2017-08-06",
+ "groups": [
+ {
+ "time": "08:36:00",
+ "height": "4.271"
+ },
+ {
+ "time": "20:54:00",
+ "height": "4.572"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2017-08-07",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "4.499"
+ },
+ {
+ "time": "21:28:00",
+ "height": "4.783"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2017-08-08",
+ "groups": [
+ {
+ "time": "09:46:00",
+ "height": "4.674"
+ },
+ {
+ "time": "22:02:00",
+ "height": "4.934"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2017-08-09",
+ "groups": [
+ {
+ "time": "10:19:00",
+ "height": "4.797"
+ },
+ {
+ "time": "22:35:00",
+ "height": "5.025"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2017-08-10",
+ "groups": [
+ {
+ "time": "10:52:00",
+ "height": "4.856"
+ },
+ {
+ "time": "23:09:00",
+ "height": "5.044"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2017-08-11",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "4.835"
+ },
+ {
+ "time": "23:49:00",
+ "height": "4.978"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2017-08-12",
+ "groups": [
+ {
+ "time": "12:08:00",
+ "height": "4.726"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2017-08-13",
+ "groups": [
+ {
+ "time": "00:31:00",
+ "height": "4.822"
+ },
+ {
+ "time": "12:51:00",
+ "height": "4.533"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2017-08-14",
+ "groups": [
+ {
+ "time": "01:17:00",
+ "height": "4.584"
+ },
+ {
+ "time": "13:40:00",
+ "height": "4.277"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2017-08-15",
+ "groups": [
+ {
+ "time": "02:12:00",
+ "height": "4.291"
+ },
+ {
+ "time": "14:40:00",
+ "height": "4.002"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2017-08-16",
+ "groups": [
+ {
+ "time": "03:19:00",
+ "height": "4.004"
+ },
+ {
+ "time": "15:57:00",
+ "height": "3.802"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2017-08-17",
+ "groups": [
+ {
+ "time": "04:41:00",
+ "height": "3.848"
+ },
+ {
+ "time": "17:19:00",
+ "height": "3.821"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2017-08-18",
+ "groups": [
+ {
+ "time": "05:58:00",
+ "height": "3.943"
+ },
+ {
+ "time": "18:33:00",
+ "height": "4.104"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2017-08-19",
+ "groups": [
+ {
+ "time": "07:08:00",
+ "height": "4.258"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.532"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2017-08-20",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "4.650"
+ },
+ {
+ "time": "20:30:00",
+ "height": "4.953"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2017-08-21",
+ "groups": [
+ {
+ "time": "08:56:00",
+ "height": "4.987"
+ },
+ {
+ "time": "21:16:00",
+ "height": "5.267"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:30"
+ },
+ {
+ "date": "2017-08-22",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "5.202"
+ },
+ {
+ "time": "21:58:00",
+ "height": "5.432"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2017-08-23",
+ "groups": [
+ {
+ "time": "10:20:00",
+ "height": "5.275"
+ },
+ {
+ "time": "22:37:00",
+ "height": "5.441"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2017-08-24",
+ "groups": [
+ {
+ "time": "10:56:00",
+ "height": "5.207"
+ },
+ {
+ "time": "23:14:00",
+ "height": "5.305"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2017-08-25",
+ "groups": [
+ {
+ "time": "11:36:00",
+ "height": "5.017"
+ },
+ {
+ "time": "23:53:00",
+ "height": "5.050"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2017-08-26",
+ "groups": [
+ {
+ "time": "12:13:00",
+ "height": "4.735"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2017-08-27",
+ "groups": [
+ {
+ "time": "00:31:00",
+ "height": "4.711"
+ },
+ {
+ "time": "12:51:00",
+ "height": "4.393"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2017-08-28",
+ "groups": [
+ {
+ "time": "01:09:00",
+ "height": "4.323"
+ },
+ {
+ "time": "13:31:00",
+ "height": "4.024"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2017-08-29",
+ "groups": [
+ {
+ "time": "01:51:00",
+ "height": "3.916"
+ },
+ {
+ "time": "14:18:00",
+ "height": "3.657"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2017-08-30",
+ "groups": [
+ {
+ "time": "02:42:00",
+ "height": "3.523"
+ },
+ {
+ "time": "15:21:00",
+ "height": "3.347"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2017-08-31",
+ "groups": [
+ {
+ "time": "03:56:00",
+ "height": "3.225"
+ },
+ {
+ "time": "16:51:00",
+ "height": "3.230"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2017-09-01",
+ "groups": [
+ {
+ "time": "05:31:00",
+ "height": "3.196"
+ },
+ {
+ "time": "18:12:00",
+ "height": "3.437"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2017-09-02",
+ "groups": [
+ {
+ "time": "06:42:00",
+ "height": "3.472"
+ },
+ {
+ "time": "19:10:00",
+ "height": "3.826"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2017-09-03",
+ "groups": [
+ {
+ "time": "07:33:00",
+ "height": "3.863"
+ },
+ {
+ "time": "19:54:00",
+ "height": "4.243"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2017-09-04",
+ "groups": [
+ {
+ "time": "08:14:00",
+ "height": "4.252"
+ },
+ {
+ "time": "20:31:00",
+ "height": "4.614"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "19:58"
+ },
+ {
+ "date": "2017-09-05",
+ "groups": [
+ {
+ "time": "08:49:00",
+ "height": "4.590"
+ },
+ {
+ "time": "21:05:00",
+ "height": "4.919"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2017-09-06",
+ "groups": [
+ {
+ "time": "09:23:00",
+ "height": "4.864"
+ },
+ {
+ "time": "21:39:00",
+ "height": "5.151"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2017-09-07",
+ "groups": [
+ {
+ "time": "09:56:00",
+ "height": "5.062"
+ },
+ {
+ "time": "22:13:00",
+ "height": "5.299"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "19:51"
+ },
+ {
+ "date": "2017-09-08",
+ "groups": [
+ {
+ "time": "10:30:00",
+ "height": "5.170"
+ },
+ {
+ "time": "22:48:00",
+ "height": "5.346"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2017-09-09",
+ "groups": [
+ {
+ "time": "11:05:00",
+ "height": "5.165"
+ },
+ {
+ "time": "23:26:00",
+ "height": "5.271"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:46"
+ },
+ {
+ "date": "2017-09-10",
+ "groups": [
+ {
+ "time": "11:45:00",
+ "height": "5.036"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:44"
+ },
+ {
+ "date": "2017-09-11",
+ "groups": [
+ {
+ "time": "00:08:00",
+ "height": "5.065"
+ },
+ {
+ "time": "12:29:00",
+ "height": "4.788"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "19:41"
+ },
+ {
+ "date": "2017-09-12",
+ "groups": [
+ {
+ "time": "00:55:00",
+ "height": "4.739"
+ },
+ {
+ "time": "13:17:00",
+ "height": "4.448"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:39"
+ },
+ {
+ "date": "2017-09-13",
+ "groups": [
+ {
+ "time": "01:49:00",
+ "height": "4.331"
+ },
+ {
+ "time": "14:17:00",
+ "height": "4.070"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:37"
+ },
+ {
+ "date": "2017-09-14",
+ "groups": [
+ {
+ "time": "02:58:00",
+ "height": "3.925"
+ },
+ {
+ "time": "15:37:00",
+ "height": "3.773"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "19:34"
+ },
+ {
+ "date": "2017-09-15",
+ "groups": [
+ {
+ "time": "04:28:00",
+ "height": "3.691"
+ },
+ {
+ "time": "17:09:00",
+ "height": "3.754"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:32"
+ },
+ {
+ "date": "2017-09-16",
+ "groups": [
+ {
+ "time": "05:53:00",
+ "height": "3.802"
+ },
+ {
+ "time": "18:28:00",
+ "height": "4.074"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:29"
+ },
+ {
+ "date": "2017-09-17",
+ "groups": [
+ {
+ "time": "07:04:00",
+ "height": "4.186"
+ },
+ {
+ "time": "19:30:00",
+ "height": "4.542"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:27"
+ },
+ {
+ "date": "2017-09-18",
+ "groups": [
+ {
+ "time": "07:59:00",
+ "height": "4.625"
+ },
+ {
+ "time": "20:19:00",
+ "height": "4.966"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:25"
+ },
+ {
+ "date": "2017-09-19",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "4.977"
+ },
+ {
+ "time": "21:02:00",
+ "height": "5.255"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "19:22"
+ },
+ {
+ "date": "2017-09-20",
+ "groups": [
+ {
+ "time": "09:22:00",
+ "height": "5.191"
+ },
+ {
+ "time": "21:39:00",
+ "height": "5.389"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "19:20"
+ },
+ {
+ "date": "2017-09-21",
+ "groups": [
+ {
+ "time": "09:59:00",
+ "height": "5.266"
+ },
+ {
+ "time": "22:15:00",
+ "height": "5.381"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "19:17"
+ },
+ {
+ "date": "2017-09-22",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "5.218"
+ },
+ {
+ "time": "22:47:00",
+ "height": "5.255"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "19:15"
+ },
+ {
+ "date": "2017-09-23",
+ "groups": [
+ {
+ "time": "11:04:00",
+ "height": "5.066"
+ },
+ {
+ "time": "23:19:00",
+ "height": "5.032"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "19:13"
+ },
+ {
+ "date": "2017-09-24",
+ "groups": [
+ {
+ "time": "11:38:00",
+ "height": "4.830"
+ },
+ {
+ "time": "23:53:00",
+ "height": "4.734"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "19:10"
+ },
+ {
+ "date": "2017-09-25",
+ "groups": [
+ {
+ "time": "12:11:00",
+ "height": "4.529"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "19:08"
+ },
+ {
+ "date": "2017-09-26",
+ "groups": [
+ {
+ "time": "00:28:00",
+ "height": "4.382"
+ },
+ {
+ "time": "12:47:00",
+ "height": "4.184"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "19:05"
+ },
+ {
+ "date": "2017-09-27",
+ "groups": [
+ {
+ "time": "01:05:00",
+ "height": "3.992"
+ },
+ {
+ "time": "13:28:00",
+ "height": "3.814"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "19:03"
+ },
+ {
+ "date": "2017-09-28",
+ "groups": [
+ {
+ "time": "01:51:00",
+ "height": "3.586"
+ },
+ {
+ "time": "14:23:00",
+ "height": "3.456"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "19:01"
+ },
+ {
+ "date": "2017-09-29",
+ "groups": [
+ {
+ "time": "02:55:00",
+ "height": "3.225"
+ },
+ {
+ "time": "15:47:00",
+ "height": "3.220"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "18:58"
+ },
+ {
+ "date": "2017-09-30",
+ "groups": [
+ {
+ "time": "04:36:00",
+ "height": "3.074"
+ },
+ {
+ "time": "17:30:00",
+ "height": "3.322"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "18:56"
+ },
+ {
+ "date": "2017-10-01",
+ "groups": [
+ {
+ "time": "06:08:00",
+ "height": "3.323"
+ },
+ {
+ "time": "18:37:00",
+ "height": "3.719"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "18:53"
+ },
+ {
+ "date": "2017-10-02",
+ "groups": [
+ {
+ "time": "07:03:00",
+ "height": "3.769"
+ },
+ {
+ "time": "19:23:00",
+ "height": "4.191"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "18:51"
+ },
+ {
+ "date": "2017-10-03",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "4.243"
+ },
+ {
+ "time": "20:01:00",
+ "height": "4.641"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "18:49"
+ },
+ {
+ "date": "2017-10-04",
+ "groups": [
+ {
+ "time": "08:21:00",
+ "height": "4.676"
+ },
+ {
+ "time": "20:37:00",
+ "height": "5.027"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "18:46"
+ },
+ {
+ "date": "2017-10-05",
+ "groups": [
+ {
+ "time": "08:56:00",
+ "height": "5.034"
+ },
+ {
+ "time": "21:13:00",
+ "height": "5.325"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2017-10-06",
+ "groups": [
+ {
+ "time": "09:32:00",
+ "height": "5.294"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.514"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "18:42"
+ },
+ {
+ "date": "2017-10-07",
+ "groups": [
+ {
+ "time": "10:07:00",
+ "height": "5.432"
+ },
+ {
+ "time": "22:27:00",
+ "height": "5.568"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "18:39"
+ },
+ {
+ "date": "2017-10-08",
+ "groups": [
+ {
+ "time": "10:44:00",
+ "height": "5.430"
+ },
+ {
+ "time": "23:05:00",
+ "height": "5.468"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2017-10-09",
+ "groups": [
+ {
+ "time": "11:24:00",
+ "height": "5.278"
+ },
+ {
+ "time": "23:50:00",
+ "height": "5.209"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2017-10-10",
+ "groups": [
+ {
+ "time": "12:10:00",
+ "height": "4.988"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2017-10-11",
+ "groups": [
+ {
+ "time": "00:38:00",
+ "height": "4.815"
+ },
+ {
+ "time": "13:01:00",
+ "height": "4.596"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2017-10-12",
+ "groups": [
+ {
+ "time": "01:36:00",
+ "height": "4.343"
+ },
+ {
+ "time": "14:04:00",
+ "height": "4.173"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2017-10-13",
+ "groups": [
+ {
+ "time": "02:47:00",
+ "height": "3.901"
+ },
+ {
+ "time": "15:25:00",
+ "height": "3.856"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2017-10-14",
+ "groups": [
+ {
+ "time": "04:17:00",
+ "height": "3.671"
+ },
+ {
+ "time": "16:59:00",
+ "height": "3.835"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "18:23"
+ },
+ {
+ "date": "2017-10-15",
+ "groups": [
+ {
+ "time": "05:43:00",
+ "height": "3.803"
+ },
+ {
+ "time": "18:16:00",
+ "height": "4.136"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2017-10-16",
+ "groups": [
+ {
+ "time": "06:51:00",
+ "height": "4.184"
+ },
+ {
+ "time": "19:15:00",
+ "height": "4.553"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2017-10-17",
+ "groups": [
+ {
+ "time": "07:43:00",
+ "height": "4.594"
+ },
+ {
+ "time": "20:01:00",
+ "height": "4.909"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2017-10-18",
+ "groups": [
+ {
+ "time": "08:24:00",
+ "height": "4.909"
+ },
+ {
+ "time": "20:42:00",
+ "height": "5.134"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2017-10-19",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "5.099"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.229"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "18:12"
+ },
+ {
+ "date": "2017-10-20",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "5.174"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.218"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2017-10-21",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.155"
+ },
+ {
+ "time": "22:21:00",
+ "height": "5.123"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2017-10-22",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "5.055"
+ },
+ {
+ "time": "22:51:00",
+ "height": "4.956"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2017-10-23",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.883"
+ },
+ {
+ "time": "23:20:00",
+ "height": "4.724"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2017-10-24",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "4.645"
+ },
+ {
+ "time": "23:54:00",
+ "height": "4.433"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2017-10-25",
+ "groups": [
+ {
+ "time": "12:13:00",
+ "height": "4.353"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "17:59"
+ },
+ {
+ "date": "2017-10-26",
+ "groups": [
+ {
+ "time": "00:31:00",
+ "height": "4.096"
+ },
+ {
+ "time": "12:52:00",
+ "height": "4.023"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "17:57"
+ },
+ {
+ "date": "2017-10-27",
+ "groups": [
+ {
+ "time": "01:13:00",
+ "height": "3.731"
+ },
+ {
+ "time": "13:42:00",
+ "height": "3.684"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "17:55"
+ },
+ {
+ "date": "2017-10-28",
+ "groups": [
+ {
+ "time": "02:10:00",
+ "height": "3.385"
+ },
+ {
+ "time": "14:53:00",
+ "height": "3.414"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "17:53"
+ },
+ {
+ "date": "2017-10-29",
+ "groups": [
+ {
+ "time": "03:33:00",
+ "height": "3.176"
+ },
+ {
+ "time": "16:28:00",
+ "height": "3.375"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "17:51"
+ },
+ {
+ "date": "2017-10-30",
+ "groups": [
+ {
+ "time": "04:13:00",
+ "height": "3.289"
+ },
+ {
+ "time": "16:48:00",
+ "height": "3.663"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "16:49"
+ },
+ {
+ "date": "2017-10-31",
+ "groups": [
+ {
+ "time": "05:20:00",
+ "height": "3.694"
+ },
+ {
+ "time": "17:42:00",
+ "height": "4.116"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "16:47"
+ },
+ {
+ "date": "2017-11-01",
+ "groups": [
+ {
+ "time": "06:08:00",
+ "height": "4.190"
+ },
+ {
+ "time": "18:27:00",
+ "height": "4.595"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2017-11-02",
+ "groups": [
+ {
+ "time": "06:48:00",
+ "height": "4.675"
+ },
+ {
+ "time": "19:07:00",
+ "height": "5.028"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "16:43"
+ },
+ {
+ "date": "2017-11-03",
+ "groups": [
+ {
+ "time": "07:28:00",
+ "height": "5.088"
+ },
+ {
+ "time": "19:47:00",
+ "height": "5.368"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2017-11-04",
+ "groups": [
+ {
+ "time": "08:06:00",
+ "height": "5.393"
+ },
+ {
+ "time": "20:26:00",
+ "height": "5.582"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2017-11-05",
+ "groups": [
+ {
+ "time": "08:46:00",
+ "height": "5.561"
+ },
+ {
+ "time": "21:07:00",
+ "height": "5.643"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2017-11-06",
+ "groups": [
+ {
+ "time": "09:26:00",
+ "height": "5.575"
+ },
+ {
+ "time": "21:49:00",
+ "height": "5.536"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2017-11-07",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "5.432"
+ },
+ {
+ "time": "22:36:00",
+ "height": "5.267"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2017-11-08",
+ "groups": [
+ {
+ "time": "10:57:00",
+ "height": "5.149"
+ },
+ {
+ "time": "23:29:00",
+ "height": "4.872"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2017-11-09",
+ "groups": [
+ {
+ "time": "11:51:00",
+ "height": "4.771"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2017-11-10",
+ "groups": [
+ {
+ "time": "00:27:00",
+ "height": "4.418"
+ },
+ {
+ "time": "12:55:00",
+ "height": "4.371"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2017-11-11",
+ "groups": [
+ {
+ "time": "01:36:00",
+ "height": "4.007"
+ },
+ {
+ "time": "14:11:00",
+ "height": "4.063"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2017-11-12",
+ "groups": [
+ {
+ "time": "02:58:00",
+ "height": "3.776"
+ },
+ {
+ "time": "15:37:00",
+ "height": "3.976"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2017-11-13",
+ "groups": [
+ {
+ "time": "04:19:00",
+ "height": "3.828"
+ },
+ {
+ "time": "16:50:00",
+ "height": "4.137"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2017-11-14",
+ "groups": [
+ {
+ "time": "05:25:00",
+ "height": "4.097"
+ },
+ {
+ "time": "17:49:00",
+ "height": "4.414"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2017-11-15",
+ "groups": [
+ {
+ "time": "06:17:00",
+ "height": "4.419"
+ },
+ {
+ "time": "18:37:00",
+ "height": "4.672"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2017-11-16",
+ "groups": [
+ {
+ "time": "07:00:00",
+ "height": "4.689"
+ },
+ {
+ "time": "19:18:00",
+ "height": "4.849"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2017-11-17",
+ "groups": [
+ {
+ "time": "07:38:00",
+ "height": "4.873"
+ },
+ {
+ "time": "19:54:00",
+ "height": "4.940"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2017-11-18",
+ "groups": [
+ {
+ "time": "08:12:00",
+ "height": "4.974"
+ },
+ {
+ "time": "20:27:00",
+ "height": "4.960"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2017-11-19",
+ "groups": [
+ {
+ "time": "08:44:00",
+ "height": "5.005"
+ },
+ {
+ "time": "20:58:00",
+ "height": "4.923"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2017-11-20",
+ "groups": [
+ {
+ "time": "09:14:00",
+ "height": "4.973"
+ },
+ {
+ "time": "21:28:00",
+ "height": "4.830"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2017-11-21",
+ "groups": [
+ {
+ "time": "09:43:00",
+ "height": "4.877"
+ },
+ {
+ "time": "21:58:00",
+ "height": "4.678"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2017-11-22",
+ "groups": [
+ {
+ "time": "10:14:00",
+ "height": "4.719"
+ },
+ {
+ "time": "22:30:00",
+ "height": "4.472"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2017-11-23",
+ "groups": [
+ {
+ "time": "10:50:00",
+ "height": "4.505"
+ },
+ {
+ "time": "23:07:00",
+ "height": "4.218"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2017-11-24",
+ "groups": [
+ {
+ "time": "11:29:00",
+ "height": "4.249"
+ },
+ {
+ "time": "23:48:00",
+ "height": "3.934"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2017-11-25",
+ "groups": [
+ {
+ "time": "12:15:00",
+ "height": "3.973"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2017-11-26",
+ "groups": [
+ {
+ "time": "00:39:00",
+ "height": "3.653"
+ },
+ {
+ "time": "13:14:00",
+ "height": "3.728"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2017-11-27",
+ "groups": [
+ {
+ "time": "01:46:00",
+ "height": "3.444"
+ },
+ {
+ "time": "14:28:00",
+ "height": "3.607"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2017-11-28",
+ "groups": [
+ {
+ "time": "03:07:00",
+ "height": "3.420"
+ },
+ {
+ "time": "15:49:00",
+ "height": "3.709"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2017-11-29",
+ "groups": [
+ {
+ "time": "04:24:00",
+ "height": "3.655"
+ },
+ {
+ "time": "16:53:00",
+ "height": "4.028"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2017-11-30",
+ "groups": [
+ {
+ "time": "05:25:00",
+ "height": "4.069"
+ },
+ {
+ "time": "17:48:00",
+ "height": "4.450"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2017-12-01",
+ "groups": [
+ {
+ "time": "06:13:00",
+ "height": "4.535"
+ },
+ {
+ "time": "18:36:00",
+ "height": "4.872"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2017-12-02",
+ "groups": [
+ {
+ "time": "07:00:00",
+ "height": "4.965"
+ },
+ {
+ "time": "19:22:00",
+ "height": "5.225"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2017-12-03",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "5.305"
+ },
+ {
+ "time": "20:07:00",
+ "height": "5.464"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2017-12-04",
+ "groups": [
+ {
+ "time": "08:29:00",
+ "height": "5.521"
+ },
+ {
+ "time": "20:52:00",
+ "height": "5.561"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2017-12-05",
+ "groups": [
+ {
+ "time": "09:13:00",
+ "height": "5.594"
+ },
+ {
+ "time": "21:38:00",
+ "height": "5.504"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2017-12-06",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "5.518"
+ },
+ {
+ "time": "22:26:00",
+ "height": "5.298"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2017-12-07",
+ "groups": [
+ {
+ "time": "10:49:00",
+ "height": "5.307"
+ },
+ {
+ "time": "23:19:00",
+ "height": "4.975"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2017-12-08",
+ "groups": [
+ {
+ "time": "11:43:00",
+ "height": "4.995"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-09",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "4.587"
+ },
+ {
+ "time": "12:41:00",
+ "height": "4.636"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-10",
+ "groups": [
+ {
+ "time": "01:17:00",
+ "height": "4.205"
+ },
+ {
+ "time": "13:46:00",
+ "height": "4.300"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-11",
+ "groups": [
+ {
+ "time": "02:25:00",
+ "height": "3.913"
+ },
+ {
+ "time": "14:59:00",
+ "height": "4.070"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-12",
+ "groups": [
+ {
+ "time": "03:41:00",
+ "height": "3.795"
+ },
+ {
+ "time": "16:10:00",
+ "height": "4.008"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-13",
+ "groups": [
+ {
+ "time": "04:47:00",
+ "height": "3.873"
+ },
+ {
+ "time": "17:13:00",
+ "height": "4.097"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-14",
+ "groups": [
+ {
+ "time": "05:45:00",
+ "height": "4.077"
+ },
+ {
+ "time": "18:07:00",
+ "height": "4.260"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-15",
+ "groups": [
+ {
+ "time": "06:33:00",
+ "height": "4.317"
+ },
+ {
+ "time": "18:53:00",
+ "height": "4.428"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-16",
+ "groups": [
+ {
+ "time": "07:15:00",
+ "height": "4.531"
+ },
+ {
+ "time": "19:32:00",
+ "height": "4.565"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-17",
+ "groups": [
+ {
+ "time": "07:51:00",
+ "height": "4.695"
+ },
+ {
+ "time": "20:07:00",
+ "height": "4.658"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-18",
+ "groups": [
+ {
+ "time": "08:25:00",
+ "height": "4.803"
+ },
+ {
+ "time": "20:41:00",
+ "height": "4.704"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2017-12-19",
+ "groups": [
+ {
+ "time": "08:57:00",
+ "height": "4.853"
+ },
+ {
+ "time": "21:12:00",
+ "height": "4.699"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2017-12-20",
+ "groups": [
+ {
+ "time": "09:28:00",
+ "height": "4.845"
+ },
+ {
+ "time": "21:42:00",
+ "height": "4.643"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2017-12-21",
+ "groups": [
+ {
+ "time": "09:58:00",
+ "height": "4.779"
+ },
+ {
+ "time": "22:14:00",
+ "height": "4.538"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2017-12-22",
+ "groups": [
+ {
+ "time": "10:33:00",
+ "height": "4.660"
+ },
+ {
+ "time": "22:51:00",
+ "height": "4.385"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2017-12-23",
+ "groups": [
+ {
+ "time": "11:11:00",
+ "height": "4.493"
+ },
+ {
+ "time": "23:30:00",
+ "height": "4.193"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2017-12-24",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "4.292"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2017-12-25",
+ "groups": [
+ {
+ "time": "00:14:00",
+ "height": "3.981"
+ },
+ {
+ "time": "12:42:00",
+ "height": "4.084"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2017-12-26",
+ "groups": [
+ {
+ "time": "01:07:00",
+ "height": "3.783"
+ },
+ {
+ "time": "13:42:00",
+ "height": "3.912"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2017-12-27",
+ "groups": [
+ {
+ "time": "02:13:00",
+ "height": "3.655"
+ },
+ {
+ "time": "14:53:00",
+ "height": "3.846"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2017-12-28",
+ "groups": [
+ {
+ "time": "03:31:00",
+ "height": "3.680"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.947"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2017-12-29",
+ "groups": [
+ {
+ "time": "04:40:00",
+ "height": "3.905"
+ },
+ {
+ "time": "17:10:00",
+ "height": "4.216"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2017-12-30",
+ "groups": [
+ {
+ "time": "05:41:00",
+ "height": "4.275"
+ },
+ {
+ "time": "18:09:00",
+ "height": "4.573"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2017-12-31",
+ "groups": [
+ {
+ "time": "06:36:00",
+ "height": "4.692"
+ },
+ {
+ "time": "19:02:00",
+ "height": "4.930"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2018-01-01",
+ "groups": [
+ {
+ "time": "07:27:00",
+ "height": "5.077"
+ },
+ {
+ "time": "19:53:00",
+ "height": "5.222"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2018-01-02",
+ "groups": [
+ {
+ "time": "08:16:00",
+ "height": "5.375"
+ },
+ {
+ "time": "20:42:00",
+ "height": "5.405"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2018-01-03",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "5.551"
+ },
+ {
+ "time": "21:29:00",
+ "height": "5.453"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2018-01-04",
+ "groups": [
+ {
+ "time": "09:49:00",
+ "height": "5.584"
+ },
+ {
+ "time": "22:15:00",
+ "height": "5.357"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2018-01-05",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "5.468"
+ },
+ {
+ "time": "23:06:00",
+ "height": "5.126"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2018-01-06",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "5.219"
+ },
+ {
+ "time": "23:56:00",
+ "height": "4.795"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2018-01-07",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "4.871"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2018-01-08",
+ "groups": [
+ {
+ "time": "00:48:00",
+ "height": "4.413"
+ },
+ {
+ "time": "13:13:00",
+ "height": "4.478"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2018-01-09",
+ "groups": [
+ {
+ "time": "01:44:00",
+ "height": "4.039"
+ },
+ {
+ "time": "14:12:00",
+ "height": "4.100"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2018-01-10",
+ "groups": [
+ {
+ "time": "02:48:00",
+ "height": "3.742"
+ },
+ {
+ "time": "15:20:00",
+ "height": "3.816"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2018-01-11",
+ "groups": [
+ {
+ "time": "03:59:00",
+ "height": "3.602"
+ },
+ {
+ "time": "16:28:00",
+ "height": "3.702"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2018-01-12",
+ "groups": [
+ {
+ "time": "05:05:00",
+ "height": "3.664"
+ },
+ {
+ "time": "17:32:00",
+ "height": "3.773"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2018-01-13",
+ "groups": [
+ {
+ "time": "06:03:00",
+ "height": "3.878"
+ },
+ {
+ "time": "18:27:00",
+ "height": "3.963"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2018-01-14",
+ "groups": [
+ {
+ "time": "06:52:00",
+ "height": "4.152"
+ },
+ {
+ "time": "19:13:00",
+ "height": "4.187"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2018-01-15",
+ "groups": [
+ {
+ "time": "07:32:00",
+ "height": "4.411"
+ },
+ {
+ "time": "19:51:00",
+ "height": "4.387"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2018-01-16",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "4.619"
+ },
+ {
+ "time": "20:25:00",
+ "height": "4.538"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2018-01-17",
+ "groups": [
+ {
+ "time": "08:42:00",
+ "height": "4.764"
+ },
+ {
+ "time": "20:58:00",
+ "height": "4.635"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2018-01-18",
+ "groups": [
+ {
+ "time": "09:14:00",
+ "height": "4.849"
+ },
+ {
+ "time": "21:29:00",
+ "height": "4.680"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2018-01-19",
+ "groups": [
+ {
+ "time": "09:44:00",
+ "height": "4.877"
+ },
+ {
+ "time": "21:59:00",
+ "height": "4.676"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2018-01-20",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "4.847"
+ },
+ {
+ "time": "22:33:00",
+ "height": "4.616"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2018-01-21",
+ "groups": [
+ {
+ "time": "10:53:00",
+ "height": "4.759"
+ },
+ {
+ "time": "23:10:00",
+ "height": "4.500"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2018-01-22",
+ "groups": [
+ {
+ "time": "11:32:00",
+ "height": "4.612"
+ },
+ {
+ "time": "23:49:00",
+ "height": "4.329"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2018-01-23",
+ "groups": [
+ {
+ "time": "12:14:00",
+ "height": "4.418"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2018-01-24",
+ "groups": [
+ {
+ "time": "00:35:00",
+ "height": "4.120"
+ },
+ {
+ "time": "13:05:00",
+ "height": "4.195"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2018-01-25",
+ "groups": [
+ {
+ "time": "01:30:00",
+ "height": "3.903"
+ },
+ {
+ "time": "14:07:00",
+ "height": "3.984"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:47"
+ },
+ {
+ "date": "2018-01-26",
+ "groups": [
+ {
+ "time": "02:40:00",
+ "height": "3.741"
+ },
+ {
+ "time": "15:23:00",
+ "height": "3.865"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:49"
+ },
+ {
+ "date": "2018-01-27",
+ "groups": [
+ {
+ "time": "04:01:00",
+ "height": "3.745"
+ },
+ {
+ "time": "16:38:00",
+ "height": "3.943"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:51"
+ },
+ {
+ "date": "2018-01-28",
+ "groups": [
+ {
+ "time": "05:14:00",
+ "height": "3.987"
+ },
+ {
+ "time": "17:48:00",
+ "height": "4.225"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:53"
+ },
+ {
+ "date": "2018-01-29",
+ "groups": [
+ {
+ "time": "06:19:00",
+ "height": "4.395"
+ },
+ {
+ "time": "18:49:00",
+ "height": "4.613"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:55"
+ },
+ {
+ "date": "2018-01-30",
+ "groups": [
+ {
+ "time": "07:15:00",
+ "height": "4.846"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.993"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:57"
+ },
+ {
+ "date": "2018-01-31",
+ "groups": [
+ {
+ "time": "08:06:00",
+ "height": "5.242"
+ },
+ {
+ "time": "20:33:00",
+ "height": "5.283"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:59"
+ },
+ {
+ "date": "2018-02-01",
+ "groups": [
+ {
+ "time": "08:53:00",
+ "height": "5.517"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.434"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "17:00"
+ },
+ {
+ "date": "2018-02-02",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "5.632"
+ },
+ {
+ "time": "22:00:00",
+ "height": "5.426"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "17:02"
+ },
+ {
+ "date": "2018-02-03",
+ "groups": [
+ {
+ "time": "10:20:00",
+ "height": "5.573"
+ },
+ {
+ "time": "22:45:00",
+ "height": "5.260"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "17:04"
+ },
+ {
+ "date": "2018-02-04",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "5.351"
+ },
+ {
+ "time": "23:30:00",
+ "height": "4.964"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "17:06"
+ },
+ {
+ "date": "2018-02-05",
+ "groups": [
+ {
+ "time": "11:50:00",
+ "height": "4.998"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "17:08"
+ },
+ {
+ "date": "2018-02-06",
+ "groups": [
+ {
+ "time": "00:13:00",
+ "height": "4.580"
+ },
+ {
+ "time": "12:34:00",
+ "height": "4.565"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "17:10"
+ },
+ {
+ "date": "2018-02-07",
+ "groups": [
+ {
+ "time": "00:59:00",
+ "height": "4.158"
+ },
+ {
+ "time": "13:21:00",
+ "height": "4.106"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "17:12"
+ },
+ {
+ "date": "2018-02-08",
+ "groups": [
+ {
+ "time": "01:51:00",
+ "height": "3.751"
+ },
+ {
+ "time": "14:18:00",
+ "height": "3.679"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "17:14"
+ },
+ {
+ "date": "2018-02-09",
+ "groups": [
+ {
+ "time": "02:57:00",
+ "height": "3.430"
+ },
+ {
+ "time": "15:33:00",
+ "height": "3.379"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "17:16"
+ },
+ {
+ "date": "2018-02-10",
+ "groups": [
+ {
+ "time": "04:17:00",
+ "height": "3.318"
+ },
+ {
+ "time": "16:52:00",
+ "height": "3.336"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "17:18"
+ },
+ {
+ "date": "2018-02-11",
+ "groups": [
+ {
+ "time": "05:30:00",
+ "height": "3.485"
+ },
+ {
+ "time": "18:00:00",
+ "height": "3.549"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "17:20"
+ },
+ {
+ "date": "2018-02-12",
+ "groups": [
+ {
+ "time": "06:28:00",
+ "height": "3.819"
+ },
+ {
+ "time": "18:52:00",
+ "height": "3.871"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "17:22"
+ },
+ {
+ "date": "2018-02-13",
+ "groups": [
+ {
+ "time": "07:13:00",
+ "height": "4.176"
+ },
+ {
+ "time": "19:32:00",
+ "height": "4.186"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "17:24"
+ },
+ {
+ "date": "2018-02-14",
+ "groups": [
+ {
+ "time": "07:50:00",
+ "height": "4.485"
+ },
+ {
+ "time": "20:07:00",
+ "height": "4.446"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "17:25"
+ },
+ {
+ "date": "2018-02-15",
+ "groups": [
+ {
+ "time": "08:24:00",
+ "height": "4.723"
+ },
+ {
+ "time": "20:40:00",
+ "height": "4.645"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "17:27"
+ },
+ {
+ "date": "2018-02-16",
+ "groups": [
+ {
+ "time": "08:55:00",
+ "height": "4.894"
+ },
+ {
+ "time": "21:10:00",
+ "height": "4.786"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "17:29"
+ },
+ {
+ "date": "2018-02-17",
+ "groups": [
+ {
+ "time": "09:26:00",
+ "height": "5.003"
+ },
+ {
+ "time": "21:40:00",
+ "height": "4.868"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "17:31"
+ },
+ {
+ "date": "2018-02-18",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "5.047"
+ },
+ {
+ "time": "22:12:00",
+ "height": "4.880"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "17:33"
+ },
+ {
+ "date": "2018-02-19",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "5.012"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.806"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "17:35"
+ },
+ {
+ "date": "2018-02-20",
+ "groups": [
+ {
+ "time": "11:09:00",
+ "height": "4.889"
+ },
+ {
+ "time": "23:25:00",
+ "height": "4.645"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "17:37"
+ },
+ {
+ "date": "2018-02-21",
+ "groups": [
+ {
+ "time": "11:49:00",
+ "height": "4.677"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "17:39"
+ },
+ {
+ "date": "2018-02-22",
+ "groups": [
+ {
+ "time": "00:08:00",
+ "height": "4.404"
+ },
+ {
+ "time": "12:35:00",
+ "height": "4.387"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "17:41"
+ },
+ {
+ "date": "2018-02-23",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "4.104"
+ },
+ {
+ "time": "13:33:00",
+ "height": "4.052"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "17:43"
+ },
+ {
+ "date": "2018-02-24",
+ "groups": [
+ {
+ "time": "02:04:00",
+ "height": "3.800"
+ },
+ {
+ "time": "14:49:00",
+ "height": "3.763"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "17:45"
+ },
+ {
+ "date": "2018-02-25",
+ "groups": [
+ {
+ "time": "03:31:00",
+ "height": "3.635"
+ },
+ {
+ "time": "16:17:00",
+ "height": "3.700"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "17:47"
+ },
+ {
+ "date": "2018-02-26",
+ "groups": [
+ {
+ "time": "04:55:00",
+ "height": "3.784"
+ },
+ {
+ "time": "17:36:00",
+ "height": "3.959"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "17:48"
+ },
+ {
+ "date": "2018-02-27",
+ "groups": [
+ {
+ "time": "06:08:00",
+ "height": "4.208"
+ },
+ {
+ "time": "18:42:00",
+ "height": "4.405"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "17:50"
+ },
+ {
+ "date": "2018-02-28",
+ "groups": [
+ {
+ "time": "07:07:00",
+ "height": "4.718"
+ },
+ {
+ "time": "19:35:00",
+ "height": "4.859"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "17:52"
+ },
+ {
+ "date": "2018-03-01",
+ "groups": [
+ {
+ "time": "07:56:00",
+ "height": "5.163"
+ },
+ {
+ "time": "20:20:00",
+ "height": "5.207"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "17:54"
+ },
+ {
+ "date": "2018-03-02",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "5.465"
+ },
+ {
+ "time": "21:03:00",
+ "height": "5.402"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2018-03-03",
+ "groups": [
+ {
+ "time": "09:21:00",
+ "height": "5.592"
+ },
+ {
+ "time": "21:41:00",
+ "height": "5.432"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2018-03-04",
+ "groups": [
+ {
+ "time": "09:58:00",
+ "height": "5.542"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.303"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2018-03-05",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "5.331"
+ },
+ {
+ "time": "22:58:00",
+ "height": "5.042"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2018-03-06",
+ "groups": [
+ {
+ "time": "11:17:00",
+ "height": "4.993"
+ },
+ {
+ "time": "23:36:00",
+ "height": "4.684"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2018-03-07",
+ "groups": [
+ {
+ "time": "11:55:00",
+ "height": "4.572"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "18:05"
+ },
+ {
+ "date": "2018-03-08",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "4.272"
+ },
+ {
+ "time": "12:35:00",
+ "height": "4.110"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2018-03-09",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "3.842"
+ },
+ {
+ "time": "13:21:00",
+ "height": "3.647"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2018-03-10",
+ "groups": [
+ {
+ "time": "01:53:00",
+ "height": "3.438"
+ },
+ {
+ "time": "14:25:00",
+ "height": "3.242"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2018-03-11",
+ "groups": [
+ {
+ "time": "03:15:00",
+ "height": "3.164"
+ },
+ {
+ "time": "16:02:00",
+ "height": "3.055"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2018-03-12",
+ "groups": [
+ {
+ "time": "04:50:00",
+ "height": "3.225"
+ },
+ {
+ "time": "17:28:00",
+ "height": "3.246"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2018-03-13",
+ "groups": [
+ {
+ "time": "05:58:00",
+ "height": "3.570"
+ },
+ {
+ "time": "18:26:00",
+ "height": "3.632"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2018-03-14",
+ "groups": [
+ {
+ "time": "06:46:00",
+ "height": "3.990"
+ },
+ {
+ "time": "19:08:00",
+ "height": "4.035"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2018-03-15",
+ "groups": [
+ {
+ "time": "07:24:00",
+ "height": "4.375"
+ },
+ {
+ "time": "19:43:00",
+ "height": "4.390"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2018-03-16",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.692"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.680"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2018-03-17",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "4.939"
+ },
+ {
+ "time": "20:47:00",
+ "height": "4.904"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "18:23"
+ },
+ {
+ "date": "2018-03-18",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "5.116"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.056"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2018-03-19",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "5.212"
+ },
+ {
+ "time": "21:49:00",
+ "height": "5.115"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "18:27"
+ },
+ {
+ "date": "2018-03-20",
+ "groups": [
+ {
+ "time": "10:07:00",
+ "height": "5.206"
+ },
+ {
+ "time": "22:24:00",
+ "height": "5.062"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2018-03-21",
+ "groups": [
+ {
+ "time": "10:45:00",
+ "height": "5.079"
+ },
+ {
+ "time": "23:03:00",
+ "height": "4.888"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2018-03-22",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "4.829"
+ },
+ {
+ "time": "23:46:00",
+ "height": "4.606"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2018-03-23",
+ "groups": [
+ {
+ "time": "12:14:00",
+ "height": "4.471"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "18:34"
+ },
+ {
+ "date": "2018-03-24",
+ "groups": [
+ {
+ "time": "00:36:00",
+ "height": "4.242"
+ },
+ {
+ "time": "13:13:00",
+ "height": "4.051"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2018-03-25",
+ "groups": [
+ {
+ "time": "02:42:00",
+ "height": "3.864"
+ },
+ {
+ "time": "14:32:00",
+ "height": "3.686"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2018-03-26",
+ "groups": [
+ {
+ "time": "04:13:00",
+ "height": "3.634"
+ },
+ {
+ "time": "17:05:00",
+ "height": "3.590"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "19:40"
+ },
+ {
+ "date": "2018-03-27",
+ "groups": [
+ {
+ "time": "05:43:00",
+ "height": "3.759"
+ },
+ {
+ "time": "18:26:00",
+ "height": "3.866"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "19:41"
+ },
+ {
+ "date": "2018-03-28",
+ "groups": [
+ {
+ "time": "06:57:00",
+ "height": "4.184"
+ },
+ {
+ "time": "19:30:00",
+ "height": "4.332"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "19:43"
+ },
+ {
+ "date": "2018-03-29",
+ "groups": [
+ {
+ "time": "07:54:00",
+ "height": "4.674"
+ },
+ {
+ "time": "20:20:00",
+ "height": "4.780"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "19:45"
+ },
+ {
+ "date": "2018-03-30",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "5.075"
+ },
+ {
+ "time": "21:03:00",
+ "height": "5.108"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2018-03-31",
+ "groups": [
+ {
+ "time": "09:22:00",
+ "height": "5.325"
+ },
+ {
+ "time": "21:42:00",
+ "height": "5.288"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:48"
+ },
+ {
+ "date": "2018-04-01",
+ "groups": [
+ {
+ "time": "10:00:00",
+ "height": "5.415"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.323"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2018-04-02",
+ "groups": [
+ {
+ "time": "10:35:00",
+ "height": "5.357"
+ },
+ {
+ "time": "22:52:00",
+ "height": "5.226"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2018-04-03",
+ "groups": [
+ {
+ "time": "11:08:00",
+ "height": "5.172"
+ },
+ {
+ "time": "23:26:00",
+ "height": "5.017"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2018-04-04",
+ "groups": [
+ {
+ "time": "11:44:00",
+ "height": "4.884"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2018-04-05",
+ "groups": [
+ {
+ "time": "00:02:00",
+ "height": "4.719"
+ },
+ {
+ "time": "12:19:00",
+ "height": "4.522"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2018-04-06",
+ "groups": [
+ {
+ "time": "00:37:00",
+ "height": "4.362"
+ },
+ {
+ "time": "12:56:00",
+ "height": "4.116"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2018-04-07",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "3.971"
+ },
+ {
+ "time": "13:38:00",
+ "height": "3.689"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2018-04-08",
+ "groups": [
+ {
+ "time": "02:05:00",
+ "height": "3.576"
+ },
+ {
+ "time": "14:33:00",
+ "height": "3.284"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2018-04-09",
+ "groups": [
+ {
+ "time": "03:13:00",
+ "height": "3.246"
+ },
+ {
+ "time": "15:59:00",
+ "height": "3.011"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "20:04"
+ },
+ {
+ "date": "2018-04-10",
+ "groups": [
+ {
+ "time": "04:55:00",
+ "height": "3.159"
+ },
+ {
+ "time": "17:41:00",
+ "height": "3.091"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2018-04-11",
+ "groups": [
+ {
+ "time": "06:15:00",
+ "height": "3.425"
+ },
+ {
+ "time": "18:47:00",
+ "height": "3.461"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2018-04-12",
+ "groups": [
+ {
+ "time": "07:08:00",
+ "height": "3.838"
+ },
+ {
+ "time": "19:32:00",
+ "height": "3.901"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2018-04-13",
+ "groups": [
+ {
+ "time": "07:49:00",
+ "height": "4.259"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.321"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2018-04-14",
+ "groups": [
+ {
+ "time": "08:25:00",
+ "height": "4.634"
+ },
+ {
+ "time": "20:44:00",
+ "height": "4.686"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2018-04-15",
+ "groups": [
+ {
+ "time": "09:00:00",
+ "height": "4.944"
+ },
+ {
+ "time": "21:18:00",
+ "height": "4.979"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:15"
+ },
+ {
+ "date": "2018-04-16",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "5.175"
+ },
+ {
+ "time": "21:52:00",
+ "height": "5.182"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2018-04-17",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "5.304"
+ },
+ {
+ "time": "22:27:00",
+ "height": "5.271"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2018-04-18",
+ "groups": [
+ {
+ "time": "10:46:00",
+ "height": "5.308"
+ },
+ {
+ "time": "23:03:00",
+ "height": "5.227"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:20"
+ },
+ {
+ "date": "2018-04-19",
+ "groups": [
+ {
+ "time": "11:26:00",
+ "height": "5.168"
+ },
+ {
+ "time": "23:44:00",
+ "height": "5.046"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2018-04-20",
+ "groups": [
+ {
+ "time": "12:12:00",
+ "height": "4.888"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2018-04-21",
+ "groups": [
+ {
+ "time": "00:32:00",
+ "height": "4.745"
+ },
+ {
+ "time": "13:03:00",
+ "height": "4.498"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2018-04-22",
+ "groups": [
+ {
+ "time": "01:26:00",
+ "height": "4.366"
+ },
+ {
+ "time": "14:05:00",
+ "height": "4.068"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2018-04-23",
+ "groups": [
+ {
+ "time": "02:35:00",
+ "height": "3.996"
+ },
+ {
+ "time": "15:23:00",
+ "height": "3.727"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2018-04-24",
+ "groups": [
+ {
+ "time": "04:02:00",
+ "height": "3.788"
+ },
+ {
+ "time": "16:53:00",
+ "height": "3.652"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2018-04-25",
+ "groups": [
+ {
+ "time": "05:28:00",
+ "height": "3.887"
+ },
+ {
+ "time": "18:09:00",
+ "height": "3.894"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2018-04-26",
+ "groups": [
+ {
+ "time": "06:38:00",
+ "height": "4.222"
+ },
+ {
+ "time": "19:11:00",
+ "height": "4.285"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2018-04-27",
+ "groups": [
+ {
+ "time": "07:33:00",
+ "height": "4.598"
+ },
+ {
+ "time": "20:00:00",
+ "height": "4.652"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2018-04-28",
+ "groups": [
+ {
+ "time": "08:19:00",
+ "height": "4.891"
+ },
+ {
+ "time": "20:41:00",
+ "height": "4.917"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2018-04-29",
+ "groups": [
+ {
+ "time": "08:59:00",
+ "height": "5.059"
+ },
+ {
+ "time": "21:19:00",
+ "height": "5.064"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2018-04-30",
+ "groups": [
+ {
+ "time": "09:36:00",
+ "height": "5.111"
+ },
+ {
+ "time": "21:53:00",
+ "height": "5.104"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2018-05-01",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "5.063"
+ },
+ {
+ "time": "22:26:00",
+ "height": "5.050"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2018-05-02",
+ "groups": [
+ {
+ "time": "10:42:00",
+ "height": "4.929"
+ },
+ {
+ "time": "22:57:00",
+ "height": "4.910"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2018-05-03",
+ "groups": [
+ {
+ "time": "11:14:00",
+ "height": "4.720"
+ },
+ {
+ "time": "23:31:00",
+ "height": "4.696"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2018-05-04",
+ "groups": [
+ {
+ "time": "11:49:00",
+ "height": "4.449"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2018-05-05",
+ "groups": [
+ {
+ "time": "00:07:00",
+ "height": "4.422"
+ },
+ {
+ "time": "12:25:00",
+ "height": "4.131"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2018-05-06",
+ "groups": [
+ {
+ "time": "00:46:00",
+ "height": "4.108"
+ },
+ {
+ "time": "13:07:00",
+ "height": "3.785"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2018-05-07",
+ "groups": [
+ {
+ "time": "01:31:00",
+ "height": "3.778"
+ },
+ {
+ "time": "13:56:00",
+ "height": "3.445"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2018-05-08",
+ "groups": [
+ {
+ "time": "02:30:00",
+ "height": "3.480"
+ },
+ {
+ "time": "15:05:00",
+ "height": "3.183"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2018-05-09",
+ "groups": [
+ {
+ "time": "03:49:00",
+ "height": "3.319"
+ },
+ {
+ "time": "16:36:00",
+ "height": "3.135"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2018-05-10",
+ "groups": [
+ {
+ "time": "05:16:00",
+ "height": "3.420"
+ },
+ {
+ "time": "17:53:00",
+ "height": "3.381"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2018-05-11",
+ "groups": [
+ {
+ "time": "06:18:00",
+ "height": "3.741"
+ },
+ {
+ "time": "18:46:00",
+ "height": "3.786"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2018-05-12",
+ "groups": [
+ {
+ "time": "07:06:00",
+ "height": "4.143"
+ },
+ {
+ "time": "19:29:00",
+ "height": "4.224"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2018-05-13",
+ "groups": [
+ {
+ "time": "07:47:00",
+ "height": "4.541"
+ },
+ {
+ "time": "20:09:00",
+ "height": "4.633"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2018-05-14",
+ "groups": [
+ {
+ "time": "08:28:00",
+ "height": "4.889"
+ },
+ {
+ "time": "20:47:00",
+ "height": "4.972"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2018-05-15",
+ "groups": [
+ {
+ "time": "09:07:00",
+ "height": "5.152"
+ },
+ {
+ "time": "21:26:00",
+ "height": "5.212"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2018-05-16",
+ "groups": [
+ {
+ "time": "09:48:00",
+ "height": "5.303"
+ },
+ {
+ "time": "22:06:00",
+ "height": "5.329"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2018-05-17",
+ "groups": [
+ {
+ "time": "10:29:00",
+ "height": "5.318"
+ },
+ {
+ "time": "22:47:00",
+ "height": "5.309"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2018-05-18",
+ "groups": [
+ {
+ "time": "11:12:00",
+ "height": "5.188"
+ },
+ {
+ "time": "23:32:00",
+ "height": "5.155"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2018-05-19",
+ "groups": [
+ {
+ "time": "12:03:00",
+ "height": "4.925"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2018-05-20",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "4.888"
+ },
+ {
+ "time": "12:58:00",
+ "height": "4.570"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2018-05-21",
+ "groups": [
+ {
+ "time": "01:23:00",
+ "height": "4.556"
+ },
+ {
+ "time": "14:00:00",
+ "height": "4.196"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2018-05-22",
+ "groups": [
+ {
+ "time": "02:29:00",
+ "height": "4.239"
+ },
+ {
+ "time": "15:12:00",
+ "height": "3.902"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2018-05-23",
+ "groups": [
+ {
+ "time": "03:46:00",
+ "height": "4.036"
+ },
+ {
+ "time": "16:32:00",
+ "height": "3.795"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2018-05-24",
+ "groups": [
+ {
+ "time": "05:04:00",
+ "height": "4.027"
+ },
+ {
+ "time": "17:42:00",
+ "height": "3.909"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2018-05-25",
+ "groups": [
+ {
+ "time": "06:09:00",
+ "height": "4.185"
+ },
+ {
+ "time": "18:42:00",
+ "height": "4.156"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2018-05-26",
+ "groups": [
+ {
+ "time": "07:06:00",
+ "height": "4.400"
+ },
+ {
+ "time": "19:33:00",
+ "height": "4.419"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2018-05-27",
+ "groups": [
+ {
+ "time": "07:53:00",
+ "height": "4.584"
+ },
+ {
+ "time": "20:16:00",
+ "height": "4.629"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2018-05-28",
+ "groups": [
+ {
+ "time": "08:35:00",
+ "height": "4.701"
+ },
+ {
+ "time": "20:55:00",
+ "height": "4.766"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2018-05-29",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "4.752"
+ },
+ {
+ "time": "21:30:00",
+ "height": "4.834"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2018-05-30",
+ "groups": [
+ {
+ "time": "09:47:00",
+ "height": "4.746"
+ },
+ {
+ "time": "22:04:00",
+ "height": "4.837"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2018-05-31",
+ "groups": [
+ {
+ "time": "10:20:00",
+ "height": "4.685"
+ },
+ {
+ "time": "22:36:00",
+ "height": "4.777"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2018-06-01",
+ "groups": [
+ {
+ "time": "10:52:00",
+ "height": "4.568"
+ },
+ {
+ "time": "23:07:00",
+ "height": "4.656"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2018-06-02",
+ "groups": [
+ {
+ "time": "11:25:00",
+ "height": "4.400"
+ },
+ {
+ "time": "23:43:00",
+ "height": "4.481"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2018-06-03",
+ "groups": [
+ {
+ "time": "12:02:00",
+ "height": "4.187"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2018-06-04",
+ "groups": [
+ {
+ "time": "00:22:00",
+ "height": "4.263"
+ },
+ {
+ "time": "12:42:00",
+ "height": "3.943"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2018-06-05",
+ "groups": [
+ {
+ "time": "01:05:00",
+ "height": "4.020"
+ },
+ {
+ "time": "13:28:00",
+ "height": "3.691"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2018-06-06",
+ "groups": [
+ {
+ "time": "01:56:00",
+ "height": "3.783"
+ },
+ {
+ "time": "14:23:00",
+ "height": "3.475"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2018-06-07",
+ "groups": [
+ {
+ "time": "02:58:00",
+ "height": "3.610"
+ },
+ {
+ "time": "15:33:00",
+ "height": "3.366"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2018-06-08",
+ "groups": [
+ {
+ "time": "04:12:00",
+ "height": "3.579"
+ },
+ {
+ "time": "16:49:00",
+ "height": "3.445"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2018-06-09",
+ "groups": [
+ {
+ "time": "05:21:00",
+ "height": "3.736"
+ },
+ {
+ "time": "17:53:00",
+ "height": "3.719"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2018-06-10",
+ "groups": [
+ {
+ "time": "06:18:00",
+ "height": "4.041"
+ },
+ {
+ "time": "18:46:00",
+ "height": "4.105"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2018-06-11",
+ "groups": [
+ {
+ "time": "07:10:00",
+ "height": "4.406"
+ },
+ {
+ "time": "19:34:00",
+ "height": "4.512"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2018-06-12",
+ "groups": [
+ {
+ "time": "07:57:00",
+ "height": "4.756"
+ },
+ {
+ "time": "20:20:00",
+ "height": "4.874"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2018-06-13",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "5.040"
+ },
+ {
+ "time": "21:04:00",
+ "height": "5.153"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2018-06-14",
+ "groups": [
+ {
+ "time": "09:30:00",
+ "height": "5.222"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.321"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2018-06-15",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "5.282"
+ },
+ {
+ "time": "22:36:00",
+ "height": "5.365"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2018-06-16",
+ "groups": [
+ {
+ "time": "11:02:00",
+ "height": "5.211"
+ },
+ {
+ "time": "23:24:00",
+ "height": "5.283"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2018-06-17",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "5.019"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2018-06-18",
+ "groups": [
+ {
+ "time": "00:17:00",
+ "height": "5.089"
+ },
+ {
+ "time": "12:49:00",
+ "height": "4.736"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2018-06-19",
+ "groups": [
+ {
+ "time": "01:13:00",
+ "height": "4.815"
+ },
+ {
+ "time": "13:47:00",
+ "height": "4.410"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2018-06-20",
+ "groups": [
+ {
+ "time": "02:14:00",
+ "height": "4.510"
+ },
+ {
+ "time": "14:49:00",
+ "height": "4.107"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2018-06-21",
+ "groups": [
+ {
+ "time": "03:20:00",
+ "height": "4.236"
+ },
+ {
+ "time": "15:59:00",
+ "height": "3.896"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2018-06-22",
+ "groups": [
+ {
+ "time": "04:30:00",
+ "height": "4.056"
+ },
+ {
+ "time": "17:06:00",
+ "height": "3.834"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2018-06-23",
+ "groups": [
+ {
+ "time": "05:35:00",
+ "height": "4.009"
+ },
+ {
+ "time": "18:09:00",
+ "height": "3.921"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2018-06-24",
+ "groups": [
+ {
+ "time": "06:34:00",
+ "height": "4.073"
+ },
+ {
+ "time": "19:04:00",
+ "height": "4.097"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2018-06-25",
+ "groups": [
+ {
+ "time": "07:27:00",
+ "height": "4.195"
+ },
+ {
+ "time": "19:52:00",
+ "height": "4.295"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2018-06-26",
+ "groups": [
+ {
+ "time": "08:12:00",
+ "height": "4.322"
+ },
+ {
+ "time": "20:33:00",
+ "height": "4.468"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2018-06-27",
+ "groups": [
+ {
+ "time": "08:52:00",
+ "height": "4.426"
+ },
+ {
+ "time": "21:10:00",
+ "height": "4.597"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2018-06-28",
+ "groups": [
+ {
+ "time": "09:29:00",
+ "height": "4.494"
+ },
+ {
+ "time": "21:46:00",
+ "height": "4.674"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2018-06-29",
+ "groups": [
+ {
+ "time": "10:03:00",
+ "height": "4.517"
+ },
+ {
+ "time": "22:19:00",
+ "height": "4.695"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2018-06-30",
+ "groups": [
+ {
+ "time": "10:35:00",
+ "height": "4.496"
+ },
+ {
+ "time": "22:50:00",
+ "height": "4.665"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2018-07-01",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.429"
+ },
+ {
+ "time": "23:24:00",
+ "height": "4.585"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2018-07-02",
+ "groups": [
+ {
+ "time": "11:42:00",
+ "height": "4.318"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2018-07-03",
+ "groups": [
+ {
+ "time": "00:02:00",
+ "height": "4.457"
+ },
+ {
+ "time": "12:19:00",
+ "height": "4.168"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2018-07-04",
+ "groups": [
+ {
+ "time": "00:41:00",
+ "height": "4.290"
+ },
+ {
+ "time": "13:00:00",
+ "height": "3.989"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2018-07-05",
+ "groups": [
+ {
+ "time": "01:25:00",
+ "height": "4.101"
+ },
+ {
+ "time": "13:47:00",
+ "height": "3.805"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2018-07-06",
+ "groups": [
+ {
+ "time": "02:16:00",
+ "height": "3.921"
+ },
+ {
+ "time": "14:43:00",
+ "height": "3.655"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2018-07-07",
+ "groups": [
+ {
+ "time": "03:18:00",
+ "height": "3.796"
+ },
+ {
+ "time": "15:50:00",
+ "height": "3.596"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2018-07-08",
+ "groups": [
+ {
+ "time": "04:28:00",
+ "height": "3.785"
+ },
+ {
+ "time": "17:02:00",
+ "height": "3.694"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2018-07-09",
+ "groups": [
+ {
+ "time": "05:35:00",
+ "height": "3.933"
+ },
+ {
+ "time": "18:07:00",
+ "height": "3.963"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2018-07-10",
+ "groups": [
+ {
+ "time": "06:37:00",
+ "height": "4.217"
+ },
+ {
+ "time": "19:05:00",
+ "height": "4.337"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2018-07-11",
+ "groups": [
+ {
+ "time": "07:33:00",
+ "height": "4.558"
+ },
+ {
+ "time": "19:59:00",
+ "height": "4.729"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2018-07-12",
+ "groups": [
+ {
+ "time": "08:26:00",
+ "height": "4.883"
+ },
+ {
+ "time": "20:49:00",
+ "height": "5.075"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2018-07-13",
+ "groups": [
+ {
+ "time": "09:17:00",
+ "height": "5.138"
+ },
+ {
+ "time": "21:38:00",
+ "height": "5.331"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2018-07-14",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.286"
+ },
+ {
+ "time": "22:25:00",
+ "height": "5.467"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2018-07-15",
+ "groups": [
+ {
+ "time": "10:52:00",
+ "height": "5.304"
+ },
+ {
+ "time": "23:12:00",
+ "height": "5.465"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2018-07-16",
+ "groups": [
+ {
+ "time": "11:41:00",
+ "height": "5.187"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2018-07-17",
+ "groups": [
+ {
+ "time": "00:04:00",
+ "height": "5.322"
+ },
+ {
+ "time": "12:33:00",
+ "height": "4.948"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2018-07-18",
+ "groups": [
+ {
+ "time": "00:55:00",
+ "height": "5.055"
+ },
+ {
+ "time": "13:24:00",
+ "height": "4.623"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2018-07-19",
+ "groups": [
+ {
+ "time": "01:48:00",
+ "height": "4.702"
+ },
+ {
+ "time": "14:17:00",
+ "height": "4.263"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2018-07-20",
+ "groups": [
+ {
+ "time": "02:43:00",
+ "height": "4.317"
+ },
+ {
+ "time": "15:17:00",
+ "height": "3.930"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2018-07-21",
+ "groups": [
+ {
+ "time": "03:46:00",
+ "height": "3.969"
+ },
+ {
+ "time": "16:25:00",
+ "height": "3.698"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2018-07-22",
+ "groups": [
+ {
+ "time": "04:54:00",
+ "height": "3.741"
+ },
+ {
+ "time": "17:31:00",
+ "height": "3.641"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2018-07-23",
+ "groups": [
+ {
+ "time": "06:00:00",
+ "height": "3.695"
+ },
+ {
+ "time": "18:35:00",
+ "height": "3.767"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2018-07-24",
+ "groups": [
+ {
+ "time": "07:01:00",
+ "height": "3.813"
+ },
+ {
+ "time": "19:29:00",
+ "height": "4.005"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2018-07-25",
+ "groups": [
+ {
+ "time": "07:53:00",
+ "height": "4.014"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.262"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2018-07-26",
+ "groups": [
+ {
+ "time": "08:35:00",
+ "height": "4.219"
+ },
+ {
+ "time": "20:54:00",
+ "height": "4.481"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2018-07-27",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "4.386"
+ },
+ {
+ "time": "21:29:00",
+ "height": "4.640"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2018-07-28",
+ "groups": [
+ {
+ "time": "09:46:00",
+ "height": "4.500"
+ },
+ {
+ "time": "22:02:00",
+ "height": "4.739"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2018-07-29",
+ "groups": [
+ {
+ "time": "10:18:00",
+ "height": "4.561"
+ },
+ {
+ "time": "22:33:00",
+ "height": "4.780"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2018-07-30",
+ "groups": [
+ {
+ "time": "10:48:00",
+ "height": "4.576"
+ },
+ {
+ "time": "23:03:00",
+ "height": "4.770"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2018-07-31",
+ "groups": [
+ {
+ "time": "11:19:00",
+ "height": "4.542"
+ },
+ {
+ "time": "23:38:00",
+ "height": "4.705"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2018-08-01",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "4.455"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2018-08-02",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "4.582"
+ },
+ {
+ "time": "12:32:00",
+ "height": "4.315"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2018-08-03",
+ "groups": [
+ {
+ "time": "00:54:00",
+ "height": "4.408"
+ },
+ {
+ "time": "13:12:00",
+ "height": "4.133"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2018-08-04",
+ "groups": [
+ {
+ "time": "01:38:00",
+ "height": "4.198"
+ },
+ {
+ "time": "14:01:00",
+ "height": "3.930"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2018-08-05",
+ "groups": [
+ {
+ "time": "02:32:00",
+ "height": "3.981"
+ },
+ {
+ "time": "15:02:00",
+ "height": "3.747"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2018-08-06",
+ "groups": [
+ {
+ "time": "03:41:00",
+ "height": "3.811"
+ },
+ {
+ "time": "16:19:00",
+ "height": "3.672"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2018-08-07",
+ "groups": [
+ {
+ "time": "05:00:00",
+ "height": "3.794"
+ },
+ {
+ "time": "17:37:00",
+ "height": "3.815"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2018-08-08",
+ "groups": [
+ {
+ "time": "06:13:00",
+ "height": "4.000"
+ },
+ {
+ "time": "18:45:00",
+ "height": "4.171"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2018-08-09",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.367"
+ },
+ {
+ "time": "19:45:00",
+ "height": "4.626"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2018-08-10",
+ "groups": [
+ {
+ "time": "08:15:00",
+ "height": "4.776"
+ },
+ {
+ "time": "20:39:00",
+ "height": "5.065"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2018-08-11",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "5.127"
+ },
+ {
+ "time": "21:27:00",
+ "height": "5.408"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2018-08-12",
+ "groups": [
+ {
+ "time": "09:53:00",
+ "height": "5.359"
+ },
+ {
+ "time": "22:13:00",
+ "height": "5.608"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2018-08-13",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "5.439"
+ },
+ {
+ "time": "22:56:00",
+ "height": "5.636"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2018-08-14",
+ "groups": [
+ {
+ "time": "11:21:00",
+ "height": "5.355"
+ },
+ {
+ "time": "23:42:00",
+ "height": "5.489"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2018-08-15",
+ "groups": [
+ {
+ "time": "12:07:00",
+ "height": "5.122"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2018-08-16",
+ "groups": [
+ {
+ "time": "00:29:00",
+ "height": "5.186"
+ },
+ {
+ "time": "12:52:00",
+ "height": "4.773"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2018-08-17",
+ "groups": [
+ {
+ "time": "01:14:00",
+ "height": "4.770"
+ },
+ {
+ "time": "13:39:00",
+ "height": "4.360"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2018-08-18",
+ "groups": [
+ {
+ "time": "02:02:00",
+ "height": "4.299"
+ },
+ {
+ "time": "14:29:00",
+ "height": "3.938"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2018-08-19",
+ "groups": [
+ {
+ "time": "02:56:00",
+ "height": "3.839"
+ },
+ {
+ "time": "15:32:00",
+ "height": "3.579"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2018-08-20",
+ "groups": [
+ {
+ "time": "04:05:00",
+ "height": "3.477"
+ },
+ {
+ "time": "16:50:00",
+ "height": "3.396"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2018-08-21",
+ "groups": [
+ {
+ "time": "05:25:00",
+ "height": "3.346"
+ },
+ {
+ "time": "18:07:00",
+ "height": "3.492"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2018-08-22",
+ "groups": [
+ {
+ "time": "06:39:00",
+ "height": "3.500"
+ },
+ {
+ "time": "19:10:00",
+ "height": "3.796"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2018-08-23",
+ "groups": [
+ {
+ "time": "07:35:00",
+ "height": "3.808"
+ },
+ {
+ "time": "19:57:00",
+ "height": "4.152"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2018-08-24",
+ "groups": [
+ {
+ "time": "08:18:00",
+ "height": "4.127"
+ },
+ {
+ "time": "20:35:00",
+ "height": "4.464"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2018-08-25",
+ "groups": [
+ {
+ "time": "08:54:00",
+ "height": "4.391"
+ },
+ {
+ "time": "21:09:00",
+ "height": "4.700"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2018-08-26",
+ "groups": [
+ {
+ "time": "09:26:00",
+ "height": "4.587"
+ },
+ {
+ "time": "21:41:00",
+ "height": "4.860"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:20"
+ },
+ {
+ "date": "2018-08-27",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "4.719"
+ },
+ {
+ "time": "22:11:00",
+ "height": "4.956"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2018-08-28",
+ "groups": [
+ {
+ "time": "10:26:00",
+ "height": "4.795"
+ },
+ {
+ "time": "22:41:00",
+ "height": "4.991"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:15"
+ },
+ {
+ "date": "2018-08-29",
+ "groups": [
+ {
+ "time": "10:55:00",
+ "height": "4.812"
+ },
+ {
+ "time": "23:12:00",
+ "height": "4.960"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2018-08-30",
+ "groups": [
+ {
+ "time": "11:27:00",
+ "height": "4.758"
+ },
+ {
+ "time": "23:46:00",
+ "height": "4.852"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2018-08-31",
+ "groups": [
+ {
+ "time": "12:03:00",
+ "height": "4.626"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2018-09-01",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "4.663"
+ },
+ {
+ "time": "12:42:00",
+ "height": "4.418"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2018-09-02",
+ "groups": [
+ {
+ "time": "01:07:00",
+ "height": "4.401"
+ },
+ {
+ "time": "13:27:00",
+ "height": "4.151"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2018-09-03",
+ "groups": [
+ {
+ "time": "01:59:00",
+ "height": "4.087"
+ },
+ {
+ "time": "14:26:00",
+ "height": "3.860"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2018-09-04",
+ "groups": [
+ {
+ "time": "03:07:00",
+ "height": "3.783"
+ },
+ {
+ "time": "15:47:00",
+ "height": "3.651"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2018-09-05",
+ "groups": [
+ {
+ "time": "04:37:00",
+ "height": "3.647"
+ },
+ {
+ "time": "17:18:00",
+ "height": "3.718"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2018-09-06",
+ "groups": [
+ {
+ "time": "06:01:00",
+ "height": "3.839"
+ },
+ {
+ "time": "18:35:00",
+ "height": "4.105"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2018-09-07",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.277"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.632"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2018-09-08",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "4.768"
+ },
+ {
+ "time": "20:29:00",
+ "height": "5.128"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2018-09-09",
+ "groups": [
+ {
+ "time": "08:55:00",
+ "height": "5.176"
+ },
+ {
+ "time": "21:14:00",
+ "height": "5.494"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2018-09-10",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "5.436"
+ },
+ {
+ "time": "21:57:00",
+ "height": "5.686"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:44"
+ },
+ {
+ "date": "2018-09-11",
+ "groups": [
+ {
+ "time": "10:19:00",
+ "height": "5.525"
+ },
+ {
+ "time": "22:37:00",
+ "height": "5.690"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:42"
+ },
+ {
+ "date": "2018-09-12",
+ "groups": [
+ {
+ "time": "10:57:00",
+ "height": "5.444"
+ },
+ {
+ "time": "23:15:00",
+ "height": "5.513"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:40"
+ },
+ {
+ "date": "2018-09-13",
+ "groups": [
+ {
+ "time": "11:38:00",
+ "height": "5.210"
+ },
+ {
+ "time": "23:57:00",
+ "height": "5.183"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:37"
+ },
+ {
+ "date": "2018-09-14",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "4.858"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:35"
+ },
+ {
+ "date": "2018-09-15",
+ "groups": [
+ {
+ "time": "00:37:00",
+ "height": "4.747"
+ },
+ {
+ "time": "12:59:00",
+ "height": "4.434"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:32"
+ },
+ {
+ "date": "2018-09-16",
+ "groups": [
+ {
+ "time": "01:18:00",
+ "height": "4.256"
+ },
+ {
+ "time": "13:42:00",
+ "height": "3.987"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:30"
+ },
+ {
+ "date": "2018-09-17",
+ "groups": [
+ {
+ "time": "02:05:00",
+ "height": "3.764"
+ },
+ {
+ "time": "14:36:00",
+ "height": "3.569"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "19:28"
+ },
+ {
+ "date": "2018-09-18",
+ "groups": [
+ {
+ "time": "03:08:00",
+ "height": "3.334"
+ },
+ {
+ "time": "15:58:00",
+ "height": "3.280"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "19:25"
+ },
+ {
+ "date": "2018-09-19",
+ "groups": [
+ {
+ "time": "04:45:00",
+ "height": "3.118"
+ },
+ {
+ "time": "17:34:00",
+ "height": "3.318"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "19:23"
+ },
+ {
+ "date": "2018-09-20",
+ "groups": [
+ {
+ "time": "06:12:00",
+ "height": "3.287"
+ },
+ {
+ "time": "18:43:00",
+ "height": "3.656"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "19:20"
+ },
+ {
+ "date": "2018-09-21",
+ "groups": [
+ {
+ "time": "07:12:00",
+ "height": "3.670"
+ },
+ {
+ "time": "19:32:00",
+ "height": "4.076"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "19:18"
+ },
+ {
+ "date": "2018-09-22",
+ "groups": [
+ {
+ "time": "07:55:00",
+ "height": "4.073"
+ },
+ {
+ "time": "20:11:00",
+ "height": "4.456"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "19:16"
+ },
+ {
+ "date": "2018-09-23",
+ "groups": [
+ {
+ "time": "08:30:00",
+ "height": "4.419"
+ },
+ {
+ "time": "20:44:00",
+ "height": "4.755"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "19:13"
+ },
+ {
+ "date": "2018-09-24",
+ "groups": [
+ {
+ "time": "09:01:00",
+ "height": "4.689"
+ },
+ {
+ "time": "21:15:00",
+ "height": "4.972"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "19:11"
+ },
+ {
+ "date": "2018-09-25",
+ "groups": [
+ {
+ "time": "09:31:00",
+ "height": "4.888"
+ },
+ {
+ "time": "21:46:00",
+ "height": "5.117"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "19:08"
+ },
+ {
+ "date": "2018-09-26",
+ "groups": [
+ {
+ "time": "10:01:00",
+ "height": "5.019"
+ },
+ {
+ "time": "22:16:00",
+ "height": "5.190"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "19:06"
+ },
+ {
+ "date": "2018-09-27",
+ "groups": [
+ {
+ "time": "10:30:00",
+ "height": "5.073"
+ },
+ {
+ "time": "22:47:00",
+ "height": "5.178"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "19:03"
+ },
+ {
+ "date": "2018-09-28",
+ "groups": [
+ {
+ "time": "11:01:00",
+ "height": "5.035"
+ },
+ {
+ "time": "23:20:00",
+ "height": "5.066"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "19:01"
+ },
+ {
+ "date": "2018-09-29",
+ "groups": [
+ {
+ "time": "11:37:00",
+ "height": "4.893"
+ },
+ {
+ "time": "23:59:00",
+ "height": "4.844"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "18:59"
+ },
+ {
+ "date": "2018-09-30",
+ "groups": [
+ {
+ "time": "12:17:00",
+ "height": "4.649"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "18:56"
+ },
+ {
+ "date": "2018-10-01",
+ "groups": [
+ {
+ "time": "00:44:00",
+ "height": "4.522"
+ },
+ {
+ "time": "13:03:00",
+ "height": "4.322"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "18:54"
+ },
+ {
+ "date": "2018-10-02",
+ "groups": [
+ {
+ "time": "01:37:00",
+ "height": "4.130"
+ },
+ {
+ "time": "14:04:00",
+ "height": "3.961"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "18:52"
+ },
+ {
+ "date": "2018-10-03",
+ "groups": [
+ {
+ "time": "02:49:00",
+ "height": "3.753"
+ },
+ {
+ "time": "15:30:00",
+ "height": "3.698"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "18:49"
+ },
+ {
+ "date": "2018-10-04",
+ "groups": [
+ {
+ "time": "04:26:00",
+ "height": "3.595"
+ },
+ {
+ "time": "17:07:00",
+ "height": "3.762"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "18:47"
+ },
+ {
+ "date": "2018-10-05",
+ "groups": [
+ {
+ "time": "05:53:00",
+ "height": "3.824"
+ },
+ {
+ "time": "18:25:00",
+ "height": "4.173"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2018-10-06",
+ "groups": [
+ {
+ "time": "07:01:00",
+ "height": "4.301"
+ },
+ {
+ "time": "19:26:00",
+ "height": "4.700"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "18:42"
+ },
+ {
+ "date": "2018-10-07",
+ "groups": [
+ {
+ "time": "07:54:00",
+ "height": "4.796"
+ },
+ {
+ "time": "20:15:00",
+ "height": "5.161"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2018-10-08",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "5.183"
+ },
+ {
+ "time": "20:57:00",
+ "height": "5.470"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2018-10-09",
+ "groups": [
+ {
+ "time": "09:19:00",
+ "height": "5.415"
+ },
+ {
+ "time": "21:37:00",
+ "height": "5.604"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2018-10-10",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "5.487"
+ },
+ {
+ "time": "22:14:00",
+ "height": "5.570"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2018-10-11",
+ "groups": [
+ {
+ "time": "10:33:00",
+ "height": "5.411"
+ },
+ {
+ "time": "22:50:00",
+ "height": "5.386"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2018-10-12",
+ "groups": [
+ {
+ "time": "11:07:00",
+ "height": "5.203"
+ },
+ {
+ "time": "23:25:00",
+ "height": "5.079"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2018-10-13",
+ "groups": [
+ {
+ "time": "11:44:00",
+ "height": "4.892"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2018-10-14",
+ "groups": [
+ {
+ "time": "00:03:00",
+ "height": "4.684"
+ },
+ {
+ "time": "12:22:00",
+ "height": "4.512"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2018-10-15",
+ "groups": [
+ {
+ "time": "00:41:00",
+ "height": "4.242"
+ },
+ {
+ "time": "13:02:00",
+ "height": "4.099"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2018-10-16",
+ "groups": [
+ {
+ "time": "01:24:00",
+ "height": "3.788"
+ },
+ {
+ "time": "13:52:00",
+ "height": "3.692"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2018-10-17",
+ "groups": [
+ {
+ "time": "02:19:00",
+ "height": "3.367"
+ },
+ {
+ "time": "15:01:00",
+ "height": "3.359"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2018-10-18",
+ "groups": [
+ {
+ "time": "03:45:00",
+ "height": "3.084"
+ },
+ {
+ "time": "16:46:00",
+ "height": "3.277"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2018-10-19",
+ "groups": [
+ {
+ "time": "05:31:00",
+ "height": "3.167"
+ },
+ {
+ "time": "18:05:00",
+ "height": "3.547"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2018-10-20",
+ "groups": [
+ {
+ "time": "06:37:00",
+ "height": "3.536"
+ },
+ {
+ "time": "18:57:00",
+ "height": "3.956"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2018-10-21",
+ "groups": [
+ {
+ "time": "07:21:00",
+ "height": "3.968"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.363"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2018-10-22",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.370"
+ },
+ {
+ "time": "20:13:00",
+ "height": "4.713"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2018-10-23",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "4.711"
+ },
+ {
+ "time": "20:46:00",
+ "height": "4.990"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2018-10-24",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "4.980"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.191"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2018-10-25",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "5.169"
+ },
+ {
+ "time": "21:51:00",
+ "height": "5.304"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2018-10-26",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.262"
+ },
+ {
+ "time": "22:25:00",
+ "height": "5.313"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2018-10-27",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "5.241"
+ },
+ {
+ "time": "23:00:00",
+ "height": "5.198"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2018-10-28",
+ "groups": [
+ {
+ "time": "11:17:00",
+ "height": "5.096"
+ },
+ {
+ "time": "23:43:00",
+ "height": "4.956"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "17:54"
+ },
+ {
+ "date": "2018-10-29",
+ "groups": [
+ {
+ "time": "11:02:00",
+ "height": "4.836"
+ },
+ {
+ "time": "23:31:00",
+ "height": "4.604"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2018-10-30",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "4.491"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2018-10-31",
+ "groups": [
+ {
+ "time": "00:29:00",
+ "height": "4.193"
+ },
+ {
+ "time": "12:59:00",
+ "height": "4.129"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2018-11-01",
+ "groups": [
+ {
+ "time": "01:44:00",
+ "height": "3.834"
+ },
+ {
+ "time": "14:23:00",
+ "height": "3.889"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2018-11-02",
+ "groups": [
+ {
+ "time": "03:16:00",
+ "height": "3.702"
+ },
+ {
+ "time": "15:54:00",
+ "height": "3.941"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2018-11-03",
+ "groups": [
+ {
+ "time": "04:38:00",
+ "height": "3.905"
+ },
+ {
+ "time": "17:09:00",
+ "height": "4.270"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2018-11-04",
+ "groups": [
+ {
+ "time": "05:43:00",
+ "height": "4.309"
+ },
+ {
+ "time": "18:07:00",
+ "height": "4.684"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2018-11-05",
+ "groups": [
+ {
+ "time": "06:35:00",
+ "height": "4.722"
+ },
+ {
+ "time": "18:55:00",
+ "height": "5.032"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2018-11-06",
+ "groups": [
+ {
+ "time": "07:19:00",
+ "height": "5.041"
+ },
+ {
+ "time": "19:37:00",
+ "height": "5.251"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2018-11-07",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "5.232"
+ },
+ {
+ "time": "20:16:00",
+ "height": "5.332"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2018-11-08",
+ "groups": [
+ {
+ "time": "08:35:00",
+ "height": "5.299"
+ },
+ {
+ "time": "20:52:00",
+ "height": "5.291"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2018-11-09",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "5.254"
+ },
+ {
+ "time": "21:26:00",
+ "height": "5.146"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2018-11-10",
+ "groups": [
+ {
+ "time": "09:42:00",
+ "height": "5.109"
+ },
+ {
+ "time": "21:59:00",
+ "height": "4.914"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2018-11-11",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "4.879"
+ },
+ {
+ "time": "22:34:00",
+ "height": "4.613"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2018-11-12",
+ "groups": [
+ {
+ "time": "10:53:00",
+ "height": "4.586"
+ },
+ {
+ "time": "23:11:00",
+ "height": "4.268"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2018-11-13",
+ "groups": [
+ {
+ "time": "11:33:00",
+ "height": "4.254"
+ },
+ {
+ "time": "23:52:00",
+ "height": "3.901"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2018-11-14",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "3.910"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2018-11-15",
+ "groups": [
+ {
+ "time": "00:42:00",
+ "height": "3.544"
+ },
+ {
+ "time": "13:16:00",
+ "height": "3.599"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2018-11-16",
+ "groups": [
+ {
+ "time": "01:49:00",
+ "height": "3.259"
+ },
+ {
+ "time": "14:35:00",
+ "height": "3.413"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2018-11-17",
+ "groups": [
+ {
+ "time": "03:22:00",
+ "height": "3.175"
+ },
+ {
+ "time": "16:05:00",
+ "height": "3.484"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2018-11-18",
+ "groups": [
+ {
+ "time": "04:42:00",
+ "height": "3.393"
+ },
+ {
+ "time": "17:08:00",
+ "height": "3.778"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2018-11-19",
+ "groups": [
+ {
+ "time": "05:36:00",
+ "height": "3.773"
+ },
+ {
+ "time": "17:55:00",
+ "height": "4.153"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2018-11-20",
+ "groups": [
+ {
+ "time": "06:18:00",
+ "height": "4.191"
+ },
+ {
+ "time": "18:35:00",
+ "height": "4.528"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2018-11-21",
+ "groups": [
+ {
+ "time": "06:56:00",
+ "height": "4.588"
+ },
+ {
+ "time": "19:13:00",
+ "height": "4.861"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2018-11-22",
+ "groups": [
+ {
+ "time": "07:31:00",
+ "height": "4.926"
+ },
+ {
+ "time": "19:50:00",
+ "height": "5.122"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2018-11-23",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "5.180"
+ },
+ {
+ "time": "20:28:00",
+ "height": "5.288"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2018-11-24",
+ "groups": [
+ {
+ "time": "08:47:00",
+ "height": "5.327"
+ },
+ {
+ "time": "21:07:00",
+ "height": "5.337"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2018-11-25",
+ "groups": [
+ {
+ "time": "09:25:00",
+ "height": "5.351"
+ },
+ {
+ "time": "21:48:00",
+ "height": "5.255"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2018-11-26",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.247"
+ },
+ {
+ "time": "22:34:00",
+ "height": "5.043"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2018-11-27",
+ "groups": [
+ {
+ "time": "10:55:00",
+ "height": "5.029"
+ },
+ {
+ "time": "23:28:00",
+ "height": "4.731"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2018-11-28",
+ "groups": [
+ {
+ "time": "11:50:00",
+ "height": "4.732"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2018-11-29",
+ "groups": [
+ {
+ "time": "00:27:00",
+ "height": "4.372"
+ },
+ {
+ "time": "12:54:00",
+ "height": "4.421"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2018-11-30",
+ "groups": [
+ {
+ "time": "01:35:00",
+ "height": "4.056"
+ },
+ {
+ "time": "14:09:00",
+ "height": "4.186"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2018-12-01",
+ "groups": [
+ {
+ "time": "02:54:00",
+ "height": "3.888"
+ },
+ {
+ "time": "15:30:00",
+ "height": "4.122"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2018-12-02",
+ "groups": [
+ {
+ "time": "04:11:00",
+ "height": "3.944"
+ },
+ {
+ "time": "16:40:00",
+ "height": "4.247"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2018-12-03",
+ "groups": [
+ {
+ "time": "05:16:00",
+ "height": "4.176"
+ },
+ {
+ "time": "17:41:00",
+ "height": "4.470"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2018-12-04",
+ "groups": [
+ {
+ "time": "06:11:00",
+ "height": "4.464"
+ },
+ {
+ "time": "18:32:00",
+ "height": "4.689"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2018-12-05",
+ "groups": [
+ {
+ "time": "06:57:00",
+ "height": "4.718"
+ },
+ {
+ "time": "19:16:00",
+ "height": "4.845"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2018-12-06",
+ "groups": [
+ {
+ "time": "07:38:00",
+ "height": "4.898"
+ },
+ {
+ "time": "19:57:00",
+ "height": "4.923"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2018-12-07",
+ "groups": [
+ {
+ "time": "08:16:00",
+ "height": "4.997"
+ },
+ {
+ "time": "20:34:00",
+ "height": "4.929"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2018-12-08",
+ "groups": [
+ {
+ "time": "08:51:00",
+ "height": "5.018"
+ },
+ {
+ "time": "21:08:00",
+ "height": "4.868"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-09",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "4.964"
+ },
+ {
+ "time": "21:41:00",
+ "height": "4.746"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-10",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "4.841"
+ },
+ {
+ "time": "22:14:00",
+ "height": "4.567"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-11",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "4.660"
+ },
+ {
+ "time": "22:51:00",
+ "height": "4.343"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-12",
+ "groups": [
+ {
+ "time": "11:10:00",
+ "height": "4.434"
+ },
+ {
+ "time": "23:30:00",
+ "height": "4.087"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-13",
+ "groups": [
+ {
+ "time": "11:52:00",
+ "height": "4.179"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-14",
+ "groups": [
+ {
+ "time": "00:13:00",
+ "height": "3.815"
+ },
+ {
+ "time": "12:40:00",
+ "height": "3.917"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-15",
+ "groups": [
+ {
+ "time": "01:04:00",
+ "height": "3.561"
+ },
+ {
+ "time": "13:38:00",
+ "height": "3.694"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-16",
+ "groups": [
+ {
+ "time": "02:08:00",
+ "height": "3.383"
+ },
+ {
+ "time": "14:48:00",
+ "height": "3.578"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-17",
+ "groups": [
+ {
+ "time": "03:26:00",
+ "height": "3.367"
+ },
+ {
+ "time": "16:02:00",
+ "height": "3.646"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-18",
+ "groups": [
+ {
+ "time": "04:36:00",
+ "height": "3.569"
+ },
+ {
+ "time": "17:03:00",
+ "height": "3.893"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2018-12-19",
+ "groups": [
+ {
+ "time": "05:31:00",
+ "height": "3.922"
+ },
+ {
+ "time": "17:55:00",
+ "height": "4.236"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2018-12-20",
+ "groups": [
+ {
+ "time": "06:19:00",
+ "height": "4.331"
+ },
+ {
+ "time": "18:41:00",
+ "height": "4.598"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2018-12-21",
+ "groups": [
+ {
+ "time": "07:04:00",
+ "height": "4.725"
+ },
+ {
+ "time": "19:26:00",
+ "height": "4.921"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2018-12-22",
+ "groups": [
+ {
+ "time": "07:47:00",
+ "height": "5.057"
+ },
+ {
+ "time": "20:10:00",
+ "height": "5.163"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2018-12-23",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "5.293"
+ },
+ {
+ "time": "20:55:00",
+ "height": "5.298"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2018-12-24",
+ "groups": [
+ {
+ "time": "09:15:00",
+ "height": "5.414"
+ },
+ {
+ "time": "21:40:00",
+ "height": "5.308"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2018-12-25",
+ "groups": [
+ {
+ "time": "09:59:00",
+ "height": "5.411"
+ },
+ {
+ "time": "22:28:00",
+ "height": "5.190"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2018-12-26",
+ "groups": [
+ {
+ "time": "10:51:00",
+ "height": "5.285"
+ },
+ {
+ "time": "23:21:00",
+ "height": "4.960"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2018-12-27",
+ "groups": [
+ {
+ "time": "11:45:00",
+ "height": "5.057"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2018-12-28",
+ "groups": [
+ {
+ "time": "00:16:00",
+ "height": "4.655"
+ },
+ {
+ "time": "12:41:00",
+ "height": "4.763"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2018-12-29",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "4.328"
+ },
+ {
+ "time": "13:44:00",
+ "height": "4.454"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2018-12-30",
+ "groups": [
+ {
+ "time": "02:22:00",
+ "height": "4.048"
+ },
+ {
+ "time": "14:53:00",
+ "height": "4.199"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2018-12-31",
+ "groups": [
+ {
+ "time": "03:35:00",
+ "height": "3.891"
+ },
+ {
+ "time": "16:04:00",
+ "height": "4.067"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2019-03-01",
+ "groups": [
+ {
+ "time": "04:38:00",
+ "height": "3.339"
+ },
+ {
+ "time": "17:18:00",
+ "height": "3.324"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "17:54"
+ },
+ {
+ "date": "2019-03-02",
+ "groups": [
+ {
+ "time": "05:54:00",
+ "height": "3.592"
+ },
+ {
+ "time": "18:25:00",
+ "height": "3.632"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "17:55"
+ },
+ {
+ "date": "2019-03-03",
+ "groups": [
+ {
+ "time": "06:47:00",
+ "height": "3.974"
+ },
+ {
+ "time": "19:11:00",
+ "height": "3.995"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "17:57"
+ },
+ {
+ "date": "2019-03-04",
+ "groups": [
+ {
+ "time": "07:29:00",
+ "height": "4.331"
+ },
+ {
+ "time": "19:48:00",
+ "height": "4.307"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "17:59"
+ },
+ {
+ "date": "2019-03-05",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "4.607"
+ },
+ {
+ "time": "20:20:00",
+ "height": "4.540"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2019-03-06",
+ "groups": [
+ {
+ "time": "08:35:00",
+ "height": "4.798"
+ },
+ {
+ "time": "20:50:00",
+ "height": "4.699"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2019-03-07",
+ "groups": [
+ {
+ "time": "09:05:00",
+ "height": "4.914"
+ },
+ {
+ "time": "21:19:00",
+ "height": "4.793"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "18:05"
+ },
+ {
+ "date": "2019-03-08",
+ "groups": [
+ {
+ "time": "09:33:00",
+ "height": "4.967"
+ },
+ {
+ "time": "21:46:00",
+ "height": "4.829"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2019-03-09",
+ "groups": [
+ {
+ "time": "10:01:00",
+ "height": "4.955"
+ },
+ {
+ "time": "22:14:00",
+ "height": "4.799"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2019-03-10",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "4.869"
+ },
+ {
+ "time": "22:46:00",
+ "height": "4.693"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2019-03-11",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.703"
+ },
+ {
+ "time": "23:20:00",
+ "height": "4.508"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "18:12"
+ },
+ {
+ "date": "2019-03-12",
+ "groups": [
+ {
+ "time": "11:43:00",
+ "height": "4.461"
+ },
+ {
+ "time": "23:58:00",
+ "height": "4.255"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2019-03-13",
+ "groups": [
+ {
+ "time": "12:26:00",
+ "height": "4.152"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2019-03-14",
+ "groups": [
+ {
+ "time": "00:46:00",
+ "height": "3.946"
+ },
+ {
+ "time": "13:21:00",
+ "height": "3.802"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2019-03-15",
+ "groups": [
+ {
+ "time": "01:52:00",
+ "height": "3.633"
+ },
+ {
+ "time": "14:43:00",
+ "height": "3.515"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2019-03-16",
+ "groups": [
+ {
+ "time": "03:27:00",
+ "height": "3.481"
+ },
+ {
+ "time": "16:19:00",
+ "height": "3.516"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2019-03-17",
+ "groups": [
+ {
+ "time": "04:57:00",
+ "height": "3.705"
+ },
+ {
+ "time": "17:39:00",
+ "height": "3.887"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "18:23"
+ },
+ {
+ "date": "2019-03-18",
+ "groups": [
+ {
+ "time": "06:08:00",
+ "height": "4.216"
+ },
+ {
+ "time": "18:42:00",
+ "height": "4.426"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2019-03-19",
+ "groups": [
+ {
+ "time": "07:04:00",
+ "height": "4.788"
+ },
+ {
+ "time": "19:32:00",
+ "height": "4.942"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "18:27"
+ },
+ {
+ "date": "2019-03-20",
+ "groups": [
+ {
+ "time": "07:52:00",
+ "height": "5.277"
+ },
+ {
+ "time": "20:18:00",
+ "height": "5.335"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2019-03-21",
+ "groups": [
+ {
+ "time": "08:36:00",
+ "height": "5.609"
+ },
+ {
+ "time": "20:59:00",
+ "height": "5.558"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2019-03-22",
+ "groups": [
+ {
+ "time": "09:18:00",
+ "height": "5.748"
+ },
+ {
+ "time": "21:38:00",
+ "height": "5.598"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2019-03-23",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "5.686"
+ },
+ {
+ "time": "22:17:00",
+ "height": "5.456"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "18:34"
+ },
+ {
+ "date": "2019-03-24",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "5.433"
+ },
+ {
+ "time": "22:59:00",
+ "height": "5.156"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2019-03-25",
+ "groups": [
+ {
+ "time": "11:20:00",
+ "height": "5.026"
+ },
+ {
+ "time": "23:41:00",
+ "height": "4.740"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2019-03-26",
+ "groups": [
+ {
+ "time": "12:02:00",
+ "height": "4.521"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "18:39"
+ },
+ {
+ "date": "2019-03-27",
+ "groups": [
+ {
+ "time": "00:23:00",
+ "height": "4.261"
+ },
+ {
+ "time": "12:47:00",
+ "height": "3.979"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "18:41"
+ },
+ {
+ "date": "2019-03-28",
+ "groups": [
+ {
+ "time": "01:13:00",
+ "height": "3.777"
+ },
+ {
+ "time": "13:42:00",
+ "height": "3.469"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "18:43"
+ },
+ {
+ "date": "2019-03-29",
+ "groups": [
+ {
+ "time": "02:21:00",
+ "height": "3.367"
+ },
+ {
+ "time": "15:05:00",
+ "height": "3.106"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2019-03-30",
+ "groups": [
+ {
+ "time": "03:57:00",
+ "height": "3.208"
+ },
+ {
+ "time": "16:44:00",
+ "height": "3.107"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "18:46"
+ },
+ {
+ "date": "2019-03-31",
+ "groups": [
+ {
+ "time": "05:21:00",
+ "height": "3.421"
+ },
+ {
+ "time": "17:57:00",
+ "height": "3.433"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "18:48"
+ },
+ {
+ "date": "2019-04-01",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "3.813"
+ },
+ {
+ "time": "19:44:00",
+ "height": "3.841"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2019-04-02",
+ "groups": [
+ {
+ "time": "08:00:00",
+ "height": "4.199"
+ },
+ {
+ "time": "20:20:00",
+ "height": "4.205"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2019-04-03",
+ "groups": [
+ {
+ "time": "08:35:00",
+ "height": "4.514"
+ },
+ {
+ "time": "20:53:00",
+ "height": "4.493"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2019-04-04",
+ "groups": [
+ {
+ "time": "09:07:00",
+ "height": "4.745"
+ },
+ {
+ "time": "21:22:00",
+ "height": "4.707"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:55"
+ },
+ {
+ "date": "2019-04-05",
+ "groups": [
+ {
+ "time": "09:37:00",
+ "height": "4.902"
+ },
+ {
+ "time": "21:51:00",
+ "height": "4.856"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2019-04-06",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "4.995"
+ },
+ {
+ "time": "22:20:00",
+ "height": "4.942"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2019-04-07",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "5.019"
+ },
+ {
+ "time": "22:48:00",
+ "height": "4.951"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2019-04-08",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.959"
+ },
+ {
+ "time": "23:19:00",
+ "height": "4.870"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "20:02"
+ },
+ {
+ "date": "2019-04-09",
+ "groups": [
+ {
+ "time": "11:41:00",
+ "height": "4.804"
+ },
+ {
+ "time": "23:56:00",
+ "height": "4.692"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "20:04"
+ },
+ {
+ "date": "2019-04-10",
+ "groups": [
+ {
+ "time": "12:20:00",
+ "height": "4.551"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2019-04-11",
+ "groups": [
+ {
+ "time": "00:36:00",
+ "height": "4.425"
+ },
+ {
+ "time": "13:05:00",
+ "height": "4.215"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2019-04-12",
+ "groups": [
+ {
+ "time": "01:27:00",
+ "height": "4.091"
+ },
+ {
+ "time": "14:05:00",
+ "height": "3.837"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2019-04-13",
+ "groups": [
+ {
+ "time": "02:35:00",
+ "height": "3.757"
+ },
+ {
+ "time": "15:28:00",
+ "height": "3.542"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:11"
+ },
+ {
+ "date": "2019-04-14",
+ "groups": [
+ {
+ "time": "04:10:00",
+ "height": "3.601"
+ },
+ {
+ "time": "17:05:00",
+ "height": "3.553"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2019-04-15",
+ "groups": [
+ {
+ "time": "05:40:00",
+ "height": "3.812"
+ },
+ {
+ "time": "18:23:00",
+ "height": "3.918"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:15"
+ },
+ {
+ "date": "2019-04-16",
+ "groups": [
+ {
+ "time": "06:50:00",
+ "height": "4.282"
+ },
+ {
+ "time": "19:24:00",
+ "height": "4.425"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2019-04-17",
+ "groups": [
+ {
+ "time": "07:45:00",
+ "height": "4.788"
+ },
+ {
+ "time": "20:13:00",
+ "height": "4.892"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2019-04-18",
+ "groups": [
+ {
+ "time": "08:32:00",
+ "height": "5.197"
+ },
+ {
+ "time": "20:57:00",
+ "height": "5.235"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:20"
+ },
+ {
+ "date": "2019-04-19",
+ "groups": [
+ {
+ "time": "09:15:00",
+ "height": "5.449"
+ },
+ {
+ "time": "21:36:00",
+ "height": "5.422"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2019-04-20",
+ "groups": [
+ {
+ "time": "09:55:00",
+ "height": "5.529"
+ },
+ {
+ "time": "22:15:00",
+ "height": "5.450"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2019-04-21",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "5.440"
+ },
+ {
+ "time": "22:52:00",
+ "height": "5.326"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2019-04-22",
+ "groups": [
+ {
+ "time": "11:11:00",
+ "height": "5.199"
+ },
+ {
+ "time": "23:30:00",
+ "height": "5.069"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2019-04-23",
+ "groups": [
+ {
+ "time": "11:51:00",
+ "height": "4.837"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2019-04-24",
+ "groups": [
+ {
+ "time": "00:10:00",
+ "height": "4.711"
+ },
+ {
+ "time": "12:31:00",
+ "height": "4.399"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2019-04-25",
+ "groups": [
+ {
+ "time": "00:51:00",
+ "height": "4.296"
+ },
+ {
+ "time": "13:14:00",
+ "height": "3.933"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2019-04-26",
+ "groups": [
+ {
+ "time": "01:38:00",
+ "height": "3.869"
+ },
+ {
+ "time": "14:05:00",
+ "height": "3.490"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:34"
+ },
+ {
+ "date": "2019-04-27",
+ "groups": [
+ {
+ "time": "02:39:00",
+ "height": "3.489"
+ },
+ {
+ "time": "15:17:00",
+ "height": "3.144"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2019-04-28",
+ "groups": [
+ {
+ "time": "04:04:00",
+ "height": "3.270"
+ },
+ {
+ "time": "16:55:00",
+ "height": "3.058"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2019-04-29",
+ "groups": [
+ {
+ "time": "05:33:00",
+ "height": "3.361"
+ },
+ {
+ "time": "18:10:00",
+ "height": "3.297"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2019-04-30",
+ "groups": [
+ {
+ "time": "06:34:00",
+ "height": "3.669"
+ },
+ {
+ "time": "19:03:00",
+ "height": "3.669"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2019-05-01",
+ "groups": [
+ {
+ "time": "07:21:00",
+ "height": "4.027"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.044"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2019-05-02",
+ "groups": [
+ {
+ "time": "07:59:00",
+ "height": "4.351"
+ },
+ {
+ "time": "20:18:00",
+ "height": "4.373"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2019-05-03",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.616"
+ },
+ {
+ "time": "20:50:00",
+ "height": "4.641"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2019-05-04",
+ "groups": [
+ {
+ "time": "09:05:00",
+ "height": "4.819"
+ },
+ {
+ "time": "21:21:00",
+ "height": "4.847"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2019-05-05",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "4.956"
+ },
+ {
+ "time": "21:53:00",
+ "height": "4.981"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2019-05-06",
+ "groups": [
+ {
+ "time": "10:11:00",
+ "height": "5.016"
+ },
+ {
+ "time": "22:25:00",
+ "height": "5.028"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2019-05-07",
+ "groups": [
+ {
+ "time": "10:45:00",
+ "height": "4.983"
+ },
+ {
+ "time": "22:59:00",
+ "height": "4.973"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2019-05-08",
+ "groups": [
+ {
+ "time": "11:23:00",
+ "height": "4.844"
+ },
+ {
+ "time": "23:40:00",
+ "height": "4.813"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2019-05-09",
+ "groups": [
+ {
+ "time": "12:07:00",
+ "height": "4.600"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2019-05-10",
+ "groups": [
+ {
+ "time": "00:26:00",
+ "height": "4.561"
+ },
+ {
+ "time": "12:59:00",
+ "height": "4.278"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2019-05-11",
+ "groups": [
+ {
+ "time": "01:22:00",
+ "height": "4.255"
+ },
+ {
+ "time": "14:03:00",
+ "height": "3.942"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2019-05-12",
+ "groups": [
+ {
+ "time": "02:33:00",
+ "height": "3.978"
+ },
+ {
+ "time": "15:22:00",
+ "height": "3.712"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2019-05-13",
+ "groups": [
+ {
+ "time": "03:59:00",
+ "height": "3.865"
+ },
+ {
+ "time": "16:49:00",
+ "height": "3.726"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2019-05-14",
+ "groups": [
+ {
+ "time": "05:20:00",
+ "height": "4.010"
+ },
+ {
+ "time": "18:00:00",
+ "height": "3.994"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2019-05-15",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "4.334"
+ },
+ {
+ "time": "18:59:00",
+ "height": "4.372"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2019-05-16",
+ "groups": [
+ {
+ "time": "07:21:00",
+ "height": "4.684"
+ },
+ {
+ "time": "19:49:00",
+ "height": "4.727"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2019-05-17",
+ "groups": [
+ {
+ "time": "08:10:00",
+ "height": "4.958"
+ },
+ {
+ "time": "20:33:00",
+ "height": "4.989"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2019-05-18",
+ "groups": [
+ {
+ "time": "08:53:00",
+ "height": "5.116"
+ },
+ {
+ "time": "21:14:00",
+ "height": "5.137"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2019-05-19",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "5.153"
+ },
+ {
+ "time": "21:53:00",
+ "height": "5.170"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2019-05-20",
+ "groups": [
+ {
+ "time": "10:12:00",
+ "height": "5.075"
+ },
+ {
+ "time": "22:30:00",
+ "height": "5.092"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2019-05-21",
+ "groups": [
+ {
+ "time": "10:48:00",
+ "height": "4.896"
+ },
+ {
+ "time": "23:05:00",
+ "height": "4.914"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2019-05-22",
+ "groups": [
+ {
+ "time": "11:26:00",
+ "height": "4.634"
+ },
+ {
+ "time": "23:45:00",
+ "height": "4.657"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2019-05-23",
+ "groups": [
+ {
+ "time": "12:06:00",
+ "height": "4.315"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2019-05-24",
+ "groups": [
+ {
+ "time": "00:26:00",
+ "height": "4.349"
+ },
+ {
+ "time": "12:48:00",
+ "height": "3.971"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2019-05-25",
+ "groups": [
+ {
+ "time": "01:11:00",
+ "height": "4.024"
+ },
+ {
+ "time": "13:35:00",
+ "height": "3.634"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2019-05-26",
+ "groups": [
+ {
+ "time": "02:03:00",
+ "height": "3.718"
+ },
+ {
+ "time": "14:32:00",
+ "height": "3.347"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2019-05-27",
+ "groups": [
+ {
+ "time": "03:09:00",
+ "height": "3.488"
+ },
+ {
+ "time": "15:48:00",
+ "height": "3.185"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2019-05-28",
+ "groups": [
+ {
+ "time": "04:30:00",
+ "height": "3.422"
+ },
+ {
+ "time": "17:08:00",
+ "height": "3.245"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2019-05-29",
+ "groups": [
+ {
+ "time": "05:38:00",
+ "height": "3.562"
+ },
+ {
+ "time": "18:09:00",
+ "height": "3.499"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2019-05-30",
+ "groups": [
+ {
+ "time": "06:31:00",
+ "height": "3.827"
+ },
+ {
+ "time": "18:57:00",
+ "height": "3.836"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2019-05-31",
+ "groups": [
+ {
+ "time": "07:15:00",
+ "height": "4.130"
+ },
+ {
+ "time": "19:38:00",
+ "height": "4.184"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2019-06-01",
+ "groups": [
+ {
+ "time": "07:55:00",
+ "height": "4.422"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.503"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2019-06-02",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.673"
+ },
+ {
+ "time": "20:51:00",
+ "height": "4.769"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2019-06-03",
+ "groups": [
+ {
+ "time": "09:11:00",
+ "height": "4.864"
+ },
+ {
+ "time": "21:29:00",
+ "height": "4.960"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2019-06-04",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "4.975"
+ },
+ {
+ "time": "22:07:00",
+ "height": "5.061"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2019-06-05",
+ "groups": [
+ {
+ "time": "10:30:00",
+ "height": "4.990"
+ },
+ {
+ "time": "22:47:00",
+ "height": "5.059"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2019-06-06",
+ "groups": [
+ {
+ "time": "11:12:00",
+ "height": "4.899"
+ },
+ {
+ "time": "23:31:00",
+ "height": "4.956"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2019-06-07",
+ "groups": [
+ {
+ "time": "12:02:00",
+ "height": "4.711"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2019-06-08",
+ "groups": [
+ {
+ "time": "00:23:00",
+ "height": "4.768"
+ },
+ {
+ "time": "12:57:00",
+ "height": "4.455"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2019-06-09",
+ "groups": [
+ {
+ "time": "01:22:00",
+ "height": "4.532"
+ },
+ {
+ "time": "13:59:00",
+ "height": "4.185"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2019-06-10",
+ "groups": [
+ {
+ "time": "02:27:00",
+ "height": "4.306"
+ },
+ {
+ "time": "15:08:00",
+ "height": "3.976"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2019-06-11",
+ "groups": [
+ {
+ "time": "03:39:00",
+ "height": "4.159"
+ },
+ {
+ "time": "16:24:00",
+ "height": "3.903"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2019-06-12",
+ "groups": [
+ {
+ "time": "04:53:00",
+ "height": "4.145"
+ },
+ {
+ "time": "17:31:00",
+ "height": "3.996"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2019-06-13",
+ "groups": [
+ {
+ "time": "05:57:00",
+ "height": "4.255"
+ },
+ {
+ "time": "18:31:00",
+ "height": "4.201"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2019-06-14",
+ "groups": [
+ {
+ "time": "06:56:00",
+ "height": "4.421"
+ },
+ {
+ "time": "19:25:00",
+ "height": "4.439"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2019-06-15",
+ "groups": [
+ {
+ "time": "07:47:00",
+ "height": "4.579"
+ },
+ {
+ "time": "20:12:00",
+ "height": "4.646"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2019-06-16",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.690"
+ },
+ {
+ "time": "20:55:00",
+ "height": "4.792"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2019-06-17",
+ "groups": [
+ {
+ "time": "09:15:00",
+ "height": "4.739"
+ },
+ {
+ "time": "21:35:00",
+ "height": "4.865"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2019-06-18",
+ "groups": [
+ {
+ "time": "09:54:00",
+ "height": "4.725"
+ },
+ {
+ "time": "22:12:00",
+ "height": "4.861"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2019-06-19",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "4.644"
+ },
+ {
+ "time": "22:48:00",
+ "height": "4.782"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2019-06-20",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.507"
+ },
+ {
+ "time": "23:25:00",
+ "height": "4.640"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2019-06-21",
+ "groups": [
+ {
+ "time": "11:44:00",
+ "height": "4.321"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2019-06-22",
+ "groups": [
+ {
+ "time": "00:04:00",
+ "height": "4.450"
+ },
+ {
+ "time": "12:24:00",
+ "height": "4.102"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2019-06-23",
+ "groups": [
+ {
+ "time": "00:45:00",
+ "height": "4.229"
+ },
+ {
+ "time": "13:05:00",
+ "height": "3.866"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2019-06-24",
+ "groups": [
+ {
+ "time": "01:29:00",
+ "height": "3.993"
+ },
+ {
+ "time": "13:52:00",
+ "height": "3.633"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2019-06-25",
+ "groups": [
+ {
+ "time": "02:20:00",
+ "height": "3.769"
+ },
+ {
+ "time": "14:46:00",
+ "height": "3.438"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2019-06-26",
+ "groups": [
+ {
+ "time": "03:21:00",
+ "height": "3.599"
+ },
+ {
+ "time": "15:53:00",
+ "height": "3.339"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2019-06-27",
+ "groups": [
+ {
+ "time": "04:30:00",
+ "height": "3.546"
+ },
+ {
+ "time": "17:03:00",
+ "height": "3.401"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2019-06-28",
+ "groups": [
+ {
+ "time": "05:33:00",
+ "height": "3.651"
+ },
+ {
+ "time": "18:04:00",
+ "height": "3.631"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2019-06-29",
+ "groups": [
+ {
+ "time": "06:29:00",
+ "height": "3.886"
+ },
+ {
+ "time": "18:56:00",
+ "height": "3.962"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2019-06-30",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.186"
+ },
+ {
+ "time": "19:42:00",
+ "height": "4.321"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2019-07-01",
+ "groups": [
+ {
+ "time": "08:04:00",
+ "height": "4.491"
+ },
+ {
+ "time": "20:26:00",
+ "height": "4.657"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2019-07-02",
+ "groups": [
+ {
+ "time": "08:49:00",
+ "height": "4.758"
+ },
+ {
+ "time": "21:09:00",
+ "height": "4.932"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2019-07-03",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "4.954"
+ },
+ {
+ "time": "21:53:00",
+ "height": "5.124"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2019-07-04",
+ "groups": [
+ {
+ "time": "10:19:00",
+ "height": "5.058"
+ },
+ {
+ "time": "22:38:00",
+ "height": "5.217"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2019-07-05",
+ "groups": [
+ {
+ "time": "11:04:00",
+ "height": "5.056"
+ },
+ {
+ "time": "23:25:00",
+ "height": "5.203"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2019-07-06",
+ "groups": [
+ {
+ "time": "11:55:00",
+ "height": "4.947"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2019-07-07",
+ "groups": [
+ {
+ "time": "00:17:00",
+ "height": "5.086"
+ },
+ {
+ "time": "12:48:00",
+ "height": "4.746"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2019-07-08",
+ "groups": [
+ {
+ "time": "01:12:00",
+ "height": "4.879"
+ },
+ {
+ "time": "13:43:00",
+ "height": "4.484"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2019-07-09",
+ "groups": [
+ {
+ "time": "02:09:00",
+ "height": "4.616"
+ },
+ {
+ "time": "14:44:00",
+ "height": "4.211"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2019-07-10",
+ "groups": [
+ {
+ "time": "03:12:00",
+ "height": "4.342"
+ },
+ {
+ "time": "15:50:00",
+ "height": "3.990"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2019-07-11",
+ "groups": [
+ {
+ "time": "04:22:00",
+ "height": "4.122"
+ },
+ {
+ "time": "16:59:00",
+ "height": "3.886"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2019-07-12",
+ "groups": [
+ {
+ "time": "05:27:00",
+ "height": "4.016"
+ },
+ {
+ "time": "18:03:00",
+ "height": "3.934"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2019-07-13",
+ "groups": [
+ {
+ "time": "06:31:00",
+ "height": "4.042"
+ },
+ {
+ "time": "19:03:00",
+ "height": "4.103"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2019-07-14",
+ "groups": [
+ {
+ "time": "07:29:00",
+ "height": "4.162"
+ },
+ {
+ "time": "19:56:00",
+ "height": "4.322"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2019-07-15",
+ "groups": [
+ {
+ "time": "08:19:00",
+ "height": "4.312"
+ },
+ {
+ "time": "20:41:00",
+ "height": "4.524"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2019-07-16",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "4.442"
+ },
+ {
+ "time": "21:21:00",
+ "height": "4.672"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2019-07-17",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "4.524"
+ },
+ {
+ "time": "21:58:00",
+ "height": "4.752"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2019-07-18",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "4.551"
+ },
+ {
+ "time": "22:32:00",
+ "height": "4.766"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2019-07-19",
+ "groups": [
+ {
+ "time": "10:49:00",
+ "height": "4.521"
+ },
+ {
+ "time": "23:05:00",
+ "height": "4.718"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2019-07-20",
+ "groups": [
+ {
+ "time": "11:23:00",
+ "height": "4.442"
+ },
+ {
+ "time": "23:40:00",
+ "height": "4.618"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2019-07-21",
+ "groups": [
+ {
+ "time": "11:57:00",
+ "height": "4.317"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2019-07-22",
+ "groups": [
+ {
+ "time": "00:17:00",
+ "height": "4.470"
+ },
+ {
+ "time": "12:33:00",
+ "height": "4.151"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2019-07-23",
+ "groups": [
+ {
+ "time": "00:55:00",
+ "height": "4.277"
+ },
+ {
+ "time": "13:12:00",
+ "height": "3.951"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2019-07-24",
+ "groups": [
+ {
+ "time": "01:36:00",
+ "height": "4.051"
+ },
+ {
+ "time": "13:55:00",
+ "height": "3.737"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2019-07-25",
+ "groups": [
+ {
+ "time": "02:23:00",
+ "height": "3.820"
+ },
+ {
+ "time": "14:48:00",
+ "height": "3.545"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2019-07-26",
+ "groups": [
+ {
+ "time": "03:23:00",
+ "height": "3.630"
+ },
+ {
+ "time": "15:56:00",
+ "height": "3.437"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2019-07-27",
+ "groups": [
+ {
+ "time": "04:35:00",
+ "height": "3.555"
+ },
+ {
+ "time": "17:09:00",
+ "height": "3.499"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2019-07-28",
+ "groups": [
+ {
+ "time": "05:44:00",
+ "height": "3.671"
+ },
+ {
+ "time": "18:17:00",
+ "height": "3.767"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2019-07-29",
+ "groups": [
+ {
+ "time": "06:47:00",
+ "height": "3.963"
+ },
+ {
+ "time": "19:15:00",
+ "height": "4.163"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2019-07-30",
+ "groups": [
+ {
+ "time": "07:43:00",
+ "height": "4.339"
+ },
+ {
+ "time": "20:07:00",
+ "height": "4.593"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2019-07-31",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.715"
+ },
+ {
+ "time": "20:55:00",
+ "height": "4.984"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2019-08-01",
+ "groups": [
+ {
+ "time": "09:22:00",
+ "height": "5.029"
+ },
+ {
+ "time": "21:42:00",
+ "height": "5.290"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2019-08-02",
+ "groups": [
+ {
+ "time": "10:07:00",
+ "height": "5.239"
+ },
+ {
+ "time": "22:27:00",
+ "height": "5.480"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2019-08-03",
+ "groups": [
+ {
+ "time": "10:53:00",
+ "height": "5.319"
+ },
+ {
+ "time": "23:12:00",
+ "height": "5.527"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2019-08-04",
+ "groups": [
+ {
+ "time": "11:40:00",
+ "height": "5.254"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2019-08-05",
+ "groups": [
+ {
+ "time": "00:02:00",
+ "height": "5.420"
+ },
+ {
+ "time": "12:30:00",
+ "height": "5.050"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2019-08-06",
+ "groups": [
+ {
+ "time": "00:51:00",
+ "height": "5.166"
+ },
+ {
+ "time": "13:20:00",
+ "height": "4.735"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2019-08-07",
+ "groups": [
+ {
+ "time": "01:43:00",
+ "height": "4.796"
+ },
+ {
+ "time": "14:13:00",
+ "height": "4.357"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2019-08-08",
+ "groups": [
+ {
+ "time": "02:39:00",
+ "height": "4.366"
+ },
+ {
+ "time": "15:12:00",
+ "height": "3.985"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2019-08-09",
+ "groups": [
+ {
+ "time": "03:43:00",
+ "height": "3.958"
+ },
+ {
+ "time": "16:24:00",
+ "height": "3.713"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2019-08-10",
+ "groups": [
+ {
+ "time": "04:57:00",
+ "height": "3.686"
+ },
+ {
+ "time": "17:37:00",
+ "height": "3.650"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2019-08-11",
+ "groups": [
+ {
+ "time": "06:10:00",
+ "height": "3.651"
+ },
+ {
+ "time": "18:46:00",
+ "height": "3.821"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2019-08-12",
+ "groups": [
+ {
+ "time": "07:17:00",
+ "height": "3.831"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.119"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2019-08-13",
+ "groups": [
+ {
+ "time": "08:09:00",
+ "height": "4.093"
+ },
+ {
+ "time": "20:30:00",
+ "height": "4.413"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2019-08-14",
+ "groups": [
+ {
+ "time": "08:50:00",
+ "height": "4.331"
+ },
+ {
+ "time": "21:07:00",
+ "height": "4.640"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2019-08-15",
+ "groups": [
+ {
+ "time": "09:27:00",
+ "height": "4.505"
+ },
+ {
+ "time": "21:42:00",
+ "height": "4.785"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2019-08-16",
+ "groups": [
+ {
+ "time": "09:59:00",
+ "height": "4.609"
+ },
+ {
+ "time": "22:13:00",
+ "height": "4.856"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2019-08-17",
+ "groups": [
+ {
+ "time": "10:29:00",
+ "height": "4.651"
+ },
+ {
+ "time": "22:43:00",
+ "height": "4.864"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2019-08-18",
+ "groups": [
+ {
+ "time": "10:57:00",
+ "height": "4.635"
+ },
+ {
+ "time": "23:13:00",
+ "height": "4.812"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2019-08-19",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "4.566"
+ },
+ {
+ "time": "23:45:00",
+ "height": "4.700"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2019-08-20",
+ "groups": [
+ {
+ "time": "11:59:00",
+ "height": "4.438"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2019-08-21",
+ "groups": [
+ {
+ "time": "00:19:00",
+ "height": "4.524"
+ },
+ {
+ "time": "12:33:00",
+ "height": "4.255"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2019-08-22",
+ "groups": [
+ {
+ "time": "00:55:00",
+ "height": "4.290"
+ },
+ {
+ "time": "13:11:00",
+ "height": "4.026"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2019-08-23",
+ "groups": [
+ {
+ "time": "01:36:00",
+ "height": "4.015"
+ },
+ {
+ "time": "13:56:00",
+ "height": "3.773"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2019-08-24",
+ "groups": [
+ {
+ "time": "02:29:00",
+ "height": "3.731"
+ },
+ {
+ "time": "14:57:00",
+ "height": "3.539"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2019-08-25",
+ "groups": [
+ {
+ "time": "03:40:00",
+ "height": "3.509"
+ },
+ {
+ "time": "16:22:00",
+ "height": "3.442"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2019-08-26",
+ "groups": [
+ {
+ "time": "05:08:00",
+ "height": "3.502"
+ },
+ {
+ "time": "17:47:00",
+ "height": "3.635"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:20"
+ },
+ {
+ "date": "2019-08-27",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "3.799"
+ },
+ {
+ "time": "18:56:00",
+ "height": "4.085"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2019-08-28",
+ "groups": [
+ {
+ "time": "07:28:00",
+ "height": "4.272"
+ },
+ {
+ "time": "19:52:00",
+ "height": "4.622"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2019-08-29",
+ "groups": [
+ {
+ "time": "08:21:00",
+ "height": "4.767"
+ },
+ {
+ "time": "20:42:00",
+ "height": "5.121"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2019-08-30",
+ "groups": [
+ {
+ "time": "09:08:00",
+ "height": "5.182"
+ },
+ {
+ "time": "21:27:00",
+ "height": "5.508"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:11"
+ },
+ {
+ "date": "2019-08-31",
+ "groups": [
+ {
+ "time": "09:53:00",
+ "height": "5.460"
+ },
+ {
+ "time": "22:11:00",
+ "height": "5.737"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2019-09-01",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "5.570"
+ },
+ {
+ "time": "22:54:00",
+ "height": "5.778"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2019-09-02",
+ "groups": [
+ {
+ "time": "11:17:00",
+ "height": "5.501"
+ },
+ {
+ "time": "23:39:00",
+ "height": "5.623"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:04"
+ },
+ {
+ "date": "2019-09-03",
+ "groups": [
+ {
+ "time": "12:04:00",
+ "height": "5.260"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:02"
+ },
+ {
+ "date": "2019-09-04",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "5.287"
+ },
+ {
+ "time": "12:49:00",
+ "height": "4.883"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2019-09-05",
+ "groups": [
+ {
+ "time": "01:12:00",
+ "height": "4.814"
+ },
+ {
+ "time": "13:37:00",
+ "height": "4.422"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2019-09-06",
+ "groups": [
+ {
+ "time": "02:02:00",
+ "height": "4.271"
+ },
+ {
+ "time": "14:32:00",
+ "height": "3.949"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "19:55"
+ },
+ {
+ "date": "2019-09-07",
+ "groups": [
+ {
+ "time": "03:02:00",
+ "height": "3.748"
+ },
+ {
+ "time": "15:43:00",
+ "height": "3.564"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2019-09-08",
+ "groups": [
+ {
+ "time": "04:25:00",
+ "height": "3.381"
+ },
+ {
+ "time": "17:11:00",
+ "height": "3.435"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2019-09-09",
+ "groups": [
+ {
+ "time": "05:53:00",
+ "height": "3.354"
+ },
+ {
+ "time": "18:31:00",
+ "height": "3.649"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2019-09-10",
+ "groups": [
+ {
+ "time": "07:05:00",
+ "height": "3.640"
+ },
+ {
+ "time": "19:29:00",
+ "height": "4.032"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "19:45"
+ },
+ {
+ "date": "2019-09-11",
+ "groups": [
+ {
+ "time": "07:55:00",
+ "height": "4.011"
+ },
+ {
+ "time": "20:12:00",
+ "height": "4.400"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:43"
+ },
+ {
+ "date": "2019-09-12",
+ "groups": [
+ {
+ "time": "08:32:00",
+ "height": "4.334"
+ },
+ {
+ "time": "20:47:00",
+ "height": "4.681"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:40"
+ },
+ {
+ "date": "2019-09-13",
+ "groups": [
+ {
+ "time": "09:05:00",
+ "height": "4.572"
+ },
+ {
+ "time": "21:19:00",
+ "height": "4.866"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "19:38"
+ },
+ {
+ "date": "2019-09-14",
+ "groups": [
+ {
+ "time": "09:36:00",
+ "height": "4.726"
+ },
+ {
+ "time": "21:50:00",
+ "height": "4.969"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:35"
+ },
+ {
+ "date": "2019-09-15",
+ "groups": [
+ {
+ "time": "10:05:00",
+ "height": "4.811"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.004"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:33"
+ },
+ {
+ "date": "2019-09-16",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "4.836"
+ },
+ {
+ "time": "22:45:00",
+ "height": "4.977"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:31"
+ },
+ {
+ "date": "2019-09-17",
+ "groups": [
+ {
+ "time": "10:57:00",
+ "height": "4.800"
+ },
+ {
+ "time": "23:14:00",
+ "height": "4.882"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "19:28"
+ },
+ {
+ "date": "2019-09-18",
+ "groups": [
+ {
+ "time": "11:27:00",
+ "height": "4.696"
+ },
+ {
+ "time": "23:45:00",
+ "height": "4.712"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "19:26"
+ },
+ {
+ "date": "2019-09-19",
+ "groups": [
+ {
+ "time": "11:59:00",
+ "height": "4.520"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:23"
+ },
+ {
+ "date": "2019-09-20",
+ "groups": [
+ {
+ "time": "00:20:00",
+ "height": "4.469"
+ },
+ {
+ "time": "12:35:00",
+ "height": "4.277"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "19:21"
+ },
+ {
+ "date": "2019-09-21",
+ "groups": [
+ {
+ "time": "00:59:00",
+ "height": "4.164"
+ },
+ {
+ "time": "13:18:00",
+ "height": "3.982"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "19:19"
+ },
+ {
+ "date": "2019-09-22",
+ "groups": [
+ {
+ "time": "01:50:00",
+ "height": "3.817"
+ },
+ {
+ "time": "14:18:00",
+ "height": "3.670"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "19:16"
+ },
+ {
+ "date": "2019-09-23",
+ "groups": [
+ {
+ "time": "03:04:00",
+ "height": "3.504"
+ },
+ {
+ "time": "15:47:00",
+ "height": "3.474"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "19:14"
+ },
+ {
+ "date": "2019-09-24",
+ "groups": [
+ {
+ "time": "04:45:00",
+ "height": "3.434"
+ },
+ {
+ "time": "17:25:00",
+ "height": "3.635"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "19:11"
+ },
+ {
+ "date": "2019-09-25",
+ "groups": [
+ {
+ "time": "06:10:00",
+ "height": "3.765"
+ },
+ {
+ "time": "18:41:00",
+ "height": "4.133"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "19:09"
+ },
+ {
+ "date": "2019-09-26",
+ "groups": [
+ {
+ "time": "07:14:00",
+ "height": "4.314"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.728"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "19:06"
+ },
+ {
+ "date": "2019-09-27",
+ "groups": [
+ {
+ "time": "08:06:00",
+ "height": "4.868"
+ },
+ {
+ "time": "20:26:00",
+ "height": "5.261"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "19:04"
+ },
+ {
+ "date": "2019-09-28",
+ "groups": [
+ {
+ "time": "08:51:00",
+ "height": "5.313"
+ },
+ {
+ "time": "21:10:00",
+ "height": "5.646"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "19:02"
+ },
+ {
+ "date": "2019-09-29",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "5.595"
+ },
+ {
+ "time": "21:52:00",
+ "height": "5.844"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "18:59"
+ },
+ {
+ "date": "2019-09-30",
+ "groups": [
+ {
+ "time": "10:14:00",
+ "height": "5.692"
+ },
+ {
+ "time": "22:33:00",
+ "height": "5.836"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "18:57"
+ },
+ {
+ "date": "2019-10-01",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "5.602"
+ },
+ {
+ "time": "23:12:00",
+ "height": "5.625"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "18:55"
+ },
+ {
+ "date": "2019-10-02",
+ "groups": [
+ {
+ "time": "11:34:00",
+ "height": "5.340"
+ },
+ {
+ "time": "23:56:00",
+ "height": "5.237"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "18:52"
+ },
+ {
+ "date": "2019-10-03",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "4.941"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "18:50"
+ },
+ {
+ "date": "2019-10-04",
+ "groups": [
+ {
+ "time": "00:41:00",
+ "height": "4.726"
+ },
+ {
+ "time": "13:03:00",
+ "height": "4.459"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "18:47"
+ },
+ {
+ "date": "2019-10-05",
+ "groups": [
+ {
+ "time": "01:27:00",
+ "height": "4.159"
+ },
+ {
+ "time": "13:54:00",
+ "height": "3.960"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "18:45"
+ },
+ {
+ "date": "2019-10-06",
+ "groups": [
+ {
+ "time": "02:23:00",
+ "height": "3.617"
+ },
+ {
+ "time": "15:02:00",
+ "height": "3.534"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "18:43"
+ },
+ {
+ "date": "2019-10-07",
+ "groups": [
+ {
+ "time": "03:46:00",
+ "height": "3.222"
+ },
+ {
+ "time": "16:40:00",
+ "height": "3.355"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2019-10-08",
+ "groups": [
+ {
+ "time": "05:27:00",
+ "height": "3.198"
+ },
+ {
+ "time": "18:05:00",
+ "height": "3.560"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2019-10-09",
+ "groups": [
+ {
+ "time": "06:41:00",
+ "height": "3.523"
+ },
+ {
+ "time": "19:03:00",
+ "height": "3.956"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2019-10-10",
+ "groups": [
+ {
+ "time": "07:30:00",
+ "height": "3.937"
+ },
+ {
+ "time": "19:45:00",
+ "height": "4.346"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2019-10-11",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "4.305"
+ },
+ {
+ "time": "20:21:00",
+ "height": "4.656"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2019-10-12",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "4.588"
+ },
+ {
+ "time": "20:52:00",
+ "height": "4.873"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2019-10-13",
+ "groups": [
+ {
+ "time": "09:08:00",
+ "height": "4.788"
+ },
+ {
+ "time": "21:22:00",
+ "height": "5.006"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2019-10-14",
+ "groups": [
+ {
+ "time": "09:36:00",
+ "height": "4.916"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.069"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2019-10-15",
+ "groups": [
+ {
+ "time": "10:04:00",
+ "height": "4.980"
+ },
+ {
+ "time": "22:19:00",
+ "height": "5.066"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2019-10-16",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "4.976"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.989"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2019-10-17",
+ "groups": [
+ {
+ "time": "10:59:00",
+ "height": "4.894"
+ },
+ {
+ "time": "23:18:00",
+ "height": "4.829"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2019-10-18",
+ "groups": [
+ {
+ "time": "11:32:00",
+ "height": "4.725"
+ },
+ {
+ "time": "23:55:00",
+ "height": "4.584"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2019-10-19",
+ "groups": [
+ {
+ "time": "12:10:00",
+ "height": "4.476"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2019-10-20",
+ "groups": [
+ {
+ "time": "00:37:00",
+ "height": "4.262"
+ },
+ {
+ "time": "12:57:00",
+ "height": "4.161"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2019-10-21",
+ "groups": [
+ {
+ "time": "01:31:00",
+ "height": "3.894"
+ },
+ {
+ "time": "13:59:00",
+ "height": "3.830"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2019-10-22",
+ "groups": [
+ {
+ "time": "02:48:00",
+ "height": "3.574"
+ },
+ {
+ "time": "15:30:00",
+ "height": "3.632"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2019-10-23",
+ "groups": [
+ {
+ "time": "04:29:00",
+ "height": "3.520"
+ },
+ {
+ "time": "17:08:00",
+ "height": "3.788"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2019-10-24",
+ "groups": [
+ {
+ "time": "05:53:00",
+ "height": "3.852"
+ },
+ {
+ "time": "18:21:00",
+ "height": "4.255"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2019-10-25",
+ "groups": [
+ {
+ "time": "06:56:00",
+ "height": "4.378"
+ },
+ {
+ "time": "19:17:00",
+ "height": "4.798"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2019-10-26",
+ "groups": [
+ {
+ "time": "07:46:00",
+ "height": "4.893"
+ },
+ {
+ "time": "20:05:00",
+ "height": "5.263"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2019-10-27",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "5.294"
+ },
+ {
+ "time": "20:49:00",
+ "height": "5.576"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2019-10-28",
+ "groups": [
+ {
+ "time": "08:12:00",
+ "height": "5.539"
+ },
+ {
+ "time": "20:31:00",
+ "height": "5.709"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "16:54"
+ },
+ {
+ "date": "2019-10-29",
+ "groups": [
+ {
+ "time": "08:52:00",
+ "height": "5.617"
+ },
+ {
+ "time": "21:11:00",
+ "height": "5.658"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2019-10-30",
+ "groups": [
+ {
+ "time": "09:31:00",
+ "height": "5.531"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.436"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2019-10-31",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "5.294"
+ },
+ {
+ "time": "22:30:00",
+ "height": "5.071"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2019-11-01",
+ "groups": [
+ {
+ "time": "10:51:00",
+ "height": "4.936"
+ },
+ {
+ "time": "23:12:00",
+ "height": "4.610"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2019-11-02",
+ "groups": [
+ {
+ "time": "11:35:00",
+ "height": "4.505"
+ },
+ {
+ "time": "23:58:00",
+ "height": "4.110"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2019-11-03",
+ "groups": [
+ {
+ "time": "12:24:00",
+ "height": "4.056"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2019-11-04",
+ "groups": [
+ {
+ "time": "00:51:00",
+ "height": "3.634"
+ },
+ {
+ "time": "13:25:00",
+ "height": "3.658"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2019-11-05",
+ "groups": [
+ {
+ "time": "02:02:00",
+ "height": "3.268"
+ },
+ {
+ "time": "14:50:00",
+ "height": "3.429"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2019-11-06",
+ "groups": [
+ {
+ "time": "03:41:00",
+ "height": "3.165"
+ },
+ {
+ "time": "16:19:00",
+ "height": "3.506"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2019-11-07",
+ "groups": [
+ {
+ "time": "04:58:00",
+ "height": "3.393"
+ },
+ {
+ "time": "17:22:00",
+ "height": "3.806"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2019-11-08",
+ "groups": [
+ {
+ "time": "05:52:00",
+ "height": "3.763"
+ },
+ {
+ "time": "18:09:00",
+ "height": "4.157"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2019-11-09",
+ "groups": [
+ {
+ "time": "06:32:00",
+ "height": "4.134"
+ },
+ {
+ "time": "18:46:00",
+ "height": "4.473"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2019-11-10",
+ "groups": [
+ {
+ "time": "07:06:00",
+ "height": "4.454"
+ },
+ {
+ "time": "19:20:00",
+ "height": "4.721"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2019-11-11",
+ "groups": [
+ {
+ "time": "07:38:00",
+ "height": "4.708"
+ },
+ {
+ "time": "19:52:00",
+ "height": "4.899"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2019-11-12",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "4.894"
+ },
+ {
+ "time": "20:23:00",
+ "height": "5.010"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2019-11-13",
+ "groups": [
+ {
+ "time": "08:38:00",
+ "height": "5.013"
+ },
+ {
+ "time": "20:54:00",
+ "height": "5.051"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2019-11-14",
+ "groups": [
+ {
+ "time": "09:08:00",
+ "height": "5.056"
+ },
+ {
+ "time": "21:27:00",
+ "height": "5.013"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2019-11-15",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "5.011"
+ },
+ {
+ "time": "22:00:00",
+ "height": "4.885"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2019-11-16",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "4.872"
+ },
+ {
+ "time": "22:41:00",
+ "height": "4.664"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2019-11-17",
+ "groups": [
+ {
+ "time": "10:59:00",
+ "height": "4.648"
+ },
+ {
+ "time": "23:29:00",
+ "height": "4.368"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2019-11-18",
+ "groups": [
+ {
+ "time": "11:50:00",
+ "height": "4.364"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2019-11-19",
+ "groups": [
+ {
+ "time": "00:27:00",
+ "height": "4.041"
+ },
+ {
+ "time": "12:55:00",
+ "height": "4.083"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2019-11-20",
+ "groups": [
+ {
+ "time": "01:42:00",
+ "height": "3.779"
+ },
+ {
+ "time": "14:18:00",
+ "height": "3.925"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2019-11-21",
+ "groups": [
+ {
+ "time": "03:10:00",
+ "height": "3.726"
+ },
+ {
+ "time": "15:45:00",
+ "height": "4.011"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2019-11-22",
+ "groups": [
+ {
+ "time": "04:28:00",
+ "height": "3.947"
+ },
+ {
+ "time": "16:55:00",
+ "height": "4.319"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2019-11-23",
+ "groups": [
+ {
+ "time": "05:30:00",
+ "height": "4.331"
+ },
+ {
+ "time": "17:53:00",
+ "height": "4.698"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2019-11-24",
+ "groups": [
+ {
+ "time": "06:23:00",
+ "height": "4.731"
+ },
+ {
+ "time": "18:44:00",
+ "height": "5.030"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2019-11-25",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "5.055"
+ },
+ {
+ "time": "19:30:00",
+ "height": "5.250"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2019-11-26",
+ "groups": [
+ {
+ "time": "07:52:00",
+ "height": "5.266"
+ },
+ {
+ "time": "20:12:00",
+ "height": "5.339"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2019-11-27",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "5.352"
+ },
+ {
+ "time": "20:52:00",
+ "height": "5.297"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2019-11-28",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "5.312"
+ },
+ {
+ "time": "21:32:00",
+ "height": "5.134"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2019-11-29",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "5.155"
+ },
+ {
+ "time": "22:10:00",
+ "height": "4.870"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2019-11-30",
+ "groups": [
+ {
+ "time": "10:30:00",
+ "height": "4.899"
+ },
+ {
+ "time": "22:52:00",
+ "height": "4.533"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2019-12-01",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "4.578"
+ },
+ {
+ "time": "23:35:00",
+ "height": "4.162"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2019-12-02",
+ "groups": [
+ {
+ "time": "11:59:00",
+ "height": "4.232"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2019-12-03",
+ "groups": [
+ {
+ "time": "00:22:00",
+ "height": "3.798"
+ },
+ {
+ "time": "12:50:00",
+ "height": "3.902"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2019-12-04",
+ "groups": [
+ {
+ "time": "01:18:00",
+ "height": "3.483"
+ },
+ {
+ "time": "13:53:00",
+ "height": "3.641"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2019-12-05",
+ "groups": [
+ {
+ "time": "02:30:00",
+ "height": "3.282"
+ },
+ {
+ "time": "15:12:00",
+ "height": "3.528"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2019-12-06",
+ "groups": [
+ {
+ "time": "03:53:00",
+ "height": "3.287"
+ },
+ {
+ "time": "16:23:00",
+ "height": "3.617"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2019-12-07",
+ "groups": [
+ {
+ "time": "04:57:00",
+ "height": "3.501"
+ },
+ {
+ "time": "17:20:00",
+ "height": "3.846"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2019-12-08",
+ "groups": [
+ {
+ "time": "05:47:00",
+ "height": "3.816"
+ },
+ {
+ "time": "18:05:00",
+ "height": "4.126"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2019-12-09",
+ "groups": [
+ {
+ "time": "06:28:00",
+ "height": "4.151"
+ },
+ {
+ "time": "18:45:00",
+ "height": "4.401"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2019-12-10",
+ "groups": [
+ {
+ "time": "07:05:00",
+ "height": "4.464"
+ },
+ {
+ "time": "19:22:00",
+ "height": "4.642"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2019-12-11",
+ "groups": [
+ {
+ "time": "07:40:00",
+ "height": "4.730"
+ },
+ {
+ "time": "19:59:00",
+ "height": "4.831"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2019-12-12",
+ "groups": [
+ {
+ "time": "08:16:00",
+ "height": "4.932"
+ },
+ {
+ "time": "20:35:00",
+ "height": "4.954"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2019-12-13",
+ "groups": [
+ {
+ "time": "08:51:00",
+ "height": "5.056"
+ },
+ {
+ "time": "21:12:00",
+ "height": "4.997"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2019-12-14",
+ "groups": [
+ {
+ "time": "09:29:00",
+ "height": "5.091"
+ },
+ {
+ "time": "21:52:00",
+ "height": "4.949"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2019-12-15",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "5.034"
+ },
+ {
+ "time": "22:37:00",
+ "height": "4.808"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2019-12-16",
+ "groups": [
+ {
+ "time": "10:56:00",
+ "height": "4.889"
+ },
+ {
+ "time": "23:28:00",
+ "height": "4.590"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2019-12-17",
+ "groups": [
+ {
+ "time": "11:50:00",
+ "height": "4.682"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2019-12-18",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "4.331"
+ },
+ {
+ "time": "12:50:00",
+ "height": "4.454"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2019-12-19",
+ "groups": [
+ {
+ "time": "01:29:00",
+ "height": "4.092"
+ },
+ {
+ "time": "13:59:00",
+ "height": "4.264"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2019-12-20",
+ "groups": [
+ {
+ "time": "02:41:00",
+ "height": "3.946"
+ },
+ {
+ "time": "15:14:00",
+ "height": "4.179"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2019-12-21",
+ "groups": [
+ {
+ "time": "03:55:00",
+ "height": "3.959"
+ },
+ {
+ "time": "16:23:00",
+ "height": "4.232"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2019-12-22",
+ "groups": [
+ {
+ "time": "05:00:00",
+ "height": "4.129"
+ },
+ {
+ "time": "17:26:00",
+ "height": "4.391"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2019-12-23",
+ "groups": [
+ {
+ "time": "05:58:00",
+ "height": "4.385"
+ },
+ {
+ "time": "18:23:00",
+ "height": "4.586"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2019-12-24",
+ "groups": [
+ {
+ "time": "06:50:00",
+ "height": "4.651"
+ },
+ {
+ "time": "19:13:00",
+ "height": "4.757"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2019-12-25",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "4.869"
+ },
+ {
+ "time": "19:59:00",
+ "height": "4.869"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2019-12-26",
+ "groups": [
+ {
+ "time": "08:19:00",
+ "height": "5.009"
+ },
+ {
+ "time": "20:40:00",
+ "height": "4.903"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2019-12-27",
+ "groups": [
+ {
+ "time": "08:59:00",
+ "height": "5.059"
+ },
+ {
+ "time": "21:20:00",
+ "height": "4.857"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2019-12-28",
+ "groups": [
+ {
+ "time": "09:37:00",
+ "height": "5.015"
+ },
+ {
+ "time": "21:55:00",
+ "height": "4.734"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2019-12-29",
+ "groups": [
+ {
+ "time": "10:14:00",
+ "height": "4.886"
+ },
+ {
+ "time": "22:34:00",
+ "height": "4.546"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2019-12-30",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "4.692"
+ },
+ {
+ "time": "23:13:00",
+ "height": "4.314"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2019-12-31",
+ "groups": [
+ {
+ "time": "11:34:00",
+ "height": "4.455"
+ },
+ {
+ "time": "23:52:00",
+ "height": "4.057"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2020-01-01",
+ "groups": [
+ {
+ "time": "12:16:00",
+ "height": "4.194"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2020-01-02",
+ "groups": [
+ {
+ "time": "00:36:00",
+ "height": "3.792"
+ },
+ {
+ "time": "13:03:00",
+ "height": "3.928"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2020-01-03",
+ "groups": [
+ {
+ "time": "01:26:00",
+ "height": "3.545"
+ },
+ {
+ "time": "13:58:00",
+ "height": "3.690"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2020-01-04",
+ "groups": [
+ {
+ "time": "02:27:00",
+ "height": "3.360"
+ },
+ {
+ "time": "15:05:00",
+ "height": "3.537"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2020-01-05",
+ "groups": [
+ {
+ "time": "03:41:00",
+ "height": "3.314"
+ },
+ {
+ "time": "16:15:00",
+ "height": "3.541"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2020-01-06",
+ "groups": [
+ {
+ "time": "04:49:00",
+ "height": "3.464"
+ },
+ {
+ "time": "17:16:00",
+ "height": "3.714"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2020-01-07",
+ "groups": [
+ {
+ "time": "05:45:00",
+ "height": "3.762"
+ },
+ {
+ "time": "18:08:00",
+ "height": "3.992"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2020-01-08",
+ "groups": [
+ {
+ "time": "06:32:00",
+ "height": "4.124"
+ },
+ {
+ "time": "18:55:00",
+ "height": "4.307"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2020-01-09",
+ "groups": [
+ {
+ "time": "07:15:00",
+ "height": "4.486"
+ },
+ {
+ "time": "19:38:00",
+ "height": "4.609"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2020-01-10",
+ "groups": [
+ {
+ "time": "07:57:00",
+ "height": "4.807"
+ },
+ {
+ "time": "20:19:00",
+ "height": "4.860"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2020-01-11",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "5.060"
+ },
+ {
+ "time": "21:03:00",
+ "height": "5.035"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2020-01-12",
+ "groups": [
+ {
+ "time": "09:21:00",
+ "height": "5.225"
+ },
+ {
+ "time": "21:44:00",
+ "height": "5.112"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2020-01-13",
+ "groups": [
+ {
+ "time": "10:02:00",
+ "height": "5.288"
+ },
+ {
+ "time": "22:29:00",
+ "height": "5.079"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2020-01-14",
+ "groups": [
+ {
+ "time": "10:51:00",
+ "height": "5.238"
+ },
+ {
+ "time": "23:19:00",
+ "height": "4.934"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2020-01-15",
+ "groups": [
+ {
+ "time": "11:42:00",
+ "height": "5.080"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2020-01-16",
+ "groups": [
+ {
+ "time": "00:11:00",
+ "height": "4.697"
+ },
+ {
+ "time": "12:35:00",
+ "height": "4.829"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2020-01-17",
+ "groups": [
+ {
+ "time": "01:06:00",
+ "height": "4.402"
+ },
+ {
+ "time": "13:32:00",
+ "height": "4.522"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2020-01-18",
+ "groups": [
+ {
+ "time": "02:08:00",
+ "height": "4.107"
+ },
+ {
+ "time": "14:38:00",
+ "height": "4.218"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2020-01-19",
+ "groups": [
+ {
+ "time": "03:18:00",
+ "height": "3.889"
+ },
+ {
+ "time": "15:50:00",
+ "height": "4.003"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2020-01-20",
+ "groups": [
+ {
+ "time": "04:28:00",
+ "height": "3.834"
+ },
+ {
+ "time": "16:59:00",
+ "height": "3.954"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2020-01-21",
+ "groups": [
+ {
+ "time": "05:36:00",
+ "height": "3.970"
+ },
+ {
+ "time": "18:06:00",
+ "height": "4.073"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2020-01-22",
+ "groups": [
+ {
+ "time": "06:37:00",
+ "height": "4.232"
+ },
+ {
+ "time": "19:03:00",
+ "height": "4.284"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2020-01-23",
+ "groups": [
+ {
+ "time": "07:27:00",
+ "height": "4.518"
+ },
+ {
+ "time": "19:50:00",
+ "height": "4.492"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:43"
+ },
+ {
+ "date": "2020-01-24",
+ "groups": [
+ {
+ "time": "08:10:00",
+ "height": "4.750"
+ },
+ {
+ "time": "20:31:00",
+ "height": "4.643"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2020-01-25",
+ "groups": [
+ {
+ "time": "08:50:00",
+ "height": "4.896"
+ },
+ {
+ "time": "21:08:00",
+ "height": "4.719"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2020-01-26",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "4.952"
+ },
+ {
+ "time": "21:41:00",
+ "height": "4.718"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2020-01-27",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "4.926"
+ },
+ {
+ "time": "22:13:00",
+ "height": "4.649"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2020-01-28",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "4.829"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.521"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2020-01-29",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.673"
+ },
+ {
+ "time": "23:21:00",
+ "height": "4.342"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:54"
+ },
+ {
+ "date": "2020-01-30",
+ "groups": [
+ {
+ "time": "11:42:00",
+ "height": "4.461"
+ },
+ {
+ "time": "23:57:00",
+ "height": "4.118"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:56"
+ },
+ {
+ "date": "2020-01-31",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "4.202"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:58"
+ },
+ {
+ "date": "2020-02-01",
+ "groups": [
+ {
+ "time": "00:35:00",
+ "height": "3.860"
+ },
+ {
+ "time": "13:01:00",
+ "height": "3.910"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:59"
+ },
+ {
+ "date": "2020-02-02",
+ "groups": [
+ {
+ "time": "01:20:00",
+ "height": "3.593"
+ },
+ {
+ "time": "13:53:00",
+ "height": "3.622"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "17:01"
+ },
+ {
+ "date": "2020-02-03",
+ "groups": [
+ {
+ "time": "02:20:00",
+ "height": "3.363"
+ },
+ {
+ "time": "15:01:00",
+ "height": "3.407"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "17:03"
+ },
+ {
+ "date": "2020-02-04",
+ "groups": [
+ {
+ "time": "03:38:00",
+ "height": "3.270"
+ },
+ {
+ "time": "16:20:00",
+ "height": "3.385"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "17:05"
+ },
+ {
+ "date": "2020-02-05",
+ "groups": [
+ {
+ "time": "04:57:00",
+ "height": "3.432"
+ },
+ {
+ "time": "17:31:00",
+ "height": "3.619"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "17:07"
+ },
+ {
+ "date": "2020-02-06",
+ "groups": [
+ {
+ "time": "06:02:00",
+ "height": "3.813"
+ },
+ {
+ "time": "18:30:00",
+ "height": "4.014"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "17:09"
+ },
+ {
+ "date": "2020-02-07",
+ "groups": [
+ {
+ "time": "06:55:00",
+ "height": "4.281"
+ },
+ {
+ "time": "19:21:00",
+ "height": "4.452"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "17:11"
+ },
+ {
+ "date": "2020-02-08",
+ "groups": [
+ {
+ "time": "07:42:00",
+ "height": "4.743"
+ },
+ {
+ "time": "20:06:00",
+ "height": "4.855"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "17:13"
+ },
+ {
+ "date": "2020-02-09",
+ "groups": [
+ {
+ "time": "08:26:00",
+ "height": "5.139"
+ },
+ {
+ "time": "20:50:00",
+ "height": "5.168"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "17:15"
+ },
+ {
+ "date": "2020-02-10",
+ "groups": [
+ {
+ "time": "09:08:00",
+ "height": "5.431"
+ },
+ {
+ "time": "21:33:00",
+ "height": "5.357"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "17:17"
+ },
+ {
+ "date": "2020-02-11",
+ "groups": [
+ {
+ "time": "09:51:00",
+ "height": "5.586"
+ },
+ {
+ "time": "22:15:00",
+ "height": "5.396"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "17:19"
+ },
+ {
+ "date": "2020-02-12",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "5.578"
+ },
+ {
+ "time": "23:02:00",
+ "height": "5.274"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "17:21"
+ },
+ {
+ "date": "2020-02-13",
+ "groups": [
+ {
+ "time": "11:23:00",
+ "height": "5.400"
+ },
+ {
+ "time": "23:49:00",
+ "height": "5.005"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "17:23"
+ },
+ {
+ "date": "2020-02-14",
+ "groups": [
+ {
+ "time": "12:11:00",
+ "height": "5.066"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "17:25"
+ },
+ {
+ "date": "2020-02-15",
+ "groups": [
+ {
+ "time": "00:38:00",
+ "height": "4.626"
+ },
+ {
+ "time": "13:03:00",
+ "height": "4.618"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "17:26"
+ },
+ {
+ "date": "2020-02-16",
+ "groups": [
+ {
+ "time": "01:32:00",
+ "height": "4.193"
+ },
+ {
+ "time": "14:01:00",
+ "height": "4.128"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "17:28"
+ },
+ {
+ "date": "2020-02-17",
+ "groups": [
+ {
+ "time": "02:37:00",
+ "height": "3.792"
+ },
+ {
+ "time": "15:14:00",
+ "height": "3.709"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "17:30"
+ },
+ {
+ "date": "2020-02-18",
+ "groups": [
+ {
+ "time": "03:57:00",
+ "height": "3.560"
+ },
+ {
+ "time": "16:36:00",
+ "height": "3.526"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "17:32"
+ },
+ {
+ "date": "2020-02-19",
+ "groups": [
+ {
+ "time": "05:17:00",
+ "height": "3.628"
+ },
+ {
+ "time": "17:55:00",
+ "height": "3.660"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "17:34"
+ },
+ {
+ "date": "2020-02-20",
+ "groups": [
+ {
+ "time": "06:27:00",
+ "height": "3.944"
+ },
+ {
+ "time": "18:56:00",
+ "height": "3.977"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "17:36"
+ },
+ {
+ "date": "2020-02-21",
+ "groups": [
+ {
+ "time": "07:17:00",
+ "height": "4.315"
+ },
+ {
+ "time": "19:41:00",
+ "height": "4.295"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "17:38"
+ },
+ {
+ "date": "2020-02-22",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.620"
+ },
+ {
+ "time": "20:19:00",
+ "height": "4.538"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "17:40"
+ },
+ {
+ "date": "2020-02-23",
+ "groups": [
+ {
+ "time": "08:35:00",
+ "height": "4.826"
+ },
+ {
+ "time": "20:51:00",
+ "height": "4.691"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "17:42"
+ },
+ {
+ "date": "2020-02-24",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "4.936"
+ },
+ {
+ "time": "21:22:00",
+ "height": "4.763"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "17:44"
+ },
+ {
+ "date": "2020-02-25",
+ "groups": [
+ {
+ "time": "09:37:00",
+ "height": "4.965"
+ },
+ {
+ "time": "21:50:00",
+ "height": "4.765"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "17:46"
+ },
+ {
+ "date": "2020-02-26",
+ "groups": [
+ {
+ "time": "10:05:00",
+ "height": "4.925"
+ },
+ {
+ "time": "22:18:00",
+ "height": "4.704"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "17:47"
+ },
+ {
+ "date": "2020-02-27",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "4.818"
+ },
+ {
+ "time": "22:49:00",
+ "height": "4.578"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "17:49"
+ },
+ {
+ "date": "2020-02-28",
+ "groups": [
+ {
+ "time": "11:07:00",
+ "height": "4.640"
+ },
+ {
+ "time": "23:19:00",
+ "height": "4.389"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "17:51"
+ },
+ {
+ "date": "2020-02-29",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "4.393"
+ },
+ {
+ "time": "23:52:00",
+ "height": "4.142"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "17:53"
+ },
+ {
+ "date": "2020-06-01",
+ "groups": [
+ {
+ "time": "05:07:00",
+ "height": "4.078"
+ },
+ {
+ "time": "17:46:00",
+ "height": "4.025"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2020-06-02",
+ "groups": [
+ {
+ "time": "06:11:00",
+ "height": "4.358"
+ },
+ {
+ "time": "18:44:00",
+ "height": "4.367"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2020-06-03",
+ "groups": [
+ {
+ "time": "07:07:00",
+ "height": "4.664"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.702"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2020-06-04",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.917"
+ },
+ {
+ "time": "20:24:00",
+ "height": "4.969"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2020-06-05",
+ "groups": [
+ {
+ "time": "08:46:00",
+ "height": "5.075"
+ },
+ {
+ "time": "21:08:00",
+ "height": "5.138"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2020-06-06",
+ "groups": [
+ {
+ "time": "09:31:00",
+ "height": "5.121"
+ },
+ {
+ "time": "21:52:00",
+ "height": "5.192"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2020-06-07",
+ "groups": [
+ {
+ "time": "10:14:00",
+ "height": "5.049"
+ },
+ {
+ "time": "22:34:00",
+ "height": "5.128"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2020-06-08",
+ "groups": [
+ {
+ "time": "10:56:00",
+ "height": "4.866"
+ },
+ {
+ "time": "23:16:00",
+ "height": "4.952"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2020-06-09",
+ "groups": [
+ {
+ "time": "11:41:00",
+ "height": "4.596"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2020-06-10",
+ "groups": [
+ {
+ "time": "00:02:00",
+ "height": "4.692"
+ },
+ {
+ "time": "12:26:00",
+ "height": "4.272"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2020-06-11",
+ "groups": [
+ {
+ "time": "00:49:00",
+ "height": "4.384"
+ },
+ {
+ "time": "13:14:00",
+ "height": "3.938"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2020-06-12",
+ "groups": [
+ {
+ "time": "01:39:00",
+ "height": "4.072"
+ },
+ {
+ "time": "14:05:00",
+ "height": "3.633"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2020-06-13",
+ "groups": [
+ {
+ "time": "02:34:00",
+ "height": "3.797"
+ },
+ {
+ "time": "15:06:00",
+ "height": "3.402"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2020-06-14",
+ "groups": [
+ {
+ "time": "03:39:00",
+ "height": "3.610"
+ },
+ {
+ "time": "16:17:00",
+ "height": "3.302"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2020-06-15",
+ "groups": [
+ {
+ "time": "04:50:00",
+ "height": "3.562"
+ },
+ {
+ "time": "17:24:00",
+ "height": "3.374"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2020-06-16",
+ "groups": [
+ {
+ "time": "05:50:00",
+ "height": "3.658"
+ },
+ {
+ "time": "18:20:00",
+ "height": "3.580"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2020-06-17",
+ "groups": [
+ {
+ "time": "06:41:00",
+ "height": "3.843"
+ },
+ {
+ "time": "19:07:00",
+ "height": "3.847"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2020-06-18",
+ "groups": [
+ {
+ "time": "07:26:00",
+ "height": "4.060"
+ },
+ {
+ "time": "19:47:00",
+ "height": "4.122"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2020-06-19",
+ "groups": [
+ {
+ "time": "08:06:00",
+ "height": "4.269"
+ },
+ {
+ "time": "20:25:00",
+ "height": "4.372"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2020-06-20",
+ "groups": [
+ {
+ "time": "08:44:00",
+ "height": "4.449"
+ },
+ {
+ "time": "21:01:00",
+ "height": "4.578"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2020-06-21",
+ "groups": [
+ {
+ "time": "09:21:00",
+ "height": "4.586"
+ },
+ {
+ "time": "21:37:00",
+ "height": "4.729"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2020-06-22",
+ "groups": [
+ {
+ "time": "09:58:00",
+ "height": "4.671"
+ },
+ {
+ "time": "22:13:00",
+ "height": "4.817"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2020-06-23",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "4.695"
+ },
+ {
+ "time": "22:52:00",
+ "height": "4.835"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2020-06-24",
+ "groups": [
+ {
+ "time": "11:16:00",
+ "height": "4.650"
+ },
+ {
+ "time": "23:34:00",
+ "height": "4.783"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2020-06-25",
+ "groups": [
+ {
+ "time": "12:04:00",
+ "height": "4.536"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2020-06-26",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "4.667"
+ },
+ {
+ "time": "12:56:00",
+ "height": "4.368"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2020-06-27",
+ "groups": [
+ {
+ "time": "01:18:00",
+ "height": "4.510"
+ },
+ {
+ "time": "13:53:00",
+ "height": "4.178"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2020-06-28",
+ "groups": [
+ {
+ "time": "02:19:00",
+ "height": "4.342"
+ },
+ {
+ "time": "14:57:00",
+ "height": "4.014"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2020-06-29",
+ "groups": [
+ {
+ "time": "03:26:00",
+ "height": "4.206"
+ },
+ {
+ "time": "16:07:00",
+ "height": "3.931"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2020-06-30",
+ "groups": [
+ {
+ "time": "04:38:00",
+ "height": "4.151"
+ },
+ {
+ "time": "17:15:00",
+ "height": "3.976"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2020-07-01",
+ "groups": [
+ {
+ "time": "05:42:00",
+ "height": "4.199"
+ },
+ {
+ "time": "18:17:00",
+ "height": "4.142"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2020-07-02",
+ "groups": [
+ {
+ "time": "06:43:00",
+ "height": "4.330"
+ },
+ {
+ "time": "19:14:00",
+ "height": "4.377"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2020-07-03",
+ "groups": [
+ {
+ "time": "07:40:00",
+ "height": "4.494"
+ },
+ {
+ "time": "20:07:00",
+ "height": "4.620"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2020-07-04",
+ "groups": [
+ {
+ "time": "08:32:00",
+ "height": "4.645"
+ },
+ {
+ "time": "20:56:00",
+ "height": "4.820"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2020-07-05",
+ "groups": [
+ {
+ "time": "09:19:00",
+ "height": "4.743"
+ },
+ {
+ "time": "21:40:00",
+ "height": "4.943"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2020-07-06",
+ "groups": [
+ {
+ "time": "10:03:00",
+ "height": "4.767"
+ },
+ {
+ "time": "22:22:00",
+ "height": "4.971"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2020-07-07",
+ "groups": [
+ {
+ "time": "10:43:00",
+ "height": "4.707"
+ },
+ {
+ "time": "23:01:00",
+ "height": "4.904"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2020-07-08",
+ "groups": [
+ {
+ "time": "11:23:00",
+ "height": "4.570"
+ },
+ {
+ "time": "23:42:00",
+ "height": "4.753"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2020-07-09",
+ "groups": [
+ {
+ "time": "12:04:00",
+ "height": "4.375"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2020-07-10",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "4.545"
+ },
+ {
+ "time": "12:44:00",
+ "height": "4.145"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2020-07-11",
+ "groups": [
+ {
+ "time": "01:05:00",
+ "height": "4.302"
+ },
+ {
+ "time": "13:26:00",
+ "height": "3.899"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2020-07-12",
+ "groups": [
+ {
+ "time": "01:50:00",
+ "height": "4.043"
+ },
+ {
+ "time": "14:10:00",
+ "height": "3.657"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2020-07-13",
+ "groups": [
+ {
+ "time": "02:39:00",
+ "height": "3.789"
+ },
+ {
+ "time": "15:04:00",
+ "height": "3.446"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2020-07-14",
+ "groups": [
+ {
+ "time": "03:37:00",
+ "height": "3.579"
+ },
+ {
+ "time": "16:10:00",
+ "height": "3.320"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2020-07-15",
+ "groups": [
+ {
+ "time": "04:46:00",
+ "height": "3.473"
+ },
+ {
+ "time": "17:20:00",
+ "height": "3.350"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2020-07-16",
+ "groups": [
+ {
+ "time": "05:50:00",
+ "height": "3.528"
+ },
+ {
+ "time": "18:22:00",
+ "height": "3.550"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2020-07-17",
+ "groups": [
+ {
+ "time": "06:47:00",
+ "height": "3.723"
+ },
+ {
+ "time": "19:13:00",
+ "height": "3.854"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2020-07-18",
+ "groups": [
+ {
+ "time": "07:36:00",
+ "height": "3.992"
+ },
+ {
+ "time": "19:59:00",
+ "height": "4.188"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2020-07-19",
+ "groups": [
+ {
+ "time": "08:21:00",
+ "height": "4.277"
+ },
+ {
+ "time": "20:40:00",
+ "height": "4.505"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2020-07-20",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "4.539"
+ },
+ {
+ "time": "21:20:00",
+ "height": "4.775"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2020-07-21",
+ "groups": [
+ {
+ "time": "09:44:00",
+ "height": "4.750"
+ },
+ {
+ "time": "22:01:00",
+ "height": "4.980"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2020-07-22",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "4.891"
+ },
+ {
+ "time": "22:42:00",
+ "height": "5.107"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2020-07-23",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.943"
+ },
+ {
+ "time": "23:25:00",
+ "height": "5.139"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2020-07-24",
+ "groups": [
+ {
+ "time": "11:53:00",
+ "height": "4.894"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2020-07-25",
+ "groups": [
+ {
+ "time": "00:13:00",
+ "height": "5.067"
+ },
+ {
+ "time": "12:42:00",
+ "height": "4.744"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2020-07-26",
+ "groups": [
+ {
+ "time": "01:03:00",
+ "height": "4.893"
+ },
+ {
+ "time": "13:33:00",
+ "height": "4.513"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2020-07-27",
+ "groups": [
+ {
+ "time": "01:56:00",
+ "height": "4.636"
+ },
+ {
+ "time": "14:29:00",
+ "height": "4.240"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2020-07-28",
+ "groups": [
+ {
+ "time": "02:56:00",
+ "height": "4.335"
+ },
+ {
+ "time": "15:33:00",
+ "height": "3.983"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2020-07-29",
+ "groups": [
+ {
+ "time": "04:04:00",
+ "height": "4.057"
+ },
+ {
+ "time": "16:46:00",
+ "height": "3.831"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2020-07-30",
+ "groups": [
+ {
+ "time": "05:17:00",
+ "height": "3.901"
+ },
+ {
+ "time": "17:55:00",
+ "height": "3.864"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2020-07-31",
+ "groups": [
+ {
+ "time": "06:27:00",
+ "height": "3.932"
+ },
+ {
+ "time": "19:02:00",
+ "height": "4.077"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2020-08-01",
+ "groups": [
+ {
+ "time": "07:32:00",
+ "height": "4.118"
+ },
+ {
+ "time": "20:00:00",
+ "height": "4.378"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2020-08-02",
+ "groups": [
+ {
+ "time": "08:27:00",
+ "height": "4.357"
+ },
+ {
+ "time": "20:48:00",
+ "height": "4.660"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2020-08-03",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "4.559"
+ },
+ {
+ "time": "21:31:00",
+ "height": "4.860"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2020-08-04",
+ "groups": [
+ {
+ "time": "09:52:00",
+ "height": "4.681"
+ },
+ {
+ "time": "22:08:00",
+ "height": "4.957"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2020-08-05",
+ "groups": [
+ {
+ "time": "10:28:00",
+ "height": "4.716"
+ },
+ {
+ "time": "22:43:00",
+ "height": "4.958"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2020-08-06",
+ "groups": [
+ {
+ "time": "11:01:00",
+ "height": "4.671"
+ },
+ {
+ "time": "23:17:00",
+ "height": "4.876"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2020-08-07",
+ "groups": [
+ {
+ "time": "11:36:00",
+ "height": "4.558"
+ },
+ {
+ "time": "23:53:00",
+ "height": "4.727"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2020-08-08",
+ "groups": [
+ {
+ "time": "12:09:00",
+ "height": "4.392"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2020-08-09",
+ "groups": [
+ {
+ "time": "00:29:00",
+ "height": "4.523"
+ },
+ {
+ "time": "12:44:00",
+ "height": "4.181"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2020-08-10",
+ "groups": [
+ {
+ "time": "01:04:00",
+ "height": "4.268"
+ },
+ {
+ "time": "13:21:00",
+ "height": "3.933"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2020-08-11",
+ "groups": [
+ {
+ "time": "01:44:00",
+ "height": "3.974"
+ },
+ {
+ "time": "14:03:00",
+ "height": "3.663"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2020-08-12",
+ "groups": [
+ {
+ "time": "02:31:00",
+ "height": "3.664"
+ },
+ {
+ "time": "14:56:00",
+ "height": "3.408"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2020-08-13",
+ "groups": [
+ {
+ "time": "03:33:00",
+ "height": "3.396"
+ },
+ {
+ "time": "16:09:00",
+ "height": "3.249"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2020-08-14",
+ "groups": [
+ {
+ "time": "04:53:00",
+ "height": "3.283"
+ },
+ {
+ "time": "17:33:00",
+ "height": "3.321"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2020-08-15",
+ "groups": [
+ {
+ "time": "06:10:00",
+ "height": "3.436"
+ },
+ {
+ "time": "18:42:00",
+ "height": "3.646"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2020-08-16",
+ "groups": [
+ {
+ "time": "07:12:00",
+ "height": "3.790"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.089"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2020-08-17",
+ "groups": [
+ {
+ "time": "08:02:00",
+ "height": "4.215"
+ },
+ {
+ "time": "20:22:00",
+ "height": "4.543"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2020-08-18",
+ "groups": [
+ {
+ "time": "08:47:00",
+ "height": "4.625"
+ },
+ {
+ "time": "21:04:00",
+ "height": "4.947"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2020-08-19",
+ "groups": [
+ {
+ "time": "09:29:00",
+ "height": "4.966"
+ },
+ {
+ "time": "21:47:00",
+ "height": "5.265"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:34"
+ },
+ {
+ "date": "2020-08-20",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "5.204"
+ },
+ {
+ "time": "22:27:00",
+ "height": "5.467"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2020-08-21",
+ "groups": [
+ {
+ "time": "10:50:00",
+ "height": "5.310"
+ },
+ {
+ "time": "23:08:00",
+ "height": "5.526"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:30"
+ },
+ {
+ "date": "2020-08-22",
+ "groups": [
+ {
+ "time": "11:33:00",
+ "height": "5.268"
+ },
+ {
+ "time": "23:54:00",
+ "height": "5.424"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2020-08-23",
+ "groups": [
+ {
+ "time": "12:19:00",
+ "height": "5.076"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2020-08-24",
+ "groups": [
+ {
+ "time": "00:41:00",
+ "height": "5.161"
+ },
+ {
+ "time": "13:07:00",
+ "height": "4.758"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2020-08-25",
+ "groups": [
+ {
+ "time": "01:30:00",
+ "height": "4.765"
+ },
+ {
+ "time": "13:59:00",
+ "height": "4.360"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2020-08-26",
+ "groups": [
+ {
+ "time": "02:26:00",
+ "height": "4.292"
+ },
+ {
+ "time": "14:59:00",
+ "height": "3.952"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2020-08-27",
+ "groups": [
+ {
+ "time": "03:34:00",
+ "height": "3.836"
+ },
+ {
+ "time": "16:18:00",
+ "height": "3.655"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2020-08-28",
+ "groups": [
+ {
+ "time": "04:58:00",
+ "height": "3.561"
+ },
+ {
+ "time": "17:41:00",
+ "height": "3.639"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2020-08-29",
+ "groups": [
+ {
+ "time": "06:22:00",
+ "height": "3.619"
+ },
+ {
+ "time": "18:57:00",
+ "height": "3.923"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:11"
+ },
+ {
+ "date": "2020-08-30",
+ "groups": [
+ {
+ "time": "07:30:00",
+ "height": "3.929"
+ },
+ {
+ "time": "19:54:00",
+ "height": "4.319"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2020-08-31",
+ "groups": [
+ {
+ "time": "08:20:00",
+ "height": "4.280"
+ },
+ {
+ "time": "20:38:00",
+ "height": "4.664"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2020-09-01",
+ "groups": [
+ {
+ "time": "09:00:00",
+ "height": "4.557"
+ },
+ {
+ "time": "21:16:00",
+ "height": "4.896"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2020-09-02",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "4.731"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.015"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:02"
+ },
+ {
+ "date": "2020-09-03",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "4.810"
+ },
+ {
+ "time": "22:21:00",
+ "height": "5.040"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2020-09-04",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "4.811"
+ },
+ {
+ "time": "22:50:00",
+ "height": "4.990"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2020-09-05",
+ "groups": [
+ {
+ "time": "11:03:00",
+ "height": "4.746"
+ },
+ {
+ "time": "23:19:00",
+ "height": "4.873"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "19:55"
+ },
+ {
+ "date": "2020-09-06",
+ "groups": [
+ {
+ "time": "11:33:00",
+ "height": "4.620"
+ },
+ {
+ "time": "23:51:00",
+ "height": "4.689"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2020-09-07",
+ "groups": [
+ {
+ "time": "12:04:00",
+ "height": "4.433"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2020-09-08",
+ "groups": [
+ {
+ "time": "00:22:00",
+ "height": "4.438"
+ },
+ {
+ "time": "12:35:00",
+ "height": "4.188"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:48"
+ },
+ {
+ "date": "2020-09-09",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "4.125"
+ },
+ {
+ "time": "13:11:00",
+ "height": "3.895"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "19:46"
+ },
+ {
+ "date": "2020-09-10",
+ "groups": [
+ {
+ "time": "01:38:00",
+ "height": "3.770"
+ },
+ {
+ "time": "13:57:00",
+ "height": "3.577"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:43"
+ },
+ {
+ "date": "2020-09-11",
+ "groups": [
+ {
+ "time": "02:33:00",
+ "height": "3.415"
+ },
+ {
+ "time": "15:06:00",
+ "height": "3.296"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "19:41"
+ },
+ {
+ "date": "2020-09-12",
+ "groups": [
+ {
+ "time": "03:58:00",
+ "height": "3.175"
+ },
+ {
+ "time": "16:46:00",
+ "height": "3.235"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "19:38"
+ },
+ {
+ "date": "2020-09-13",
+ "groups": [
+ {
+ "time": "05:38:00",
+ "height": "3.278"
+ },
+ {
+ "time": "18:14:00",
+ "height": "3.565"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:36"
+ },
+ {
+ "date": "2020-09-14",
+ "groups": [
+ {
+ "time": "06:50:00",
+ "height": "3.720"
+ },
+ {
+ "time": "19:14:00",
+ "height": "4.106"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "19:34"
+ },
+ {
+ "date": "2020-09-15",
+ "groups": [
+ {
+ "time": "07:43:00",
+ "height": "4.271"
+ },
+ {
+ "time": "20:02:00",
+ "height": "4.672"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:31"
+ },
+ {
+ "date": "2020-09-16",
+ "groups": [
+ {
+ "time": "08:28:00",
+ "height": "4.794"
+ },
+ {
+ "time": "20:45:00",
+ "height": "5.170"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "19:29"
+ },
+ {
+ "date": "2020-09-17",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "5.216"
+ },
+ {
+ "time": "21:26:00",
+ "height": "5.545"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:26"
+ },
+ {
+ "date": "2020-09-18",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "5.496"
+ },
+ {
+ "time": "22:06:00",
+ "height": "5.760"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:24"
+ },
+ {
+ "date": "2020-09-19",
+ "groups": [
+ {
+ "time": "10:29:00",
+ "height": "5.607"
+ },
+ {
+ "time": "22:47:00",
+ "height": "5.786"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "19:22"
+ },
+ {
+ "date": "2020-09-20",
+ "groups": [
+ {
+ "time": "11:09:00",
+ "height": "5.536"
+ },
+ {
+ "time": "23:29:00",
+ "height": "5.611"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "19:19"
+ },
+ {
+ "date": "2020-09-21",
+ "groups": [
+ {
+ "time": "11:53:00",
+ "height": "5.289"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "19:17"
+ },
+ {
+ "date": "2020-09-22",
+ "groups": [
+ {
+ "time": "00:16:00",
+ "height": "5.247"
+ },
+ {
+ "time": "12:39:00",
+ "height": "4.897"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "19:14"
+ },
+ {
+ "date": "2020-09-23",
+ "groups": [
+ {
+ "time": "01:03:00",
+ "height": "4.739"
+ },
+ {
+ "time": "13:29:00",
+ "height": "4.413"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "19:12"
+ },
+ {
+ "date": "2020-09-24",
+ "groups": [
+ {
+ "time": "01:57:00",
+ "height": "4.158"
+ },
+ {
+ "time": "14:31:00",
+ "height": "3.920"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "19:09"
+ },
+ {
+ "date": "2020-09-25",
+ "groups": [
+ {
+ "time": "03:08:00",
+ "height": "3.623"
+ },
+ {
+ "time": "15:54:00",
+ "height": "3.563"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "19:07"
+ },
+ {
+ "date": "2020-09-26",
+ "groups": [
+ {
+ "time": "04:45:00",
+ "height": "3.335"
+ },
+ {
+ "time": "17:30:00",
+ "height": "3.562"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "19:05"
+ },
+ {
+ "date": "2020-09-27",
+ "groups": [
+ {
+ "time": "06:16:00",
+ "height": "3.486"
+ },
+ {
+ "time": "18:47:00",
+ "height": "3.908"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "19:02"
+ },
+ {
+ "date": "2020-09-28",
+ "groups": [
+ {
+ "time": "07:20:00",
+ "height": "3.887"
+ },
+ {
+ "time": "19:39:00",
+ "height": "4.335"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "19:00"
+ },
+ {
+ "date": "2020-09-29",
+ "groups": [
+ {
+ "time": "08:04:00",
+ "height": "4.284"
+ },
+ {
+ "time": "20:19:00",
+ "height": "4.683"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "18:57"
+ },
+ {
+ "date": "2020-09-30",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "4.586"
+ },
+ {
+ "time": "20:54:00",
+ "height": "4.911"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "18:55"
+ },
+ {
+ "date": "2020-10-01",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "4.778"
+ },
+ {
+ "time": "21:25:00",
+ "height": "5.031"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "18:53"
+ },
+ {
+ "date": "2020-10-02",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "4.881"
+ },
+ {
+ "time": "21:54:00",
+ "height": "5.067"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "18:50"
+ },
+ {
+ "date": "2020-10-03",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "4.912"
+ },
+ {
+ "time": "22:22:00",
+ "height": "5.037"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "18:48"
+ },
+ {
+ "date": "2020-10-04",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "4.882"
+ },
+ {
+ "time": "22:49:00",
+ "height": "4.941"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "18:46"
+ },
+ {
+ "date": "2020-10-05",
+ "groups": [
+ {
+ "time": "10:59:00",
+ "height": "4.788"
+ },
+ {
+ "time": "23:16:00",
+ "height": "4.775"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "18:43"
+ },
+ {
+ "date": "2020-10-06",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "4.626"
+ },
+ {
+ "time": "23:46:00",
+ "height": "4.536"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "18:41"
+ },
+ {
+ "date": "2020-10-07",
+ "groups": [
+ {
+ "time": "11:59:00",
+ "height": "4.395"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "18:39"
+ },
+ {
+ "date": "2020-10-08",
+ "groups": [
+ {
+ "time": "00:20:00",
+ "height": "4.230"
+ },
+ {
+ "time": "12:34:00",
+ "height": "4.105"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2020-10-09",
+ "groups": [
+ {
+ "time": "01:00:00",
+ "height": "3.875"
+ },
+ {
+ "time": "13:18:00",
+ "height": "3.774"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "18:34"
+ },
+ {
+ "date": "2020-10-10",
+ "groups": [
+ {
+ "time": "01:53:00",
+ "height": "3.503"
+ },
+ {
+ "time": "14:25:00",
+ "height": "3.456"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2020-10-11",
+ "groups": [
+ {
+ "time": "03:19:00",
+ "height": "3.227"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.337"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2020-10-12",
+ "groups": [
+ {
+ "time": "05:06:00",
+ "height": "3.306"
+ },
+ {
+ "time": "17:43:00",
+ "height": "3.639"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "18:27"
+ },
+ {
+ "date": "2020-10-13",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "3.773"
+ },
+ {
+ "time": "18:47:00",
+ "height": "4.201"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2020-10-14",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.364"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.794"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2020-10-15",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "4.917"
+ },
+ {
+ "time": "20:21:00",
+ "height": "5.303"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2020-10-16",
+ "groups": [
+ {
+ "time": "08:46:00",
+ "height": "5.352"
+ },
+ {
+ "time": "21:03:00",
+ "height": "5.664"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2020-10-17",
+ "groups": [
+ {
+ "time": "09:27:00",
+ "height": "5.627"
+ },
+ {
+ "time": "21:45:00",
+ "height": "5.841"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2020-10-18",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.722"
+ },
+ {
+ "time": "22:25:00",
+ "height": "5.813"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2020-10-19",
+ "groups": [
+ {
+ "time": "10:46:00",
+ "height": "5.629"
+ },
+ {
+ "time": "23:06:00",
+ "height": "5.581"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2020-10-20",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "5.361"
+ },
+ {
+ "time": "23:52:00",
+ "height": "5.168"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2020-10-21",
+ "groups": [
+ {
+ "time": "12:16:00",
+ "height": "4.951"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2020-10-22",
+ "groups": [
+ {
+ "time": "00:42:00",
+ "height": "4.631"
+ },
+ {
+ "time": "13:07:00",
+ "height": "4.459"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "18:05"
+ },
+ {
+ "date": "2020-10-23",
+ "groups": [
+ {
+ "time": "01:37:00",
+ "height": "4.052"
+ },
+ {
+ "time": "14:08:00",
+ "height": "3.970"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2020-10-24",
+ "groups": [
+ {
+ "time": "02:46:00",
+ "height": "3.545"
+ },
+ {
+ "time": "15:31:00",
+ "height": "3.621"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2020-10-25",
+ "groups": [
+ {
+ "time": "04:23:00",
+ "height": "3.294"
+ },
+ {
+ "time": "17:06:00",
+ "height": "3.599"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "17:59"
+ },
+ {
+ "date": "2020-10-26",
+ "groups": [
+ {
+ "time": "04:52:00",
+ "height": "3.442"
+ },
+ {
+ "time": "17:19:00",
+ "height": "3.882"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "16:57"
+ },
+ {
+ "date": "2020-10-27",
+ "groups": [
+ {
+ "time": "05:54:00",
+ "height": "3.814"
+ },
+ {
+ "time": "18:11:00",
+ "height": "4.250"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "16:55"
+ },
+ {
+ "date": "2020-10-28",
+ "groups": [
+ {
+ "time": "06:37:00",
+ "height": "4.192"
+ },
+ {
+ "time": "18:51:00",
+ "height": "4.564"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "16:53"
+ },
+ {
+ "date": "2020-10-29",
+ "groups": [
+ {
+ "time": "07:12:00",
+ "height": "4.494"
+ },
+ {
+ "time": "19:26:00",
+ "height": "4.785"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "16:51"
+ },
+ {
+ "date": "2020-10-30",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "4.707"
+ },
+ {
+ "time": "19:57:00",
+ "height": "4.917"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "16:49"
+ },
+ {
+ "date": "2020-10-31",
+ "groups": [
+ {
+ "time": "08:12:00",
+ "height": "4.841"
+ },
+ {
+ "time": "20:26:00",
+ "height": "4.977"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "16:47"
+ },
+ {
+ "date": "2020-11-01",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "4.911"
+ },
+ {
+ "time": "20:55:00",
+ "height": "4.974"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2020-11-02",
+ "groups": [
+ {
+ "time": "09:07:00",
+ "height": "4.920"
+ },
+ {
+ "time": "21:22:00",
+ "height": "4.907"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "16:43"
+ },
+ {
+ "date": "2020-11-03",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "4.863"
+ },
+ {
+ "time": "21:51:00",
+ "height": "4.772"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2020-11-04",
+ "groups": [
+ {
+ "time": "10:02:00",
+ "height": "4.735"
+ },
+ {
+ "time": "22:21:00",
+ "height": "4.568"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2020-11-05",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "4.538"
+ },
+ {
+ "time": "22:57:00",
+ "height": "4.300"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2020-11-06",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "4.279"
+ },
+ {
+ "time": "23:41:00",
+ "height": "3.984"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2020-11-07",
+ "groups": [
+ {
+ "time": "12:00:00",
+ "height": "3.982"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2020-11-08",
+ "groups": [
+ {
+ "time": "00:37:00",
+ "height": "3.660"
+ },
+ {
+ "time": "13:06:00",
+ "height": "3.707"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2020-11-09",
+ "groups": [
+ {
+ "time": "01:57:00",
+ "height": "3.433"
+ },
+ {
+ "time": "14:38:00",
+ "height": "3.605"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2020-11-10",
+ "groups": [
+ {
+ "time": "03:35:00",
+ "height": "3.490"
+ },
+ {
+ "time": "16:08:00",
+ "height": "3.825"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2020-11-11",
+ "groups": [
+ {
+ "time": "04:51:00",
+ "height": "3.865"
+ },
+ {
+ "time": "17:14:00",
+ "height": "4.281"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2020-11-12",
+ "groups": [
+ {
+ "time": "05:48:00",
+ "height": "4.376"
+ },
+ {
+ "time": "18:08:00",
+ "height": "4.785"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2020-11-13",
+ "groups": [
+ {
+ "time": "06:36:00",
+ "height": "4.869"
+ },
+ {
+ "time": "18:56:00",
+ "height": "5.218"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2020-11-14",
+ "groups": [
+ {
+ "time": "07:21:00",
+ "height": "5.262"
+ },
+ {
+ "time": "19:40:00",
+ "height": "5.515"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2020-11-15",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "5.513"
+ },
+ {
+ "time": "20:24:00",
+ "height": "5.642"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2020-11-16",
+ "groups": [
+ {
+ "time": "08:46:00",
+ "height": "5.606"
+ },
+ {
+ "time": "21:06:00",
+ "height": "5.592"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2020-11-17",
+ "groups": [
+ {
+ "time": "09:28:00",
+ "height": "5.535"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.370"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2020-11-18",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "5.311"
+ },
+ {
+ "time": "22:36:00",
+ "height": "5.004"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2020-11-19",
+ "groups": [
+ {
+ "time": "10:58:00",
+ "height": "4.965"
+ },
+ {
+ "time": "23:25:00",
+ "height": "4.545"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2020-11-20",
+ "groups": [
+ {
+ "time": "11:50:00",
+ "height": "4.548"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2020-11-21",
+ "groups": [
+ {
+ "time": "00:18:00",
+ "height": "4.065"
+ },
+ {
+ "time": "12:48:00",
+ "height": "4.131"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2020-11-22",
+ "groups": [
+ {
+ "time": "01:21:00",
+ "height": "3.645"
+ },
+ {
+ "time": "13:58:00",
+ "height": "3.803"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2020-11-23",
+ "groups": [
+ {
+ "time": "02:39:00",
+ "height": "3.388"
+ },
+ {
+ "time": "15:20:00",
+ "height": "3.670"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2020-11-24",
+ "groups": [
+ {
+ "time": "04:03:00",
+ "height": "3.393"
+ },
+ {
+ "time": "16:32:00",
+ "height": "3.767"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2020-11-25",
+ "groups": [
+ {
+ "time": "05:08:00",
+ "height": "3.617"
+ },
+ {
+ "time": "17:28:00",
+ "height": "3.998"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2020-11-26",
+ "groups": [
+ {
+ "time": "05:57:00",
+ "height": "3.920"
+ },
+ {
+ "time": "18:14:00",
+ "height": "4.251"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2020-11-27",
+ "groups": [
+ {
+ "time": "06:38:00",
+ "height": "4.213"
+ },
+ {
+ "time": "18:53:00",
+ "height": "4.470"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2020-11-28",
+ "groups": [
+ {
+ "time": "07:13:00",
+ "height": "4.459"
+ },
+ {
+ "time": "19:28:00",
+ "height": "4.636"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2020-11-29",
+ "groups": [
+ {
+ "time": "07:45:00",
+ "height": "4.647"
+ },
+ {
+ "time": "20:00:00",
+ "height": "4.745"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2020-11-30",
+ "groups": [
+ {
+ "time": "08:15:00",
+ "height": "4.777"
+ },
+ {
+ "time": "20:31:00",
+ "height": "4.795"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2020-12-01",
+ "groups": [
+ {
+ "time": "08:45:00",
+ "height": "4.845"
+ },
+ {
+ "time": "21:03:00",
+ "height": "4.787"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2020-12-02",
+ "groups": [
+ {
+ "time": "09:16:00",
+ "height": "4.850"
+ },
+ {
+ "time": "21:34:00",
+ "height": "4.720"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2020-12-03",
+ "groups": [
+ {
+ "time": "09:47:00",
+ "height": "4.788"
+ },
+ {
+ "time": "22:07:00",
+ "height": "4.591"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2020-12-04",
+ "groups": [
+ {
+ "time": "10:23:00",
+ "height": "4.661"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.403"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2020-12-05",
+ "groups": [
+ {
+ "time": "11:05:00",
+ "height": "4.477"
+ },
+ {
+ "time": "23:34:00",
+ "height": "4.172"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2020-12-06",
+ "groups": [
+ {
+ "time": "11:56:00",
+ "height": "4.262"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2020-12-07",
+ "groups": [
+ {
+ "time": "00:30:00",
+ "height": "3.934"
+ },
+ {
+ "time": "12:57:00",
+ "height": "4.062"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2020-12-08",
+ "groups": [
+ {
+ "time": "01:39:00",
+ "height": "3.757"
+ },
+ {
+ "time": "14:11:00",
+ "height": "3.957"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2020-12-09",
+ "groups": [
+ {
+ "time": "02:58:00",
+ "height": "3.732"
+ },
+ {
+ "time": "15:31:00",
+ "height": "4.023"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2020-12-10",
+ "groups": [
+ {
+ "time": "04:12:00",
+ "height": "3.911"
+ },
+ {
+ "time": "16:38:00",
+ "height": "4.258"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2020-12-11",
+ "groups": [
+ {
+ "time": "05:14:00",
+ "height": "4.237"
+ },
+ {
+ "time": "17:38:00",
+ "height": "4.574"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2020-12-12",
+ "groups": [
+ {
+ "time": "06:09:00",
+ "height": "4.606"
+ },
+ {
+ "time": "18:31:00",
+ "height": "4.879"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2020-12-13",
+ "groups": [
+ {
+ "time": "06:59:00",
+ "height": "4.940"
+ },
+ {
+ "time": "19:21:00",
+ "height": "5.110"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2020-12-14",
+ "groups": [
+ {
+ "time": "07:46:00",
+ "height": "5.190"
+ },
+ {
+ "time": "20:09:00",
+ "height": "5.235"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2020-12-15",
+ "groups": [
+ {
+ "time": "08:32:00",
+ "height": "5.326"
+ },
+ {
+ "time": "20:54:00",
+ "height": "5.234"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2020-12-16",
+ "groups": [
+ {
+ "time": "09:16:00",
+ "height": "5.338"
+ },
+ {
+ "time": "21:38:00",
+ "height": "5.111"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2020-12-17",
+ "groups": [
+ {
+ "time": "09:58:00",
+ "height": "5.224"
+ },
+ {
+ "time": "22:23:00",
+ "height": "4.878"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2020-12-18",
+ "groups": [
+ {
+ "time": "10:45:00",
+ "height": "4.998"
+ },
+ {
+ "time": "23:10:00",
+ "height": "4.564"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2020-12-19",
+ "groups": [
+ {
+ "time": "11:33:00",
+ "height": "4.697"
+ },
+ {
+ "time": "23:58:00",
+ "height": "4.213"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2020-12-20",
+ "groups": [
+ {
+ "time": "12:23:00",
+ "height": "4.363"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2020-12-21",
+ "groups": [
+ {
+ "time": "00:49:00",
+ "height": "3.872"
+ },
+ {
+ "time": "13:17:00",
+ "height": "4.043"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2020-12-22",
+ "groups": [
+ {
+ "time": "01:45:00",
+ "height": "3.585"
+ },
+ {
+ "time": "14:19:00",
+ "height": "3.787"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2020-12-23",
+ "groups": [
+ {
+ "time": "02:52:00",
+ "height": "3.406"
+ },
+ {
+ "time": "15:29:00",
+ "height": "3.651"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2020-12-24",
+ "groups": [
+ {
+ "time": "04:05:00",
+ "height": "3.392"
+ },
+ {
+ "time": "16:32:00",
+ "height": "3.668"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2020-12-25",
+ "groups": [
+ {
+ "time": "05:05:00",
+ "height": "3.543"
+ },
+ {
+ "time": "17:28:00",
+ "height": "3.810"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2020-12-26",
+ "groups": [
+ {
+ "time": "05:57:00",
+ "height": "3.792"
+ },
+ {
+ "time": "18:16:00",
+ "height": "4.014"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2020-12-27",
+ "groups": [
+ {
+ "time": "06:40:00",
+ "height": "4.070"
+ },
+ {
+ "time": "18:59:00",
+ "height": "4.228"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2020-12-28",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.334"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.419"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2020-12-29",
+ "groups": [
+ {
+ "time": "07:54:00",
+ "height": "4.555"
+ },
+ {
+ "time": "20:13:00",
+ "height": "4.570"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2020-12-30",
+ "groups": [
+ {
+ "time": "08:29:00",
+ "height": "4.724"
+ },
+ {
+ "time": "20:48:00",
+ "height": "4.673"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2020-12-31",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "4.834"
+ },
+ {
+ "time": "21:23:00",
+ "height": "4.724"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2021-01-01",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "4.884"
+ },
+ {
+ "time": "21:59:00",
+ "height": "4.714"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2021-01-02",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "4.868"
+ },
+ {
+ "time": "22:42:00",
+ "height": "4.639"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2021-01-03",
+ "groups": [
+ {
+ "time": "11:00:00",
+ "height": "4.787"
+ },
+ {
+ "time": "23:29:00",
+ "height": "4.500"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2021-01-04",
+ "groups": [
+ {
+ "time": "11:48:00",
+ "height": "4.647"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2021-01-05",
+ "groups": [
+ {
+ "time": "00:18:00",
+ "height": "4.313"
+ },
+ {
+ "time": "12:42:00",
+ "height": "4.468"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2021-01-06",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "4.110"
+ },
+ {
+ "time": "13:43:00",
+ "height": "4.281"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2021-01-07",
+ "groups": [
+ {
+ "time": "02:21:00",
+ "height": "3.943"
+ },
+ {
+ "time": "14:52:00",
+ "height": "4.136"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2021-01-08",
+ "groups": [
+ {
+ "time": "03:35:00",
+ "height": "3.880"
+ },
+ {
+ "time": "16:04:00",
+ "height": "4.094"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2021-01-09",
+ "groups": [
+ {
+ "time": "04:42:00",
+ "height": "3.974"
+ },
+ {
+ "time": "17:10:00",
+ "height": "4.187"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2021-01-10",
+ "groups": [
+ {
+ "time": "05:46:00",
+ "height": "4.207"
+ },
+ {
+ "time": "18:13:00",
+ "height": "4.381"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2021-01-11",
+ "groups": [
+ {
+ "time": "06:44:00",
+ "height": "4.516"
+ },
+ {
+ "time": "19:11:00",
+ "height": "4.614"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2021-01-12",
+ "groups": [
+ {
+ "time": "07:36:00",
+ "height": "4.819"
+ },
+ {
+ "time": "20:02:00",
+ "height": "4.816"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2021-01-13",
+ "groups": [
+ {
+ "time": "08:24:00",
+ "height": "5.053"
+ },
+ {
+ "time": "20:48:00",
+ "height": "4.938"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2021-01-14",
+ "groups": [
+ {
+ "time": "09:07:00",
+ "height": "5.180"
+ },
+ {
+ "time": "21:30:00",
+ "height": "4.954"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2021-01-15",
+ "groups": [
+ {
+ "time": "09:48:00",
+ "height": "5.184"
+ },
+ {
+ "time": "22:09:00",
+ "height": "4.864"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2021-01-16",
+ "groups": [
+ {
+ "time": "10:29:00",
+ "height": "5.071"
+ },
+ {
+ "time": "22:51:00",
+ "height": "4.682"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2021-01-17",
+ "groups": [
+ {
+ "time": "11:11:00",
+ "height": "4.864"
+ },
+ {
+ "time": "23:31:00",
+ "height": "4.435"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2021-01-18",
+ "groups": [
+ {
+ "time": "11:51:00",
+ "height": "4.592"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2021-01-19",
+ "groups": [
+ {
+ "time": "00:11:00",
+ "height": "4.151"
+ },
+ {
+ "time": "12:33:00",
+ "height": "4.283"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2021-01-20",
+ "groups": [
+ {
+ "time": "00:52:00",
+ "height": "3.854"
+ },
+ {
+ "time": "13:18:00",
+ "height": "3.962"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2021-01-21",
+ "groups": [
+ {
+ "time": "01:40:00",
+ "height": "3.567"
+ },
+ {
+ "time": "14:11:00",
+ "height": "3.658"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2021-01-22",
+ "groups": [
+ {
+ "time": "02:38:00",
+ "height": "3.332"
+ },
+ {
+ "time": "15:18:00",
+ "height": "3.431"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2021-01-23",
+ "groups": [
+ {
+ "time": "03:55:00",
+ "height": "3.235"
+ },
+ {
+ "time": "16:32:00",
+ "height": "3.378"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2021-01-24",
+ "groups": [
+ {
+ "time": "05:09:00",
+ "height": "3.359"
+ },
+ {
+ "time": "17:38:00",
+ "height": "3.528"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2021-01-25",
+ "groups": [
+ {
+ "time": "06:07:00",
+ "height": "3.651"
+ },
+ {
+ "time": "18:31:00",
+ "height": "3.802"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2021-01-26",
+ "groups": [
+ {
+ "time": "06:55:00",
+ "height": "4.006"
+ },
+ {
+ "time": "19:16:00",
+ "height": "4.116"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2021-01-27",
+ "groups": [
+ {
+ "time": "07:36:00",
+ "height": "4.355"
+ },
+ {
+ "time": "19:57:00",
+ "height": "4.414"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:51"
+ },
+ {
+ "date": "2021-01-28",
+ "groups": [
+ {
+ "time": "08:14:00",
+ "height": "4.663"
+ },
+ {
+ "time": "20:35:00",
+ "height": "4.670"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:53"
+ },
+ {
+ "date": "2021-01-29",
+ "groups": [
+ {
+ "time": "08:50:00",
+ "height": "4.914"
+ },
+ {
+ "time": "21:12:00",
+ "height": "4.865"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:55"
+ },
+ {
+ "date": "2021-01-30",
+ "groups": [
+ {
+ "time": "09:27:00",
+ "height": "5.093"
+ },
+ {
+ "time": "21:49:00",
+ "height": "4.979"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:57"
+ },
+ {
+ "date": "2021-01-31",
+ "groups": [
+ {
+ "time": "10:05:00",
+ "height": "5.185"
+ },
+ {
+ "time": "22:29:00",
+ "height": "4.994"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:59"
+ },
+ {
+ "date": "2021-02-01",
+ "groups": [
+ {
+ "time": "10:49:00",
+ "height": "5.172"
+ },
+ {
+ "time": "23:13:00",
+ "height": "4.897"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "17:01"
+ },
+ {
+ "date": "2021-02-02",
+ "groups": [
+ {
+ "time": "11:33:00",
+ "height": "5.043"
+ },
+ {
+ "time": "23:59:00",
+ "height": "4.693"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "17:03"
+ },
+ {
+ "date": "2021-02-03",
+ "groups": [
+ {
+ "time": "12:21:00",
+ "height": "4.804"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "17:05"
+ },
+ {
+ "date": "2021-02-04",
+ "groups": [
+ {
+ "time": "00:48:00",
+ "height": "4.406"
+ },
+ {
+ "time": "13:13:00",
+ "height": "4.478"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "17:07"
+ },
+ {
+ "date": "2021-02-05",
+ "groups": [
+ {
+ "time": "01:45:00",
+ "height": "4.081"
+ },
+ {
+ "time": "14:15:00",
+ "height": "4.116"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "17:09"
+ },
+ {
+ "date": "2021-02-06",
+ "groups": [
+ {
+ "time": "02:54:00",
+ "height": "3.796"
+ },
+ {
+ "time": "15:32:00",
+ "height": "3.824"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "17:11"
+ },
+ {
+ "date": "2021-02-07",
+ "groups": [
+ {
+ "time": "04:14:00",
+ "height": "3.684"
+ },
+ {
+ "time": "16:51:00",
+ "height": "3.746"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "17:12"
+ },
+ {
+ "date": "2021-02-08",
+ "groups": [
+ {
+ "time": "05:31:00",
+ "height": "3.840"
+ },
+ {
+ "time": "18:06:00",
+ "height": "3.931"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "17:14"
+ },
+ {
+ "date": "2021-02-09",
+ "groups": [
+ {
+ "time": "06:38:00",
+ "height": "4.195"
+ },
+ {
+ "time": "19:08:00",
+ "height": "4.258"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "17:16"
+ },
+ {
+ "date": "2021-02-10",
+ "groups": [
+ {
+ "time": "07:32:00",
+ "height": "4.592"
+ },
+ {
+ "time": "19:58:00",
+ "height": "4.577"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "17:18"
+ },
+ {
+ "date": "2021-02-11",
+ "groups": [
+ {
+ "time": "08:17:00",
+ "height": "4.913"
+ },
+ {
+ "time": "20:39:00",
+ "height": "4.805"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "17:20"
+ },
+ {
+ "date": "2021-02-12",
+ "groups": [
+ {
+ "time": "08:57:00",
+ "height": "5.109"
+ },
+ {
+ "time": "21:17:00",
+ "height": "4.916"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "17:22"
+ },
+ {
+ "date": "2021-02-13",
+ "groups": [
+ {
+ "time": "09:33:00",
+ "height": "5.175"
+ },
+ {
+ "time": "21:51:00",
+ "height": "4.915"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "17:24"
+ },
+ {
+ "date": "2021-02-14",
+ "groups": [
+ {
+ "time": "10:07:00",
+ "height": "5.124"
+ },
+ {
+ "time": "22:24:00",
+ "height": "4.816"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "17:26"
+ },
+ {
+ "date": "2021-02-15",
+ "groups": [
+ {
+ "time": "10:42:00",
+ "height": "4.975"
+ },
+ {
+ "time": "22:58:00",
+ "height": "4.640"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "17:28"
+ },
+ {
+ "date": "2021-02-16",
+ "groups": [
+ {
+ "time": "11:17:00",
+ "height": "4.750"
+ },
+ {
+ "time": "23:31:00",
+ "height": "4.405"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "17:30"
+ },
+ {
+ "date": "2021-02-17",
+ "groups": [
+ {
+ "time": "11:50:00",
+ "height": "4.462"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "17:32"
+ },
+ {
+ "date": "2021-02-18",
+ "groups": [
+ {
+ "time": "00:04:00",
+ "height": "4.122"
+ },
+ {
+ "time": "12:26:00",
+ "height": "4.124"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "17:34"
+ },
+ {
+ "date": "2021-02-19",
+ "groups": [
+ {
+ "time": "00:41:00",
+ "height": "3.802"
+ },
+ {
+ "time": "13:07:00",
+ "height": "3.751"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "17:36"
+ },
+ {
+ "date": "2021-02-20",
+ "groups": [
+ {
+ "time": "01:27:00",
+ "height": "3.467"
+ },
+ {
+ "time": "14:01:00",
+ "height": "3.380"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "17:38"
+ },
+ {
+ "date": "2021-02-21",
+ "groups": [
+ {
+ "time": "02:31:00",
+ "height": "3.173"
+ },
+ {
+ "time": "15:20:00",
+ "height": "3.112"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "17:39"
+ },
+ {
+ "date": "2021-02-22",
+ "groups": [
+ {
+ "time": "04:05:00",
+ "height": "3.073"
+ },
+ {
+ "time": "16:54:00",
+ "height": "3.141"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "17:41"
+ },
+ {
+ "date": "2021-02-23",
+ "groups": [
+ {
+ "time": "05:32:00",
+ "height": "3.324"
+ },
+ {
+ "time": "18:05:00",
+ "height": "3.475"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "17:43"
+ },
+ {
+ "date": "2021-02-24",
+ "groups": [
+ {
+ "time": "06:30:00",
+ "height": "3.769"
+ },
+ {
+ "time": "18:56:00",
+ "height": "3.924"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "17:45"
+ },
+ {
+ "date": "2021-02-25",
+ "groups": [
+ {
+ "time": "07:15:00",
+ "height": "4.249"
+ },
+ {
+ "time": "19:38:00",
+ "height": "4.376"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "17:47"
+ },
+ {
+ "date": "2021-02-26",
+ "groups": [
+ {
+ "time": "07:54:00",
+ "height": "4.694"
+ },
+ {
+ "time": "20:17:00",
+ "height": "4.775"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "17:49"
+ },
+ {
+ "date": "2021-02-27",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "5.070"
+ },
+ {
+ "time": "20:54:00",
+ "height": "5.087"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "17:51"
+ },
+ {
+ "date": "2021-02-28",
+ "groups": [
+ {
+ "time": "09:10:00",
+ "height": "5.347"
+ },
+ {
+ "time": "21:32:00",
+ "height": "5.282"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "17:53"
+ },
+ {
+ "date": "2021-03-01",
+ "groups": [
+ {
+ "time": "09:48:00",
+ "height": "5.495"
+ },
+ {
+ "time": "22:09:00",
+ "height": "5.334"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "17:55"
+ },
+ {
+ "date": "2021-03-02",
+ "groups": [
+ {
+ "time": "10:28:00",
+ "height": "5.488"
+ },
+ {
+ "time": "22:51:00",
+ "height": "5.229"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2021-03-03",
+ "groups": [
+ {
+ "time": "11:11:00",
+ "height": "5.310"
+ },
+ {
+ "time": "23:35:00",
+ "height": "4.972"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2021-03-04",
+ "groups": [
+ {
+ "time": "11:57:00",
+ "height": "4.970"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2021-03-05",
+ "groups": [
+ {
+ "time": "00:21:00",
+ "height": "4.594"
+ },
+ {
+ "time": "12:46:00",
+ "height": "4.504"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2021-03-06",
+ "groups": [
+ {
+ "time": "01:14:00",
+ "height": "4.144"
+ },
+ {
+ "time": "13:46:00",
+ "height": "3.981"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2021-03-07",
+ "groups": [
+ {
+ "time": "02:24:00",
+ "height": "3.714"
+ },
+ {
+ "time": "15:07:00",
+ "height": "3.541"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2021-03-08",
+ "groups": [
+ {
+ "time": "03:54:00",
+ "height": "3.490"
+ },
+ {
+ "time": "16:40:00",
+ "height": "3.419"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2021-03-09",
+ "groups": [
+ {
+ "time": "05:24:00",
+ "height": "3.656"
+ },
+ {
+ "time": "18:04:00",
+ "height": "3.696"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2021-03-10",
+ "groups": [
+ {
+ "time": "06:32:00",
+ "height": "4.084"
+ },
+ {
+ "time": "19:02:00",
+ "height": "4.123"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2021-03-11",
+ "groups": [
+ {
+ "time": "07:22:00",
+ "height": "4.524"
+ },
+ {
+ "time": "19:46:00",
+ "height": "4.498"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2021-03-12",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "4.853"
+ },
+ {
+ "time": "20:23:00",
+ "height": "4.758"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2021-03-13",
+ "groups": [
+ {
+ "time": "08:38:00",
+ "height": "5.046"
+ },
+ {
+ "time": "20:56:00",
+ "height": "4.897"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2021-03-14",
+ "groups": [
+ {
+ "time": "09:11:00",
+ "height": "5.117"
+ },
+ {
+ "time": "21:26:00",
+ "height": "4.934"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2021-03-15",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "5.091"
+ },
+ {
+ "time": "21:54:00",
+ "height": "4.886"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2021-03-16",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "4.981"
+ },
+ {
+ "time": "22:23:00",
+ "height": "4.765"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2021-03-17",
+ "groups": [
+ {
+ "time": "10:41:00",
+ "height": "4.797"
+ },
+ {
+ "time": "22:53:00",
+ "height": "4.575"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2021-03-18",
+ "groups": [
+ {
+ "time": "11:11:00",
+ "height": "4.539"
+ },
+ {
+ "time": "23:23:00",
+ "height": "4.322"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2021-03-19",
+ "groups": [
+ {
+ "time": "11:44:00",
+ "height": "4.214"
+ },
+ {
+ "time": "23:56:00",
+ "height": "4.012"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2021-03-20",
+ "groups": [
+ {
+ "time": "12:20:00",
+ "height": "3.835"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2021-03-21",
+ "groups": [
+ {
+ "time": "00:35:00",
+ "height": "3.659"
+ },
+ {
+ "time": "13:06:00",
+ "height": "3.429"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2021-03-22",
+ "groups": [
+ {
+ "time": "01:29:00",
+ "height": "3.300"
+ },
+ {
+ "time": "14:17:00",
+ "height": "3.072"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2021-03-23",
+ "groups": [
+ {
+ "time": "02:59:00",
+ "height": "3.058"
+ },
+ {
+ "time": "16:04:00",
+ "height": "2.982"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2021-03-24",
+ "groups": [
+ {
+ "time": "04:48:00",
+ "height": "3.202"
+ },
+ {
+ "time": "17:33:00",
+ "height": "3.330"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2021-03-25",
+ "groups": [
+ {
+ "time": "05:58:00",
+ "height": "3.682"
+ },
+ {
+ "time": "18:28:00",
+ "height": "3.866"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2021-03-26",
+ "groups": [
+ {
+ "time": "06:46:00",
+ "height": "4.243"
+ },
+ {
+ "time": "19:12:00",
+ "height": "4.416"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2021-03-27",
+ "groups": [
+ {
+ "time": "07:28:00",
+ "height": "4.772"
+ },
+ {
+ "time": "19:51:00",
+ "height": "4.898"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "18:42"
+ },
+ {
+ "date": "2021-03-28",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "5.211"
+ },
+ {
+ "time": "20:30:00",
+ "height": "5.266"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2021-03-29",
+ "groups": [
+ {
+ "time": "09:47:00",
+ "height": "5.520"
+ },
+ {
+ "time": "22:08:00",
+ "height": "5.487"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:45"
+ },
+ {
+ "date": "2021-03-30",
+ "groups": [
+ {
+ "time": "10:26:00",
+ "height": "5.665"
+ },
+ {
+ "time": "22:46:00",
+ "height": "5.537"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2021-03-31",
+ "groups": [
+ {
+ "time": "11:05:00",
+ "height": "5.616"
+ },
+ {
+ "time": "23:27:00",
+ "height": "5.404"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2021-04-01",
+ "groups": [
+ {
+ "time": "11:49:00",
+ "height": "5.368"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "19:51"
+ },
+ {
+ "date": "2021-04-02",
+ "groups": [
+ {
+ "time": "00:11:00",
+ "height": "5.104"
+ },
+ {
+ "time": "12:35:00",
+ "height": "4.945"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2021-04-03",
+ "groups": [
+ {
+ "time": "00:58:00",
+ "height": "4.672"
+ },
+ {
+ "time": "13:25:00",
+ "height": "4.400"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2021-04-04",
+ "groups": [
+ {
+ "time": "01:53:00",
+ "height": "4.170"
+ },
+ {
+ "time": "14:27:00",
+ "height": "3.825"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2021-04-05",
+ "groups": [
+ {
+ "time": "03:05:00",
+ "height": "3.706"
+ },
+ {
+ "time": "15:51:00",
+ "height": "3.380"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:58"
+ },
+ {
+ "date": "2021-04-06",
+ "groups": [
+ {
+ "time": "04:41:00",
+ "height": "3.482"
+ },
+ {
+ "time": "17:31:00",
+ "height": "3.314"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2021-04-07",
+ "groups": [
+ {
+ "time": "06:09:00",
+ "height": "3.665"
+ },
+ {
+ "time": "18:51:00",
+ "height": "3.639"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2021-04-08",
+ "groups": [
+ {
+ "time": "07:13:00",
+ "height": "4.072"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.064"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2021-04-09",
+ "groups": [
+ {
+ "time": "08:00:00",
+ "height": "4.461"
+ },
+ {
+ "time": "20:24:00",
+ "height": "4.420"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2021-04-10",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "4.740"
+ },
+ {
+ "time": "20:59:00",
+ "height": "4.663"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2021-04-11",
+ "groups": [
+ {
+ "time": "09:13:00",
+ "height": "4.898"
+ },
+ {
+ "time": "21:30:00",
+ "height": "4.804"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2021-04-12",
+ "groups": [
+ {
+ "time": "09:44:00",
+ "height": "4.963"
+ },
+ {
+ "time": "21:58:00",
+ "height": "4.863"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2021-04-13",
+ "groups": [
+ {
+ "time": "10:13:00",
+ "height": "4.954"
+ },
+ {
+ "time": "22:25:00",
+ "height": "4.855"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2021-04-14",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "4.878"
+ },
+ {
+ "time": "22:52:00",
+ "height": "4.781"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2021-04-15",
+ "groups": [
+ {
+ "time": "11:08:00",
+ "height": "4.732"
+ },
+ {
+ "time": "23:18:00",
+ "height": "4.638"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2021-04-16",
+ "groups": [
+ {
+ "time": "11:38:00",
+ "height": "4.513"
+ },
+ {
+ "time": "23:50:00",
+ "height": "4.426"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2021-04-17",
+ "groups": [
+ {
+ "time": "12:10:00",
+ "height": "4.227"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2021-04-18",
+ "groups": [
+ {
+ "time": "00:22:00",
+ "height": "4.153"
+ },
+ {
+ "time": "12:47:00",
+ "height": "3.887"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2021-04-19",
+ "groups": [
+ {
+ "time": "01:01:00",
+ "height": "3.832"
+ },
+ {
+ "time": "13:33:00",
+ "height": "3.521"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2021-04-20",
+ "groups": [
+ {
+ "time": "01:55:00",
+ "height": "3.499"
+ },
+ {
+ "time": "14:41:00",
+ "height": "3.195"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2021-04-21",
+ "groups": [
+ {
+ "time": "03:18:00",
+ "height": "3.258"
+ },
+ {
+ "time": "16:20:00",
+ "height": "3.090"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2021-04-22",
+ "groups": [
+ {
+ "time": "05:01:00",
+ "height": "3.331"
+ },
+ {
+ "time": "17:51:00",
+ "height": "3.381"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2021-04-23",
+ "groups": [
+ {
+ "time": "06:16:00",
+ "height": "3.751"
+ },
+ {
+ "time": "18:51:00",
+ "height": "3.902"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:30"
+ },
+ {
+ "date": "2021-04-24",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.294"
+ },
+ {
+ "time": "19:39:00",
+ "height": "4.453"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2021-04-25",
+ "groups": [
+ {
+ "time": "07:57:00",
+ "height": "4.815"
+ },
+ {
+ "time": "20:22:00",
+ "height": "4.936"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2021-04-26",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "5.238"
+ },
+ {
+ "time": "21:03:00",
+ "height": "5.298"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2021-04-27",
+ "groups": [
+ {
+ "time": "09:21:00",
+ "height": "5.515"
+ },
+ {
+ "time": "21:44:00",
+ "height": "5.507"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2021-04-28",
+ "groups": [
+ {
+ "time": "10:03:00",
+ "height": "5.615"
+ },
+ {
+ "time": "22:24:00",
+ "height": "5.544"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2021-04-29",
+ "groups": [
+ {
+ "time": "10:44:00",
+ "height": "5.521"
+ },
+ {
+ "time": "23:05:00",
+ "height": "5.405"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2021-04-30",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "5.238"
+ },
+ {
+ "time": "23:52:00",
+ "height": "5.106"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2021-05-01",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "4.803"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2021-05-02",
+ "groups": [
+ {
+ "time": "00:43:00",
+ "height": "4.692"
+ },
+ {
+ "time": "13:12:00",
+ "height": "4.284"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2021-05-03",
+ "groups": [
+ {
+ "time": "01:40:00",
+ "height": "4.231"
+ },
+ {
+ "time": "14:15:00",
+ "height": "3.775"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2021-05-04",
+ "groups": [
+ {
+ "time": "02:51:00",
+ "height": "3.828"
+ },
+ {
+ "time": "15:35:00",
+ "height": "3.415"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2021-05-05",
+ "groups": [
+ {
+ "time": "04:18:00",
+ "height": "3.632"
+ },
+ {
+ "time": "17:06:00",
+ "height": "3.362"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2021-05-06",
+ "groups": [
+ {
+ "time": "05:38:00",
+ "height": "3.731"
+ },
+ {
+ "time": "18:18:00",
+ "height": "3.599"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2021-05-07",
+ "groups": [
+ {
+ "time": "06:41:00",
+ "height": "4.004"
+ },
+ {
+ "time": "19:11:00",
+ "height": "3.934"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2021-05-08",
+ "groups": [
+ {
+ "time": "07:28:00",
+ "height": "4.287"
+ },
+ {
+ "time": "19:52:00",
+ "height": "4.233"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2021-05-09",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "4.504"
+ },
+ {
+ "time": "20:28:00",
+ "height": "4.458"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2021-05-10",
+ "groups": [
+ {
+ "time": "08:42:00",
+ "height": "4.643"
+ },
+ {
+ "time": "20:59:00",
+ "height": "4.610"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2021-05-11",
+ "groups": [
+ {
+ "time": "09:14:00",
+ "height": "4.717"
+ },
+ {
+ "time": "21:29:00",
+ "height": "4.700"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2021-05-12",
+ "groups": [
+ {
+ "time": "09:45:00",
+ "height": "4.735"
+ },
+ {
+ "time": "21:58:00",
+ "height": "4.733"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2021-05-13",
+ "groups": [
+ {
+ "time": "10:14:00",
+ "height": "4.696"
+ },
+ {
+ "time": "22:25:00",
+ "height": "4.706"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2021-05-14",
+ "groups": [
+ {
+ "time": "10:42:00",
+ "height": "4.597"
+ },
+ {
+ "time": "22:54:00",
+ "height": "4.615"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2021-05-15",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "4.435"
+ },
+ {
+ "time": "23:25:00",
+ "height": "4.461"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2021-05-16",
+ "groups": [
+ {
+ "time": "11:49:00",
+ "height": "4.216"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2021-05-17",
+ "groups": [
+ {
+ "time": "00:02:00",
+ "height": "4.252"
+ },
+ {
+ "time": "12:29:00",
+ "height": "3.955"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2021-05-18",
+ "groups": [
+ {
+ "time": "00:45:00",
+ "height": "4.004"
+ },
+ {
+ "time": "13:17:00",
+ "height": "3.680"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2021-05-19",
+ "groups": [
+ {
+ "time": "01:40:00",
+ "height": "3.757"
+ },
+ {
+ "time": "14:22:00",
+ "height": "3.450"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2021-05-20",
+ "groups": [
+ {
+ "time": "02:54:00",
+ "height": "3.592"
+ },
+ {
+ "time": "15:45:00",
+ "height": "3.380"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2021-05-21",
+ "groups": [
+ {
+ "time": "04:19:00",
+ "height": "3.634"
+ },
+ {
+ "time": "17:06:00",
+ "height": "3.570"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2021-05-22",
+ "groups": [
+ {
+ "time": "05:33:00",
+ "height": "3.916"
+ },
+ {
+ "time": "18:10:00",
+ "height": "3.961"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2021-05-23",
+ "groups": [
+ {
+ "time": "06:32:00",
+ "height": "4.329"
+ },
+ {
+ "time": "19:03:00",
+ "height": "4.413"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2021-05-24",
+ "groups": [
+ {
+ "time": "07:24:00",
+ "height": "4.746"
+ },
+ {
+ "time": "19:51:00",
+ "height": "4.828"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2021-05-25",
+ "groups": [
+ {
+ "time": "08:12:00",
+ "height": "5.084"
+ },
+ {
+ "time": "20:36:00",
+ "height": "5.147"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2021-05-26",
+ "groups": [
+ {
+ "time": "08:58:00",
+ "height": "5.298"
+ },
+ {
+ "time": "21:21:00",
+ "height": "5.339"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2021-05-27",
+ "groups": [
+ {
+ "time": "09:44:00",
+ "height": "5.363"
+ },
+ {
+ "time": "22:06:00",
+ "height": "5.389"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2021-05-28",
+ "groups": [
+ {
+ "time": "10:29:00",
+ "height": "5.271"
+ },
+ {
+ "time": "22:50:00",
+ "height": "5.294"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2021-05-29",
+ "groups": [
+ {
+ "time": "11:14:00",
+ "height": "5.033"
+ },
+ {
+ "time": "23:38:00",
+ "height": "5.067"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2021-05-30",
+ "groups": [
+ {
+ "time": "12:07:00",
+ "height": "4.682"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2021-05-31",
+ "groups": [
+ {
+ "time": "00:31:00",
+ "height": "4.743"
+ },
+ {
+ "time": "13:01:00",
+ "height": "4.277"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2021-06-01",
+ "groups": [
+ {
+ "time": "01:27:00",
+ "height": "4.381"
+ },
+ {
+ "time": "14:00:00",
+ "height": "3.885"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2021-06-02",
+ "groups": [
+ {
+ "time": "02:30:00",
+ "height": "4.049"
+ },
+ {
+ "time": "15:06:00",
+ "height": "3.585"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2021-06-03",
+ "groups": [
+ {
+ "time": "03:40:00",
+ "height": "3.822"
+ },
+ {
+ "time": "16:22:00",
+ "height": "3.453"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2021-06-04",
+ "groups": [
+ {
+ "time": "04:53:00",
+ "height": "3.758"
+ },
+ {
+ "time": "17:29:00",
+ "height": "3.515"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2021-06-05",
+ "groups": [
+ {
+ "time": "05:54:00",
+ "height": "3.840"
+ },
+ {
+ "time": "18:25:00",
+ "height": "3.706"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2021-06-06",
+ "groups": [
+ {
+ "time": "06:46:00",
+ "height": "3.997"
+ },
+ {
+ "time": "19:12:00",
+ "height": "3.939"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2021-06-07",
+ "groups": [
+ {
+ "time": "07:30:00",
+ "height": "4.164"
+ },
+ {
+ "time": "19:53:00",
+ "height": "4.160"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2021-06-08",
+ "groups": [
+ {
+ "time": "08:10:00",
+ "height": "4.309"
+ },
+ {
+ "time": "20:29:00",
+ "height": "4.345"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2021-06-09",
+ "groups": [
+ {
+ "time": "08:46:00",
+ "height": "4.419"
+ },
+ {
+ "time": "21:02:00",
+ "height": "4.485"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2021-06-10",
+ "groups": [
+ {
+ "time": "09:19:00",
+ "height": "4.486"
+ },
+ {
+ "time": "21:35:00",
+ "height": "4.573"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2021-06-11",
+ "groups": [
+ {
+ "time": "09:52:00",
+ "height": "4.506"
+ },
+ {
+ "time": "22:06:00",
+ "height": "4.609"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2021-06-12",
+ "groups": [
+ {
+ "time": "10:24:00",
+ "height": "4.478"
+ },
+ {
+ "time": "22:38:00",
+ "height": "4.591"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2021-06-13",
+ "groups": [
+ {
+ "time": "10:57:00",
+ "height": "4.404"
+ },
+ {
+ "time": "23:11:00",
+ "height": "4.521"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2021-06-14",
+ "groups": [
+ {
+ "time": "11:36:00",
+ "height": "4.285"
+ },
+ {
+ "time": "23:51:00",
+ "height": "4.404"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2021-06-15",
+ "groups": [
+ {
+ "time": "12:19:00",
+ "height": "4.129"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2021-06-16",
+ "groups": [
+ {
+ "time": "00:36:00",
+ "height": "4.255"
+ },
+ {
+ "time": "13:08:00",
+ "height": "3.956"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2021-06-17",
+ "groups": [
+ {
+ "time": "01:29:00",
+ "height": "4.100"
+ },
+ {
+ "time": "14:05:00",
+ "height": "3.801"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2021-06-18",
+ "groups": [
+ {
+ "time": "02:31:00",
+ "height": "3.981"
+ },
+ {
+ "time": "15:12:00",
+ "height": "3.719"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2021-06-19",
+ "groups": [
+ {
+ "time": "03:41:00",
+ "height": "3.950"
+ },
+ {
+ "time": "16:26:00",
+ "height": "3.764"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2021-06-20",
+ "groups": [
+ {
+ "time": "04:53:00",
+ "height": "4.044"
+ },
+ {
+ "time": "17:31:00",
+ "height": "3.957"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2021-06-21",
+ "groups": [
+ {
+ "time": "05:56:00",
+ "height": "4.250"
+ },
+ {
+ "time": "18:30:00",
+ "height": "4.250"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2021-06-22",
+ "groups": [
+ {
+ "time": "06:55:00",
+ "height": "4.507"
+ },
+ {
+ "time": "19:25:00",
+ "height": "4.570"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2021-06-23",
+ "groups": [
+ {
+ "time": "07:49:00",
+ "height": "4.750"
+ },
+ {
+ "time": "20:16:00",
+ "height": "4.859"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2021-06-24",
+ "groups": [
+ {
+ "time": "08:41:00",
+ "height": "4.935"
+ },
+ {
+ "time": "21:05:00",
+ "height": "5.076"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2021-06-25",
+ "groups": [
+ {
+ "time": "09:31:00",
+ "height": "5.030"
+ },
+ {
+ "time": "21:53:00",
+ "height": "5.193"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2021-06-26",
+ "groups": [
+ {
+ "time": "10:19:00",
+ "height": "5.019"
+ },
+ {
+ "time": "22:39:00",
+ "height": "5.194"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2021-06-27",
+ "groups": [
+ {
+ "time": "11:04:00",
+ "height": "4.898"
+ },
+ {
+ "time": "23:27:00",
+ "height": "5.077"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2021-06-28",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "4.679"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2021-06-29",
+ "groups": [
+ {
+ "time": "00:17:00",
+ "height": "4.860"
+ },
+ {
+ "time": "12:44:00",
+ "height": "4.394"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2021-06-30",
+ "groups": [
+ {
+ "time": "01:07:00",
+ "height": "4.576"
+ },
+ {
+ "time": "13:33:00",
+ "height": "4.084"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2021-07-01",
+ "groups": [
+ {
+ "time": "01:59:00",
+ "height": "4.267"
+ },
+ {
+ "time": "14:25:00",
+ "height": "3.791"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2021-07-02",
+ "groups": [
+ {
+ "time": "02:54:00",
+ "height": "3.976"
+ },
+ {
+ "time": "15:23:00",
+ "height": "3.558"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2021-07-03",
+ "groups": [
+ {
+ "time": "03:54:00",
+ "height": "3.749"
+ },
+ {
+ "time": "16:30:00",
+ "height": "3.431"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2021-07-04",
+ "groups": [
+ {
+ "time": "04:59:00",
+ "height": "3.633"
+ },
+ {
+ "time": "17:32:00",
+ "height": "3.449"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2021-07-05",
+ "groups": [
+ {
+ "time": "05:58:00",
+ "height": "3.650"
+ },
+ {
+ "time": "18:28:00",
+ "height": "3.599"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2021-07-06",
+ "groups": [
+ {
+ "time": "06:52:00",
+ "height": "3.771"
+ },
+ {
+ "time": "19:18:00",
+ "height": "3.826"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2021-07-07",
+ "groups": [
+ {
+ "time": "07:40:00",
+ "height": "3.948"
+ },
+ {
+ "time": "20:01:00",
+ "height": "4.071"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2021-07-08",
+ "groups": [
+ {
+ "time": "08:22:00",
+ "height": "4.130"
+ },
+ {
+ "time": "20:40:00",
+ "height": "4.293"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2021-07-09",
+ "groups": [
+ {
+ "time": "09:00:00",
+ "height": "4.288"
+ },
+ {
+ "time": "21:16:00",
+ "height": "4.472"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2021-07-10",
+ "groups": [
+ {
+ "time": "09:36:00",
+ "height": "4.410"
+ },
+ {
+ "time": "21:51:00",
+ "height": "4.603"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2021-07-11",
+ "groups": [
+ {
+ "time": "10:11:00",
+ "height": "4.492"
+ },
+ {
+ "time": "22:25:00",
+ "height": "4.685"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2021-07-12",
+ "groups": [
+ {
+ "time": "10:46:00",
+ "height": "4.531"
+ },
+ {
+ "time": "23:00:00",
+ "height": "4.718"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2021-07-13",
+ "groups": [
+ {
+ "time": "11:24:00",
+ "height": "4.520"
+ },
+ {
+ "time": "23:41:00",
+ "height": "4.697"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2021-07-14",
+ "groups": [
+ {
+ "time": "12:07:00",
+ "height": "4.453"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2021-07-15",
+ "groups": [
+ {
+ "time": "00:25:00",
+ "height": "4.619"
+ },
+ {
+ "time": "12:52:00",
+ "height": "4.331"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2021-07-16",
+ "groups": [
+ {
+ "time": "01:12:00",
+ "height": "4.492"
+ },
+ {
+ "time": "13:42:00",
+ "height": "4.171"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2021-07-17",
+ "groups": [
+ {
+ "time": "02:05:00",
+ "height": "4.330"
+ },
+ {
+ "time": "14:39:00",
+ "height": "4.003"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2021-07-18",
+ "groups": [
+ {
+ "time": "03:06:00",
+ "height": "4.160"
+ },
+ {
+ "time": "15:45:00",
+ "height": "3.875"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2021-07-19",
+ "groups": [
+ {
+ "time": "04:16:00",
+ "height": "4.033"
+ },
+ {
+ "time": "16:56:00",
+ "height": "3.855"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2021-07-20",
+ "groups": [
+ {
+ "time": "05:26:00",
+ "height": "4.017"
+ },
+ {
+ "time": "18:04:00",
+ "height": "3.994"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2021-07-21",
+ "groups": [
+ {
+ "time": "06:34:00",
+ "height": "4.141"
+ },
+ {
+ "time": "19:08:00",
+ "height": "4.265"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2021-07-22",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "4.365"
+ },
+ {
+ "time": "20:06:00",
+ "height": "4.594"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2021-07-23",
+ "groups": [
+ {
+ "time": "08:34:00",
+ "height": "4.616"
+ },
+ {
+ "time": "20:58:00",
+ "height": "4.898"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2021-07-24",
+ "groups": [
+ {
+ "time": "09:25:00",
+ "height": "4.818"
+ },
+ {
+ "time": "21:46:00",
+ "height": "5.114"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2021-07-25",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "4.924"
+ },
+ {
+ "time": "22:29:00",
+ "height": "5.207"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2021-07-26",
+ "groups": [
+ {
+ "time": "10:52:00",
+ "height": "4.914"
+ },
+ {
+ "time": "23:11:00",
+ "height": "5.168"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2021-07-27",
+ "groups": [
+ {
+ "time": "11:34:00",
+ "height": "4.792"
+ },
+ {
+ "time": "23:54:00",
+ "height": "5.008"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2021-07-28",
+ "groups": [
+ {
+ "time": "12:16:00",
+ "height": "4.580"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2021-07-29",
+ "groups": [
+ {
+ "time": "00:36:00",
+ "height": "4.756"
+ },
+ {
+ "time": "12:57:00",
+ "height": "4.309"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2021-07-30",
+ "groups": [
+ {
+ "time": "01:18:00",
+ "height": "4.445"
+ },
+ {
+ "time": "13:37:00",
+ "height": "4.010"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2021-07-31",
+ "groups": [
+ {
+ "time": "02:01:00",
+ "height": "4.105"
+ },
+ {
+ "time": "14:21:00",
+ "height": "3.710"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2021-08-01",
+ "groups": [
+ {
+ "time": "02:49:00",
+ "height": "3.768"
+ },
+ {
+ "time": "15:14:00",
+ "height": "3.439"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2021-08-02",
+ "groups": [
+ {
+ "time": "03:49:00",
+ "height": "3.479"
+ },
+ {
+ "time": "16:26:00",
+ "height": "3.265"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2021-08-03",
+ "groups": [
+ {
+ "time": "05:04:00",
+ "height": "3.327"
+ },
+ {
+ "time": "17:42:00",
+ "height": "3.292"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2021-08-04",
+ "groups": [
+ {
+ "time": "06:15:00",
+ "height": "3.392"
+ },
+ {
+ "time": "18:48:00",
+ "height": "3.526"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2021-08-05",
+ "groups": [
+ {
+ "time": "07:14:00",
+ "height": "3.627"
+ },
+ {
+ "time": "19:40:00",
+ "height": "3.860"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2021-08-06",
+ "groups": [
+ {
+ "time": "08:02:00",
+ "height": "3.928"
+ },
+ {
+ "time": "20:22:00",
+ "height": "4.201"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2021-08-07",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "4.223"
+ },
+ {
+ "time": "21:00:00",
+ "height": "4.502"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2021-08-08",
+ "groups": [
+ {
+ "time": "09:20:00",
+ "height": "4.478"
+ },
+ {
+ "time": "21:35:00",
+ "height": "4.748"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2021-08-09",
+ "groups": [
+ {
+ "time": "09:56:00",
+ "height": "4.683"
+ },
+ {
+ "time": "22:10:00",
+ "height": "4.936"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2021-08-10",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "4.825"
+ },
+ {
+ "time": "22:45:00",
+ "height": "5.054"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2021-08-11",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.887"
+ },
+ {
+ "time": "23:23:00",
+ "height": "5.084"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2021-08-12",
+ "groups": [
+ {
+ "time": "11:47:00",
+ "height": "4.851"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2021-08-13",
+ "groups": [
+ {
+ "time": "00:05:00",
+ "height": "5.011"
+ },
+ {
+ "time": "12:30:00",
+ "height": "4.712"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2021-08-14",
+ "groups": [
+ {
+ "time": "00:49:00",
+ "height": "4.830"
+ },
+ {
+ "time": "13:15:00",
+ "height": "4.480"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2021-08-15",
+ "groups": [
+ {
+ "time": "01:37:00",
+ "height": "4.551"
+ },
+ {
+ "time": "14:06:00",
+ "height": "4.185"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2021-08-16",
+ "groups": [
+ {
+ "time": "02:33:00",
+ "height": "4.205"
+ },
+ {
+ "time": "15:09:00",
+ "height": "3.883"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2021-08-17",
+ "groups": [
+ {
+ "time": "03:44:00",
+ "height": "3.869"
+ },
+ {
+ "time": "16:30:00",
+ "height": "3.689"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2021-08-18",
+ "groups": [
+ {
+ "time": "05:07:00",
+ "height": "3.689"
+ },
+ {
+ "time": "17:51:00",
+ "height": "3.749"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2021-08-19",
+ "groups": [
+ {
+ "time": "06:28:00",
+ "height": "3.799"
+ },
+ {
+ "time": "19:04:00",
+ "height": "4.076"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:34"
+ },
+ {
+ "date": "2021-08-20",
+ "groups": [
+ {
+ "time": "07:38:00",
+ "height": "4.130"
+ },
+ {
+ "time": "20:04:00",
+ "height": "4.511"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2021-08-21",
+ "groups": [
+ {
+ "time": "08:32:00",
+ "height": "4.504"
+ },
+ {
+ "time": "20:53:00",
+ "height": "4.899"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:30"
+ },
+ {
+ "date": "2021-08-22",
+ "groups": [
+ {
+ "time": "09:18:00",
+ "height": "4.798"
+ },
+ {
+ "time": "21:35:00",
+ "height": "5.161"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2021-08-23",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "4.966"
+ },
+ {
+ "time": "22:14:00",
+ "height": "5.275"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2021-08-24",
+ "groups": [
+ {
+ "time": "10:33:00",
+ "height": "5.003"
+ },
+ {
+ "time": "22:50:00",
+ "height": "5.249"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2021-08-25",
+ "groups": [
+ {
+ "time": "11:07:00",
+ "height": "4.924"
+ },
+ {
+ "time": "23:25:00",
+ "height": "5.105"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2021-08-26",
+ "groups": [
+ {
+ "time": "11:42:00",
+ "height": "4.751"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2021-08-27",
+ "groups": [
+ {
+ "time": "00:00:00",
+ "height": "4.867"
+ },
+ {
+ "time": "12:16:00",
+ "height": "4.509"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2021-08-28",
+ "groups": [
+ {
+ "time": "00:35:00",
+ "height": "4.562"
+ },
+ {
+ "time": "12:49:00",
+ "height": "4.219"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2021-08-29",
+ "groups": [
+ {
+ "time": "01:11:00",
+ "height": "4.208"
+ },
+ {
+ "time": "13:25:00",
+ "height": "3.894"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2021-08-30",
+ "groups": [
+ {
+ "time": "01:50:00",
+ "height": "3.819"
+ },
+ {
+ "time": "14:08:00",
+ "height": "3.551"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2021-08-31",
+ "groups": [
+ {
+ "time": "02:41:00",
+ "height": "3.426"
+ },
+ {
+ "time": "15:09:00",
+ "height": "3.236"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2021-09-01",
+ "groups": [
+ {
+ "time": "03:56:00",
+ "height": "3.116"
+ },
+ {
+ "time": "16:45:00",
+ "height": "3.091"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2021-09-02",
+ "groups": [
+ {
+ "time": "05:38:00",
+ "height": "3.092"
+ },
+ {
+ "time": "18:19:00",
+ "height": "3.312"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2021-09-03",
+ "groups": [
+ {
+ "time": "06:53:00",
+ "height": "3.406"
+ },
+ {
+ "time": "19:18:00",
+ "height": "3.743"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2021-09-04",
+ "groups": [
+ {
+ "time": "07:43:00",
+ "height": "3.841"
+ },
+ {
+ "time": "20:00:00",
+ "height": "4.205"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "19:58"
+ },
+ {
+ "date": "2021-09-05",
+ "groups": [
+ {
+ "time": "08:23:00",
+ "height": "4.276"
+ },
+ {
+ "time": "20:38:00",
+ "height": "4.627"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2021-09-06",
+ "groups": [
+ {
+ "time": "08:59:00",
+ "height": "4.659"
+ },
+ {
+ "time": "21:14:00",
+ "height": "4.980"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2021-09-07",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "4.965"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.246"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "19:51"
+ },
+ {
+ "date": "2021-09-08",
+ "groups": [
+ {
+ "time": "10:09:00",
+ "height": "5.173"
+ },
+ {
+ "time": "22:24:00",
+ "height": "5.407"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2021-09-09",
+ "groups": [
+ {
+ "time": "10:45:00",
+ "height": "5.261"
+ },
+ {
+ "time": "23:00:00",
+ "height": "5.434"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:46"
+ },
+ {
+ "date": "2021-09-10",
+ "groups": [
+ {
+ "time": "11:21:00",
+ "height": "5.209"
+ },
+ {
+ "time": "23:41:00",
+ "height": "5.309"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:44"
+ },
+ {
+ "date": "2021-09-11",
+ "groups": [
+ {
+ "time": "12:04:00",
+ "height": "5.012"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "19:41"
+ },
+ {
+ "date": "2021-09-12",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "5.027"
+ },
+ {
+ "time": "12:48:00",
+ "height": "4.689"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:39"
+ },
+ {
+ "date": "2021-09-13",
+ "groups": [
+ {
+ "time": "01:11:00",
+ "height": "4.611"
+ },
+ {
+ "time": "13:38:00",
+ "height": "4.277"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:37"
+ },
+ {
+ "date": "2021-09-14",
+ "groups": [
+ {
+ "time": "02:07:00",
+ "height": "4.112"
+ },
+ {
+ "time": "14:43:00",
+ "height": "3.849"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "19:34"
+ },
+ {
+ "date": "2021-09-15",
+ "groups": [
+ {
+ "time": "03:23:00",
+ "height": "3.644"
+ },
+ {
+ "time": "16:14:00",
+ "height": "3.571"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:32"
+ },
+ {
+ "date": "2021-09-16",
+ "groups": [
+ {
+ "time": "05:03:00",
+ "height": "3.442"
+ },
+ {
+ "time": "17:49:00",
+ "height": "3.675"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:29"
+ },
+ {
+ "date": "2021-09-17",
+ "groups": [
+ {
+ "time": "06:33:00",
+ "height": "3.673"
+ },
+ {
+ "time": "19:04:00",
+ "height": "4.105"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:27"
+ },
+ {
+ "date": "2021-09-18",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "4.126"
+ },
+ {
+ "time": "19:58:00",
+ "height": "4.593"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:25"
+ },
+ {
+ "date": "2021-09-19",
+ "groups": [
+ {
+ "time": "08:23:00",
+ "height": "4.552"
+ },
+ {
+ "time": "20:40:00",
+ "height": "4.974"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "19:22"
+ },
+ {
+ "date": "2021-09-20",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "4.854"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.200"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "19:20"
+ },
+ {
+ "date": "2021-09-21",
+ "groups": [
+ {
+ "time": "09:37:00",
+ "height": "5.018"
+ },
+ {
+ "time": "21:52:00",
+ "height": "5.281"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "19:17"
+ },
+ {
+ "date": "2021-09-22",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "5.060"
+ },
+ {
+ "time": "22:23:00",
+ "height": "5.243"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "19:15"
+ },
+ {
+ "date": "2021-09-23",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "5.004"
+ },
+ {
+ "time": "22:53:00",
+ "height": "5.112"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "19:12"
+ },
+ {
+ "date": "2021-09-24",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.869"
+ },
+ {
+ "time": "23:23:00",
+ "height": "4.901"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "19:10"
+ },
+ {
+ "date": "2021-09-25",
+ "groups": [
+ {
+ "time": "11:36:00",
+ "height": "4.664"
+ },
+ {
+ "time": "23:54:00",
+ "height": "4.621"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "19:08"
+ },
+ {
+ "date": "2021-09-26",
+ "groups": [
+ {
+ "time": "12:06:00",
+ "height": "4.399"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "19:05"
+ },
+ {
+ "date": "2021-09-27",
+ "groups": [
+ {
+ "time": "00:26:00",
+ "height": "4.278"
+ },
+ {
+ "time": "12:38:00",
+ "height": "4.081"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "19:03"
+ },
+ {
+ "date": "2021-09-28",
+ "groups": [
+ {
+ "time": "01:02:00",
+ "height": "3.884"
+ },
+ {
+ "time": "13:17:00",
+ "height": "3.721"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "19:00"
+ },
+ {
+ "date": "2021-09-29",
+ "groups": [
+ {
+ "time": "01:47:00",
+ "height": "3.462"
+ },
+ {
+ "time": "14:10:00",
+ "height": "3.352"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "18:58"
+ },
+ {
+ "date": "2021-09-30",
+ "groups": [
+ {
+ "time": "02:56:00",
+ "height": "3.083"
+ },
+ {
+ "time": "15:40:00",
+ "height": "3.094"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "18:56"
+ },
+ {
+ "date": "2021-10-01",
+ "groups": [
+ {
+ "time": "04:51:00",
+ "height": "2.968"
+ },
+ {
+ "time": "17:40:00",
+ "height": "3.236"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "18:53"
+ },
+ {
+ "date": "2021-10-02",
+ "groups": [
+ {
+ "time": "06:23:00",
+ "height": "3.312"
+ },
+ {
+ "time": "18:46:00",
+ "height": "3.708"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "18:51"
+ },
+ {
+ "date": "2021-10-03",
+ "groups": [
+ {
+ "time": "07:14:00",
+ "height": "3.832"
+ },
+ {
+ "time": "19:31:00",
+ "height": "4.245"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "18:49"
+ },
+ {
+ "date": "2021-10-04",
+ "groups": [
+ {
+ "time": "07:55:00",
+ "height": "4.361"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.748"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "18:46"
+ },
+ {
+ "date": "2021-10-05",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "4.830"
+ },
+ {
+ "time": "20:47:00",
+ "height": "5.170"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2021-10-06",
+ "groups": [
+ {
+ "time": "09:08:00",
+ "height": "5.198"
+ },
+ {
+ "time": "21:23:00",
+ "height": "5.476"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "18:41"
+ },
+ {
+ "date": "2021-10-07",
+ "groups": [
+ {
+ "time": "09:45:00",
+ "height": "5.435"
+ },
+ {
+ "time": "22:01:00",
+ "height": "5.636"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "18:39"
+ },
+ {
+ "date": "2021-10-08",
+ "groups": [
+ {
+ "time": "10:21:00",
+ "height": "5.521"
+ },
+ {
+ "time": "22:38:00",
+ "height": "5.627"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2021-10-09",
+ "groups": [
+ {
+ "time": "10:58:00",
+ "height": "5.440"
+ },
+ {
+ "time": "23:17:00",
+ "height": "5.432"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "18:34"
+ },
+ {
+ "date": "2021-10-10",
+ "groups": [
+ {
+ "time": "11:40:00",
+ "height": "5.194"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2021-10-11",
+ "groups": [
+ {
+ "time": "00:03:00",
+ "height": "5.061"
+ },
+ {
+ "time": "12:26:00",
+ "height": "4.810"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2021-10-12",
+ "groups": [
+ {
+ "time": "00:54:00",
+ "height": "4.555"
+ },
+ {
+ "time": "13:21:00",
+ "height": "4.339"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2021-10-13",
+ "groups": [
+ {
+ "time": "01:53:00",
+ "height": "3.995"
+ },
+ {
+ "time": "14:31:00",
+ "height": "3.881"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2021-10-14",
+ "groups": [
+ {
+ "time": "03:15:00",
+ "height": "3.529"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.630"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "18:23"
+ },
+ {
+ "date": "2021-10-15",
+ "groups": [
+ {
+ "time": "05:00:00",
+ "height": "3.411"
+ },
+ {
+ "time": "17:40:00",
+ "height": "3.784"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2021-10-16",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "3.716"
+ },
+ {
+ "time": "18:49:00",
+ "height": "4.203"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2021-10-17",
+ "groups": [
+ {
+ "time": "07:21:00",
+ "height": "4.164"
+ },
+ {
+ "time": "19:39:00",
+ "height": "4.626"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2021-10-18",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "4.551"
+ },
+ {
+ "time": "20:19:00",
+ "height": "4.930"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2021-10-19",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "4.815"
+ },
+ {
+ "time": "20:54:00",
+ "height": "5.096"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "18:12"
+ },
+ {
+ "date": "2021-10-20",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "4.960"
+ },
+ {
+ "time": "21:26:00",
+ "height": "5.148"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2021-10-21",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "5.011"
+ },
+ {
+ "time": "21:56:00",
+ "height": "5.116"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2021-10-22",
+ "groups": [
+ {
+ "time": "10:09:00",
+ "height": "4.989"
+ },
+ {
+ "time": "22:24:00",
+ "height": "5.015"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "18:05"
+ },
+ {
+ "date": "2021-10-23",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "4.899"
+ },
+ {
+ "time": "22:52:00",
+ "height": "4.846"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2021-10-24",
+ "groups": [
+ {
+ "time": "11:03:00",
+ "height": "4.742"
+ },
+ {
+ "time": "23:20:00",
+ "height": "4.609"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2021-10-25",
+ "groups": [
+ {
+ "time": "11:32:00",
+ "height": "4.518"
+ },
+ {
+ "time": "23:53:00",
+ "height": "4.306"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "17:59"
+ },
+ {
+ "date": "2021-10-26",
+ "groups": [
+ {
+ "time": "12:06:00",
+ "height": "4.236"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "17:57"
+ },
+ {
+ "date": "2021-10-27",
+ "groups": [
+ {
+ "time": "00:29:00",
+ "height": "3.952"
+ },
+ {
+ "time": "12:44:00",
+ "height": "3.908"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "17:55"
+ },
+ {
+ "date": "2021-10-28",
+ "groups": [
+ {
+ "time": "01:13:00",
+ "height": "3.571"
+ },
+ {
+ "time": "13:35:00",
+ "height": "3.566"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "17:53"
+ },
+ {
+ "date": "2021-10-29",
+ "groups": [
+ {
+ "time": "02:18:00",
+ "height": "3.226"
+ },
+ {
+ "time": "14:55:00",
+ "height": "3.306"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "17:51"
+ },
+ {
+ "date": "2021-10-30",
+ "groups": [
+ {
+ "time": "03:57:00",
+ "height": "3.084"
+ },
+ {
+ "time": "16:43:00",
+ "height": "3.345"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "17:49"
+ },
+ {
+ "date": "2021-10-31",
+ "groups": [
+ {
+ "time": "05:35:00",
+ "height": "3.339"
+ },
+ {
+ "time": "18:00:00",
+ "height": "3.736"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "17:47"
+ },
+ {
+ "date": "2021-11-01",
+ "groups": [
+ {
+ "time": "05:34:00",
+ "height": "3.836"
+ },
+ {
+ "time": "17:52:00",
+ "height": "4.255"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2021-11-02",
+ "groups": [
+ {
+ "time": "06:19:00",
+ "height": "4.376"
+ },
+ {
+ "time": "18:36:00",
+ "height": "4.767"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "16:43"
+ },
+ {
+ "date": "2021-11-03",
+ "groups": [
+ {
+ "time": "07:00:00",
+ "height": "4.868"
+ },
+ {
+ "time": "19:16:00",
+ "height": "5.198"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2021-11-04",
+ "groups": [
+ {
+ "time": "07:40:00",
+ "height": "5.254"
+ },
+ {
+ "time": "19:57:00",
+ "height": "5.500"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2021-11-05",
+ "groups": [
+ {
+ "time": "08:19:00",
+ "height": "5.501"
+ },
+ {
+ "time": "20:37:00",
+ "height": "5.641"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2021-11-06",
+ "groups": [
+ {
+ "time": "08:59:00",
+ "height": "5.586"
+ },
+ {
+ "time": "21:19:00",
+ "height": "5.598"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2021-11-07",
+ "groups": [
+ {
+ "time": "09:39:00",
+ "height": "5.505"
+ },
+ {
+ "time": "22:00:00",
+ "height": "5.373"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2021-11-08",
+ "groups": [
+ {
+ "time": "10:23:00",
+ "height": "5.263"
+ },
+ {
+ "time": "22:50:00",
+ "height": "4.988"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2021-11-09",
+ "groups": [
+ {
+ "time": "11:15:00",
+ "height": "4.895"
+ },
+ {
+ "time": "23:44:00",
+ "height": "4.501"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2021-11-10",
+ "groups": [
+ {
+ "time": "12:13:00",
+ "height": "4.463"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2021-11-11",
+ "groups": [
+ {
+ "time": "00:47:00",
+ "height": "4.002"
+ },
+ {
+ "time": "13:22:00",
+ "height": "4.066"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2021-11-12",
+ "groups": [
+ {
+ "time": "02:05:00",
+ "height": "3.621"
+ },
+ {
+ "time": "14:48:00",
+ "height": "3.845"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2021-11-13",
+ "groups": [
+ {
+ "time": "03:37:00",
+ "height": "3.516"
+ },
+ {
+ "time": "16:12:00",
+ "height": "3.904"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2021-11-14",
+ "groups": [
+ {
+ "time": "04:53:00",
+ "height": "3.715"
+ },
+ {
+ "time": "17:17:00",
+ "height": "4.158"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2021-11-15",
+ "groups": [
+ {
+ "time": "05:50:00",
+ "height": "4.043"
+ },
+ {
+ "time": "18:09:00",
+ "height": "4.442"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2021-11-16",
+ "groups": [
+ {
+ "time": "06:34:00",
+ "height": "4.353"
+ },
+ {
+ "time": "18:50:00",
+ "height": "4.663"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2021-11-17",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.586"
+ },
+ {
+ "time": "19:26:00",
+ "height": "4.798"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2021-11-18",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "4.740"
+ },
+ {
+ "time": "19:59:00",
+ "height": "4.862"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2021-11-19",
+ "groups": [
+ {
+ "time": "08:15:00",
+ "height": "4.827"
+ },
+ {
+ "time": "20:30:00",
+ "height": "4.867"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2021-11-20",
+ "groups": [
+ {
+ "time": "08:44:00",
+ "height": "4.855"
+ },
+ {
+ "time": "21:00:00",
+ "height": "4.818"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2021-11-21",
+ "groups": [
+ {
+ "time": "09:13:00",
+ "height": "4.823"
+ },
+ {
+ "time": "21:30:00",
+ "height": "4.709"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2021-11-22",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "4.728"
+ },
+ {
+ "time": "21:59:00",
+ "height": "4.540"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2021-11-23",
+ "groups": [
+ {
+ "time": "10:11:00",
+ "height": "4.572"
+ },
+ {
+ "time": "22:32:00",
+ "height": "4.315"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2021-11-24",
+ "groups": [
+ {
+ "time": "10:46:00",
+ "height": "4.361"
+ },
+ {
+ "time": "23:11:00",
+ "height": "4.049"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2021-11-25",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "4.112"
+ },
+ {
+ "time": "23:57:00",
+ "height": "3.765"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2021-11-26",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "3.854"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2021-11-27",
+ "groups": [
+ {
+ "time": "00:55:00",
+ "height": "3.511"
+ },
+ {
+ "time": "13:25:00",
+ "height": "3.655"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2021-11-28",
+ "groups": [
+ {
+ "time": "02:12:00",
+ "height": "3.381"
+ },
+ {
+ "time": "14:48:00",
+ "height": "3.623"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2021-11-29",
+ "groups": [
+ {
+ "time": "03:38:00",
+ "height": "3.485"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.826"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2021-11-30",
+ "groups": [
+ {
+ "time": "04:45:00",
+ "height": "3.819"
+ },
+ {
+ "time": "17:07:00",
+ "height": "4.199"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2021-12-01",
+ "groups": [
+ {
+ "time": "05:40:00",
+ "height": "4.260"
+ },
+ {
+ "time": "17:59:00",
+ "height": "4.618"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2021-12-02",
+ "groups": [
+ {
+ "time": "06:28:00",
+ "height": "4.701"
+ },
+ {
+ "time": "18:47:00",
+ "height": "4.993"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2021-12-03",
+ "groups": [
+ {
+ "time": "07:13:00",
+ "height": "5.073"
+ },
+ {
+ "time": "19:33:00",
+ "height": "5.267"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2021-12-04",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "5.335"
+ },
+ {
+ "time": "20:19:00",
+ "height": "5.405"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2021-12-05",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "5.462"
+ },
+ {
+ "time": "21:06:00",
+ "height": "5.392"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2021-12-06",
+ "groups": [
+ {
+ "time": "09:27:00",
+ "height": "5.445"
+ },
+ {
+ "time": "21:52:00",
+ "height": "5.227"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2021-12-07",
+ "groups": [
+ {
+ "time": "10:14:00",
+ "height": "5.291"
+ },
+ {
+ "time": "22:42:00",
+ "height": "4.938"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2021-12-08",
+ "groups": [
+ {
+ "time": "11:07:00",
+ "height": "5.026"
+ },
+ {
+ "time": "23:37:00",
+ "height": "4.567"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-09",
+ "groups": [
+ {
+ "time": "12:03:00",
+ "height": "4.693"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-10",
+ "groups": [
+ {
+ "time": "00:35:00",
+ "height": "4.178"
+ },
+ {
+ "time": "13:05:00",
+ "height": "4.355"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-11",
+ "groups": [
+ {
+ "time": "01:39:00",
+ "height": "3.842"
+ },
+ {
+ "time": "14:12:00",
+ "height": "4.081"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-12",
+ "groups": [
+ {
+ "time": "02:51:00",
+ "height": "3.637"
+ },
+ {
+ "time": "15:26:00",
+ "height": "3.937"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-13",
+ "groups": [
+ {
+ "time": "04:04:00",
+ "height": "3.614"
+ },
+ {
+ "time": "16:31:00",
+ "height": "3.944"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-14",
+ "groups": [
+ {
+ "time": "05:05:00",
+ "height": "3.749"
+ },
+ {
+ "time": "17:27:00",
+ "height": "4.054"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-15",
+ "groups": [
+ {
+ "time": "05:57:00",
+ "height": "3.963"
+ },
+ {
+ "time": "18:15:00",
+ "height": "4.204"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-16",
+ "groups": [
+ {
+ "time": "06:40:00",
+ "height": "4.188"
+ },
+ {
+ "time": "18:58:00",
+ "height": "4.350"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-17",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.387"
+ },
+ {
+ "time": "19:35:00",
+ "height": "4.471"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-18",
+ "groups": [
+ {
+ "time": "07:53:00",
+ "height": "4.544"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.552"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2021-12-19",
+ "groups": [
+ {
+ "time": "08:26:00",
+ "height": "4.650"
+ },
+ {
+ "time": "20:44:00",
+ "height": "4.586"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2021-12-20",
+ "groups": [
+ {
+ "time": "08:58:00",
+ "height": "4.700"
+ },
+ {
+ "time": "21:16:00",
+ "height": "4.571"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2021-12-21",
+ "groups": [
+ {
+ "time": "09:29:00",
+ "height": "4.694"
+ },
+ {
+ "time": "21:48:00",
+ "height": "4.507"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2021-12-22",
+ "groups": [
+ {
+ "time": "10:00:00",
+ "height": "4.637"
+ },
+ {
+ "time": "22:21:00",
+ "height": "4.398"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2021-12-23",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "4.532"
+ },
+ {
+ "time": "23:02:00",
+ "height": "4.251"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2021-12-24",
+ "groups": [
+ {
+ "time": "11:18:00",
+ "height": "4.388"
+ },
+ {
+ "time": "23:45:00",
+ "height": "4.075"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2021-12-25",
+ "groups": [
+ {
+ "time": "12:04:00",
+ "height": "4.222"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2021-12-26",
+ "groups": [
+ {
+ "time": "00:35:00",
+ "height": "3.895"
+ },
+ {
+ "time": "12:59:00",
+ "height": "4.061"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2021-12-27",
+ "groups": [
+ {
+ "time": "01:33:00",
+ "height": "3.747"
+ },
+ {
+ "time": "14:01:00",
+ "height": "3.949"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2021-12-28",
+ "groups": [
+ {
+ "time": "02:43:00",
+ "height": "3.689"
+ },
+ {
+ "time": "15:14:00",
+ "height": "3.936"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2021-12-29",
+ "groups": [
+ {
+ "time": "03:55:00",
+ "height": "3.778"
+ },
+ {
+ "time": "16:22:00",
+ "height": "4.059"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2021-12-30",
+ "groups": [
+ {
+ "time": "05:00:00",
+ "height": "4.021"
+ },
+ {
+ "time": "17:25:00",
+ "height": "4.299"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2021-12-31",
+ "groups": [
+ {
+ "time": "05:58:00",
+ "height": "4.361"
+ },
+ {
+ "time": "18:24:00",
+ "height": "4.587"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2022-01-01",
+ "groups": [
+ {
+ "time": "06:53:00",
+ "height": "4.719"
+ },
+ {
+ "time": "19:18:00",
+ "height": "4.858"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2022-01-02",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "5.038"
+ },
+ {
+ "time": "20:10:00",
+ "height": "5.064"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2022-01-03",
+ "groups": [
+ {
+ "time": "08:34:00",
+ "height": "5.270"
+ },
+ {
+ "time": "20:59:00",
+ "height": "5.166"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2022-01-04",
+ "groups": [
+ {
+ "time": "09:21:00",
+ "height": "5.384"
+ },
+ {
+ "time": "21:46:00",
+ "height": "5.145"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2022-01-05",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.365"
+ },
+ {
+ "time": "22:33:00",
+ "height": "5.000"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2022-01-06",
+ "groups": [
+ {
+ "time": "10:56:00",
+ "height": "5.213"
+ },
+ {
+ "time": "23:22:00",
+ "height": "4.750"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2022-01-07",
+ "groups": [
+ {
+ "time": "11:46:00",
+ "height": "4.951"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2022-01-08",
+ "groups": [
+ {
+ "time": "00:11:00",
+ "height": "4.432"
+ },
+ {
+ "time": "12:36:00",
+ "height": "4.618"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2022-01-09",
+ "groups": [
+ {
+ "time": "01:01:00",
+ "height": "4.089"
+ },
+ {
+ "time": "13:28:00",
+ "height": "4.259"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2022-01-10",
+ "groups": [
+ {
+ "time": "01:55:00",
+ "height": "3.769"
+ },
+ {
+ "time": "14:26:00",
+ "height": "3.929"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2022-01-11",
+ "groups": [
+ {
+ "time": "02:58:00",
+ "height": "3.527"
+ },
+ {
+ "time": "15:32:00",
+ "height": "3.687"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2022-01-12",
+ "groups": [
+ {
+ "time": "04:06:00",
+ "height": "3.426"
+ },
+ {
+ "time": "16:37:00",
+ "height": "3.598"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2022-01-13",
+ "groups": [
+ {
+ "time": "05:11:00",
+ "height": "3.506"
+ },
+ {
+ "time": "17:38:00",
+ "height": "3.673"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2022-01-14",
+ "groups": [
+ {
+ "time": "06:09:00",
+ "height": "3.724"
+ },
+ {
+ "time": "18:31:00",
+ "height": "3.857"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2022-01-15",
+ "groups": [
+ {
+ "time": "06:57:00",
+ "height": "3.998"
+ },
+ {
+ "time": "19:17:00",
+ "height": "4.078"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2022-01-16",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "4.262"
+ },
+ {
+ "time": "19:56:00",
+ "height": "4.279"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2022-01-17",
+ "groups": [
+ {
+ "time": "08:13:00",
+ "height": "4.479"
+ },
+ {
+ "time": "20:32:00",
+ "height": "4.436"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2022-01-18",
+ "groups": [
+ {
+ "time": "08:47:00",
+ "height": "4.640"
+ },
+ {
+ "time": "21:05:00",
+ "height": "4.545"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2022-01-19",
+ "groups": [
+ {
+ "time": "09:19:00",
+ "height": "4.745"
+ },
+ {
+ "time": "21:38:00",
+ "height": "4.607"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2022-01-20",
+ "groups": [
+ {
+ "time": "09:51:00",
+ "height": "4.799"
+ },
+ {
+ "time": "22:10:00",
+ "height": "4.619"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2022-01-21",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "4.799"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.573"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2022-01-22",
+ "groups": [
+ {
+ "time": "11:04:00",
+ "height": "4.738"
+ },
+ {
+ "time": "23:26:00",
+ "height": "4.464"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2022-01-23",
+ "groups": [
+ {
+ "time": "11:45:00",
+ "height": "4.614"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2022-01-24",
+ "groups": [
+ {
+ "time": "00:10:00",
+ "height": "4.297"
+ },
+ {
+ "time": "12:30:00",
+ "height": "4.433"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2022-01-25",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "4.088"
+ },
+ {
+ "time": "13:22:00",
+ "height": "4.210"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:47"
+ },
+ {
+ "date": "2022-01-26",
+ "groups": [
+ {
+ "time": "01:56:00",
+ "height": "3.872"
+ },
+ {
+ "time": "14:26:00",
+ "height": "3.984"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:49"
+ },
+ {
+ "date": "2022-01-27",
+ "groups": [
+ {
+ "time": "03:09:00",
+ "height": "3.717"
+ },
+ {
+ "time": "15:44:00",
+ "height": "3.839"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:51"
+ },
+ {
+ "date": "2022-01-28",
+ "groups": [
+ {
+ "time": "04:25:00",
+ "height": "3.737"
+ },
+ {
+ "time": "17:00:00",
+ "height": "3.887"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:53"
+ },
+ {
+ "date": "2022-01-29",
+ "groups": [
+ {
+ "time": "05:39:00",
+ "height": "3.984"
+ },
+ {
+ "time": "18:11:00",
+ "height": "4.138"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:55"
+ },
+ {
+ "date": "2022-01-30",
+ "groups": [
+ {
+ "time": "06:43:00",
+ "height": "4.382"
+ },
+ {
+ "time": "19:14:00",
+ "height": "4.491"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:57"
+ },
+ {
+ "date": "2022-01-31",
+ "groups": [
+ {
+ "time": "07:39:00",
+ "height": "4.812"
+ },
+ {
+ "time": "20:06:00",
+ "height": "4.830"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:59"
+ },
+ {
+ "date": "2022-02-01",
+ "groups": [
+ {
+ "time": "08:28:00",
+ "height": "5.170"
+ },
+ {
+ "time": "20:53:00",
+ "height": "5.069"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "17:00"
+ },
+ {
+ "date": "2022-02-02",
+ "groups": [
+ {
+ "time": "09:13:00",
+ "height": "5.395"
+ },
+ {
+ "time": "21:36:00",
+ "height": "5.169"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "17:02"
+ },
+ {
+ "date": "2022-02-03",
+ "groups": [
+ {
+ "time": "09:54:00",
+ "height": "5.458"
+ },
+ {
+ "time": "22:16:00",
+ "height": "5.121"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "17:04"
+ },
+ {
+ "date": "2022-02-04",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "5.358"
+ },
+ {
+ "time": "22:58:00",
+ "height": "4.940"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "17:06"
+ },
+ {
+ "date": "2022-02-05",
+ "groups": [
+ {
+ "time": "11:19:00",
+ "height": "5.118"
+ },
+ {
+ "time": "23:38:00",
+ "height": "4.656"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "17:08"
+ },
+ {
+ "date": "2022-02-06",
+ "groups": [
+ {
+ "time": "12:00:00",
+ "height": "4.774"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "17:10"
+ },
+ {
+ "date": "2022-02-07",
+ "groups": [
+ {
+ "time": "00:17:00",
+ "height": "4.309"
+ },
+ {
+ "time": "12:40:00",
+ "height": "4.368"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "17:12"
+ },
+ {
+ "date": "2022-02-08",
+ "groups": [
+ {
+ "time": "00:59:00",
+ "height": "3.934"
+ },
+ {
+ "time": "13:25:00",
+ "height": "3.939"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "17:14"
+ },
+ {
+ "date": "2022-02-09",
+ "groups": [
+ {
+ "time": "01:45:00",
+ "height": "3.565"
+ },
+ {
+ "time": "14:19:00",
+ "height": "3.534"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "17:16"
+ },
+ {
+ "date": "2022-02-10",
+ "groups": [
+ {
+ "time": "02:48:00",
+ "height": "3.256"
+ },
+ {
+ "time": "15:35:00",
+ "height": "3.236"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "17:18"
+ },
+ {
+ "date": "2022-02-11",
+ "groups": [
+ {
+ "time": "04:16:00",
+ "height": "3.134"
+ },
+ {
+ "time": "16:57:00",
+ "height": "3.198"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "17:20"
+ },
+ {
+ "date": "2022-02-12",
+ "groups": [
+ {
+ "time": "05:37:00",
+ "height": "3.316"
+ },
+ {
+ "time": "18:09:00",
+ "height": "3.431"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "17:22"
+ },
+ {
+ "date": "2022-02-13",
+ "groups": [
+ {
+ "time": "06:37:00",
+ "height": "3.676"
+ },
+ {
+ "time": "19:00:00",
+ "height": "3.776"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "17:24"
+ },
+ {
+ "date": "2022-02-14",
+ "groups": [
+ {
+ "time": "07:20:00",
+ "height": "4.060"
+ },
+ {
+ "time": "19:40:00",
+ "height": "4.115"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "17:26"
+ },
+ {
+ "date": "2022-02-15",
+ "groups": [
+ {
+ "time": "07:56:00",
+ "height": "4.397"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.406"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "17:27"
+ },
+ {
+ "date": "2022-02-16",
+ "groups": [
+ {
+ "time": "08:30:00",
+ "height": "4.670"
+ },
+ {
+ "time": "20:49:00",
+ "height": "4.640"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "17:29"
+ },
+ {
+ "date": "2022-02-17",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "4.881"
+ },
+ {
+ "time": "21:20:00",
+ "height": "4.813"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "17:31"
+ },
+ {
+ "date": "2022-02-18",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "5.027"
+ },
+ {
+ "time": "21:52:00",
+ "height": "4.914"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "17:33"
+ },
+ {
+ "date": "2022-02-19",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.095"
+ },
+ {
+ "time": "22:26:00",
+ "height": "4.924"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "17:35"
+ },
+ {
+ "date": "2022-02-20",
+ "groups": [
+ {
+ "time": "10:42:00",
+ "height": "5.066"
+ },
+ {
+ "time": "23:03:00",
+ "height": "4.829"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "17:37"
+ },
+ {
+ "date": "2022-02-21",
+ "groups": [
+ {
+ "time": "11:21:00",
+ "height": "4.927"
+ },
+ {
+ "time": "23:43:00",
+ "height": "4.629"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "17:39"
+ },
+ {
+ "date": "2022-02-22",
+ "groups": [
+ {
+ "time": "12:02:00",
+ "height": "4.675"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "17:41"
+ },
+ {
+ "date": "2022-02-23",
+ "groups": [
+ {
+ "time": "00:26:00",
+ "height": "4.337"
+ },
+ {
+ "time": "12:50:00",
+ "height": "4.325"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "17:43"
+ },
+ {
+ "date": "2022-02-24",
+ "groups": [
+ {
+ "time": "01:19:00",
+ "height": "3.983"
+ },
+ {
+ "time": "13:51:00",
+ "height": "3.915"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "17:45"
+ },
+ {
+ "date": "2022-02-25",
+ "groups": [
+ {
+ "time": "02:31:00",
+ "height": "3.644"
+ },
+ {
+ "time": "15:14:00",
+ "height": "3.571"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "17:47"
+ },
+ {
+ "date": "2022-02-26",
+ "groups": [
+ {
+ "time": "04:04:00",
+ "height": "3.509"
+ },
+ {
+ "time": "16:48:00",
+ "height": "3.530"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "17:48"
+ },
+ {
+ "date": "2022-02-27",
+ "groups": [
+ {
+ "time": "05:30:00",
+ "height": "3.752"
+ },
+ {
+ "time": "18:11:00",
+ "height": "3.859"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "17:50"
+ },
+ {
+ "date": "2022-02-28",
+ "groups": [
+ {
+ "time": "06:40:00",
+ "height": "4.244"
+ },
+ {
+ "time": "19:12:00",
+ "height": "4.336"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "17:52"
+ },
+ {
+ "date": "2022-03-01",
+ "groups": [
+ {
+ "time": "07:33:00",
+ "height": "4.758"
+ },
+ {
+ "time": "19:59:00",
+ "height": "4.764"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "17:54"
+ },
+ {
+ "date": "2022-03-02",
+ "groups": [
+ {
+ "time": "08:18:00",
+ "height": "5.158"
+ },
+ {
+ "time": "20:40:00",
+ "height": "5.058"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2022-03-03",
+ "groups": [
+ {
+ "time": "08:58:00",
+ "height": "5.392"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.194"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2022-03-04",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "5.454"
+ },
+ {
+ "time": "21:53:00",
+ "height": "5.180"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2022-03-05",
+ "groups": [
+ {
+ "time": "10:09:00",
+ "height": "5.357"
+ },
+ {
+ "time": "22:27:00",
+ "height": "5.035"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2022-03-06",
+ "groups": [
+ {
+ "time": "10:46:00",
+ "height": "5.128"
+ },
+ {
+ "time": "23:02:00",
+ "height": "4.787"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2022-03-07",
+ "groups": [
+ {
+ "time": "11:21:00",
+ "height": "4.798"
+ },
+ {
+ "time": "23:34:00",
+ "height": "4.465"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "18:05"
+ },
+ {
+ "date": "2022-03-08",
+ "groups": [
+ {
+ "time": "11:56:00",
+ "height": "4.401"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2022-03-09",
+ "groups": [
+ {
+ "time": "00:09:00",
+ "height": "4.096"
+ },
+ {
+ "time": "12:33:00",
+ "height": "3.959"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2022-03-10",
+ "groups": [
+ {
+ "time": "00:47:00",
+ "height": "3.696"
+ },
+ {
+ "time": "13:17:00",
+ "height": "3.499"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2022-03-11",
+ "groups": [
+ {
+ "time": "01:38:00",
+ "height": "3.294"
+ },
+ {
+ "time": "14:21:00",
+ "height": "3.079"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2022-03-12",
+ "groups": [
+ {
+ "time": "03:02:00",
+ "height": "2.989"
+ },
+ {
+ "time": "16:09:00",
+ "height": "2.892"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2022-03-13",
+ "groups": [
+ {
+ "time": "04:59:00",
+ "height": "3.061"
+ },
+ {
+ "time": "17:41:00",
+ "height": "3.146"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2022-03-14",
+ "groups": [
+ {
+ "time": "06:10:00",
+ "height": "3.467"
+ },
+ {
+ "time": "18:37:00",
+ "height": "3.586"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2022-03-15",
+ "groups": [
+ {
+ "time": "06:54:00",
+ "height": "3.933"
+ },
+ {
+ "time": "19:15:00",
+ "height": "4.035"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2022-03-16",
+ "groups": [
+ {
+ "time": "07:31:00",
+ "height": "4.362"
+ },
+ {
+ "time": "19:50:00",
+ "height": "4.435"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2022-03-17",
+ "groups": [
+ {
+ "time": "08:04:00",
+ "height": "4.726"
+ },
+ {
+ "time": "20:22:00",
+ "height": "4.766"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "18:23"
+ },
+ {
+ "date": "2022-03-18",
+ "groups": [
+ {
+ "time": "08:37:00",
+ "height": "5.016"
+ },
+ {
+ "time": "20:55:00",
+ "height": "5.018"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2022-03-19",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "5.221"
+ },
+ {
+ "time": "21:28:00",
+ "height": "5.169"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "18:27"
+ },
+ {
+ "date": "2022-03-20",
+ "groups": [
+ {
+ "time": "09:42:00",
+ "height": "5.317"
+ },
+ {
+ "time": "22:00:00",
+ "height": "5.198"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2022-03-21",
+ "groups": [
+ {
+ "time": "10:17:00",
+ "height": "5.276"
+ },
+ {
+ "time": "22:38:00",
+ "height": "5.085"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2022-03-22",
+ "groups": [
+ {
+ "time": "10:57:00",
+ "height": "5.084"
+ },
+ {
+ "time": "23:18:00",
+ "height": "4.836"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2022-03-23",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "4.744"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "18:34"
+ },
+ {
+ "date": "2022-03-24",
+ "groups": [
+ {
+ "time": "00:02:00",
+ "height": "4.470"
+ },
+ {
+ "time": "12:28:00",
+ "height": "4.283"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2022-03-25",
+ "groups": [
+ {
+ "time": "00:56:00",
+ "height": "4.027"
+ },
+ {
+ "time": "13:31:00",
+ "height": "3.770"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2022-03-26",
+ "groups": [
+ {
+ "time": "02:13:00",
+ "height": "3.612"
+ },
+ {
+ "time": "15:04:00",
+ "height": "3.379"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2022-03-27",
+ "groups": [
+ {
+ "time": "03:55:00",
+ "height": "3.472"
+ },
+ {
+ "time": "16:47:00",
+ "height": "3.407"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "18:41"
+ },
+ {
+ "date": "2022-03-28",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "3.774"
+ },
+ {
+ "time": "19:06:00",
+ "height": "3.829"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "19:43"
+ },
+ {
+ "date": "2022-03-29",
+ "groups": [
+ {
+ "time": "07:30:00",
+ "height": "4.289"
+ },
+ {
+ "time": "20:00:00",
+ "height": "4.329"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "19:45"
+ },
+ {
+ "date": "2022-03-30",
+ "groups": [
+ {
+ "time": "08:18:00",
+ "height": "4.763"
+ },
+ {
+ "time": "20:43:00",
+ "height": "4.733"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2022-03-31",
+ "groups": [
+ {
+ "time": "08:59:00",
+ "height": "5.094"
+ },
+ {
+ "time": "21:19:00",
+ "height": "4.993"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2022-04-01",
+ "groups": [
+ {
+ "time": "09:36:00",
+ "height": "5.262"
+ },
+ {
+ "time": "21:54:00",
+ "height": "5.110"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2022-04-02",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "5.285"
+ },
+ {
+ "time": "22:25:00",
+ "height": "5.105"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2022-04-03",
+ "groups": [
+ {
+ "time": "10:41:00",
+ "height": "5.188"
+ },
+ {
+ "time": "22:54:00",
+ "height": "4.997"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2022-04-04",
+ "groups": [
+ {
+ "time": "11:11:00",
+ "height": "4.990"
+ },
+ {
+ "time": "23:25:00",
+ "height": "4.800"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2022-04-05",
+ "groups": [
+ {
+ "time": "11:44:00",
+ "height": "4.708"
+ },
+ {
+ "time": "23:56:00",
+ "height": "4.531"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2022-04-06",
+ "groups": [
+ {
+ "time": "12:17:00",
+ "height": "4.358"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2022-04-07",
+ "groups": [
+ {
+ "time": "00:29:00",
+ "height": "4.203"
+ },
+ {
+ "time": "12:51:00",
+ "height": "3.955"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2022-04-08",
+ "groups": [
+ {
+ "time": "01:04:00",
+ "height": "3.831"
+ },
+ {
+ "time": "13:33:00",
+ "height": "3.520"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2022-04-09",
+ "groups": [
+ {
+ "time": "01:51:00",
+ "height": "3.435"
+ },
+ {
+ "time": "14:31:00",
+ "height": "3.101"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2022-04-10",
+ "groups": [
+ {
+ "time": "03:04:00",
+ "height": "3.091"
+ },
+ {
+ "time": "16:10:00",
+ "height": "2.847"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2022-04-11",
+ "groups": [
+ {
+ "time": "05:02:00",
+ "height": "3.027"
+ },
+ {
+ "time": "17:58:00",
+ "height": "3.031"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2022-04-12",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "3.376"
+ },
+ {
+ "time": "18:57:00",
+ "height": "3.482"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2022-04-13",
+ "groups": [
+ {
+ "time": "07:15:00",
+ "height": "3.852"
+ },
+ {
+ "time": "19:40:00",
+ "height": "3.978"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2022-04-14",
+ "groups": [
+ {
+ "time": "07:55:00",
+ "height": "4.324"
+ },
+ {
+ "time": "20:16:00",
+ "height": "4.441"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2022-04-15",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "4.741"
+ },
+ {
+ "time": "20:51:00",
+ "height": "4.833"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:15"
+ },
+ {
+ "date": "2022-04-16",
+ "groups": [
+ {
+ "time": "09:05:00",
+ "height": "5.076"
+ },
+ {
+ "time": "21:26:00",
+ "height": "5.127"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2022-04-17",
+ "groups": [
+ {
+ "time": "09:42:00",
+ "height": "5.302"
+ },
+ {
+ "time": "22:02:00",
+ "height": "5.299"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2022-04-18",
+ "groups": [
+ {
+ "time": "10:18:00",
+ "height": "5.390"
+ },
+ {
+ "time": "22:38:00",
+ "height": "5.326"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2022-04-19",
+ "groups": [
+ {
+ "time": "10:55:00",
+ "height": "5.316"
+ },
+ {
+ "time": "23:15:00",
+ "height": "5.198"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2022-04-20",
+ "groups": [
+ {
+ "time": "11:38:00",
+ "height": "5.071"
+ },
+ {
+ "time": "23:59:00",
+ "height": "4.921"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2022-04-21",
+ "groups": [
+ {
+ "time": "12:25:00",
+ "height": "4.677"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2022-04-22",
+ "groups": [
+ {
+ "time": "00:49:00",
+ "height": "4.531"
+ },
+ {
+ "time": "13:20:00",
+ "height": "4.187"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2022-04-23",
+ "groups": [
+ {
+ "time": "01:50:00",
+ "height": "4.092"
+ },
+ {
+ "time": "14:30:00",
+ "height": "3.702"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2022-04-24",
+ "groups": [
+ {
+ "time": "03:11:00",
+ "height": "3.735"
+ },
+ {
+ "time": "16:02:00",
+ "height": "3.411"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2022-04-25",
+ "groups": [
+ {
+ "time": "04:47:00",
+ "height": "3.663"
+ },
+ {
+ "time": "17:35:00",
+ "height": "3.504"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2022-04-26",
+ "groups": [
+ {
+ "time": "06:07:00",
+ "height": "3.928"
+ },
+ {
+ "time": "18:45:00",
+ "height": "3.874"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2022-04-27",
+ "groups": [
+ {
+ "time": "07:07:00",
+ "height": "4.320"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.278"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2022-04-28",
+ "groups": [
+ {
+ "time": "07:54:00",
+ "height": "4.658"
+ },
+ {
+ "time": "20:17:00",
+ "height": "4.593"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2022-04-29",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.875"
+ },
+ {
+ "time": "20:53:00",
+ "height": "4.793"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2022-04-30",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "4.972"
+ },
+ {
+ "time": "21:26:00",
+ "height": "4.890"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2022-05-01",
+ "groups": [
+ {
+ "time": "09:42:00",
+ "height": "4.975"
+ },
+ {
+ "time": "21:57:00",
+ "height": "4.903"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2022-05-02",
+ "groups": [
+ {
+ "time": "10:13:00",
+ "height": "4.901"
+ },
+ {
+ "time": "22:26:00",
+ "height": "4.842"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2022-05-03",
+ "groups": [
+ {
+ "time": "10:43:00",
+ "height": "4.757"
+ },
+ {
+ "time": "22:54:00",
+ "height": "4.710"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2022-05-04",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "4.544"
+ },
+ {
+ "time": "23:26:00",
+ "height": "4.510"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2022-05-05",
+ "groups": [
+ {
+ "time": "11:47:00",
+ "height": "4.269"
+ },
+ {
+ "time": "23:59:00",
+ "height": "4.252"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2022-05-06",
+ "groups": [
+ {
+ "time": "12:23:00",
+ "height": "3.946"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2022-05-07",
+ "groups": [
+ {
+ "time": "00:37:00",
+ "height": "3.950"
+ },
+ {
+ "time": "13:05:00",
+ "height": "3.596"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2022-05-08",
+ "groups": [
+ {
+ "time": "01:24:00",
+ "height": "3.630"
+ },
+ {
+ "time": "14:01:00",
+ "height": "3.265"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2022-05-09",
+ "groups": [
+ {
+ "time": "02:29:00",
+ "height": "3.352"
+ },
+ {
+ "time": "15:20:00",
+ "height": "3.054"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2022-05-10",
+ "groups": [
+ {
+ "time": "03:58:00",
+ "height": "3.248"
+ },
+ {
+ "time": "16:55:00",
+ "height": "3.121"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2022-05-11",
+ "groups": [
+ {
+ "time": "05:24:00",
+ "height": "3.440"
+ },
+ {
+ "time": "18:04:00",
+ "height": "3.468"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2022-05-12",
+ "groups": [
+ {
+ "time": "06:24:00",
+ "height": "3.829"
+ },
+ {
+ "time": "18:54:00",
+ "height": "3.925"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2022-05-13",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.269"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.386"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2022-05-14",
+ "groups": [
+ {
+ "time": "07:53:00",
+ "height": "4.680"
+ },
+ {
+ "time": "20:16:00",
+ "height": "4.788"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2022-05-15",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "5.011"
+ },
+ {
+ "time": "20:56:00",
+ "height": "5.092"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2022-05-16",
+ "groups": [
+ {
+ "time": "09:15:00",
+ "height": "5.226"
+ },
+ {
+ "time": "21:36:00",
+ "height": "5.273"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2022-05-17",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "5.297"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.311"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2022-05-18",
+ "groups": [
+ {
+ "time": "10:39:00",
+ "height": "5.211"
+ },
+ {
+ "time": "23:00:00",
+ "height": "5.204"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2022-05-19",
+ "groups": [
+ {
+ "time": "11:26:00",
+ "height": "4.973"
+ },
+ {
+ "time": "23:50:00",
+ "height": "4.967"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2022-05-20",
+ "groups": [
+ {
+ "time": "12:19:00",
+ "height": "4.616"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2022-05-21",
+ "groups": [
+ {
+ "time": "00:46:00",
+ "height": "4.641"
+ },
+ {
+ "time": "13:18:00",
+ "height": "4.208"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2022-05-22",
+ "groups": [
+ {
+ "time": "01:49:00",
+ "height": "4.296"
+ },
+ {
+ "time": "14:27:00",
+ "height": "3.840"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2022-05-23",
+ "groups": [
+ {
+ "time": "03:02:00",
+ "height": "4.027"
+ },
+ {
+ "time": "15:46:00",
+ "height": "3.622"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2022-05-24",
+ "groups": [
+ {
+ "time": "04:24:00",
+ "height": "3.928"
+ },
+ {
+ "time": "17:05:00",
+ "height": "3.636"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2022-05-25",
+ "groups": [
+ {
+ "time": "05:34:00",
+ "height": "4.017"
+ },
+ {
+ "time": "18:09:00",
+ "height": "3.832"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2022-05-26",
+ "groups": [
+ {
+ "time": "06:32:00",
+ "height": "4.201"
+ },
+ {
+ "time": "19:02:00",
+ "height": "4.086"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2022-05-27",
+ "groups": [
+ {
+ "time": "07:21:00",
+ "height": "4.381"
+ },
+ {
+ "time": "19:45:00",
+ "height": "4.311"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2022-05-28",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "4.510"
+ },
+ {
+ "time": "20:24:00",
+ "height": "4.478"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2022-05-29",
+ "groups": [
+ {
+ "time": "08:41:00",
+ "height": "4.582"
+ },
+ {
+ "time": "20:59:00",
+ "height": "4.586"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2022-05-30",
+ "groups": [
+ {
+ "time": "09:16:00",
+ "height": "4.606"
+ },
+ {
+ "time": "21:32:00",
+ "height": "4.640"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2022-05-31",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "4.584"
+ },
+ {
+ "time": "22:04:00",
+ "height": "4.639"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2022-06-01",
+ "groups": [
+ {
+ "time": "10:22:00",
+ "height": "4.512"
+ },
+ {
+ "time": "22:34:00",
+ "height": "4.580"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2022-06-02",
+ "groups": [
+ {
+ "time": "10:53:00",
+ "height": "4.388"
+ },
+ {
+ "time": "23:05:00",
+ "height": "4.467"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2022-06-03",
+ "groups": [
+ {
+ "time": "11:27:00",
+ "height": "4.215"
+ },
+ {
+ "time": "23:41:00",
+ "height": "4.305"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2022-06-04",
+ "groups": [
+ {
+ "time": "12:06:00",
+ "height": "4.004"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2022-06-05",
+ "groups": [
+ {
+ "time": "00:21:00",
+ "height": "4.107"
+ },
+ {
+ "time": "12:48:00",
+ "height": "3.774"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2022-06-06",
+ "groups": [
+ {
+ "time": "01:07:00",
+ "height": "3.895"
+ },
+ {
+ "time": "13:39:00",
+ "height": "3.557"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2022-06-07",
+ "groups": [
+ {
+ "time": "02:03:00",
+ "height": "3.708"
+ },
+ {
+ "time": "14:41:00",
+ "height": "3.406"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2022-06-08",
+ "groups": [
+ {
+ "time": "03:09:00",
+ "height": "3.607"
+ },
+ {
+ "time": "15:53:00",
+ "height": "3.390"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2022-06-09",
+ "groups": [
+ {
+ "time": "04:24:00",
+ "height": "3.654"
+ },
+ {
+ "time": "17:05:00",
+ "height": "3.555"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2022-06-10",
+ "groups": [
+ {
+ "time": "05:28:00",
+ "height": "3.863"
+ },
+ {
+ "time": "18:04:00",
+ "height": "3.871"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2022-06-11",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "4.176"
+ },
+ {
+ "time": "18:56:00",
+ "height": "4.249"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2022-06-12",
+ "groups": [
+ {
+ "time": "07:16:00",
+ "height": "4.510"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.617"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2022-06-13",
+ "groups": [
+ {
+ "time": "08:06:00",
+ "height": "4.802"
+ },
+ {
+ "time": "20:31:00",
+ "height": "4.923"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2022-06-14",
+ "groups": [
+ {
+ "time": "08:54:00",
+ "height": "5.008"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.136"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2022-06-15",
+ "groups": [
+ {
+ "time": "09:42:00",
+ "height": "5.103"
+ },
+ {
+ "time": "22:05:00",
+ "height": "5.236"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2022-06-16",
+ "groups": [
+ {
+ "time": "10:30:00",
+ "height": "5.077"
+ },
+ {
+ "time": "22:52:00",
+ "height": "5.218"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2022-06-17",
+ "groups": [
+ {
+ "time": "11:19:00",
+ "height": "4.933"
+ },
+ {
+ "time": "23:44:00",
+ "height": "5.088"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2022-06-18",
+ "groups": [
+ {
+ "time": "12:15:00",
+ "height": "4.694"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2022-06-19",
+ "groups": [
+ {
+ "time": "00:41:00",
+ "height": "4.869"
+ },
+ {
+ "time": "13:11:00",
+ "height": "4.397"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2022-06-20",
+ "groups": [
+ {
+ "time": "01:38:00",
+ "height": "4.598"
+ },
+ {
+ "time": "14:09:00",
+ "height": "4.095"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2022-06-21",
+ "groups": [
+ {
+ "time": "02:39:00",
+ "height": "4.323"
+ },
+ {
+ "time": "15:12:00",
+ "height": "3.843"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2022-06-22",
+ "groups": [
+ {
+ "time": "03:45:00",
+ "height": "4.094"
+ },
+ {
+ "time": "16:20:00",
+ "height": "3.694"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2022-06-23",
+ "groups": [
+ {
+ "time": "04:51:00",
+ "height": "3.956"
+ },
+ {
+ "time": "17:23:00",
+ "height": "3.679"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2022-06-24",
+ "groups": [
+ {
+ "time": "05:50:00",
+ "height": "3.924"
+ },
+ {
+ "time": "18:21:00",
+ "height": "3.777"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2022-06-25",
+ "groups": [
+ {
+ "time": "06:44:00",
+ "height": "3.975"
+ },
+ {
+ "time": "19:12:00",
+ "height": "3.941"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2022-06-26",
+ "groups": [
+ {
+ "time": "07:34:00",
+ "height": "4.072"
+ },
+ {
+ "time": "19:58:00",
+ "height": "4.122"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2022-06-27",
+ "groups": [
+ {
+ "time": "08:17:00",
+ "height": "4.181"
+ },
+ {
+ "time": "20:37:00",
+ "height": "4.286"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2022-06-28",
+ "groups": [
+ {
+ "time": "08:56:00",
+ "height": "4.277"
+ },
+ {
+ "time": "21:13:00",
+ "height": "4.413"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2022-06-29",
+ "groups": [
+ {
+ "time": "09:33:00",
+ "height": "4.340"
+ },
+ {
+ "time": "21:48:00",
+ "height": "4.492"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2022-06-30",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "4.363"
+ },
+ {
+ "time": "22:21:00",
+ "height": "4.523"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2022-07-01",
+ "groups": [
+ {
+ "time": "10:39:00",
+ "height": "4.346"
+ },
+ {
+ "time": "22:53:00",
+ "height": "4.509"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2022-07-02",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "4.288"
+ },
+ {
+ "time": "23:27:00",
+ "height": "4.452"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2022-07-03",
+ "groups": [
+ {
+ "time": "11:51:00",
+ "height": "4.195"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2022-07-04",
+ "groups": [
+ {
+ "time": "00:06:00",
+ "height": "4.357"
+ },
+ {
+ "time": "12:31:00",
+ "height": "4.071"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2022-07-05",
+ "groups": [
+ {
+ "time": "00:48:00",
+ "height": "4.232"
+ },
+ {
+ "time": "13:14:00",
+ "height": "3.928"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2022-07-06",
+ "groups": [
+ {
+ "time": "01:34:00",
+ "height": "4.092"
+ },
+ {
+ "time": "14:04:00",
+ "height": "3.788"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2022-07-07",
+ "groups": [
+ {
+ "time": "02:28:00",
+ "height": "3.961"
+ },
+ {
+ "time": "15:02:00",
+ "height": "3.685"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2022-07-08",
+ "groups": [
+ {
+ "time": "03:30:00",
+ "height": "3.874"
+ },
+ {
+ "time": "16:11:00",
+ "height": "3.666"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2022-07-09",
+ "groups": [
+ {
+ "time": "04:40:00",
+ "height": "3.873"
+ },
+ {
+ "time": "17:19:00",
+ "height": "3.780"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2022-07-10",
+ "groups": [
+ {
+ "time": "05:46:00",
+ "height": "3.995"
+ },
+ {
+ "time": "18:22:00",
+ "height": "4.032"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2022-07-11",
+ "groups": [
+ {
+ "time": "06:49:00",
+ "height": "4.225"
+ },
+ {
+ "time": "19:20:00",
+ "height": "4.368"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2022-07-12",
+ "groups": [
+ {
+ "time": "07:47:00",
+ "height": "4.502"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.717"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2022-07-13",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "4.766"
+ },
+ {
+ "time": "21:07:00",
+ "height": "5.024"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2022-07-14",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "4.966"
+ },
+ {
+ "time": "21:57:00",
+ "height": "5.243"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2022-07-15",
+ "groups": [
+ {
+ "time": "10:23:00",
+ "height": "5.064"
+ },
+ {
+ "time": "22:44:00",
+ "height": "5.342"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2022-07-16",
+ "groups": [
+ {
+ "time": "11:10:00",
+ "height": "5.040"
+ },
+ {
+ "time": "23:33:00",
+ "height": "5.306"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2022-07-17",
+ "groups": [
+ {
+ "time": "12:00:00",
+ "height": "4.894"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2022-07-18",
+ "groups": [
+ {
+ "time": "00:23:00",
+ "height": "5.135"
+ },
+ {
+ "time": "12:49:00",
+ "height": "4.647"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2022-07-19",
+ "groups": [
+ {
+ "time": "01:13:00",
+ "height": "4.854"
+ },
+ {
+ "time": "13:38:00",
+ "height": "4.335"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2022-07-20",
+ "groups": [
+ {
+ "time": "02:03:00",
+ "height": "4.503"
+ },
+ {
+ "time": "14:29:00",
+ "height": "4.003"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2022-07-21",
+ "groups": [
+ {
+ "time": "02:57:00",
+ "height": "4.130"
+ },
+ {
+ "time": "15:25:00",
+ "height": "3.701"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2022-07-22",
+ "groups": [
+ {
+ "time": "03:57:00",
+ "height": "3.797"
+ },
+ {
+ "time": "16:31:00",
+ "height": "3.492"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2022-07-23",
+ "groups": [
+ {
+ "time": "05:03:00",
+ "height": "3.581"
+ },
+ {
+ "time": "17:38:00",
+ "height": "3.447"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2022-07-24",
+ "groups": [
+ {
+ "time": "06:08:00",
+ "height": "3.540"
+ },
+ {
+ "time": "18:41:00",
+ "height": "3.582"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2022-07-25",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "3.665"
+ },
+ {
+ "time": "19:37:00",
+ "height": "3.831"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2022-07-26",
+ "groups": [
+ {
+ "time": "08:00:00",
+ "height": "3.877"
+ },
+ {
+ "time": "20:21:00",
+ "height": "4.101"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2022-07-27",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "4.095"
+ },
+ {
+ "time": "21:00:00",
+ "height": "4.335"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2022-07-28",
+ "groups": [
+ {
+ "time": "09:19:00",
+ "height": "4.275"
+ },
+ {
+ "time": "21:35:00",
+ "height": "4.512"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2022-07-29",
+ "groups": [
+ {
+ "time": "09:53:00",
+ "height": "4.404"
+ },
+ {
+ "time": "22:06:00",
+ "height": "4.630"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2022-07-30",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "4.487"
+ },
+ {
+ "time": "22:38:00",
+ "height": "4.701"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2022-07-31",
+ "groups": [
+ {
+ "time": "10:56:00",
+ "height": "4.526"
+ },
+ {
+ "time": "23:09:00",
+ "height": "4.723"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2022-08-01",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "4.513"
+ },
+ {
+ "time": "23:45:00",
+ "height": "4.689"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2022-08-02",
+ "groups": [
+ {
+ "time": "12:07:00",
+ "height": "4.442"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2022-08-03",
+ "groups": [
+ {
+ "time": "00:22:00",
+ "height": "4.593"
+ },
+ {
+ "time": "12:45:00",
+ "height": "4.311"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2022-08-04",
+ "groups": [
+ {
+ "time": "01:03:00",
+ "height": "4.439"
+ },
+ {
+ "time": "13:27:00",
+ "height": "4.130"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2022-08-05",
+ "groups": [
+ {
+ "time": "01:49:00",
+ "height": "4.232"
+ },
+ {
+ "time": "14:18:00",
+ "height": "3.920"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2022-08-06",
+ "groups": [
+ {
+ "time": "02:44:00",
+ "height": "3.995"
+ },
+ {
+ "time": "15:22:00",
+ "height": "3.724"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2022-08-07",
+ "groups": [
+ {
+ "time": "03:56:00",
+ "height": "3.784"
+ },
+ {
+ "time": "16:42:00",
+ "height": "3.643"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2022-08-08",
+ "groups": [
+ {
+ "time": "05:18:00",
+ "height": "3.724"
+ },
+ {
+ "time": "18:00:00",
+ "height": "3.797"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2022-08-09",
+ "groups": [
+ {
+ "time": "06:34:00",
+ "height": "3.911"
+ },
+ {
+ "time": "19:10:00",
+ "height": "4.170"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2022-08-10",
+ "groups": [
+ {
+ "time": "07:42:00",
+ "height": "4.272"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.633"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2022-08-11",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "4.669"
+ },
+ {
+ "time": "21:02:00",
+ "height": "5.062"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2022-08-12",
+ "groups": [
+ {
+ "time": "09:29:00",
+ "height": "4.992"
+ },
+ {
+ "time": "21:49:00",
+ "height": "5.373"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2022-08-13",
+ "groups": [
+ {
+ "time": "10:13:00",
+ "height": "5.181"
+ },
+ {
+ "time": "22:32:00",
+ "height": "5.523"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2022-08-14",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "5.214"
+ },
+ {
+ "time": "23:13:00",
+ "height": "5.496"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2022-08-15",
+ "groups": [
+ {
+ "time": "11:36:00",
+ "height": "5.094"
+ },
+ {
+ "time": "23:57:00",
+ "height": "5.303"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2022-08-16",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "4.844"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2022-08-17",
+ "groups": [
+ {
+ "time": "00:39:00",
+ "height": "4.973"
+ },
+ {
+ "time": "12:58:00",
+ "height": "4.503"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2022-08-18",
+ "groups": [
+ {
+ "time": "01:21:00",
+ "height": "4.552"
+ },
+ {
+ "time": "13:39:00",
+ "height": "4.116"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2022-08-19",
+ "groups": [
+ {
+ "time": "02:04:00",
+ "height": "4.092"
+ },
+ {
+ "time": "14:25:00",
+ "height": "3.722"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2022-08-20",
+ "groups": [
+ {
+ "time": "02:55:00",
+ "height": "3.641"
+ },
+ {
+ "time": "15:23:00",
+ "height": "3.371"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2022-08-21",
+ "groups": [
+ {
+ "time": "04:05:00",
+ "height": "3.279"
+ },
+ {
+ "time": "16:49:00",
+ "height": "3.178"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2022-08-22",
+ "groups": [
+ {
+ "time": "05:33:00",
+ "height": "3.160"
+ },
+ {
+ "time": "18:16:00",
+ "height": "3.302"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2022-08-23",
+ "groups": [
+ {
+ "time": "06:51:00",
+ "height": "3.359"
+ },
+ {
+ "time": "19:21:00",
+ "height": "3.652"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2022-08-24",
+ "groups": [
+ {
+ "time": "07:45:00",
+ "height": "3.708"
+ },
+ {
+ "time": "20:06:00",
+ "height": "4.042"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2022-08-25",
+ "groups": [
+ {
+ "time": "08:27:00",
+ "height": "4.058"
+ },
+ {
+ "time": "20:43:00",
+ "height": "4.380"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2022-08-26",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "4.350"
+ },
+ {
+ "time": "21:15:00",
+ "height": "4.643"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2022-08-27",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "4.575"
+ },
+ {
+ "time": "21:47:00",
+ "height": "4.835"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2022-08-28",
+ "groups": [
+ {
+ "time": "10:04:00",
+ "height": "4.736"
+ },
+ {
+ "time": "22:17:00",
+ "height": "4.964"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:15"
+ },
+ {
+ "date": "2022-08-29",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "4.836"
+ },
+ {
+ "time": "22:46:00",
+ "height": "5.027"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2022-08-30",
+ "groups": [
+ {
+ "time": "11:04:00",
+ "height": "4.862"
+ },
+ {
+ "time": "23:18:00",
+ "height": "5.009"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2022-08-31",
+ "groups": [
+ {
+ "time": "11:38:00",
+ "height": "4.797"
+ },
+ {
+ "time": "23:54:00",
+ "height": "4.895"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2022-09-01",
+ "groups": [
+ {
+ "time": "12:15:00",
+ "height": "4.635"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2022-09-02",
+ "groups": [
+ {
+ "time": "00:32:00",
+ "height": "4.679"
+ },
+ {
+ "time": "12:55:00",
+ "height": "4.384"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2022-09-03",
+ "groups": [
+ {
+ "time": "01:15:00",
+ "height": "4.366"
+ },
+ {
+ "time": "13:42:00",
+ "height": "4.062"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2022-09-04",
+ "groups": [
+ {
+ "time": "02:09:00",
+ "height": "3.979"
+ },
+ {
+ "time": "14:46:00",
+ "height": "3.719"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2022-09-05",
+ "groups": [
+ {
+ "time": "03:26:00",
+ "height": "3.603"
+ },
+ {
+ "time": "16:19:00",
+ "height": "3.513"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2022-09-06",
+ "groups": [
+ {
+ "time": "05:06:00",
+ "height": "3.470"
+ },
+ {
+ "time": "17:53:00",
+ "height": "3.682"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2022-09-07",
+ "groups": [
+ {
+ "time": "06:36:00",
+ "height": "3.751"
+ },
+ {
+ "time": "19:09:00",
+ "height": "4.171"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2022-09-08",
+ "groups": [
+ {
+ "time": "07:42:00",
+ "height": "4.253"
+ },
+ {
+ "time": "20:05:00",
+ "height": "4.731"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2022-09-09",
+ "groups": [
+ {
+ "time": "08:32:00",
+ "height": "4.741"
+ },
+ {
+ "time": "20:51:00",
+ "height": "5.197"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2022-09-10",
+ "groups": [
+ {
+ "time": "09:16:00",
+ "height": "5.100"
+ },
+ {
+ "time": "21:33:00",
+ "height": "5.495"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:44"
+ },
+ {
+ "date": "2022-09-11",
+ "groups": [
+ {
+ "time": "09:55:00",
+ "height": "5.293"
+ },
+ {
+ "time": "22:12:00",
+ "height": "5.605"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:42"
+ },
+ {
+ "date": "2022-09-12",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "5.319"
+ },
+ {
+ "time": "22:48:00",
+ "height": "5.535"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:40"
+ },
+ {
+ "date": "2022-09-13",
+ "groups": [
+ {
+ "time": "11:05:00",
+ "height": "5.195"
+ },
+ {
+ "time": "23:24:00",
+ "height": "5.308"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:37"
+ },
+ {
+ "date": "2022-09-14",
+ "groups": [
+ {
+ "time": "11:41:00",
+ "height": "4.948"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:35"
+ },
+ {
+ "date": "2022-09-15",
+ "groups": [
+ {
+ "time": "00:02:00",
+ "height": "4.959"
+ },
+ {
+ "time": "12:17:00",
+ "height": "4.611"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:32"
+ },
+ {
+ "date": "2022-09-16",
+ "groups": [
+ {
+ "time": "00:37:00",
+ "height": "4.527"
+ },
+ {
+ "time": "12:51:00",
+ "height": "4.219"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:30"
+ },
+ {
+ "date": "2022-09-17",
+ "groups": [
+ {
+ "time": "01:15:00",
+ "height": "4.052"
+ },
+ {
+ "time": "13:30:00",
+ "height": "3.801"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:28"
+ },
+ {
+ "date": "2022-09-18",
+ "groups": [
+ {
+ "time": "01:59:00",
+ "height": "3.566"
+ },
+ {
+ "time": "14:21:00",
+ "height": "3.386"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "19:25"
+ },
+ {
+ "date": "2022-09-19",
+ "groups": [
+ {
+ "time": "03:02:00",
+ "height": "3.127"
+ },
+ {
+ "time": "15:46:00",
+ "height": "3.073"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "19:23"
+ },
+ {
+ "date": "2022-09-20",
+ "groups": [
+ {
+ "time": "04:55:00",
+ "height": "2.926"
+ },
+ {
+ "time": "17:47:00",
+ "height": "3.149"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "19:20"
+ },
+ {
+ "date": "2022-09-21",
+ "groups": [
+ {
+ "time": "06:29:00",
+ "height": "3.185"
+ },
+ {
+ "time": "18:57:00",
+ "height": "3.562"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "19:18"
+ },
+ {
+ "date": "2022-09-22",
+ "groups": [
+ {
+ "time": "07:24:00",
+ "height": "3.629"
+ },
+ {
+ "time": "19:41:00",
+ "height": "4.024"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "19:15"
+ },
+ {
+ "date": "2022-09-23",
+ "groups": [
+ {
+ "time": "08:02:00",
+ "height": "4.069"
+ },
+ {
+ "time": "20:16:00",
+ "height": "4.434"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "19:13"
+ },
+ {
+ "date": "2022-09-24",
+ "groups": [
+ {
+ "time": "08:35:00",
+ "height": "4.448"
+ },
+ {
+ "time": "20:48:00",
+ "height": "4.765"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "19:11"
+ },
+ {
+ "date": "2022-09-25",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "4.751"
+ },
+ {
+ "time": "21:19:00",
+ "height": "5.016"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "19:08"
+ },
+ {
+ "date": "2022-09-26",
+ "groups": [
+ {
+ "time": "09:36:00",
+ "height": "4.977"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.188"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "19:06"
+ },
+ {
+ "date": "2022-09-27",
+ "groups": [
+ {
+ "time": "10:07:00",
+ "height": "5.116"
+ },
+ {
+ "time": "22:21:00",
+ "height": "5.269"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "19:03"
+ },
+ {
+ "date": "2022-09-28",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "5.154"
+ },
+ {
+ "time": "22:53:00",
+ "height": "5.239"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "19:01"
+ },
+ {
+ "date": "2022-09-29",
+ "groups": [
+ {
+ "time": "11:10:00",
+ "height": "5.072"
+ },
+ {
+ "time": "23:27:00",
+ "height": "5.078"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "18:59"
+ },
+ {
+ "date": "2022-09-30",
+ "groups": [
+ {
+ "time": "11:47:00",
+ "height": "4.865"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "18:56"
+ },
+ {
+ "date": "2022-10-01",
+ "groups": [
+ {
+ "time": "00:08:00",
+ "height": "4.782"
+ },
+ {
+ "time": "12:30:00",
+ "height": "4.543"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "18:54"
+ },
+ {
+ "date": "2022-10-02",
+ "groups": [
+ {
+ "time": "00:54:00",
+ "height": "4.367"
+ },
+ {
+ "time": "13:21:00",
+ "height": "4.138"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "18:51"
+ },
+ {
+ "date": "2022-10-03",
+ "groups": [
+ {
+ "time": "01:52:00",
+ "height": "3.880"
+ },
+ {
+ "time": "14:32:00",
+ "height": "3.728"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "18:49"
+ },
+ {
+ "date": "2022-10-04",
+ "groups": [
+ {
+ "time": "03:20:00",
+ "height": "3.463"
+ },
+ {
+ "time": "16:16:00",
+ "height": "3.538"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "18:47"
+ },
+ {
+ "date": "2022-10-05",
+ "groups": [
+ {
+ "time": "05:09:00",
+ "height": "3.420"
+ },
+ {
+ "time": "17:52:00",
+ "height": "3.800"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2022-10-06",
+ "groups": [
+ {
+ "time": "06:35:00",
+ "height": "3.822"
+ },
+ {
+ "time": "19:00:00",
+ "height": "4.331"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "18:42"
+ },
+ {
+ "date": "2022-10-07",
+ "groups": [
+ {
+ "time": "07:32:00",
+ "height": "4.356"
+ },
+ {
+ "time": "19:51:00",
+ "height": "4.855"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2022-10-08",
+ "groups": [
+ {
+ "time": "08:17:00",
+ "height": "4.812"
+ },
+ {
+ "time": "20:34:00",
+ "height": "5.240"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2022-10-09",
+ "groups": [
+ {
+ "time": "08:56:00",
+ "height": "5.119"
+ },
+ {
+ "time": "21:12:00",
+ "height": "5.448"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2022-10-10",
+ "groups": [
+ {
+ "time": "09:32:00",
+ "height": "5.268"
+ },
+ {
+ "time": "21:48:00",
+ "height": "5.488"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2022-10-11",
+ "groups": [
+ {
+ "time": "10:05:00",
+ "height": "5.276"
+ },
+ {
+ "time": "22:22:00",
+ "height": "5.385"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2022-10-12",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "5.165"
+ },
+ {
+ "time": "22:53:00",
+ "height": "5.165"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2022-10-13",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.953"
+ },
+ {
+ "time": "23:25:00",
+ "height": "4.850"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2022-10-14",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "4.661"
+ },
+ {
+ "time": "23:59:00",
+ "height": "4.465"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2022-10-15",
+ "groups": [
+ {
+ "time": "12:12:00",
+ "height": "4.310"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2022-10-16",
+ "groups": [
+ {
+ "time": "00:35:00",
+ "height": "4.035"
+ },
+ {
+ "time": "12:49:00",
+ "height": "3.922"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2022-10-17",
+ "groups": [
+ {
+ "time": "01:17:00",
+ "height": "3.585"
+ },
+ {
+ "time": "13:37:00",
+ "height": "3.521"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2022-10-18",
+ "groups": [
+ {
+ "time": "02:17:00",
+ "height": "3.160"
+ },
+ {
+ "time": "14:52:00",
+ "height": "3.182"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2022-10-19",
+ "groups": [
+ {
+ "time": "03:58:00",
+ "height": "2.911"
+ },
+ {
+ "time": "16:56:00",
+ "height": "3.142"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "18:12"
+ },
+ {
+ "date": "2022-10-20",
+ "groups": [
+ {
+ "time": "05:49:00",
+ "height": "3.107"
+ },
+ {
+ "time": "18:15:00",
+ "height": "3.495"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2022-10-21",
+ "groups": [
+ {
+ "time": "06:46:00",
+ "height": "3.546"
+ },
+ {
+ "time": "19:03:00",
+ "height": "3.951"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2022-10-22",
+ "groups": [
+ {
+ "time": "07:27:00",
+ "height": "4.018"
+ },
+ {
+ "time": "19:41:00",
+ "height": "4.390"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2022-10-23",
+ "groups": [
+ {
+ "time": "08:01:00",
+ "height": "4.452"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.769"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2022-10-24",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.818"
+ },
+ {
+ "time": "20:47:00",
+ "height": "5.070"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2022-10-25",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "5.096"
+ },
+ {
+ "time": "21:20:00",
+ "height": "5.276"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2022-10-26",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "5.270"
+ },
+ {
+ "time": "21:55:00",
+ "height": "5.367"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2022-10-27",
+ "groups": [
+ {
+ "time": "10:14:00",
+ "height": "5.318"
+ },
+ {
+ "time": "22:31:00",
+ "height": "5.318"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2022-10-28",
+ "groups": [
+ {
+ "time": "10:50:00",
+ "height": "5.228"
+ },
+ {
+ "time": "23:08:00",
+ "height": "5.120"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "17:54"
+ },
+ {
+ "date": "2022-10-29",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "5.001"
+ },
+ {
+ "time": "23:54:00",
+ "height": "4.778"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "17:52"
+ },
+ {
+ "date": "2022-10-30",
+ "groups": [
+ {
+ "time": "12:19:00",
+ "height": "4.658"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "17:50"
+ },
+ {
+ "date": "2022-10-31",
+ "groups": [
+ {
+ "time": "00:47:00",
+ "height": "4.332"
+ },
+ {
+ "time": "12:17:00",
+ "height": "4.253"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2022-11-01",
+ "groups": [
+ {
+ "time": "00:53:00",
+ "height": "3.867"
+ },
+ {
+ "time": "13:34:00",
+ "height": "3.900"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2022-11-02",
+ "groups": [
+ {
+ "time": "02:22:00",
+ "height": "3.548"
+ },
+ {
+ "time": "15:11:00",
+ "height": "3.791"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2022-11-03",
+ "groups": [
+ {
+ "time": "04:01:00",
+ "height": "3.581"
+ },
+ {
+ "time": "16:35:00",
+ "height": "4.021"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2022-11-04",
+ "groups": [
+ {
+ "time": "05:15:00",
+ "height": "3.928"
+ },
+ {
+ "time": "17:39:00",
+ "height": "4.420"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2022-11-05",
+ "groups": [
+ {
+ "time": "06:10:00",
+ "height": "4.351"
+ },
+ {
+ "time": "18:28:00",
+ "height": "4.792"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2022-11-06",
+ "groups": [
+ {
+ "time": "06:53:00",
+ "height": "4.704"
+ },
+ {
+ "time": "19:10:00",
+ "height": "5.044"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2022-11-07",
+ "groups": [
+ {
+ "time": "07:31:00",
+ "height": "4.938"
+ },
+ {
+ "time": "19:48:00",
+ "height": "5.163"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2022-11-08",
+ "groups": [
+ {
+ "time": "08:06:00",
+ "height": "5.054"
+ },
+ {
+ "time": "20:23:00",
+ "height": "5.167"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2022-11-09",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "5.073"
+ },
+ {
+ "time": "20:56:00",
+ "height": "5.080"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2022-11-10",
+ "groups": [
+ {
+ "time": "09:10:00",
+ "height": "5.007"
+ },
+ {
+ "time": "21:27:00",
+ "height": "4.916"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2022-11-11",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "4.863"
+ },
+ {
+ "time": "21:58:00",
+ "height": "4.682"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2022-11-12",
+ "groups": [
+ {
+ "time": "10:11:00",
+ "height": "4.648"
+ },
+ {
+ "time": "22:32:00",
+ "height": "4.389"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2022-11-13",
+ "groups": [
+ {
+ "time": "10:46:00",
+ "height": "4.379"
+ },
+ {
+ "time": "23:10:00",
+ "height": "4.053"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2022-11-14",
+ "groups": [
+ {
+ "time": "11:24:00",
+ "height": "4.071"
+ },
+ {
+ "time": "23:52:00",
+ "height": "3.698"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2022-11-15",
+ "groups": [
+ {
+ "time": "12:11:00",
+ "height": "3.749"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2022-11-16",
+ "groups": [
+ {
+ "time": "00:47:00",
+ "height": "3.361"
+ },
+ {
+ "time": "13:14:00",
+ "height": "3.465"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2022-11-17",
+ "groups": [
+ {
+ "time": "02:01:00",
+ "height": "3.129"
+ },
+ {
+ "time": "14:40:00",
+ "height": "3.335"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2022-11-18",
+ "groups": [
+ {
+ "time": "03:38:00",
+ "height": "3.150"
+ },
+ {
+ "time": "16:09:00",
+ "height": "3.478"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2022-11-19",
+ "groups": [
+ {
+ "time": "04:50:00",
+ "height": "3.447"
+ },
+ {
+ "time": "17:09:00",
+ "height": "3.818"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2022-11-20",
+ "groups": [
+ {
+ "time": "05:39:00",
+ "height": "3.865"
+ },
+ {
+ "time": "17:55:00",
+ "height": "4.218"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2022-11-21",
+ "groups": [
+ {
+ "time": "06:20:00",
+ "height": "4.303"
+ },
+ {
+ "time": "18:35:00",
+ "height": "4.605"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2022-11-22",
+ "groups": [
+ {
+ "time": "06:59:00",
+ "height": "4.702"
+ },
+ {
+ "time": "19:15:00",
+ "height": "4.934"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2022-11-23",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "5.023"
+ },
+ {
+ "time": "19:54:00",
+ "height": "5.168"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2022-11-24",
+ "groups": [
+ {
+ "time": "08:16:00",
+ "height": "5.238"
+ },
+ {
+ "time": "20:35:00",
+ "height": "5.279"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2022-11-25",
+ "groups": [
+ {
+ "time": "08:56:00",
+ "height": "5.327"
+ },
+ {
+ "time": "21:16:00",
+ "height": "5.252"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2022-11-26",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "5.281"
+ },
+ {
+ "time": "21:59:00",
+ "height": "5.081"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2022-11-27",
+ "groups": [
+ {
+ "time": "10:23:00",
+ "height": "5.109"
+ },
+ {
+ "time": "22:51:00",
+ "height": "4.791"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2022-11-28",
+ "groups": [
+ {
+ "time": "11:18:00",
+ "height": "4.841"
+ },
+ {
+ "time": "23:49:00",
+ "height": "4.429"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2022-11-29",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "4.531"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2022-11-30",
+ "groups": [
+ {
+ "time": "00:54:00",
+ "height": "4.073"
+ },
+ {
+ "time": "13:28:00",
+ "height": "4.259"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2022-12-01",
+ "groups": [
+ {
+ "time": "02:08:00",
+ "height": "3.818"
+ },
+ {
+ "time": "14:46:00",
+ "height": "4.112"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2022-12-02",
+ "groups": [
+ {
+ "time": "03:30:00",
+ "height": "3.756"
+ },
+ {
+ "time": "16:02:00",
+ "height": "4.137"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2022-12-03",
+ "groups": [
+ {
+ "time": "04:38:00",
+ "height": "3.890"
+ },
+ {
+ "time": "17:04:00",
+ "height": "4.285"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2022-12-04",
+ "groups": [
+ {
+ "time": "05:36:00",
+ "height": "4.126"
+ },
+ {
+ "time": "17:57:00",
+ "height": "4.462"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2022-12-05",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "4.367"
+ },
+ {
+ "time": "18:44:00",
+ "height": "4.605"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2022-12-06",
+ "groups": [
+ {
+ "time": "07:06:00",
+ "height": "4.560"
+ },
+ {
+ "time": "19:25:00",
+ "height": "4.693"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2022-12-07",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "4.693"
+ },
+ {
+ "time": "20:03:00",
+ "height": "4.727"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2022-12-08",
+ "groups": [
+ {
+ "time": "08:19:00",
+ "height": "4.765"
+ },
+ {
+ "time": "20:37:00",
+ "height": "4.712"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-09",
+ "groups": [
+ {
+ "time": "08:52:00",
+ "height": "4.776"
+ },
+ {
+ "time": "21:11:00",
+ "height": "4.646"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-10",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "4.727"
+ },
+ {
+ "time": "21:43:00",
+ "height": "4.528"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-11",
+ "groups": [
+ {
+ "time": "09:56:00",
+ "height": "4.620"
+ },
+ {
+ "time": "22:16:00",
+ "height": "4.360"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-12",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "4.464"
+ },
+ {
+ "time": "22:54:00",
+ "height": "4.154"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-13",
+ "groups": [
+ {
+ "time": "11:09:00",
+ "height": "4.271"
+ },
+ {
+ "time": "23:35:00",
+ "height": "3.924"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-14",
+ "groups": [
+ {
+ "time": "11:52:00",
+ "height": "4.055"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-15",
+ "groups": [
+ {
+ "time": "00:21:00",
+ "height": "3.691"
+ },
+ {
+ "time": "12:42:00",
+ "height": "3.843"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-16",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "3.493"
+ },
+ {
+ "time": "13:42:00",
+ "height": "3.678"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-17",
+ "groups": [
+ {
+ "time": "02:22:00",
+ "height": "3.389"
+ },
+ {
+ "time": "14:52:00",
+ "height": "3.624"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-18",
+ "groups": [
+ {
+ "time": "03:37:00",
+ "height": "3.446"
+ },
+ {
+ "time": "16:03:00",
+ "height": "3.728"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2022-12-19",
+ "groups": [
+ {
+ "time": "04:40:00",
+ "height": "3.680"
+ },
+ {
+ "time": "17:03:00",
+ "height": "3.975"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2022-12-20",
+ "groups": [
+ {
+ "time": "05:36:00",
+ "height": "4.030"
+ },
+ {
+ "time": "17:57:00",
+ "height": "4.297"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2022-12-21",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "4.416"
+ },
+ {
+ "time": "18:46:00",
+ "height": "4.621"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2022-12-22",
+ "groups": [
+ {
+ "time": "07:12:00",
+ "height": "4.776"
+ },
+ {
+ "time": "19:34:00",
+ "height": "4.895"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2022-12-23",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "5.067"
+ },
+ {
+ "time": "20:21:00",
+ "height": "5.080"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2022-12-24",
+ "groups": [
+ {
+ "time": "08:45:00",
+ "height": "5.260"
+ },
+ {
+ "time": "21:09:00",
+ "height": "5.155"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2022-12-25",
+ "groups": [
+ {
+ "time": "09:31:00",
+ "height": "5.340"
+ },
+ {
+ "time": "21:56:00",
+ "height": "5.109"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2022-12-26",
+ "groups": [
+ {
+ "time": "10:19:00",
+ "height": "5.302"
+ },
+ {
+ "time": "22:49:00",
+ "height": "4.951"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2022-12-27",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "5.154"
+ },
+ {
+ "time": "23:43:00",
+ "height": "4.703"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2022-12-28",
+ "groups": [
+ {
+ "time": "12:09:00",
+ "height": "4.917"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2022-12-29",
+ "groups": [
+ {
+ "time": "00:38:00",
+ "height": "4.402"
+ },
+ {
+ "time": "13:07:00",
+ "height": "4.627"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2022-12-30",
+ "groups": [
+ {
+ "time": "01:38:00",
+ "height": "4.101"
+ },
+ {
+ "time": "14:09:00",
+ "height": "4.332"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2022-12-31",
+ "groups": [
+ {
+ "time": "02:43:00",
+ "height": "3.856"
+ },
+ {
+ "time": "15:16:00",
+ "height": "4.092"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2023-01-01",
+ "groups": [
+ {
+ "time": "03:50:00",
+ "height": "3.728"
+ },
+ {
+ "time": "16:21:00",
+ "height": "3.959"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2023-01-02",
+ "groups": [
+ {
+ "time": "04:54:00",
+ "height": "3.748"
+ },
+ {
+ "time": "17:22:00",
+ "height": "3.950"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2023-01-03",
+ "groups": [
+ {
+ "time": "05:53:00",
+ "height": "3.891"
+ },
+ {
+ "time": "18:17:00",
+ "height": "4.041"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2023-01-04",
+ "groups": [
+ {
+ "time": "06:44:00",
+ "height": "4.098"
+ },
+ {
+ "time": "19:06:00",
+ "height": "4.179"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2023-01-05",
+ "groups": [
+ {
+ "time": "07:29:00",
+ "height": "4.308"
+ },
+ {
+ "time": "19:48:00",
+ "height": "4.317"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2023-01-06",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "4.481"
+ },
+ {
+ "time": "20:26:00",
+ "height": "4.424"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2023-01-07",
+ "groups": [
+ {
+ "time": "08:42:00",
+ "height": "4.600"
+ },
+ {
+ "time": "21:01:00",
+ "height": "4.484"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2023-01-08",
+ "groups": [
+ {
+ "time": "09:15:00",
+ "height": "4.660"
+ },
+ {
+ "time": "21:34:00",
+ "height": "4.492"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2023-01-09",
+ "groups": [
+ {
+ "time": "09:46:00",
+ "height": "4.666"
+ },
+ {
+ "time": "22:05:00",
+ "height": "4.452"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2023-01-10",
+ "groups": [
+ {
+ "time": "10:18:00",
+ "height": "4.621"
+ },
+ {
+ "time": "22:39:00",
+ "height": "4.367"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2023-01-11",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "4.532"
+ },
+ {
+ "time": "23:16:00",
+ "height": "4.241"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2023-01-12",
+ "groups": [
+ {
+ "time": "11:31:00",
+ "height": "4.398"
+ },
+ {
+ "time": "23:54:00",
+ "height": "4.079"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2023-01-13",
+ "groups": [
+ {
+ "time": "12:11:00",
+ "height": "4.227"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2023-01-14",
+ "groups": [
+ {
+ "time": "00:36:00",
+ "height": "3.894"
+ },
+ {
+ "time": "12:56:00",
+ "height": "4.036"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2023-01-15",
+ "groups": [
+ {
+ "time": "01:26:00",
+ "height": "3.711"
+ },
+ {
+ "time": "13:51:00",
+ "height": "3.852"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2023-01-16",
+ "groups": [
+ {
+ "time": "02:27:00",
+ "height": "3.572"
+ },
+ {
+ "time": "14:58:00",
+ "height": "3.722"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2023-01-17",
+ "groups": [
+ {
+ "time": "03:42:00",
+ "height": "3.550"
+ },
+ {
+ "time": "16:12:00",
+ "height": "3.726"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2023-01-18",
+ "groups": [
+ {
+ "time": "04:53:00",
+ "height": "3.721"
+ },
+ {
+ "time": "17:23:00",
+ "height": "3.914"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2023-01-19",
+ "groups": [
+ {
+ "time": "05:58:00",
+ "height": "4.064"
+ },
+ {
+ "time": "18:27:00",
+ "height": "4.239"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2023-01-20",
+ "groups": [
+ {
+ "time": "06:56:00",
+ "height": "4.490"
+ },
+ {
+ "time": "19:24:00",
+ "height": "4.606"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2023-01-21",
+ "groups": [
+ {
+ "time": "07:48:00",
+ "height": "4.911"
+ },
+ {
+ "time": "20:16:00",
+ "height": "4.936"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2023-01-22",
+ "groups": [
+ {
+ "time": "08:38:00",
+ "height": "5.260"
+ },
+ {
+ "time": "21:04:00",
+ "height": "5.167"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2023-01-23",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "5.487"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.263"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:43"
+ },
+ {
+ "date": "2023-01-24",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "5.562"
+ },
+ {
+ "time": "22:36:00",
+ "height": "5.207"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2023-01-25",
+ "groups": [
+ {
+ "time": "10:58:00",
+ "height": "5.471"
+ },
+ {
+ "time": "23:23:00",
+ "height": "5.008"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:47"
+ },
+ {
+ "date": "2023-01-26",
+ "groups": [
+ {
+ "time": "11:47:00",
+ "height": "5.222"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:49"
+ },
+ {
+ "date": "2023-01-27",
+ "groups": [
+ {
+ "time": "00:10:00",
+ "height": "4.695"
+ },
+ {
+ "time": "12:35:00",
+ "height": "4.850"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:51"
+ },
+ {
+ "date": "2023-01-28",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "4.312"
+ },
+ {
+ "time": "13:25:00",
+ "height": "4.405"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2023-01-29",
+ "groups": [
+ {
+ "time": "01:49:00",
+ "height": "3.914"
+ },
+ {
+ "time": "14:22:00",
+ "height": "3.954"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:54"
+ },
+ {
+ "date": "2023-01-30",
+ "groups": [
+ {
+ "time": "02:51:00",
+ "height": "3.567"
+ },
+ {
+ "time": "15:30:00",
+ "height": "3.587"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:56"
+ },
+ {
+ "date": "2023-01-31",
+ "groups": [
+ {
+ "time": "04:06:00",
+ "height": "3.372"
+ },
+ {
+ "time": "16:43:00",
+ "height": "3.423"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:58"
+ },
+ {
+ "date": "2023-02-01",
+ "groups": [
+ {
+ "time": "05:23:00",
+ "height": "3.432"
+ },
+ {
+ "time": "17:56:00",
+ "height": "3.519"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "17:00"
+ },
+ {
+ "date": "2023-02-02",
+ "groups": [
+ {
+ "time": "06:28:00",
+ "height": "3.701"
+ },
+ {
+ "time": "18:54:00",
+ "height": "3.777"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "17:02"
+ },
+ {
+ "date": "2023-02-03",
+ "groups": [
+ {
+ "time": "07:17:00",
+ "height": "4.032"
+ },
+ {
+ "time": "19:38:00",
+ "height": "4.062"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "17:04"
+ },
+ {
+ "date": "2023-02-04",
+ "groups": [
+ {
+ "time": "07:56:00",
+ "height": "4.327"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.301"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "17:06"
+ },
+ {
+ "date": "2023-02-05",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "4.550"
+ },
+ {
+ "time": "20:49:00",
+ "height": "4.475"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "17:08"
+ },
+ {
+ "date": "2023-02-06",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "4.701"
+ },
+ {
+ "time": "21:19:00",
+ "height": "4.585"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "17:10"
+ },
+ {
+ "date": "2023-02-07",
+ "groups": [
+ {
+ "time": "09:31:00",
+ "height": "4.789"
+ },
+ {
+ "time": "21:47:00",
+ "height": "4.639"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "17:12"
+ },
+ {
+ "date": "2023-02-08",
+ "groups": [
+ {
+ "time": "10:00:00",
+ "height": "4.822"
+ },
+ {
+ "time": "22:17:00",
+ "height": "4.638"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "17:13"
+ },
+ {
+ "date": "2023-02-09",
+ "groups": [
+ {
+ "time": "10:31:00",
+ "height": "4.794"
+ },
+ {
+ "time": "22:50:00",
+ "height": "4.573"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "17:15"
+ },
+ {
+ "date": "2023-02-10",
+ "groups": [
+ {
+ "time": "11:04:00",
+ "height": "4.701"
+ },
+ {
+ "time": "23:23:00",
+ "height": "4.442"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "17:17"
+ },
+ {
+ "date": "2023-02-11",
+ "groups": [
+ {
+ "time": "11:38:00",
+ "height": "4.538"
+ },
+ {
+ "time": "23:59:00",
+ "height": "4.248"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "17:19"
+ },
+ {
+ "date": "2023-02-12",
+ "groups": [
+ {
+ "time": "12:17:00",
+ "height": "4.310"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "17:21"
+ },
+ {
+ "date": "2023-02-13",
+ "groups": [
+ {
+ "time": "00:40:00",
+ "height": "4.001"
+ },
+ {
+ "time": "13:03:00",
+ "height": "4.026"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "17:23"
+ },
+ {
+ "date": "2023-02-14",
+ "groups": [
+ {
+ "time": "01:33:00",
+ "height": "3.723"
+ },
+ {
+ "time": "14:05:00",
+ "height": "3.714"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "17:25"
+ },
+ {
+ "date": "2023-02-15",
+ "groups": [
+ {
+ "time": "02:47:00",
+ "height": "3.485"
+ },
+ {
+ "time": "15:31:00",
+ "height": "3.491"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "17:27"
+ },
+ {
+ "date": "2023-02-16",
+ "groups": [
+ {
+ "time": "04:20:00",
+ "height": "3.472"
+ },
+ {
+ "time": "17:01:00",
+ "height": "3.570"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "17:29"
+ },
+ {
+ "date": "2023-02-17",
+ "groups": [
+ {
+ "time": "05:41:00",
+ "height": "3.805"
+ },
+ {
+ "time": "18:18:00",
+ "height": "3.961"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "17:31"
+ },
+ {
+ "date": "2023-02-18",
+ "groups": [
+ {
+ "time": "06:47:00",
+ "height": "4.339"
+ },
+ {
+ "time": "19:18:00",
+ "height": "4.469"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "17:33"
+ },
+ {
+ "date": "2023-02-19",
+ "groups": [
+ {
+ "time": "07:41:00",
+ "height": "4.892"
+ },
+ {
+ "time": "20:08:00",
+ "height": "4.932"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "17:35"
+ },
+ {
+ "date": "2023-02-20",
+ "groups": [
+ {
+ "time": "08:29:00",
+ "height": "5.345"
+ },
+ {
+ "time": "20:53:00",
+ "height": "5.262"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "17:37"
+ },
+ {
+ "date": "2023-02-21",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "5.633"
+ },
+ {
+ "time": "21:34:00",
+ "height": "5.419"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "17:39"
+ },
+ {
+ "date": "2023-02-22",
+ "groups": [
+ {
+ "time": "09:53:00",
+ "height": "5.725"
+ },
+ {
+ "time": "22:13:00",
+ "height": "5.392"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "17:40"
+ },
+ {
+ "date": "2023-02-23",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "5.613"
+ },
+ {
+ "time": "22:55:00",
+ "height": "5.195"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "17:42"
+ },
+ {
+ "date": "2023-02-24",
+ "groups": [
+ {
+ "time": "11:17:00",
+ "height": "5.316"
+ },
+ {
+ "time": "23:35:00",
+ "height": "4.860"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "17:44"
+ },
+ {
+ "date": "2023-02-25",
+ "groups": [
+ {
+ "time": "11:58:00",
+ "height": "4.879"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "17:46"
+ },
+ {
+ "date": "2023-02-26",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "4.434"
+ },
+ {
+ "time": "12:40:00",
+ "height": "4.356"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "17:48"
+ },
+ {
+ "date": "2023-02-27",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "3.965"
+ },
+ {
+ "time": "13:27:00",
+ "height": "3.810"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "17:50"
+ },
+ {
+ "date": "2023-02-28",
+ "groups": [
+ {
+ "time": "01:48:00",
+ "height": "3.504"
+ },
+ {
+ "time": "14:28:00",
+ "height": "3.314"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "17:52"
+ },
+ {
+ "date": "2023-03-01",
+ "groups": [
+ {
+ "time": "03:07:00",
+ "height": "3.142"
+ },
+ {
+ "time": "16:02:00",
+ "height": "3.026"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "17:54"
+ },
+ {
+ "date": "2023-03-02",
+ "groups": [
+ {
+ "time": "04:51:00",
+ "height": "3.112"
+ },
+ {
+ "time": "17:37:00",
+ "height": "3.155"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2023-03-03",
+ "groups": [
+ {
+ "time": "06:11:00",
+ "height": "3.448"
+ },
+ {
+ "time": "18:39:00",
+ "height": "3.537"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "17:57"
+ },
+ {
+ "date": "2023-03-04",
+ "groups": [
+ {
+ "time": "07:00:00",
+ "height": "3.877"
+ },
+ {
+ "time": "19:21:00",
+ "height": "3.937"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "17:59"
+ },
+ {
+ "date": "2023-03-05",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "4.257"
+ },
+ {
+ "time": "19:55:00",
+ "height": "4.272"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2023-03-06",
+ "groups": [
+ {
+ "time": "08:09:00",
+ "height": "4.550"
+ },
+ {
+ "time": "20:26:00",
+ "height": "4.526"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2023-03-07",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "4.759"
+ },
+ {
+ "time": "20:55:00",
+ "height": "4.706"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "18:05"
+ },
+ {
+ "date": "2023-03-08",
+ "groups": [
+ {
+ "time": "09:07:00",
+ "height": "4.899"
+ },
+ {
+ "time": "21:23:00",
+ "height": "4.823"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2023-03-09",
+ "groups": [
+ {
+ "time": "09:36:00",
+ "height": "4.976"
+ },
+ {
+ "time": "21:51:00",
+ "height": "4.871"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2023-03-10",
+ "groups": [
+ {
+ "time": "10:03:00",
+ "height": "4.981"
+ },
+ {
+ "time": "22:19:00",
+ "height": "4.838"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2023-03-11",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "4.898"
+ },
+ {
+ "time": "22:52:00",
+ "height": "4.713"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "18:12"
+ },
+ {
+ "date": "2023-03-12",
+ "groups": [
+ {
+ "time": "11:08:00",
+ "height": "4.719"
+ },
+ {
+ "time": "23:28:00",
+ "height": "4.495"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2023-03-13",
+ "groups": [
+ {
+ "time": "11:46:00",
+ "height": "4.441"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2023-03-14",
+ "groups": [
+ {
+ "time": "00:08:00",
+ "height": "4.191"
+ },
+ {
+ "time": "12:31:00",
+ "height": "4.069"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2023-03-15",
+ "groups": [
+ {
+ "time": "00:59:00",
+ "height": "3.820"
+ },
+ {
+ "time": "13:32:00",
+ "height": "3.639"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2023-03-16",
+ "groups": [
+ {
+ "time": "02:17:00",
+ "height": "3.465"
+ },
+ {
+ "time": "15:09:00",
+ "height": "3.314"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2023-03-17",
+ "groups": [
+ {
+ "time": "04:04:00",
+ "height": "3.392"
+ },
+ {
+ "time": "16:53:00",
+ "height": "3.416"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "18:23"
+ },
+ {
+ "date": "2023-03-18",
+ "groups": [
+ {
+ "time": "05:33:00",
+ "height": "3.780"
+ },
+ {
+ "time": "18:12:00",
+ "height": "3.911"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2023-03-19",
+ "groups": [
+ {
+ "time": "06:38:00",
+ "height": "4.382"
+ },
+ {
+ "time": "19:08:00",
+ "height": "4.487"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "18:27"
+ },
+ {
+ "date": "2023-03-20",
+ "groups": [
+ {
+ "time": "07:28:00",
+ "height": "4.954"
+ },
+ {
+ "time": "19:53:00",
+ "height": "4.969"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2023-03-21",
+ "groups": [
+ {
+ "time": "08:11:00",
+ "height": "5.383"
+ },
+ {
+ "time": "20:34:00",
+ "height": "5.290"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2023-03-22",
+ "groups": [
+ {
+ "time": "08:52:00",
+ "height": "5.621"
+ },
+ {
+ "time": "21:12:00",
+ "height": "5.430"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2023-03-23",
+ "groups": [
+ {
+ "time": "09:30:00",
+ "height": "5.658"
+ },
+ {
+ "time": "21:47:00",
+ "height": "5.395"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "18:34"
+ },
+ {
+ "date": "2023-03-24",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.505"
+ },
+ {
+ "time": "22:23:00",
+ "height": "5.201"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2023-03-25",
+ "groups": [
+ {
+ "time": "10:44:00",
+ "height": "5.188"
+ },
+ {
+ "time": "22:59:00",
+ "height": "4.879"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2023-03-26",
+ "groups": [
+ {
+ "time": "11:22:00",
+ "height": "4.749"
+ },
+ {
+ "time": "23:36:00",
+ "height": "4.469"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "18:39"
+ },
+ {
+ "date": "2023-03-27",
+ "groups": [
+ {
+ "time": "13:00:00",
+ "height": "4.239"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "19:41"
+ },
+ {
+ "date": "2023-03-28",
+ "groups": [
+ {
+ "time": "01:14:00",
+ "height": "4.010"
+ },
+ {
+ "time": "13:42:00",
+ "height": "3.705"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "19:43"
+ },
+ {
+ "date": "2023-03-29",
+ "groups": [
+ {
+ "time": "02:00:00",
+ "height": "3.539"
+ },
+ {
+ "time": "14:39:00",
+ "height": "3.200"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "19:45"
+ },
+ {
+ "date": "2023-03-30",
+ "groups": [
+ {
+ "time": "03:10:00",
+ "height": "3.125"
+ },
+ {
+ "time": "16:15:00",
+ "height": "2.861"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "19:46"
+ },
+ {
+ "date": "2023-03-31",
+ "groups": [
+ {
+ "time": "05:10:00",
+ "height": "3.000"
+ },
+ {
+ "time": "18:05:00",
+ "height": "2.976"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:48"
+ },
+ {
+ "date": "2023-04-01",
+ "groups": [
+ {
+ "time": "06:37:00",
+ "height": "3.316"
+ },
+ {
+ "time": "19:10:00",
+ "height": "3.389"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2023-04-02",
+ "groups": [
+ {
+ "time": "07:28:00",
+ "height": "3.757"
+ },
+ {
+ "time": "19:51:00",
+ "height": "3.831"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2023-04-03",
+ "groups": [
+ {
+ "time": "08:05:00",
+ "height": "4.165"
+ },
+ {
+ "time": "20:25:00",
+ "height": "4.216"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2023-04-04",
+ "groups": [
+ {
+ "time": "08:38:00",
+ "height": "4.495"
+ },
+ {
+ "time": "20:56:00",
+ "height": "4.526"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:55"
+ },
+ {
+ "date": "2023-04-05",
+ "groups": [
+ {
+ "time": "09:08:00",
+ "height": "4.746"
+ },
+ {
+ "time": "21:25:00",
+ "height": "4.762"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2023-04-06",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "4.925"
+ },
+ {
+ "time": "21:54:00",
+ "height": "4.926"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2023-04-07",
+ "groups": [
+ {
+ "time": "10:07:00",
+ "height": "5.033"
+ },
+ {
+ "time": "22:23:00",
+ "height": "5.008"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2023-04-08",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "5.053"
+ },
+ {
+ "time": "22:53:00",
+ "height": "4.991"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "20:02"
+ },
+ {
+ "date": "2023-04-09",
+ "groups": [
+ {
+ "time": "11:08:00",
+ "height": "4.966"
+ },
+ {
+ "time": "23:26:00",
+ "height": "4.862"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "20:04"
+ },
+ {
+ "date": "2023-04-10",
+ "groups": [
+ {
+ "time": "11:45:00",
+ "height": "4.757"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2023-04-11",
+ "groups": [
+ {
+ "time": "00:05:00",
+ "height": "4.620"
+ },
+ {
+ "time": "12:26:00",
+ "height": "4.431"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2023-04-12",
+ "groups": [
+ {
+ "time": "00:49:00",
+ "height": "4.279"
+ },
+ {
+ "time": "13:17:00",
+ "height": "4.009"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2023-04-13",
+ "groups": [
+ {
+ "time": "01:48:00",
+ "height": "3.882"
+ },
+ {
+ "time": "14:27:00",
+ "height": "3.569"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:11"
+ },
+ {
+ "date": "2023-04-14",
+ "groups": [
+ {
+ "time": "03:12:00",
+ "height": "3.556"
+ },
+ {
+ "time": "16:07:00",
+ "height": "3.322"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2023-04-15",
+ "groups": [
+ {
+ "time": "04:57:00",
+ "height": "3.563"
+ },
+ {
+ "time": "17:46:00",
+ "height": "3.514"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:15"
+ },
+ {
+ "date": "2023-04-16",
+ "groups": [
+ {
+ "time": "06:19:00",
+ "height": "3.957"
+ },
+ {
+ "time": "18:57:00",
+ "height": "3.998"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2023-04-17",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.479"
+ },
+ {
+ "time": "19:48:00",
+ "height": "4.501"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2023-04-18",
+ "groups": [
+ {
+ "time": "08:06:00",
+ "height": "4.933"
+ },
+ {
+ "time": "20:31:00",
+ "height": "4.896"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:20"
+ },
+ {
+ "date": "2023-04-19",
+ "groups": [
+ {
+ "time": "08:48:00",
+ "height": "5.238"
+ },
+ {
+ "time": "21:10:00",
+ "height": "5.143"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2023-04-20",
+ "groups": [
+ {
+ "time": "09:28:00",
+ "height": "5.375"
+ },
+ {
+ "time": "21:46:00",
+ "height": "5.242"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2023-04-21",
+ "groups": [
+ {
+ "time": "10:04:00",
+ "height": "5.353"
+ },
+ {
+ "time": "22:21:00",
+ "height": "5.204"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2023-04-22",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "5.190"
+ },
+ {
+ "time": "22:54:00",
+ "height": "5.042"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2023-04-23",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "4.909"
+ },
+ {
+ "time": "23:27:00",
+ "height": "4.777"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2023-04-24",
+ "groups": [
+ {
+ "time": "11:50:00",
+ "height": "4.538"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2023-04-25",
+ "groups": [
+ {
+ "time": "00:04:00",
+ "height": "4.434"
+ },
+ {
+ "time": "12:29:00",
+ "height": "4.112"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2023-04-26",
+ "groups": [
+ {
+ "time": "00:43:00",
+ "height": "4.046"
+ },
+ {
+ "time": "13:11:00",
+ "height": "3.667"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:34"
+ },
+ {
+ "date": "2023-04-27",
+ "groups": [
+ {
+ "time": "01:28:00",
+ "height": "3.644"
+ },
+ {
+ "time": "14:04:00",
+ "height": "3.246"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2023-04-28",
+ "groups": [
+ {
+ "time": "02:32:00",
+ "height": "3.285"
+ },
+ {
+ "time": "15:25:00",
+ "height": "2.945"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2023-04-29",
+ "groups": [
+ {
+ "time": "04:11:00",
+ "height": "3.110"
+ },
+ {
+ "time": "17:11:00",
+ "height": "2.963"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2023-04-30",
+ "groups": [
+ {
+ "time": "05:42:00",
+ "height": "3.281"
+ },
+ {
+ "time": "18:20:00",
+ "height": "3.280"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2023-05-01",
+ "groups": [
+ {
+ "time": "06:40:00",
+ "height": "3.635"
+ },
+ {
+ "time": "19:07:00",
+ "height": "3.686"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2023-05-02",
+ "groups": [
+ {
+ "time": "07:22:00",
+ "height": "4.011"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.082"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2023-05-03",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.351"
+ },
+ {
+ "time": "20:18:00",
+ "height": "4.429"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2023-05-04",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "4.633"
+ },
+ {
+ "time": "20:50:00",
+ "height": "4.712"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2023-05-05",
+ "groups": [
+ {
+ "time": "09:04:00",
+ "height": "4.847"
+ },
+ {
+ "time": "21:23:00",
+ "height": "4.918"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2023-05-06",
+ "groups": [
+ {
+ "time": "09:39:00",
+ "height": "4.980"
+ },
+ {
+ "time": "21:57:00",
+ "height": "5.030"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2023-05-07",
+ "groups": [
+ {
+ "time": "10:13:00",
+ "height": "5.012"
+ },
+ {
+ "time": "22:32:00",
+ "height": "5.033"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2023-05-08",
+ "groups": [
+ {
+ "time": "10:50:00",
+ "height": "4.924"
+ },
+ {
+ "time": "23:09:00",
+ "height": "4.916"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2023-05-09",
+ "groups": [
+ {
+ "time": "11:31:00",
+ "height": "4.711"
+ },
+ {
+ "time": "23:54:00",
+ "height": "4.689"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2023-05-10",
+ "groups": [
+ {
+ "time": "12:21:00",
+ "height": "4.392"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2023-05-11",
+ "groups": [
+ {
+ "time": "00:47:00",
+ "height": "4.383"
+ },
+ {
+ "time": "13:20:00",
+ "height": "4.019"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2023-05-12",
+ "groups": [
+ {
+ "time": "01:53:00",
+ "height": "4.067"
+ },
+ {
+ "time": "14:33:00",
+ "height": "3.693"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2023-05-13",
+ "groups": [
+ {
+ "time": "03:14:00",
+ "height": "3.862"
+ },
+ {
+ "time": "16:02:00",
+ "height": "3.562"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2023-05-14",
+ "groups": [
+ {
+ "time": "04:42:00",
+ "height": "3.892"
+ },
+ {
+ "time": "17:23:00",
+ "height": "3.711"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2023-05-15",
+ "groups": [
+ {
+ "time": "05:52:00",
+ "height": "4.139"
+ },
+ {
+ "time": "18:27:00",
+ "height": "4.036"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2023-05-16",
+ "groups": [
+ {
+ "time": "06:50:00",
+ "height": "4.455"
+ },
+ {
+ "time": "19:19:00",
+ "height": "4.379"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2023-05-17",
+ "groups": [
+ {
+ "time": "07:39:00",
+ "height": "4.722"
+ },
+ {
+ "time": "20:03:00",
+ "height": "4.652"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2023-05-18",
+ "groups": [
+ {
+ "time": "08:22:00",
+ "height": "4.887"
+ },
+ {
+ "time": "20:44:00",
+ "height": "4.827"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2023-05-19",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "4.946"
+ },
+ {
+ "time": "21:20:00",
+ "height": "4.906"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2023-05-20",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "4.909"
+ },
+ {
+ "time": "21:56:00",
+ "height": "4.893"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2023-05-21",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "4.791"
+ },
+ {
+ "time": "22:30:00",
+ "height": "4.796"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2023-05-22",
+ "groups": [
+ {
+ "time": "10:51:00",
+ "height": "4.600"
+ },
+ {
+ "time": "23:04:00",
+ "height": "4.622"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2023-05-23",
+ "groups": [
+ {
+ "time": "11:27:00",
+ "height": "4.347"
+ },
+ {
+ "time": "23:41:00",
+ "height": "4.388"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2023-05-24",
+ "groups": [
+ {
+ "time": "12:07:00",
+ "height": "4.054"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2023-05-25",
+ "groups": [
+ {
+ "time": "00:22:00",
+ "height": "4.117"
+ },
+ {
+ "time": "12:49:00",
+ "height": "3.744"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2023-05-26",
+ "groups": [
+ {
+ "time": "01:07:00",
+ "height": "3.835"
+ },
+ {
+ "time": "13:39:00",
+ "height": "3.450"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2023-05-27",
+ "groups": [
+ {
+ "time": "02:02:00",
+ "height": "3.576"
+ },
+ {
+ "time": "14:41:00",
+ "height": "3.220"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2023-05-28",
+ "groups": [
+ {
+ "time": "03:10:00",
+ "height": "3.401"
+ },
+ {
+ "time": "15:58:00",
+ "height": "3.136"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2023-05-29",
+ "groups": [
+ {
+ "time": "04:30:00",
+ "height": "3.390"
+ },
+ {
+ "time": "17:13:00",
+ "height": "3.261"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2023-05-30",
+ "groups": [
+ {
+ "time": "05:36:00",
+ "height": "3.560"
+ },
+ {
+ "time": "18:09:00",
+ "height": "3.544"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2023-05-31",
+ "groups": [
+ {
+ "time": "06:27:00",
+ "height": "3.836"
+ },
+ {
+ "time": "18:56:00",
+ "height": "3.894"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2023-06-01",
+ "groups": [
+ {
+ "time": "07:12:00",
+ "height": "4.143"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.247"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2023-06-02",
+ "groups": [
+ {
+ "time": "07:53:00",
+ "height": "4.435"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.564"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2023-06-03",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.677"
+ },
+ {
+ "time": "20:55:00",
+ "height": "4.813"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2023-06-04",
+ "groups": [
+ {
+ "time": "09:15:00",
+ "height": "4.843"
+ },
+ {
+ "time": "21:35:00",
+ "height": "4.974"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2023-06-05",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "4.912"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.034"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2023-06-06",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "4.873"
+ },
+ {
+ "time": "23:01:00",
+ "height": "4.989"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2023-06-07",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "4.730"
+ },
+ {
+ "time": "23:53:00",
+ "height": "4.853"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2023-06-08",
+ "groups": [
+ {
+ "time": "12:23:00",
+ "height": "4.506"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2023-06-09",
+ "groups": [
+ {
+ "time": "00:50:00",
+ "height": "4.655"
+ },
+ {
+ "time": "13:23:00",
+ "height": "4.246"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2023-06-10",
+ "groups": [
+ {
+ "time": "01:52:00",
+ "height": "4.440"
+ },
+ {
+ "time": "14:27:00",
+ "height": "4.008"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2023-06-11",
+ "groups": [
+ {
+ "time": "03:00:00",
+ "height": "4.259"
+ },
+ {
+ "time": "15:38:00",
+ "height": "3.856"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2023-06-12",
+ "groups": [
+ {
+ "time": "04:12:00",
+ "height": "4.161"
+ },
+ {
+ "time": "16:50:00",
+ "height": "3.834"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2023-06-13",
+ "groups": [
+ {
+ "time": "05:18:00",
+ "height": "4.162"
+ },
+ {
+ "time": "17:51:00",
+ "height": "3.934"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2023-06-14",
+ "groups": [
+ {
+ "time": "06:16:00",
+ "height": "4.231"
+ },
+ {
+ "time": "18:46:00",
+ "height": "4.102"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2023-06-15",
+ "groups": [
+ {
+ "time": "07:10:00",
+ "height": "4.325"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.280"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2023-06-16",
+ "groups": [
+ {
+ "time": "07:59:00",
+ "height": "4.409"
+ },
+ {
+ "time": "20:21:00",
+ "height": "4.434"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2023-06-17",
+ "groups": [
+ {
+ "time": "08:42:00",
+ "height": "4.466"
+ },
+ {
+ "time": "21:02:00",
+ "height": "4.543"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2023-06-18",
+ "groups": [
+ {
+ "time": "09:23:00",
+ "height": "4.487"
+ },
+ {
+ "time": "21:40:00",
+ "height": "4.598"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2023-06-19",
+ "groups": [
+ {
+ "time": "10:00:00",
+ "height": "4.463"
+ },
+ {
+ "time": "22:16:00",
+ "height": "4.592"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2023-06-20",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "4.395"
+ },
+ {
+ "time": "22:50:00",
+ "height": "4.531"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2023-06-21",
+ "groups": [
+ {
+ "time": "11:11:00",
+ "height": "4.281"
+ },
+ {
+ "time": "23:26:00",
+ "height": "4.422"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2023-06-22",
+ "groups": [
+ {
+ "time": "11:50:00",
+ "height": "4.130"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2023-06-23",
+ "groups": [
+ {
+ "time": "00:05:00",
+ "height": "4.277"
+ },
+ {
+ "time": "12:29:00",
+ "height": "3.952"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2023-06-24",
+ "groups": [
+ {
+ "time": "00:46:00",
+ "height": "4.106"
+ },
+ {
+ "time": "13:12:00",
+ "height": "3.762"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2023-06-25",
+ "groups": [
+ {
+ "time": "01:30:00",
+ "height": "3.922"
+ },
+ {
+ "time": "13:59:00",
+ "height": "3.579"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2023-06-26",
+ "groups": [
+ {
+ "time": "02:20:00",
+ "height": "3.748"
+ },
+ {
+ "time": "14:54:00",
+ "height": "3.437"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2023-06-27",
+ "groups": [
+ {
+ "time": "03:19:00",
+ "height": "3.621"
+ },
+ {
+ "time": "15:58:00",
+ "height": "3.385"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2023-06-28",
+ "groups": [
+ {
+ "time": "04:25:00",
+ "height": "3.588"
+ },
+ {
+ "time": "17:04:00",
+ "height": "3.469"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2023-06-29",
+ "groups": [
+ {
+ "time": "05:28:00",
+ "height": "3.684"
+ },
+ {
+ "time": "18:03:00",
+ "height": "3.695"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2023-06-30",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "3.897"
+ },
+ {
+ "time": "18:57:00",
+ "height": "4.012"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2023-07-01",
+ "groups": [
+ {
+ "time": "07:19:00",
+ "height": "4.173"
+ },
+ {
+ "time": "19:47:00",
+ "height": "4.358"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2023-07-02",
+ "groups": [
+ {
+ "time": "08:10:00",
+ "height": "4.456"
+ },
+ {
+ "time": "20:35:00",
+ "height": "4.680"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2023-07-03",
+ "groups": [
+ {
+ "time": "08:59:00",
+ "height": "4.699"
+ },
+ {
+ "time": "21:22:00",
+ "height": "4.942"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2023-07-04",
+ "groups": [
+ {
+ "time": "09:48:00",
+ "height": "4.872"
+ },
+ {
+ "time": "22:09:00",
+ "height": "5.122"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2023-07-05",
+ "groups": [
+ {
+ "time": "10:35:00",
+ "height": "4.952"
+ },
+ {
+ "time": "22:56:00",
+ "height": "5.204"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2023-07-06",
+ "groups": [
+ {
+ "time": "11:24:00",
+ "height": "4.929"
+ },
+ {
+ "time": "23:47:00",
+ "height": "5.179"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2023-07-07",
+ "groups": [
+ {
+ "time": "12:16:00",
+ "height": "4.802"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2023-07-08",
+ "groups": [
+ {
+ "time": "00:42:00",
+ "height": "5.048"
+ },
+ {
+ "time": "13:09:00",
+ "height": "4.590"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2023-07-09",
+ "groups": [
+ {
+ "time": "01:36:00",
+ "height": "4.824"
+ },
+ {
+ "time": "14:04:00",
+ "height": "4.327"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2023-07-10",
+ "groups": [
+ {
+ "time": "02:32:00",
+ "height": "4.540"
+ },
+ {
+ "time": "15:01:00",
+ "height": "4.053"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2023-07-11",
+ "groups": [
+ {
+ "time": "03:33:00",
+ "height": "4.239"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.827"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2023-07-12",
+ "groups": [
+ {
+ "time": "04:39:00",
+ "height": "3.987"
+ },
+ {
+ "time": "17:11:00",
+ "height": "3.711"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2023-07-13",
+ "groups": [
+ {
+ "time": "05:42:00",
+ "height": "3.848"
+ },
+ {
+ "time": "18:15:00",
+ "height": "3.743"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2023-07-14",
+ "groups": [
+ {
+ "time": "06:44:00",
+ "height": "3.847"
+ },
+ {
+ "time": "19:15:00",
+ "height": "3.899"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2023-07-15",
+ "groups": [
+ {
+ "time": "07:42:00",
+ "height": "3.956"
+ },
+ {
+ "time": "20:07:00",
+ "height": "4.113"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2023-07-16",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "4.109"
+ },
+ {
+ "time": "20:50:00",
+ "height": "4.316"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2023-07-17",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "4.250"
+ },
+ {
+ "time": "21:29:00",
+ "height": "4.470"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2023-07-18",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "4.349"
+ },
+ {
+ "time": "22:05:00",
+ "height": "4.564"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2023-07-19",
+ "groups": [
+ {
+ "time": "10:23:00",
+ "height": "4.395"
+ },
+ {
+ "time": "22:37:00",
+ "height": "4.599"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2023-07-20",
+ "groups": [
+ {
+ "time": "10:55:00",
+ "height": "4.393"
+ },
+ {
+ "time": "23:08:00",
+ "height": "4.585"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2023-07-21",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "4.346"
+ },
+ {
+ "time": "23:42:00",
+ "height": "4.525"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2023-07-22",
+ "groups": [
+ {
+ "time": "12:03:00",
+ "height": "4.254"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2023-07-23",
+ "groups": [
+ {
+ "time": "00:18:00",
+ "height": "4.417"
+ },
+ {
+ "time": "12:38:00",
+ "height": "4.119"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2023-07-24",
+ "groups": [
+ {
+ "time": "00:55:00",
+ "height": "4.262"
+ },
+ {
+ "time": "13:16:00",
+ "height": "3.948"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2023-07-25",
+ "groups": [
+ {
+ "time": "01:35:00",
+ "height": "4.069"
+ },
+ {
+ "time": "14:00:00",
+ "height": "3.758"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2023-07-26",
+ "groups": [
+ {
+ "time": "02:21:00",
+ "height": "3.860"
+ },
+ {
+ "time": "14:53:00",
+ "height": "3.581"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2023-07-27",
+ "groups": [
+ {
+ "time": "03:20:00",
+ "height": "3.668"
+ },
+ {
+ "time": "16:01:00",
+ "height": "3.471"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2023-07-28",
+ "groups": [
+ {
+ "time": "04:33:00",
+ "height": "3.563"
+ },
+ {
+ "time": "17:16:00",
+ "height": "3.523"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2023-07-29",
+ "groups": [
+ {
+ "time": "05:48:00",
+ "height": "3.641"
+ },
+ {
+ "time": "18:26:00",
+ "height": "3.789"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2023-07-30",
+ "groups": [
+ {
+ "time": "06:57:00",
+ "height": "3.917"
+ },
+ {
+ "time": "19:28:00",
+ "height": "4.198"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2023-07-31",
+ "groups": [
+ {
+ "time": "07:57:00",
+ "height": "4.298"
+ },
+ {
+ "time": "20:23:00",
+ "height": "4.648"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2023-08-01",
+ "groups": [
+ {
+ "time": "08:50:00",
+ "height": "4.683"
+ },
+ {
+ "time": "21:13:00",
+ "height": "5.055"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2023-08-02",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "4.997"
+ },
+ {
+ "time": "22:00:00",
+ "height": "5.364"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2023-08-03",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "5.191"
+ },
+ {
+ "time": "22:45:00",
+ "height": "5.534"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2023-08-04",
+ "groups": [
+ {
+ "time": "11:09:00",
+ "height": "5.238"
+ },
+ {
+ "time": "23:31:00",
+ "height": "5.540"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2023-08-05",
+ "groups": [
+ {
+ "time": "11:56:00",
+ "height": "5.131"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2023-08-06",
+ "groups": [
+ {
+ "time": "00:20:00",
+ "height": "5.373"
+ },
+ {
+ "time": "12:43:00",
+ "height": "4.885"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2023-08-07",
+ "groups": [
+ {
+ "time": "01:08:00",
+ "height": "5.052"
+ },
+ {
+ "time": "13:30:00",
+ "height": "4.536"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2023-08-08",
+ "groups": [
+ {
+ "time": "01:56:00",
+ "height": "4.620"
+ },
+ {
+ "time": "14:19:00",
+ "height": "4.134"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2023-08-09",
+ "groups": [
+ {
+ "time": "02:49:00",
+ "height": "4.139"
+ },
+ {
+ "time": "15:17:00",
+ "height": "3.741"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2023-08-10",
+ "groups": [
+ {
+ "time": "03:52:00",
+ "height": "3.696"
+ },
+ {
+ "time": "16:30:00",
+ "height": "3.454"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2023-08-11",
+ "groups": [
+ {
+ "time": "05:09:00",
+ "height": "3.419"
+ },
+ {
+ "time": "17:50:00",
+ "height": "3.408"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2023-08-12",
+ "groups": [
+ {
+ "time": "06:27:00",
+ "height": "3.427"
+ },
+ {
+ "time": "19:04:00",
+ "height": "3.633"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2023-08-13",
+ "groups": [
+ {
+ "time": "07:34:00",
+ "height": "3.669"
+ },
+ {
+ "time": "19:59:00",
+ "height": "3.973"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2023-08-14",
+ "groups": [
+ {
+ "time": "08:22:00",
+ "height": "3.974"
+ },
+ {
+ "time": "20:40:00",
+ "height": "4.290"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2023-08-15",
+ "groups": [
+ {
+ "time": "09:01:00",
+ "height": "4.239"
+ },
+ {
+ "time": "21:16:00",
+ "height": "4.530"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2023-08-16",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "4.432"
+ },
+ {
+ "time": "21:48:00",
+ "height": "4.688"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2023-08-17",
+ "groups": [
+ {
+ "time": "10:05:00",
+ "height": "4.553"
+ },
+ {
+ "time": "22:17:00",
+ "height": "4.776"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2023-08-18",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "4.613"
+ },
+ {
+ "time": "22:45:00",
+ "height": "4.807"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2023-08-19",
+ "groups": [
+ {
+ "time": "11:01:00",
+ "height": "4.619"
+ },
+ {
+ "time": "23:14:00",
+ "height": "4.782"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2023-08-20",
+ "groups": [
+ {
+ "time": "11:31:00",
+ "height": "4.566"
+ },
+ {
+ "time": "23:45:00",
+ "height": "4.693"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2023-08-21",
+ "groups": [
+ {
+ "time": "12:03:00",
+ "height": "4.448"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2023-08-22",
+ "groups": [
+ {
+ "time": "00:18:00",
+ "height": "4.534"
+ },
+ {
+ "time": "12:36:00",
+ "height": "4.266"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2023-08-23",
+ "groups": [
+ {
+ "time": "00:52:00",
+ "height": "4.309"
+ },
+ {
+ "time": "13:14:00",
+ "height": "4.030"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2023-08-24",
+ "groups": [
+ {
+ "time": "01:34:00",
+ "height": "4.027"
+ },
+ {
+ "time": "14:01:00",
+ "height": "3.756"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2023-08-25",
+ "groups": [
+ {
+ "time": "02:28:00",
+ "height": "3.707"
+ },
+ {
+ "time": "15:07:00",
+ "height": "3.490"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2023-08-26",
+ "groups": [
+ {
+ "time": "03:46:00",
+ "height": "3.431"
+ },
+ {
+ "time": "16:42:00",
+ "height": "3.394"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:20"
+ },
+ {
+ "date": "2023-08-27",
+ "groups": [
+ {
+ "time": "05:24:00",
+ "height": "3.417"
+ },
+ {
+ "time": "18:10:00",
+ "height": "3.660"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2023-08-28",
+ "groups": [
+ {
+ "time": "06:47:00",
+ "height": "3.774"
+ },
+ {
+ "time": "19:19:00",
+ "height": "4.189"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:15"
+ },
+ {
+ "date": "2023-08-29",
+ "groups": [
+ {
+ "time": "07:50:00",
+ "height": "4.303"
+ },
+ {
+ "time": "20:14:00",
+ "height": "4.772"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2023-08-30",
+ "groups": [
+ {
+ "time": "08:41:00",
+ "height": "4.815"
+ },
+ {
+ "time": "21:02:00",
+ "height": "5.276"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:11"
+ },
+ {
+ "date": "2023-08-31",
+ "groups": [
+ {
+ "time": "09:27:00",
+ "height": "5.209"
+ },
+ {
+ "time": "21:46:00",
+ "height": "5.627"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2023-09-01",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "5.436"
+ },
+ {
+ "time": "22:27:00",
+ "height": "5.787"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2023-09-02",
+ "groups": [
+ {
+ "time": "10:48:00",
+ "height": "5.479"
+ },
+ {
+ "time": "23:07:00",
+ "height": "5.739"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:04"
+ },
+ {
+ "date": "2023-09-03",
+ "groups": [
+ {
+ "time": "11:28:00",
+ "height": "5.340"
+ },
+ {
+ "time": "23:51:00",
+ "height": "5.489"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:02"
+ },
+ {
+ "date": "2023-09-04",
+ "groups": [
+ {
+ "time": "12:10:00",
+ "height": "5.043"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2023-09-05",
+ "groups": [
+ {
+ "time": "00:33:00",
+ "height": "5.070"
+ },
+ {
+ "time": "12:51:00",
+ "height": "4.629"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2023-09-06",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "4.539"
+ },
+ {
+ "time": "13:35:00",
+ "height": "4.150"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2023-09-07",
+ "groups": [
+ {
+ "time": "02:04:00",
+ "height": "3.963"
+ },
+ {
+ "time": "14:27:00",
+ "height": "3.666"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2023-09-08",
+ "groups": [
+ {
+ "time": "03:05:00",
+ "height": "3.424"
+ },
+ {
+ "time": "15:43:00",
+ "height": "3.271"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2023-09-09",
+ "groups": [
+ {
+ "time": "04:38:00",
+ "height": "3.085"
+ },
+ {
+ "time": "17:29:00",
+ "height": "3.197"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2023-09-10",
+ "groups": [
+ {
+ "time": "06:16:00",
+ "height": "3.177"
+ },
+ {
+ "time": "18:52:00",
+ "height": "3.522"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "19:45"
+ },
+ {
+ "date": "2023-09-11",
+ "groups": [
+ {
+ "time": "07:23:00",
+ "height": "3.561"
+ },
+ {
+ "time": "19:44:00",
+ "height": "3.959"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:43"
+ },
+ {
+ "date": "2023-09-12",
+ "groups": [
+ {
+ "time": "08:05:00",
+ "height": "3.973"
+ },
+ {
+ "time": "20:21:00",
+ "height": "4.344"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:40"
+ },
+ {
+ "date": "2023-09-13",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "4.316"
+ },
+ {
+ "time": "20:53:00",
+ "height": "4.632"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "19:38"
+ },
+ {
+ "date": "2023-09-14",
+ "groups": [
+ {
+ "time": "09:10:00",
+ "height": "4.566"
+ },
+ {
+ "time": "21:23:00",
+ "height": "4.825"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:35"
+ },
+ {
+ "date": "2023-09-15",
+ "groups": [
+ {
+ "time": "09:39:00",
+ "height": "4.733"
+ },
+ {
+ "time": "21:51:00",
+ "height": "4.940"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:33"
+ },
+ {
+ "date": "2023-09-16",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "4.831"
+ },
+ {
+ "time": "22:18:00",
+ "height": "4.991"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:31"
+ },
+ {
+ "date": "2023-09-17",
+ "groups": [
+ {
+ "time": "10:33:00",
+ "height": "4.865"
+ },
+ {
+ "time": "22:45:00",
+ "height": "4.975"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "19:28"
+ },
+ {
+ "date": "2023-09-18",
+ "groups": [
+ {
+ "time": "10:59:00",
+ "height": "4.828"
+ },
+ {
+ "time": "23:12:00",
+ "height": "4.884"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "19:26"
+ },
+ {
+ "date": "2023-09-19",
+ "groups": [
+ {
+ "time": "11:29:00",
+ "height": "4.710"
+ },
+ {
+ "time": "23:44:00",
+ "height": "4.707"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:23"
+ },
+ {
+ "date": "2023-09-20",
+ "groups": [
+ {
+ "time": "12:03:00",
+ "height": "4.507"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "19:21"
+ },
+ {
+ "date": "2023-09-21",
+ "groups": [
+ {
+ "time": "00:19:00",
+ "height": "4.443"
+ },
+ {
+ "time": "12:39:00",
+ "height": "4.226"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "19:18"
+ },
+ {
+ "date": "2023-09-22",
+ "groups": [
+ {
+ "time": "01:00:00",
+ "height": "4.093"
+ },
+ {
+ "time": "13:26:00",
+ "height": "3.878"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "19:16"
+ },
+ {
+ "date": "2023-09-23",
+ "groups": [
+ {
+ "time": "01:56:00",
+ "height": "3.682"
+ },
+ {
+ "time": "14:36:00",
+ "height": "3.525"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "19:14"
+ },
+ {
+ "date": "2023-09-24",
+ "groups": [
+ {
+ "time": "03:24:00",
+ "height": "3.329"
+ },
+ {
+ "time": "16:26:00",
+ "height": "3.393"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "19:11"
+ },
+ {
+ "date": "2023-09-25",
+ "groups": [
+ {
+ "time": "05:18:00",
+ "height": "3.356"
+ },
+ {
+ "time": "18:02:00",
+ "height": "3.736"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "19:09"
+ },
+ {
+ "date": "2023-09-26",
+ "groups": [
+ {
+ "time": "06:42:00",
+ "height": "3.832"
+ },
+ {
+ "time": "19:09:00",
+ "height": "4.344"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "19:06"
+ },
+ {
+ "date": "2023-09-27",
+ "groups": [
+ {
+ "time": "07:40:00",
+ "height": "4.434"
+ },
+ {
+ "time": "20:00:00",
+ "height": "4.953"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "19:04"
+ },
+ {
+ "date": "2023-09-28",
+ "groups": [
+ {
+ "time": "08:26:00",
+ "height": "4.962"
+ },
+ {
+ "time": "20:44:00",
+ "height": "5.431"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "19:02"
+ },
+ {
+ "date": "2023-09-29",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "5.336"
+ },
+ {
+ "time": "21:24:00",
+ "height": "5.722"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "18:59"
+ },
+ {
+ "date": "2023-09-30",
+ "groups": [
+ {
+ "time": "09:46:00",
+ "height": "5.529"
+ },
+ {
+ "time": "22:04:00",
+ "height": "5.806"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "18:57"
+ },
+ {
+ "date": "2023-10-01",
+ "groups": [
+ {
+ "time": "10:22:00",
+ "height": "5.537"
+ },
+ {
+ "time": "22:41:00",
+ "height": "5.685"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "18:54"
+ },
+ {
+ "date": "2023-10-02",
+ "groups": [
+ {
+ "time": "10:58:00",
+ "height": "5.374"
+ },
+ {
+ "time": "23:19:00",
+ "height": "5.380"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "18:52"
+ },
+ {
+ "date": "2023-10-03",
+ "groups": [
+ {
+ "time": "11:37:00",
+ "height": "5.063"
+ },
+ {
+ "time": "23:59:00",
+ "height": "4.931"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "18:50"
+ },
+ {
+ "date": "2023-10-04",
+ "groups": [
+ {
+ "time": "12:16:00",
+ "height": "4.644"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "18:47"
+ },
+ {
+ "date": "2023-10-05",
+ "groups": [
+ {
+ "time": "00:41:00",
+ "height": "4.391"
+ },
+ {
+ "time": "12:57:00",
+ "height": "4.163"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "18:45"
+ },
+ {
+ "date": "2023-10-06",
+ "groups": [
+ {
+ "time": "01:25:00",
+ "height": "3.824"
+ },
+ {
+ "time": "13:46:00",
+ "height": "3.674"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "18:43"
+ },
+ {
+ "date": "2023-10-07",
+ "groups": [
+ {
+ "time": "02:23:00",
+ "height": "3.298"
+ },
+ {
+ "time": "14:58:00",
+ "height": "3.258"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2023-10-08",
+ "groups": [
+ {
+ "time": "04:01:00",
+ "height": "2.960"
+ },
+ {
+ "time": "16:58:00",
+ "height": "3.154"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2023-10-09",
+ "groups": [
+ {
+ "time": "05:51:00",
+ "height": "3.082"
+ },
+ {
+ "time": "18:23:00",
+ "height": "3.475"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2023-10-10",
+ "groups": [
+ {
+ "time": "06:55:00",
+ "height": "3.496"
+ },
+ {
+ "time": "19:13:00",
+ "height": "3.913"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2023-10-11",
+ "groups": [
+ {
+ "time": "07:36:00",
+ "height": "3.936"
+ },
+ {
+ "time": "19:50:00",
+ "height": "4.312"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2023-10-12",
+ "groups": [
+ {
+ "time": "08:10:00",
+ "height": "4.313"
+ },
+ {
+ "time": "20:23:00",
+ "height": "4.624"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2023-10-13",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "4.606"
+ },
+ {
+ "time": "20:52:00",
+ "height": "4.845"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2023-10-14",
+ "groups": [
+ {
+ "time": "09:08:00",
+ "height": "4.816"
+ },
+ {
+ "time": "21:20:00",
+ "height": "4.988"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2023-10-15",
+ "groups": [
+ {
+ "time": "09:36:00",
+ "height": "4.954"
+ },
+ {
+ "time": "21:49:00",
+ "height": "5.060"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2023-10-16",
+ "groups": [
+ {
+ "time": "10:05:00",
+ "height": "5.017"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.056"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2023-10-17",
+ "groups": [
+ {
+ "time": "10:33:00",
+ "height": "4.996"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.964"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2023-10-18",
+ "groups": [
+ {
+ "time": "11:03:00",
+ "height": "4.878"
+ },
+ {
+ "time": "23:19:00",
+ "height": "4.770"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2023-10-19",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "4.661"
+ },
+ {
+ "time": "23:58:00",
+ "height": "4.474"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2023-10-20",
+ "groups": [
+ {
+ "time": "12:21:00",
+ "height": "4.353"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2023-10-21",
+ "groups": [
+ {
+ "time": "00:45:00",
+ "height": "4.090"
+ },
+ {
+ "time": "13:14:00",
+ "height": "3.987"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2023-10-22",
+ "groups": [
+ {
+ "time": "01:49:00",
+ "height": "3.672"
+ },
+ {
+ "time": "14:33:00",
+ "height": "3.661"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2023-10-23",
+ "groups": [
+ {
+ "time": "03:24:00",
+ "height": "3.392"
+ },
+ {
+ "time": "16:19:00",
+ "height": "3.615"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2023-10-24",
+ "groups": [
+ {
+ "time": "05:10:00",
+ "height": "3.515"
+ },
+ {
+ "time": "17:46:00",
+ "height": "3.970"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2023-10-25",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "3.979"
+ },
+ {
+ "time": "18:48:00",
+ "height": "4.501"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2023-10-26",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.507"
+ },
+ {
+ "time": "19:38:00",
+ "height": "4.996"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2023-10-27",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "4.949"
+ },
+ {
+ "time": "20:21:00",
+ "height": "5.352"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2023-10-28",
+ "groups": [
+ {
+ "time": "08:44:00",
+ "height": "5.247"
+ },
+ {
+ "time": "21:02:00",
+ "height": "5.536"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "17:54"
+ },
+ {
+ "date": "2023-10-29",
+ "groups": [
+ {
+ "time": "09:21:00",
+ "height": "5.390"
+ },
+ {
+ "time": "21:40:00",
+ "height": "5.546"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "17:52"
+ },
+ {
+ "date": "2023-10-30",
+ "groups": [
+ {
+ "time": "08:58:00",
+ "height": "5.384"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.398"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2023-10-31",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "5.239"
+ },
+ {
+ "time": "21:54:00",
+ "height": "5.112"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2023-11-01",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "4.973"
+ },
+ {
+ "time": "22:31:00",
+ "height": "4.721"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2023-11-02",
+ "groups": [
+ {
+ "time": "10:47:00",
+ "height": "4.616"
+ },
+ {
+ "time": "23:13:00",
+ "height": "4.267"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2023-11-03",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "4.209"
+ },
+ {
+ "time": "23:58:00",
+ "height": "3.799"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2023-11-04",
+ "groups": [
+ {
+ "time": "12:17:00",
+ "height": "3.795"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2023-11-05",
+ "groups": [
+ {
+ "time": "00:53:00",
+ "height": "3.371"
+ },
+ {
+ "time": "13:22:00",
+ "height": "3.440"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2023-11-06",
+ "groups": [
+ {
+ "time": "02:13:00",
+ "height": "3.075"
+ },
+ {
+ "time": "14:59:00",
+ "height": "3.275"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2023-11-07",
+ "groups": [
+ {
+ "time": "03:56:00",
+ "height": "3.084"
+ },
+ {
+ "time": "16:28:00",
+ "height": "3.431"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2023-11-08",
+ "groups": [
+ {
+ "time": "05:06:00",
+ "height": "3.380"
+ },
+ {
+ "time": "17:25:00",
+ "height": "3.761"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2023-11-09",
+ "groups": [
+ {
+ "time": "05:54:00",
+ "height": "3.766"
+ },
+ {
+ "time": "18:09:00",
+ "height": "4.113"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2023-11-10",
+ "groups": [
+ {
+ "time": "06:31:00",
+ "height": "4.141"
+ },
+ {
+ "time": "18:44:00",
+ "height": "4.426"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2023-11-11",
+ "groups": [
+ {
+ "time": "07:04:00",
+ "height": "4.467"
+ },
+ {
+ "time": "19:17:00",
+ "height": "4.678"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2023-11-12",
+ "groups": [
+ {
+ "time": "07:35:00",
+ "height": "4.730"
+ },
+ {
+ "time": "19:49:00",
+ "height": "4.863"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2023-11-13",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "4.922"
+ },
+ {
+ "time": "20:21:00",
+ "height": "4.977"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2023-11-14",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "5.032"
+ },
+ {
+ "time": "20:55:00",
+ "height": "5.007"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2023-11-15",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "5.048"
+ },
+ {
+ "time": "21:29:00",
+ "height": "4.939"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2023-11-16",
+ "groups": [
+ {
+ "time": "09:48:00",
+ "height": "4.963"
+ },
+ {
+ "time": "22:07:00",
+ "height": "4.767"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2023-11-17",
+ "groups": [
+ {
+ "time": "10:28:00",
+ "height": "4.778"
+ },
+ {
+ "time": "22:53:00",
+ "height": "4.498"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2023-11-18",
+ "groups": [
+ {
+ "time": "11:19:00",
+ "height": "4.515"
+ },
+ {
+ "time": "23:48:00",
+ "height": "4.167"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2023-11-19",
+ "groups": [
+ {
+ "time": "12:20:00",
+ "height": "4.226"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2023-11-20",
+ "groups": [
+ {
+ "time": "00:56:00",
+ "height": "3.851"
+ },
+ {
+ "time": "13:35:00",
+ "height": "4.008"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2023-11-21",
+ "groups": [
+ {
+ "time": "02:19:00",
+ "height": "3.674"
+ },
+ {
+ "time": "15:01:00",
+ "height": "3.979"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2023-11-22",
+ "groups": [
+ {
+ "time": "03:46:00",
+ "height": "3.744"
+ },
+ {
+ "time": "16:17:00",
+ "height": "4.170"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2023-11-23",
+ "groups": [
+ {
+ "time": "04:53:00",
+ "height": "4.026"
+ },
+ {
+ "time": "17:18:00",
+ "height": "4.476"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2023-11-24",
+ "groups": [
+ {
+ "time": "05:49:00",
+ "height": "4.376"
+ },
+ {
+ "time": "18:11:00",
+ "height": "4.770"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2023-11-25",
+ "groups": [
+ {
+ "time": "06:37:00",
+ "height": "4.689"
+ },
+ {
+ "time": "18:58:00",
+ "height": "4.982"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2023-11-26",
+ "groups": [
+ {
+ "time": "07:20:00",
+ "height": "4.916"
+ },
+ {
+ "time": "19:40:00",
+ "height": "5.084"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2023-11-27",
+ "groups": [
+ {
+ "time": "08:01:00",
+ "height": "5.043"
+ },
+ {
+ "time": "20:20:00",
+ "height": "5.082"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2023-11-28",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "5.068"
+ },
+ {
+ "time": "21:00:00",
+ "height": "4.983"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2023-11-29",
+ "groups": [
+ {
+ "time": "09:16:00",
+ "height": "4.995"
+ },
+ {
+ "time": "21:37:00",
+ "height": "4.798"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2023-11-30",
+ "groups": [
+ {
+ "time": "09:52:00",
+ "height": "4.832"
+ },
+ {
+ "time": "22:14:00",
+ "height": "4.543"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2023-12-01",
+ "groups": [
+ {
+ "time": "10:30:00",
+ "height": "4.597"
+ },
+ {
+ "time": "22:55:00",
+ "height": "4.242"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2023-12-02",
+ "groups": [
+ {
+ "time": "11:12:00",
+ "height": "4.321"
+ },
+ {
+ "time": "23:38:00",
+ "height": "3.925"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2023-12-03",
+ "groups": [
+ {
+ "time": "11:57:00",
+ "height": "4.032"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2023-12-04",
+ "groups": [
+ {
+ "time": "00:27:00",
+ "height": "3.623"
+ },
+ {
+ "time": "12:49:00",
+ "height": "3.763"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2023-12-05",
+ "groups": [
+ {
+ "time": "01:25:00",
+ "height": "3.374"
+ },
+ {
+ "time": "13:53:00",
+ "height": "3.558"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2023-12-06",
+ "groups": [
+ {
+ "time": "02:35:00",
+ "height": "3.238"
+ },
+ {
+ "time": "15:09:00",
+ "height": "3.482"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2023-12-07",
+ "groups": [
+ {
+ "time": "03:53:00",
+ "height": "3.286"
+ },
+ {
+ "time": "16:19:00",
+ "height": "3.577"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2023-12-08",
+ "groups": [
+ {
+ "time": "04:54:00",
+ "height": "3.507"
+ },
+ {
+ "time": "17:13:00",
+ "height": "3.795"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2023-12-09",
+ "groups": [
+ {
+ "time": "05:42:00",
+ "height": "3.818"
+ },
+ {
+ "time": "17:59:00",
+ "height": "4.064"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2023-12-10",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "4.154"
+ },
+ {
+ "time": "18:41:00",
+ "height": "4.338"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2023-12-11",
+ "groups": [
+ {
+ "time": "07:03:00",
+ "height": "4.471"
+ },
+ {
+ "time": "19:20:00",
+ "height": "4.582"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2023-12-12",
+ "groups": [
+ {
+ "time": "07:41:00",
+ "height": "4.739"
+ },
+ {
+ "time": "20:00:00",
+ "height": "4.771"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2023-12-13",
+ "groups": [
+ {
+ "time": "08:20:00",
+ "height": "4.936"
+ },
+ {
+ "time": "20:40:00",
+ "height": "4.885"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2023-12-14",
+ "groups": [
+ {
+ "time": "09:00:00",
+ "height": "5.048"
+ },
+ {
+ "time": "21:22:00",
+ "height": "4.909"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2023-12-15",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "5.066"
+ },
+ {
+ "time": "22:04:00",
+ "height": "4.839"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2023-12-16",
+ "groups": [
+ {
+ "time": "10:28:00",
+ "height": "4.996"
+ },
+ {
+ "time": "22:55:00",
+ "height": "4.682"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2023-12-17",
+ "groups": [
+ {
+ "time": "11:21:00",
+ "height": "4.850"
+ },
+ {
+ "time": "23:50:00",
+ "height": "4.463"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2023-12-18",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "4.657"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2023-12-19",
+ "groups": [
+ {
+ "time": "00:50:00",
+ "height": "4.224"
+ },
+ {
+ "time": "13:21:00",
+ "height": "4.456"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2023-12-20",
+ "groups": [
+ {
+ "time": "01:55:00",
+ "height": "4.017"
+ },
+ {
+ "time": "14:30:00",
+ "height": "4.291"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2023-12-21",
+ "groups": [
+ {
+ "time": "03:06:00",
+ "height": "3.900"
+ },
+ {
+ "time": "15:41:00",
+ "height": "4.207"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2023-12-22",
+ "groups": [
+ {
+ "time": "04:15:00",
+ "height": "3.913"
+ },
+ {
+ "time": "16:43:00",
+ "height": "4.218"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2023-12-23",
+ "groups": [
+ {
+ "time": "05:16:00",
+ "height": "4.045"
+ },
+ {
+ "time": "17:42:00",
+ "height": "4.301"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2023-12-24",
+ "groups": [
+ {
+ "time": "06:12:00",
+ "height": "4.243"
+ },
+ {
+ "time": "18:37:00",
+ "height": "4.419"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2023-12-25",
+ "groups": [
+ {
+ "time": "07:02:00",
+ "height": "4.453"
+ },
+ {
+ "time": "19:26:00",
+ "height": "4.530"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2023-12-26",
+ "groups": [
+ {
+ "time": "07:47:00",
+ "height": "4.628"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.605"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2023-12-27",
+ "groups": [
+ {
+ "time": "08:29:00",
+ "height": "4.744"
+ },
+ {
+ "time": "20:50:00",
+ "height": "4.631"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2023-12-28",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "4.786"
+ },
+ {
+ "time": "21:27:00",
+ "height": "4.595"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2023-12-29",
+ "groups": [
+ {
+ "time": "09:42:00",
+ "height": "4.754"
+ },
+ {
+ "time": "22:02:00",
+ "height": "4.501"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2023-12-30",
+ "groups": [
+ {
+ "time": "10:17:00",
+ "height": "4.658"
+ },
+ {
+ "time": "22:40:00",
+ "height": "4.357"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2023-12-31",
+ "groups": [
+ {
+ "time": "10:55:00",
+ "height": "4.514"
+ },
+ {
+ "time": "23:18:00",
+ "height": "4.177"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2024-01-01",
+ "groups": [
+ {
+ "time": "11:34:00",
+ "height": "4.334"
+ },
+ {
+ "time": "23:57:00",
+ "height": "3.971"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2024-01-02",
+ "groups": [
+ {
+ "time": "12:14:00",
+ "height": "4.126"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2024-01-03",
+ "groups": [
+ {
+ "time": "00:39:00",
+ "height": "3.753"
+ },
+ {
+ "time": "12:59:00",
+ "height": "3.904"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2024-01-04",
+ "groups": [
+ {
+ "time": "01:27:00",
+ "height": "3.543"
+ },
+ {
+ "time": "13:51:00",
+ "height": "3.691"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2024-01-05",
+ "groups": [
+ {
+ "time": "02:25:00",
+ "height": "3.384"
+ },
+ {
+ "time": "14:53:00",
+ "height": "3.538"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2024-01-06",
+ "groups": [
+ {
+ "time": "03:36:00",
+ "height": "3.340"
+ },
+ {
+ "time": "16:03:00",
+ "height": "3.511"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2024-01-07",
+ "groups": [
+ {
+ "time": "04:43:00",
+ "height": "3.473"
+ },
+ {
+ "time": "17:09:00",
+ "height": "3.651"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2024-01-08",
+ "groups": [
+ {
+ "time": "05:43:00",
+ "height": "3.761"
+ },
+ {
+ "time": "18:06:00",
+ "height": "3.919"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2024-01-09",
+ "groups": [
+ {
+ "time": "06:35:00",
+ "height": "4.129"
+ },
+ {
+ "time": "18:58:00",
+ "height": "4.243"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2024-01-10",
+ "groups": [
+ {
+ "time": "07:22:00",
+ "height": "4.509"
+ },
+ {
+ "time": "19:46:00",
+ "height": "4.561"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2024-01-11",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "4.851"
+ },
+ {
+ "time": "20:31:00",
+ "height": "4.828"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2024-01-12",
+ "groups": [
+ {
+ "time": "08:52:00",
+ "height": "5.122"
+ },
+ {
+ "time": "21:16:00",
+ "height": "5.010"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2024-01-13",
+ "groups": [
+ {
+ "time": "09:37:00",
+ "height": "5.298"
+ },
+ {
+ "time": "22:00:00",
+ "height": "5.083"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2024-01-14",
+ "groups": [
+ {
+ "time": "10:21:00",
+ "height": "5.358"
+ },
+ {
+ "time": "22:49:00",
+ "height": "5.035"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2024-01-15",
+ "groups": [
+ {
+ "time": "11:12:00",
+ "height": "5.291"
+ },
+ {
+ "time": "23:38:00",
+ "height": "4.869"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2024-01-16",
+ "groups": [
+ {
+ "time": "12:03:00",
+ "height": "5.098"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2024-01-17",
+ "groups": [
+ {
+ "time": "00:28:00",
+ "height": "4.605"
+ },
+ {
+ "time": "12:55:00",
+ "height": "4.798"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2024-01-18",
+ "groups": [
+ {
+ "time": "01:21:00",
+ "height": "4.282"
+ },
+ {
+ "time": "13:52:00",
+ "height": "4.432"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2024-01-19",
+ "groups": [
+ {
+ "time": "02:21:00",
+ "height": "3.956"
+ },
+ {
+ "time": "14:57:00",
+ "height": "4.070"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2024-01-20",
+ "groups": [
+ {
+ "time": "03:31:00",
+ "height": "3.707"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.806"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2024-01-21",
+ "groups": [
+ {
+ "time": "04:42:00",
+ "height": "3.633"
+ },
+ {
+ "time": "17:18:00",
+ "height": "3.738"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2024-01-22",
+ "groups": [
+ {
+ "time": "05:54:00",
+ "height": "3.774"
+ },
+ {
+ "time": "18:25:00",
+ "height": "3.869"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2024-01-23",
+ "groups": [
+ {
+ "time": "06:54:00",
+ "height": "4.052"
+ },
+ {
+ "time": "19:20:00",
+ "height": "4.099"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:43"
+ },
+ {
+ "date": "2024-01-24",
+ "groups": [
+ {
+ "time": "07:42:00",
+ "height": "4.344"
+ },
+ {
+ "time": "20:04:00",
+ "height": "4.322"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2024-01-25",
+ "groups": [
+ {
+ "time": "08:22:00",
+ "height": "4.575"
+ },
+ {
+ "time": "20:42:00",
+ "height": "4.486"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2024-01-26",
+ "groups": [
+ {
+ "time": "08:58:00",
+ "height": "4.723"
+ },
+ {
+ "time": "21:16:00",
+ "height": "4.578"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2024-01-27",
+ "groups": [
+ {
+ "time": "09:30:00",
+ "height": "4.790"
+ },
+ {
+ "time": "21:47:00",
+ "height": "4.601"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2024-01-28",
+ "groups": [
+ {
+ "time": "10:00:00",
+ "height": "4.789"
+ },
+ {
+ "time": "22:18:00",
+ "height": "4.561"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2024-01-29",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "4.729"
+ },
+ {
+ "time": "22:51:00",
+ "height": "4.466"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:54"
+ },
+ {
+ "date": "2024-01-30",
+ "groups": [
+ {
+ "time": "11:05:00",
+ "height": "4.612"
+ },
+ {
+ "time": "23:23:00",
+ "height": "4.317"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:56"
+ },
+ {
+ "date": "2024-01-31",
+ "groups": [
+ {
+ "time": "11:37:00",
+ "height": "4.435"
+ },
+ {
+ "time": "23:57:00",
+ "height": "4.115"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:58"
+ },
+ {
+ "date": "2024-02-01",
+ "groups": [
+ {
+ "time": "12:13:00",
+ "height": "4.201"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "17:00"
+ },
+ {
+ "date": "2024-02-02",
+ "groups": [
+ {
+ "time": "00:34:00",
+ "height": "3.873"
+ },
+ {
+ "time": "12:52:00",
+ "height": "3.925"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "17:01"
+ },
+ {
+ "date": "2024-02-03",
+ "groups": [
+ {
+ "time": "01:17:00",
+ "height": "3.612"
+ },
+ {
+ "time": "13:42:00",
+ "height": "3.632"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "17:03"
+ },
+ {
+ "date": "2024-02-04",
+ "groups": [
+ {
+ "time": "02:18:00",
+ "height": "3.372"
+ },
+ {
+ "time": "14:51:00",
+ "height": "3.383"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "17:05"
+ },
+ {
+ "date": "2024-02-05",
+ "groups": [
+ {
+ "time": "03:40:00",
+ "height": "3.261"
+ },
+ {
+ "time": "16:17:00",
+ "height": "3.319"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "17:07"
+ },
+ {
+ "date": "2024-02-06",
+ "groups": [
+ {
+ "time": "05:04:00",
+ "height": "3.432"
+ },
+ {
+ "time": "17:38:00",
+ "height": "3.558"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "17:09"
+ },
+ {
+ "date": "2024-02-07",
+ "groups": [
+ {
+ "time": "06:13:00",
+ "height": "3.856"
+ },
+ {
+ "time": "18:43:00",
+ "height": "3.997"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "17:11"
+ },
+ {
+ "date": "2024-02-08",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "4.378"
+ },
+ {
+ "time": "19:35:00",
+ "height": "4.482"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "17:13"
+ },
+ {
+ "date": "2024-02-09",
+ "groups": [
+ {
+ "time": "07:57:00",
+ "height": "4.886"
+ },
+ {
+ "time": "20:21:00",
+ "height": "4.913"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "17:15"
+ },
+ {
+ "date": "2024-02-10",
+ "groups": [
+ {
+ "time": "08:42:00",
+ "height": "5.306"
+ },
+ {
+ "time": "21:06:00",
+ "height": "5.226"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "17:17"
+ },
+ {
+ "date": "2024-02-11",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "5.590"
+ },
+ {
+ "time": "21:47:00",
+ "height": "5.387"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "17:19"
+ },
+ {
+ "date": "2024-02-12",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.702"
+ },
+ {
+ "time": "22:29:00",
+ "height": "5.375"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "17:21"
+ },
+ {
+ "date": "2024-02-13",
+ "groups": [
+ {
+ "time": "10:52:00",
+ "height": "5.622"
+ },
+ {
+ "time": "23:15:00",
+ "height": "5.191"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "17:23"
+ },
+ {
+ "date": "2024-02-14",
+ "groups": [
+ {
+ "time": "11:37:00",
+ "height": "5.351"
+ },
+ {
+ "time": "23:58:00",
+ "height": "4.860"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "17:25"
+ },
+ {
+ "date": "2024-02-15",
+ "groups": [
+ {
+ "time": "12:24:00",
+ "height": "4.920"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "17:27"
+ },
+ {
+ "date": "2024-02-16",
+ "groups": [
+ {
+ "time": "00:44:00",
+ "height": "4.426"
+ },
+ {
+ "time": "13:13:00",
+ "height": "4.387"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "17:28"
+ },
+ {
+ "date": "2024-02-17",
+ "groups": [
+ {
+ "time": "01:35:00",
+ "height": "3.949"
+ },
+ {
+ "time": "14:11:00",
+ "height": "3.832"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "17:30"
+ },
+ {
+ "date": "2024-02-18",
+ "groups": [
+ {
+ "time": "02:43:00",
+ "height": "3.514"
+ },
+ {
+ "time": "15:30:00",
+ "height": "3.391"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "17:32"
+ },
+ {
+ "date": "2024-02-19",
+ "groups": [
+ {
+ "time": "04:12:00",
+ "height": "3.289"
+ },
+ {
+ "time": "16:59:00",
+ "height": "3.269"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "17:34"
+ },
+ {
+ "date": "2024-02-20",
+ "groups": [
+ {
+ "time": "05:42:00",
+ "height": "3.450"
+ },
+ {
+ "time": "18:20:00",
+ "height": "3.520"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "17:36"
+ },
+ {
+ "date": "2024-02-21",
+ "groups": [
+ {
+ "time": "06:47:00",
+ "height": "3.843"
+ },
+ {
+ "time": "19:13:00",
+ "height": "3.897"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "17:38"
+ },
+ {
+ "date": "2024-02-22",
+ "groups": [
+ {
+ "time": "07:31:00",
+ "height": "4.235"
+ },
+ {
+ "time": "19:52:00",
+ "height": "4.236"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "17:40"
+ },
+ {
+ "date": "2024-02-23",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "4.538"
+ },
+ {
+ "time": "20:26:00",
+ "height": "4.486"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "17:42"
+ },
+ {
+ "date": "2024-02-24",
+ "groups": [
+ {
+ "time": "08:41:00",
+ "height": "4.738"
+ },
+ {
+ "time": "20:57:00",
+ "height": "4.645"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "17:44"
+ },
+ {
+ "date": "2024-02-25",
+ "groups": [
+ {
+ "time": "09:10:00",
+ "height": "4.850"
+ },
+ {
+ "time": "21:25:00",
+ "height": "4.727"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "17:46"
+ },
+ {
+ "date": "2024-02-26",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "4.892"
+ },
+ {
+ "time": "21:52:00",
+ "height": "4.743"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "17:48"
+ },
+ {
+ "date": "2024-02-27",
+ "groups": [
+ {
+ "time": "10:04:00",
+ "height": "4.870"
+ },
+ {
+ "time": "22:18:00",
+ "height": "4.694"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "17:49"
+ },
+ {
+ "date": "2024-02-28",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "4.782"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.577"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "17:51"
+ },
+ {
+ "date": "2024-02-29",
+ "groups": [
+ {
+ "time": "11:02:00",
+ "height": "4.618"
+ },
+ {
+ "time": "23:18:00",
+ "height": "4.389"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "17:53"
+ },
+ {
+ "date": "2024-03-01",
+ "groups": [
+ {
+ "time": "11:33:00",
+ "height": "4.382"
+ },
+ {
+ "time": "23:50:00",
+ "height": "4.138"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "17:55"
+ },
+ {
+ "date": "2024-03-02",
+ "groups": [
+ {
+ "time": "12:08:00",
+ "height": "4.080"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "17:57"
+ },
+ {
+ "date": "2024-03-03",
+ "groups": [
+ {
+ "time": "00:28:00",
+ "height": "3.833"
+ },
+ {
+ "time": "12:51:00",
+ "height": "3.721"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "17:59"
+ },
+ {
+ "date": "2024-03-04",
+ "groups": [
+ {
+ "time": "01:21:00",
+ "height": "3.494"
+ },
+ {
+ "time": "13:56:00",
+ "height": "3.347"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2024-03-05",
+ "groups": [
+ {
+ "time": "02:46:00",
+ "height": "3.220"
+ },
+ {
+ "time": "15:39:00",
+ "height": "3.140"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2024-03-06",
+ "groups": [
+ {
+ "time": "04:34:00",
+ "height": "3.293"
+ },
+ {
+ "time": "17:19:00",
+ "height": "3.388"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2024-03-07",
+ "groups": [
+ {
+ "time": "05:56:00",
+ "height": "3.781"
+ },
+ {
+ "time": "18:29:00",
+ "height": "3.944"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2024-03-08",
+ "groups": [
+ {
+ "time": "06:53:00",
+ "height": "4.410"
+ },
+ {
+ "time": "19:20:00",
+ "height": "4.540"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2024-03-09",
+ "groups": [
+ {
+ "time": "07:40:00",
+ "height": "5.005"
+ },
+ {
+ "time": "20:05:00",
+ "height": "5.047"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2024-03-10",
+ "groups": [
+ {
+ "time": "08:24:00",
+ "height": "5.473"
+ },
+ {
+ "time": "20:47:00",
+ "height": "5.399"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "18:12"
+ },
+ {
+ "date": "2024-03-11",
+ "groups": [
+ {
+ "time": "09:05:00",
+ "height": "5.760"
+ },
+ {
+ "time": "21:26:00",
+ "height": "5.566"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2024-03-12",
+ "groups": [
+ {
+ "time": "09:45:00",
+ "height": "5.835"
+ },
+ {
+ "time": "22:04:00",
+ "height": "5.537"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2024-03-13",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "5.689"
+ },
+ {
+ "time": "22:45:00",
+ "height": "5.319"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2024-03-14",
+ "groups": [
+ {
+ "time": "11:08:00",
+ "height": "5.336"
+ },
+ {
+ "time": "23:26:00",
+ "height": "4.943"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2024-03-15",
+ "groups": [
+ {
+ "time": "11:51:00",
+ "height": "4.823"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2024-03-16",
+ "groups": [
+ {
+ "time": "00:09:00",
+ "height": "4.457"
+ },
+ {
+ "time": "12:38:00",
+ "height": "4.217"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "18:23"
+ },
+ {
+ "date": "2024-03-17",
+ "groups": [
+ {
+ "time": "00:56:00",
+ "height": "3.920"
+ },
+ {
+ "time": "13:33:00",
+ "height": "3.601"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2024-03-18",
+ "groups": [
+ {
+ "time": "02:01:00",
+ "height": "3.413"
+ },
+ {
+ "time": "14:54:00",
+ "height": "3.113"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2024-03-19",
+ "groups": [
+ {
+ "time": "03:45:00",
+ "height": "3.131"
+ },
+ {
+ "time": "16:42:00",
+ "height": "3.025"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2024-03-20",
+ "groups": [
+ {
+ "time": "05:25:00",
+ "height": "3.321"
+ },
+ {
+ "time": "18:04:00",
+ "height": "3.367"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2024-03-21",
+ "groups": [
+ {
+ "time": "06:28:00",
+ "height": "3.755"
+ },
+ {
+ "time": "18:53:00",
+ "height": "3.809"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2024-03-22",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "4.169"
+ },
+ {
+ "time": "19:29:00",
+ "height": "4.190"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2024-03-23",
+ "groups": [
+ {
+ "time": "07:43:00",
+ "height": "4.486"
+ },
+ {
+ "time": "20:01:00",
+ "height": "4.473"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2024-03-24",
+ "groups": [
+ {
+ "time": "08:14:00",
+ "height": "4.701"
+ },
+ {
+ "time": "20:30:00",
+ "height": "4.665"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2024-03-25",
+ "groups": [
+ {
+ "time": "08:42:00",
+ "height": "4.831"
+ },
+ {
+ "time": "20:57:00",
+ "height": "4.780"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "18:39"
+ },
+ {
+ "date": "2024-03-26",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "4.892"
+ },
+ {
+ "time": "21:23:00",
+ "height": "4.830"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "18:41"
+ },
+ {
+ "date": "2024-03-27",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "4.889"
+ },
+ {
+ "time": "21:49:00",
+ "height": "4.812"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "18:42"
+ },
+ {
+ "date": "2024-03-28",
+ "groups": [
+ {
+ "time": "10:00:00",
+ "height": "4.817"
+ },
+ {
+ "time": "22:15:00",
+ "height": "4.719"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2024-03-29",
+ "groups": [
+ {
+ "time": "10:29:00",
+ "height": "4.666"
+ },
+ {
+ "time": "22:45:00",
+ "height": "4.546"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "18:46"
+ },
+ {
+ "date": "2024-03-30",
+ "groups": [
+ {
+ "time": "11:02:00",
+ "height": "4.433"
+ },
+ {
+ "time": "23:19:00",
+ "height": "4.296"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "18:48"
+ },
+ {
+ "date": "2024-03-31",
+ "groups": [
+ {
+ "time": "11:38:00",
+ "height": "4.122"
+ },
+ {
+ "time": "23:59:00",
+ "height": "3.975"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "18:49"
+ },
+ {
+ "date": "2024-04-01",
+ "groups": [
+ {
+ "time": "13:24:00",
+ "height": "3.741"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:51"
+ },
+ {
+ "date": "2024-04-02",
+ "groups": [
+ {
+ "time": "01:54:00",
+ "height": "3.609"
+ },
+ {
+ "time": "14:33:00",
+ "height": "3.346"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2024-04-03",
+ "groups": [
+ {
+ "time": "03:23:00",
+ "height": "3.321"
+ },
+ {
+ "time": "16:22:00",
+ "height": "3.159"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "19:55"
+ },
+ {
+ "date": "2024-04-04",
+ "groups": [
+ {
+ "time": "05:13:00",
+ "height": "3.411"
+ },
+ {
+ "time": "18:01:00",
+ "height": "3.455"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2024-04-05",
+ "groups": [
+ {
+ "time": "06:33:00",
+ "height": "3.909"
+ },
+ {
+ "time": "19:08:00",
+ "height": "4.028"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:58"
+ },
+ {
+ "date": "2024-04-06",
+ "groups": [
+ {
+ "time": "07:29:00",
+ "height": "4.522"
+ },
+ {
+ "time": "19:58:00",
+ "height": "4.609"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2024-04-07",
+ "groups": [
+ {
+ "time": "08:17:00",
+ "height": "5.071"
+ },
+ {
+ "time": "20:42:00",
+ "height": "5.079"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "20:02"
+ },
+ {
+ "date": "2024-04-08",
+ "groups": [
+ {
+ "time": "09:00:00",
+ "height": "5.469"
+ },
+ {
+ "time": "21:22:00",
+ "height": "5.388"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "20:04"
+ },
+ {
+ "date": "2024-04-09",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "5.676"
+ },
+ {
+ "time": "22:01:00",
+ "height": "5.518"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2024-04-10",
+ "groups": [
+ {
+ "time": "10:21:00",
+ "height": "5.677"
+ },
+ {
+ "time": "22:38:00",
+ "height": "5.465"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2024-04-11",
+ "groups": [
+ {
+ "time": "10:59:00",
+ "height": "5.477"
+ },
+ {
+ "time": "23:16:00",
+ "height": "5.242"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2024-04-12",
+ "groups": [
+ {
+ "time": "11:41:00",
+ "height": "5.100"
+ },
+ {
+ "time": "23:57:00",
+ "height": "4.876"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:11"
+ },
+ {
+ "date": "2024-04-13",
+ "groups": [
+ {
+ "time": "12:24:00",
+ "height": "4.595"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2024-04-14",
+ "groups": [
+ {
+ "time": "00:41:00",
+ "height": "4.413"
+ },
+ {
+ "time": "13:10:00",
+ "height": "4.029"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2024-04-15",
+ "groups": [
+ {
+ "time": "01:29:00",
+ "height": "3.912"
+ },
+ {
+ "time": "14:05:00",
+ "height": "3.480"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2024-04-16",
+ "groups": [
+ {
+ "time": "02:33:00",
+ "height": "3.450"
+ },
+ {
+ "time": "15:24:00",
+ "height": "3.064"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2024-04-17",
+ "groups": [
+ {
+ "time": "04:11:00",
+ "height": "3.187"
+ },
+ {
+ "time": "17:08:00",
+ "height": "2.992"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:20"
+ },
+ {
+ "date": "2024-04-18",
+ "groups": [
+ {
+ "time": "05:45:00",
+ "height": "3.311"
+ },
+ {
+ "time": "18:26:00",
+ "height": "3.285"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2024-04-19",
+ "groups": [
+ {
+ "time": "06:48:00",
+ "height": "3.662"
+ },
+ {
+ "time": "19:16:00",
+ "height": "3.687"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2024-04-20",
+ "groups": [
+ {
+ "time": "07:32:00",
+ "height": "4.027"
+ },
+ {
+ "time": "19:54:00",
+ "height": "4.056"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2024-04-21",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "4.328"
+ },
+ {
+ "time": "20:27:00",
+ "height": "4.351"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2024-04-22",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "4.547"
+ },
+ {
+ "time": "20:56:00",
+ "height": "4.569"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2024-04-23",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "4.693"
+ },
+ {
+ "time": "21:25:00",
+ "height": "4.718"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:30"
+ },
+ {
+ "date": "2024-04-24",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "4.774"
+ },
+ {
+ "time": "21:53:00",
+ "height": "4.802"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2024-04-25",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "4.794"
+ },
+ {
+ "time": "22:22:00",
+ "height": "4.817"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:34"
+ },
+ {
+ "date": "2024-04-26",
+ "groups": [
+ {
+ "time": "10:35:00",
+ "height": "4.743"
+ },
+ {
+ "time": "22:50:00",
+ "height": "4.752"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2024-04-27",
+ "groups": [
+ {
+ "time": "11:05:00",
+ "height": "4.613"
+ },
+ {
+ "time": "23:23:00",
+ "height": "4.603"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2024-04-28",
+ "groups": [
+ {
+ "time": "11:41:00",
+ "height": "4.399"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2024-04-29",
+ "groups": [
+ {
+ "time": "00:02:00",
+ "height": "4.373"
+ },
+ {
+ "time": "12:24:00",
+ "height": "4.108"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2024-04-30",
+ "groups": [
+ {
+ "time": "00:49:00",
+ "height": "4.082"
+ },
+ {
+ "time": "13:18:00",
+ "height": "3.768"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2024-05-01",
+ "groups": [
+ {
+ "time": "01:52:00",
+ "height": "3.779"
+ },
+ {
+ "time": "14:33:00",
+ "height": "3.469"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2024-05-02",
+ "groups": [
+ {
+ "time": "03:19:00",
+ "height": "3.604"
+ },
+ {
+ "time": "16:11:00",
+ "height": "3.397"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2024-05-03",
+ "groups": [
+ {
+ "time": "04:52:00",
+ "height": "3.726"
+ },
+ {
+ "time": "17:35:00",
+ "height": "3.660"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2024-05-04",
+ "groups": [
+ {
+ "time": "06:04:00",
+ "height": "4.110"
+ },
+ {
+ "time": "18:38:00",
+ "height": "4.108"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2024-05-05",
+ "groups": [
+ {
+ "time": "07:00:00",
+ "height": "4.566"
+ },
+ {
+ "time": "19:29:00",
+ "height": "4.560"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2024-05-06",
+ "groups": [
+ {
+ "time": "07:49:00",
+ "height": "4.959"
+ },
+ {
+ "time": "20:14:00",
+ "height": "4.922"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2024-05-07",
+ "groups": [
+ {
+ "time": "08:34:00",
+ "height": "5.222"
+ },
+ {
+ "time": "20:56:00",
+ "height": "5.157"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2024-05-08",
+ "groups": [
+ {
+ "time": "09:17:00",
+ "height": "5.331"
+ },
+ {
+ "time": "21:36:00",
+ "height": "5.252"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2024-05-09",
+ "groups": [
+ {
+ "time": "09:58:00",
+ "height": "5.283"
+ },
+ {
+ "time": "22:16:00",
+ "height": "5.205"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2024-05-10",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "5.090"
+ },
+ {
+ "time": "22:54:00",
+ "height": "5.026"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2024-05-11",
+ "groups": [
+ {
+ "time": "11:18:00",
+ "height": "4.775"
+ },
+ {
+ "time": "23:36:00",
+ "height": "4.735"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2024-05-12",
+ "groups": [
+ {
+ "time": "12:04:00",
+ "height": "4.376"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2024-05-13",
+ "groups": [
+ {
+ "time": "00:21:00",
+ "height": "4.372"
+ },
+ {
+ "time": "12:51:00",
+ "height": "3.946"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2024-05-14",
+ "groups": [
+ {
+ "time": "01:11:00",
+ "height": "3.986"
+ },
+ {
+ "time": "13:44:00",
+ "height": "3.543"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2024-05-15",
+ "groups": [
+ {
+ "time": "02:09:00",
+ "height": "3.638"
+ },
+ {
+ "time": "14:51:00",
+ "height": "3.235"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2024-05-16",
+ "groups": [
+ {
+ "time": "03:24:00",
+ "height": "3.407"
+ },
+ {
+ "time": "16:14:00",
+ "height": "3.117"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2024-05-17",
+ "groups": [
+ {
+ "time": "04:48:00",
+ "height": "3.386"
+ },
+ {
+ "time": "17:28:00",
+ "height": "3.242"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2024-05-18",
+ "groups": [
+ {
+ "time": "05:52:00",
+ "height": "3.557"
+ },
+ {
+ "time": "18:25:00",
+ "height": "3.514"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2024-05-19",
+ "groups": [
+ {
+ "time": "06:42:00",
+ "height": "3.810"
+ },
+ {
+ "time": "19:08:00",
+ "height": "3.824"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2024-05-20",
+ "groups": [
+ {
+ "time": "07:24:00",
+ "height": "4.062"
+ },
+ {
+ "time": "19:45:00",
+ "height": "4.115"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2024-05-21",
+ "groups": [
+ {
+ "time": "08:00:00",
+ "height": "4.281"
+ },
+ {
+ "time": "20:20:00",
+ "height": "4.363"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2024-05-22",
+ "groups": [
+ {
+ "time": "08:34:00",
+ "height": "4.452"
+ },
+ {
+ "time": "20:53:00",
+ "height": "4.557"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2024-05-23",
+ "groups": [
+ {
+ "time": "09:08:00",
+ "height": "4.573"
+ },
+ {
+ "time": "21:25:00",
+ "height": "4.692"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2024-05-24",
+ "groups": [
+ {
+ "time": "09:42:00",
+ "height": "4.636"
+ },
+ {
+ "time": "21:59:00",
+ "height": "4.758"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2024-05-25",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "4.635"
+ },
+ {
+ "time": "22:34:00",
+ "height": "4.748"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2024-05-26",
+ "groups": [
+ {
+ "time": "10:53:00",
+ "height": "4.560"
+ },
+ {
+ "time": "23:11:00",
+ "height": "4.661"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2024-05-27",
+ "groups": [
+ {
+ "time": "11:34:00",
+ "height": "4.410"
+ },
+ {
+ "time": "23:58:00",
+ "height": "4.506"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2024-05-28",
+ "groups": [
+ {
+ "time": "12:25:00",
+ "height": "4.201"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2024-05-29",
+ "groups": [
+ {
+ "time": "00:52:00",
+ "height": "4.312"
+ },
+ {
+ "time": "13:24:00",
+ "height": "3.973"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2024-05-30",
+ "groups": [
+ {
+ "time": "01:55:00",
+ "height": "4.131"
+ },
+ {
+ "time": "14:32:00",
+ "height": "3.791"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2024-05-31",
+ "groups": [
+ {
+ "time": "03:08:00",
+ "height": "4.028"
+ },
+ {
+ "time": "15:48:00",
+ "height": "3.734"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2024-06-01",
+ "groups": [
+ {
+ "time": "04:25:00",
+ "height": "4.060"
+ },
+ {
+ "time": "17:02:00",
+ "height": "3.842"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2024-06-02",
+ "groups": [
+ {
+ "time": "05:30:00",
+ "height": "4.218"
+ },
+ {
+ "time": "18:03:00",
+ "height": "4.074"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2024-06-03",
+ "groups": [
+ {
+ "time": "06:28:00",
+ "height": "4.433"
+ },
+ {
+ "time": "18:58:00",
+ "height": "4.346"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2024-06-04",
+ "groups": [
+ {
+ "time": "07:22:00",
+ "height": "4.632"
+ },
+ {
+ "time": "19:47:00",
+ "height": "4.592"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2024-06-05",
+ "groups": [
+ {
+ "time": "08:11:00",
+ "height": "4.773"
+ },
+ {
+ "time": "20:34:00",
+ "height": "4.777"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2024-06-06",
+ "groups": [
+ {
+ "time": "08:58:00",
+ "height": "4.838"
+ },
+ {
+ "time": "21:18:00",
+ "height": "4.880"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2024-06-07",
+ "groups": [
+ {
+ "time": "09:42:00",
+ "height": "4.818"
+ },
+ {
+ "time": "22:00:00",
+ "height": "4.891"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2024-06-08",
+ "groups": [
+ {
+ "time": "10:24:00",
+ "height": "4.713"
+ },
+ {
+ "time": "22:40:00",
+ "height": "4.807"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2024-06-09",
+ "groups": [
+ {
+ "time": "11:04:00",
+ "height": "4.534"
+ },
+ {
+ "time": "23:21:00",
+ "height": "4.643"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2024-06-10",
+ "groups": [
+ {
+ "time": "11:49:00",
+ "height": "4.298"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2024-06-11",
+ "groups": [
+ {
+ "time": "00:06:00",
+ "height": "4.420"
+ },
+ {
+ "time": "12:33:00",
+ "height": "4.033"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2024-06-12",
+ "groups": [
+ {
+ "time": "00:51:00",
+ "height": "4.171"
+ },
+ {
+ "time": "13:20:00",
+ "height": "3.769"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2024-06-13",
+ "groups": [
+ {
+ "time": "01:39:00",
+ "height": "3.924"
+ },
+ {
+ "time": "14:09:00",
+ "height": "3.535"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2024-06-14",
+ "groups": [
+ {
+ "time": "02:33:00",
+ "height": "3.707"
+ },
+ {
+ "time": "15:08:00",
+ "height": "3.360"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2024-06-15",
+ "groups": [
+ {
+ "time": "03:34:00",
+ "height": "3.553"
+ },
+ {
+ "time": "16:15:00",
+ "height": "3.290"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2024-06-16",
+ "groups": [
+ {
+ "time": "04:42:00",
+ "height": "3.504"
+ },
+ {
+ "time": "17:19:00",
+ "height": "3.361"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2024-06-17",
+ "groups": [
+ {
+ "time": "05:41:00",
+ "height": "3.575"
+ },
+ {
+ "time": "18:14:00",
+ "height": "3.553"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2024-06-18",
+ "groups": [
+ {
+ "time": "06:34:00",
+ "height": "3.737"
+ },
+ {
+ "time": "19:01:00",
+ "height": "3.812"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2024-06-19",
+ "groups": [
+ {
+ "time": "07:20:00",
+ "height": "3.944"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.091"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2024-06-20",
+ "groups": [
+ {
+ "time": "08:02:00",
+ "height": "4.158"
+ },
+ {
+ "time": "20:24:00",
+ "height": "4.352"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2024-06-21",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "4.353"
+ },
+ {
+ "time": "21:03:00",
+ "height": "4.572"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2024-06-22",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "4.509"
+ },
+ {
+ "time": "21:44:00",
+ "height": "4.736"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2024-06-23",
+ "groups": [
+ {
+ "time": "10:05:00",
+ "height": "4.611"
+ },
+ {
+ "time": "22:24:00",
+ "height": "4.835"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2024-06-24",
+ "groups": [
+ {
+ "time": "10:47:00",
+ "height": "4.648"
+ },
+ {
+ "time": "23:07:00",
+ "height": "4.866"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2024-06-25",
+ "groups": [
+ {
+ "time": "11:32:00",
+ "height": "4.612"
+ },
+ {
+ "time": "23:56:00",
+ "height": "4.826"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2024-06-26",
+ "groups": [
+ {
+ "time": "12:23:00",
+ "height": "4.507"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2024-06-27",
+ "groups": [
+ {
+ "time": "00:49:00",
+ "height": "4.723"
+ },
+ {
+ "time": "13:17:00",
+ "height": "4.348"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2024-06-28",
+ "groups": [
+ {
+ "time": "01:44:00",
+ "height": "4.573"
+ },
+ {
+ "time": "14:15:00",
+ "height": "4.166"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2024-06-29",
+ "groups": [
+ {
+ "time": "02:45:00",
+ "height": "4.399"
+ },
+ {
+ "time": "15:17:00",
+ "height": "3.997"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2024-06-30",
+ "groups": [
+ {
+ "time": "03:50:00",
+ "height": "4.233"
+ },
+ {
+ "time": "16:25:00",
+ "height": "3.890"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2024-07-01",
+ "groups": [
+ {
+ "time": "04:57:00",
+ "height": "4.122"
+ },
+ {
+ "time": "17:29:00",
+ "height": "3.891"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2024-07-02",
+ "groups": [
+ {
+ "time": "05:59:00",
+ "height": "4.097"
+ },
+ {
+ "time": "18:31:00",
+ "height": "4.005"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2024-07-03",
+ "groups": [
+ {
+ "time": "07:00:00",
+ "height": "4.158"
+ },
+ {
+ "time": "19:29:00",
+ "height": "4.196"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2024-07-04",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.277"
+ },
+ {
+ "time": "20:22:00",
+ "height": "4.410"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2024-07-05",
+ "groups": [
+ {
+ "time": "08:48:00",
+ "height": "4.404"
+ },
+ {
+ "time": "21:09:00",
+ "height": "4.590"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2024-07-06",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "4.495"
+ },
+ {
+ "time": "21:51:00",
+ "height": "4.702"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2024-07-07",
+ "groups": [
+ {
+ "time": "10:15:00",
+ "height": "4.527"
+ },
+ {
+ "time": "22:31:00",
+ "height": "4.732"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2024-07-08",
+ "groups": [
+ {
+ "time": "10:53:00",
+ "height": "4.491"
+ },
+ {
+ "time": "23:07:00",
+ "height": "4.684"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2024-07-09",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "4.394"
+ },
+ {
+ "time": "23:46:00",
+ "height": "4.575"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2024-07-10",
+ "groups": [
+ {
+ "time": "12:08:00",
+ "height": "4.250"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2024-07-11",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "4.419"
+ },
+ {
+ "time": "12:46:00",
+ "height": "4.072"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2024-07-12",
+ "groups": [
+ {
+ "time": "01:02:00",
+ "height": "4.227"
+ },
+ {
+ "time": "13:25:00",
+ "height": "3.871"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2024-07-13",
+ "groups": [
+ {
+ "time": "01:43:00",
+ "height": "4.007"
+ },
+ {
+ "time": "14:08:00",
+ "height": "3.657"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2024-07-14",
+ "groups": [
+ {
+ "time": "02:29:00",
+ "height": "3.771"
+ },
+ {
+ "time": "14:59:00",
+ "height": "3.457"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2024-07-15",
+ "groups": [
+ {
+ "time": "03:23:00",
+ "height": "3.552"
+ },
+ {
+ "time": "16:01:00",
+ "height": "3.322"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2024-07-16",
+ "groups": [
+ {
+ "time": "04:30:00",
+ "height": "3.410"
+ },
+ {
+ "time": "17:11:00",
+ "height": "3.327"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2024-07-17",
+ "groups": [
+ {
+ "time": "05:38:00",
+ "height": "3.422"
+ },
+ {
+ "time": "18:17:00",
+ "height": "3.515"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2024-07-18",
+ "groups": [
+ {
+ "time": "06:42:00",
+ "height": "3.608"
+ },
+ {
+ "time": "19:14:00",
+ "height": "3.834"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2024-07-19",
+ "groups": [
+ {
+ "time": "07:38:00",
+ "height": "3.901"
+ },
+ {
+ "time": "20:03:00",
+ "height": "4.203"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2024-07-20",
+ "groups": [
+ {
+ "time": "08:27:00",
+ "height": "4.228"
+ },
+ {
+ "time": "20:48:00",
+ "height": "4.563"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2024-07-21",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "4.535"
+ },
+ {
+ "time": "21:32:00",
+ "height": "4.874"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2024-07-22",
+ "groups": [
+ {
+ "time": "09:55:00",
+ "height": "4.783"
+ },
+ {
+ "time": "22:15:00",
+ "height": "5.112"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2024-07-23",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "4.943"
+ },
+ {
+ "time": "22:57:00",
+ "height": "5.252"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2024-07-24",
+ "groups": [
+ {
+ "time": "11:21:00",
+ "height": "4.993"
+ },
+ {
+ "time": "23:44:00",
+ "height": "5.274"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2024-07-25",
+ "groups": [
+ {
+ "time": "12:09:00",
+ "height": "4.922"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2024-07-26",
+ "groups": [
+ {
+ "time": "00:33:00",
+ "height": "5.163"
+ },
+ {
+ "time": "12:57:00",
+ "height": "4.734"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2024-07-27",
+ "groups": [
+ {
+ "time": "01:22:00",
+ "height": "4.925"
+ },
+ {
+ "time": "13:47:00",
+ "height": "4.455"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2024-07-28",
+ "groups": [
+ {
+ "time": "02:15:00",
+ "height": "4.585"
+ },
+ {
+ "time": "14:41:00",
+ "height": "4.126"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2024-07-29",
+ "groups": [
+ {
+ "time": "03:13:00",
+ "height": "4.195"
+ },
+ {
+ "time": "15:45:00",
+ "height": "3.815"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2024-07-30",
+ "groups": [
+ {
+ "time": "04:24:00",
+ "height": "3.845"
+ },
+ {
+ "time": "16:59:00",
+ "height": "3.627"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2024-07-31",
+ "groups": [
+ {
+ "time": "05:37:00",
+ "height": "3.661"
+ },
+ {
+ "time": "18:15:00",
+ "height": "3.668"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2024-08-01",
+ "groups": [
+ {
+ "time": "06:52:00",
+ "height": "3.722"
+ },
+ {
+ "time": "19:25:00",
+ "height": "3.922"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2024-08-02",
+ "groups": [
+ {
+ "time": "07:55:00",
+ "height": "3.960"
+ },
+ {
+ "time": "20:19:00",
+ "height": "4.251"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2024-08-03",
+ "groups": [
+ {
+ "time": "08:45:00",
+ "height": "4.228"
+ },
+ {
+ "time": "21:03:00",
+ "height": "4.534"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2024-08-04",
+ "groups": [
+ {
+ "time": "09:26:00",
+ "height": "4.441"
+ },
+ {
+ "time": "21:42:00",
+ "height": "4.723"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2024-08-05",
+ "groups": [
+ {
+ "time": "10:02:00",
+ "height": "4.569"
+ },
+ {
+ "time": "22:16:00",
+ "height": "4.815"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2024-08-06",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "4.617"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.826"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "21:00"
+ },
+ {
+ "date": "2024-08-07",
+ "groups": [
+ {
+ "time": "11:04:00",
+ "height": "4.594"
+ },
+ {
+ "time": "23:18:00",
+ "height": "4.771"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2024-08-08",
+ "groups": [
+ {
+ "time": "11:37:00",
+ "height": "4.512"
+ },
+ {
+ "time": "23:51:00",
+ "height": "4.657"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2024-08-09",
+ "groups": [
+ {
+ "time": "12:08:00",
+ "height": "4.373"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2024-08-10",
+ "groups": [
+ {
+ "time": "00:22:00",
+ "height": "4.483"
+ },
+ {
+ "time": "12:41:00",
+ "height": "4.181"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2024-08-11",
+ "groups": [
+ {
+ "time": "00:56:00",
+ "height": "4.248"
+ },
+ {
+ "time": "13:15:00",
+ "height": "3.940"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2024-08-12",
+ "groups": [
+ {
+ "time": "01:33:00",
+ "height": "3.960"
+ },
+ {
+ "time": "13:55:00",
+ "height": "3.667"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2024-08-13",
+ "groups": [
+ {
+ "time": "02:17:00",
+ "height": "3.641"
+ },
+ {
+ "time": "14:49:00",
+ "height": "3.396"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2024-08-14",
+ "groups": [
+ {
+ "time": "03:19:00",
+ "height": "3.341"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.216"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2024-08-15",
+ "groups": [
+ {
+ "time": "04:46:00",
+ "height": "3.188"
+ },
+ {
+ "time": "17:38:00",
+ "height": "3.300"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2024-08-16",
+ "groups": [
+ {
+ "time": "06:14:00",
+ "height": "3.355"
+ },
+ {
+ "time": "18:52:00",
+ "height": "3.684"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2024-08-17",
+ "groups": [
+ {
+ "time": "07:21:00",
+ "height": "3.776"
+ },
+ {
+ "time": "19:47:00",
+ "height": "4.198"
+ }
+ ],
+ "sunrise": "06:02",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2024-08-18",
+ "groups": [
+ {
+ "time": "08:14:00",
+ "height": "4.270"
+ },
+ {
+ "time": "20:34:00",
+ "height": "4.712"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2024-08-19",
+ "groups": [
+ {
+ "time": "08:59:00",
+ "height": "4.727"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.154"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:34"
+ },
+ {
+ "date": "2024-08-20",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "5.086"
+ },
+ {
+ "time": "21:59:00",
+ "height": "5.479"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2024-08-21",
+ "groups": [
+ {
+ "time": "10:22:00",
+ "height": "5.309"
+ },
+ {
+ "time": "22:40:00",
+ "height": "5.650"
+ }
+ ],
+ "sunrise": "06:09",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2024-08-22",
+ "groups": [
+ {
+ "time": "11:01:00",
+ "height": "5.370"
+ },
+ {
+ "time": "23:21:00",
+ "height": "5.640"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:27"
+ },
+ {
+ "date": "2024-08-23",
+ "groups": [
+ {
+ "time": "11:44:00",
+ "height": "5.261"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2024-08-24",
+ "groups": [
+ {
+ "time": "00:07:00",
+ "height": "5.438"
+ },
+ {
+ "time": "12:28:00",
+ "height": "4.994"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2024-08-25",
+ "groups": [
+ {
+ "time": "00:52:00",
+ "height": "5.062"
+ },
+ {
+ "time": "13:13:00",
+ "height": "4.602"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2024-08-26",
+ "groups": [
+ {
+ "time": "01:41:00",
+ "height": "4.556"
+ },
+ {
+ "time": "14:03:00",
+ "height": "4.139"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:18"
+ },
+ {
+ "date": "2024-08-27",
+ "groups": [
+ {
+ "time": "02:38:00",
+ "height": "3.995"
+ },
+ {
+ "time": "15:07:00",
+ "height": "3.680"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2024-08-28",
+ "groups": [
+ {
+ "time": "03:51:00",
+ "height": "3.499"
+ },
+ {
+ "time": "16:37:00",
+ "height": "3.386"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2024-08-29",
+ "groups": [
+ {
+ "time": "05:26:00",
+ "height": "3.291"
+ },
+ {
+ "time": "18:11:00",
+ "height": "3.477"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:11"
+ },
+ {
+ "date": "2024-08-30",
+ "groups": [
+ {
+ "time": "06:54:00",
+ "height": "3.500"
+ },
+ {
+ "time": "19:23:00",
+ "height": "3.870"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2024-08-31",
+ "groups": [
+ {
+ "time": "07:51:00",
+ "height": "3.896"
+ },
+ {
+ "time": "20:12:00",
+ "height": "4.292"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2024-09-01",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.264"
+ },
+ {
+ "time": "20:49:00",
+ "height": "4.618"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "20:04"
+ },
+ {
+ "date": "2024-09-02",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "4.533"
+ },
+ {
+ "time": "21:23:00",
+ "height": "4.824"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:02"
+ },
+ {
+ "date": "2024-09-03",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "4.699"
+ },
+ {
+ "time": "21:53:00",
+ "height": "4.928"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2024-09-04",
+ "groups": [
+ {
+ "time": "10:09:00",
+ "height": "4.778"
+ },
+ {
+ "time": "22:22:00",
+ "height": "4.955"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2024-09-05",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "4.787"
+ },
+ {
+ "time": "22:48:00",
+ "height": "4.918"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "19:55"
+ },
+ {
+ "date": "2024-09-06",
+ "groups": [
+ {
+ "time": "11:02:00",
+ "height": "4.734"
+ },
+ {
+ "time": "23:14:00",
+ "height": "4.818"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2024-09-07",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "4.614"
+ },
+ {
+ "time": "23:43:00",
+ "height": "4.645"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2024-09-08",
+ "groups": [
+ {
+ "time": "11:59:00",
+ "height": "4.425"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:48"
+ },
+ {
+ "date": "2024-09-09",
+ "groups": [
+ {
+ "time": "00:13:00",
+ "height": "4.399"
+ },
+ {
+ "time": "12:31:00",
+ "height": "4.172"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "19:46"
+ },
+ {
+ "date": "2024-09-10",
+ "groups": [
+ {
+ "time": "00:46:00",
+ "height": "4.087"
+ },
+ {
+ "time": "13:07:00",
+ "height": "3.864"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:43"
+ },
+ {
+ "date": "2024-09-11",
+ "groups": [
+ {
+ "time": "01:27:00",
+ "height": "3.721"
+ },
+ {
+ "time": "13:55:00",
+ "height": "3.523"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "19:41"
+ },
+ {
+ "date": "2024-09-12",
+ "groups": [
+ {
+ "time": "02:26:00",
+ "height": "3.337"
+ },
+ {
+ "time": "15:13:00",
+ "height": "3.230"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "19:38"
+ },
+ {
+ "date": "2024-09-13",
+ "groups": [
+ {
+ "time": "04:04:00",
+ "height": "3.086"
+ },
+ {
+ "time": "17:07:00",
+ "height": "3.250"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:36"
+ },
+ {
+ "date": "2024-09-14",
+ "groups": [
+ {
+ "time": "05:54:00",
+ "height": "3.281"
+ },
+ {
+ "time": "18:32:00",
+ "height": "3.710"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "19:34"
+ },
+ {
+ "date": "2024-09-15",
+ "groups": [
+ {
+ "time": "07:06:00",
+ "height": "3.825"
+ },
+ {
+ "time": "19:28:00",
+ "height": "4.332"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:31"
+ },
+ {
+ "date": "2024-09-16",
+ "groups": [
+ {
+ "time": "07:56:00",
+ "height": "4.429"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.932"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "19:29"
+ },
+ {
+ "date": "2024-09-17",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "4.958"
+ },
+ {
+ "time": "20:57:00",
+ "height": "5.419"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:26"
+ },
+ {
+ "date": "2024-09-18",
+ "groups": [
+ {
+ "time": "09:19:00",
+ "height": "5.348"
+ },
+ {
+ "time": "21:37:00",
+ "height": "5.741"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:24"
+ },
+ {
+ "date": "2024-09-19",
+ "groups": [
+ {
+ "time": "09:59:00",
+ "height": "5.564"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.865"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "19:21"
+ },
+ {
+ "date": "2024-09-20",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "5.592"
+ },
+ {
+ "time": "22:56:00",
+ "height": "5.774"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "19:19"
+ },
+ {
+ "date": "2024-09-21",
+ "groups": [
+ {
+ "time": "11:15:00",
+ "height": "5.430"
+ },
+ {
+ "time": "23:39:00",
+ "height": "5.472"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "19:17"
+ },
+ {
+ "date": "2024-09-22",
+ "groups": [
+ {
+ "time": "11:58:00",
+ "height": "5.099"
+ }
+ ],
+ "sunrise": "07:03",
+ "sunset": "19:14"
+ },
+ {
+ "date": "2024-09-23",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "4.991"
+ },
+ {
+ "time": "12:43:00",
+ "height": "4.640"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "19:12"
+ },
+ {
+ "date": "2024-09-24",
+ "groups": [
+ {
+ "time": "01:12:00",
+ "height": "4.395"
+ },
+ {
+ "time": "13:33:00",
+ "height": "4.111"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "19:09"
+ },
+ {
+ "date": "2024-09-25",
+ "groups": [
+ {
+ "time": "02:08:00",
+ "height": "3.772"
+ },
+ {
+ "time": "14:38:00",
+ "height": "3.601"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "19:07"
+ },
+ {
+ "date": "2024-09-26",
+ "groups": [
+ {
+ "time": "03:28:00",
+ "height": "3.263"
+ },
+ {
+ "time": "16:20:00",
+ "height": "3.304"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "19:05"
+ },
+ {
+ "date": "2024-09-27",
+ "groups": [
+ {
+ "time": "05:18:00",
+ "height": "3.138"
+ },
+ {
+ "time": "18:02:00",
+ "height": "3.472"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "19:02"
+ },
+ {
+ "date": "2024-09-28",
+ "groups": [
+ {
+ "time": "06:43:00",
+ "height": "3.465"
+ },
+ {
+ "time": "19:07:00",
+ "height": "3.906"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "19:00"
+ },
+ {
+ "date": "2024-09-29",
+ "groups": [
+ {
+ "time": "07:33:00",
+ "height": "3.912"
+ },
+ {
+ "time": "19:50:00",
+ "height": "4.326"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "18:57"
+ },
+ {
+ "date": "2024-09-30",
+ "groups": [
+ {
+ "time": "08:11:00",
+ "height": "4.300"
+ },
+ {
+ "time": "20:25:00",
+ "height": "4.642"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "18:55"
+ },
+ {
+ "date": "2024-10-01",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "4.583"
+ },
+ {
+ "time": "20:56:00",
+ "height": "4.843"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "18:53"
+ },
+ {
+ "date": "2024-10-02",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "4.765"
+ },
+ {
+ "time": "21:25:00",
+ "height": "4.950"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "18:50"
+ },
+ {
+ "date": "2024-10-03",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "4.865"
+ },
+ {
+ "time": "21:52:00",
+ "height": "4.986"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "18:48"
+ },
+ {
+ "date": "2024-10-04",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "4.898"
+ },
+ {
+ "time": "22:18:00",
+ "height": "4.959"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "18:46"
+ },
+ {
+ "date": "2024-10-05",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "4.866"
+ },
+ {
+ "time": "22:43:00",
+ "height": "4.865"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "18:43"
+ },
+ {
+ "date": "2024-10-06",
+ "groups": [
+ {
+ "time": "10:57:00",
+ "height": "4.763"
+ },
+ {
+ "time": "23:09:00",
+ "height": "4.699"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "18:41"
+ },
+ {
+ "date": "2024-10-07",
+ "groups": [
+ {
+ "time": "11:25:00",
+ "height": "4.585"
+ },
+ {
+ "time": "23:40:00",
+ "height": "4.456"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2024-10-08",
+ "groups": [
+ {
+ "time": "11:57:00",
+ "height": "4.335"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2024-10-09",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "4.144"
+ },
+ {
+ "time": "12:36:00",
+ "height": "4.022"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "18:34"
+ },
+ {
+ "date": "2024-10-10",
+ "groups": [
+ {
+ "time": "00:58:00",
+ "height": "3.773"
+ },
+ {
+ "time": "13:27:00",
+ "height": "3.670"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2024-10-11",
+ "groups": [
+ {
+ "time": "02:01:00",
+ "height": "3.388"
+ },
+ {
+ "time": "14:49:00",
+ "height": "3.377"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2024-10-12",
+ "groups": [
+ {
+ "time": "03:43:00",
+ "height": "3.167"
+ },
+ {
+ "time": "16:43:00",
+ "height": "3.418"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "18:27"
+ },
+ {
+ "date": "2024-10-13",
+ "groups": [
+ {
+ "time": "05:32:00",
+ "height": "3.405"
+ },
+ {
+ "time": "18:06:00",
+ "height": "3.881"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2024-10-14",
+ "groups": [
+ {
+ "time": "06:41:00",
+ "height": "3.961"
+ },
+ {
+ "time": "19:02:00",
+ "height": "4.488"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2024-10-15",
+ "groups": [
+ {
+ "time": "07:30:00",
+ "height": "4.553"
+ },
+ {
+ "time": "19:49:00",
+ "height": "5.055"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2024-10-16",
+ "groups": [
+ {
+ "time": "08:14:00",
+ "height": "5.056"
+ },
+ {
+ "time": "20:31:00",
+ "height": "5.488"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2024-10-17",
+ "groups": [
+ {
+ "time": "08:54:00",
+ "height": "5.409"
+ },
+ {
+ "time": "21:13:00",
+ "height": "5.741"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2024-10-18",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "5.590"
+ },
+ {
+ "time": "21:54:00",
+ "height": "5.791"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2024-10-19",
+ "groups": [
+ {
+ "time": "10:13:00",
+ "height": "5.588"
+ },
+ {
+ "time": "22:34:00",
+ "height": "5.635"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2024-10-20",
+ "groups": [
+ {
+ "time": "10:51:00",
+ "height": "5.410"
+ },
+ {
+ "time": "23:14:00",
+ "height": "5.292"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2024-10-21",
+ "groups": [
+ {
+ "time": "11:33:00",
+ "height": "5.075"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2024-10-22",
+ "groups": [
+ {
+ "time": "00:00:00",
+ "height": "4.803"
+ },
+ {
+ "time": "12:19:00",
+ "height": "4.628"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "18:05"
+ },
+ {
+ "date": "2024-10-23",
+ "groups": [
+ {
+ "time": "00:50:00",
+ "height": "4.235"
+ },
+ {
+ "time": "13:12:00",
+ "height": "4.130"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2024-10-24",
+ "groups": [
+ {
+ "time": "01:48:00",
+ "height": "3.678"
+ },
+ {
+ "time": "14:18:00",
+ "height": "3.673"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2024-10-25",
+ "groups": [
+ {
+ "time": "03:07:00",
+ "height": "3.258"
+ },
+ {
+ "time": "15:52:00",
+ "height": "3.414"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "17:59"
+ },
+ {
+ "date": "2024-10-26",
+ "groups": [
+ {
+ "time": "04:49:00",
+ "height": "3.167"
+ },
+ {
+ "time": "17:26:00",
+ "height": "3.518"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "17:57"
+ },
+ {
+ "date": "2024-10-27",
+ "groups": [
+ {
+ "time": "06:07:00",
+ "height": "3.433"
+ },
+ {
+ "time": "18:30:00",
+ "height": "3.846"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "17:54"
+ },
+ {
+ "date": "2024-10-28",
+ "groups": [
+ {
+ "time": "05:59:00",
+ "height": "3.820"
+ },
+ {
+ "time": "18:15:00",
+ "height": "4.196"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2024-10-29",
+ "groups": [
+ {
+ "time": "06:38:00",
+ "height": "4.181"
+ },
+ {
+ "time": "18:52:00",
+ "height": "4.482"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2024-10-30",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.468"
+ },
+ {
+ "time": "19:24:00",
+ "height": "4.684"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "16:49"
+ },
+ {
+ "date": "2024-10-31",
+ "groups": [
+ {
+ "time": "07:41:00",
+ "height": "4.676"
+ },
+ {
+ "time": "19:54:00",
+ "height": "4.810"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "16:47"
+ },
+ {
+ "date": "2024-11-01",
+ "groups": [
+ {
+ "time": "08:09:00",
+ "height": "4.811"
+ },
+ {
+ "time": "20:22:00",
+ "height": "4.869"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2024-11-02",
+ "groups": [
+ {
+ "time": "08:37:00",
+ "height": "4.880"
+ },
+ {
+ "time": "20:50:00",
+ "height": "4.865"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "16:43"
+ },
+ {
+ "date": "2024-11-03",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "4.882"
+ },
+ {
+ "time": "21:19:00",
+ "height": "4.798"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2024-11-04",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "4.812"
+ },
+ {
+ "time": "21:48:00",
+ "height": "4.660"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2024-11-05",
+ "groups": [
+ {
+ "time": "10:04:00",
+ "height": "4.667"
+ },
+ {
+ "time": "22:20:00",
+ "height": "4.453"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2024-11-06",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "4.451"
+ },
+ {
+ "time": "23:00:00",
+ "height": "4.181"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2024-11-07",
+ "groups": [
+ {
+ "time": "11:24:00",
+ "height": "4.179"
+ },
+ {
+ "time": "23:50:00",
+ "height": "3.865"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2024-11-08",
+ "groups": [
+ {
+ "time": "12:22:00",
+ "height": "3.893"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2024-11-09",
+ "groups": [
+ {
+ "time": "00:59:00",
+ "height": "3.571"
+ },
+ {
+ "time": "13:42:00",
+ "height": "3.696"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2024-11-10",
+ "groups": [
+ {
+ "time": "02:28:00",
+ "height": "3.445"
+ },
+ {
+ "time": "15:15:00",
+ "height": "3.749"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2024-11-11",
+ "groups": [
+ {
+ "time": "03:59:00",
+ "height": "3.627"
+ },
+ {
+ "time": "16:31:00",
+ "height": "4.076"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2024-11-12",
+ "groups": [
+ {
+ "time": "05:06:00",
+ "height": "4.040"
+ },
+ {
+ "time": "17:30:00",
+ "height": "4.523"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2024-11-13",
+ "groups": [
+ {
+ "time": "05:59:00",
+ "height": "4.504"
+ },
+ {
+ "time": "18:20:00",
+ "height": "4.946"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2024-11-14",
+ "groups": [
+ {
+ "time": "06:46:00",
+ "height": "4.911"
+ },
+ {
+ "time": "19:07:00",
+ "height": "5.261"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2024-11-15",
+ "groups": [
+ {
+ "time": "07:30:00",
+ "height": "5.203"
+ },
+ {
+ "time": "19:51:00",
+ "height": "5.428"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2024-11-16",
+ "groups": [
+ {
+ "time": "08:12:00",
+ "height": "5.360"
+ },
+ {
+ "time": "20:34:00",
+ "height": "5.439"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2024-11-17",
+ "groups": [
+ {
+ "time": "08:53:00",
+ "height": "5.373"
+ },
+ {
+ "time": "21:17:00",
+ "height": "5.295"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2024-11-18",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "5.244"
+ },
+ {
+ "time": "21:59:00",
+ "height": "5.014"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2024-11-19",
+ "groups": [
+ {
+ "time": "10:17:00",
+ "height": "4.988"
+ },
+ {
+ "time": "22:45:00",
+ "height": "4.633"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2024-11-20",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.643"
+ },
+ {
+ "time": "23:36:00",
+ "height": "4.204"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2024-11-21",
+ "groups": [
+ {
+ "time": "11:57:00",
+ "height": "4.261"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2024-11-22",
+ "groups": [
+ {
+ "time": "00:30:00",
+ "height": "3.791"
+ },
+ {
+ "time": "12:55:00",
+ "height": "3.905"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2024-11-23",
+ "groups": [
+ {
+ "time": "01:34:00",
+ "height": "3.463"
+ },
+ {
+ "time": "14:06:00",
+ "height": "3.649"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2024-11-24",
+ "groups": [
+ {
+ "time": "02:51:00",
+ "height": "3.301"
+ },
+ {
+ "time": "15:27:00",
+ "height": "3.572"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2024-11-25",
+ "groups": [
+ {
+ "time": "04:07:00",
+ "height": "3.363"
+ },
+ {
+ "time": "16:33:00",
+ "height": "3.683"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2024-11-26",
+ "groups": [
+ {
+ "time": "05:07:00",
+ "height": "3.588"
+ },
+ {
+ "time": "17:26:00",
+ "height": "3.893"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2024-11-27",
+ "groups": [
+ {
+ "time": "05:54:00",
+ "height": "3.875"
+ },
+ {
+ "time": "18:10:00",
+ "height": "4.122"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2024-11-28",
+ "groups": [
+ {
+ "time": "06:33:00",
+ "height": "4.156"
+ },
+ {
+ "time": "18:48:00",
+ "height": "4.329"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2024-11-29",
+ "groups": [
+ {
+ "time": "07:08:00",
+ "height": "4.402"
+ },
+ {
+ "time": "19:23:00",
+ "height": "4.493"
+ }
+ ],
+ "sunrise": "08:04",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2024-11-30",
+ "groups": [
+ {
+ "time": "07:42:00",
+ "height": "4.596"
+ },
+ {
+ "time": "19:57:00",
+ "height": "4.607"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2024-12-01",
+ "groups": [
+ {
+ "time": "08:14:00",
+ "height": "4.731"
+ },
+ {
+ "time": "20:29:00",
+ "height": "4.667"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2024-12-02",
+ "groups": [
+ {
+ "time": "08:47:00",
+ "height": "4.803"
+ },
+ {
+ "time": "21:03:00",
+ "height": "4.672"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2024-12-03",
+ "groups": [
+ {
+ "time": "09:20:00",
+ "height": "4.809"
+ },
+ {
+ "time": "21:37:00",
+ "height": "4.618"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2024-12-04",
+ "groups": [
+ {
+ "time": "09:54:00",
+ "height": "4.749"
+ },
+ {
+ "time": "22:14:00",
+ "height": "4.503"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2024-12-05",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "4.628"
+ },
+ {
+ "time": "23:00:00",
+ "height": "4.333"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2024-12-06",
+ "groups": [
+ {
+ "time": "11:25:00",
+ "height": "4.462"
+ },
+ {
+ "time": "23:52:00",
+ "height": "4.128"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2024-12-07",
+ "groups": [
+ {
+ "time": "12:22:00",
+ "height": "4.283"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2024-12-08",
+ "groups": [
+ {
+ "time": "00:53:00",
+ "height": "3.933"
+ },
+ {
+ "time": "13:28:00",
+ "height": "4.142"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2024-12-09",
+ "groups": [
+ {
+ "time": "02:04:00",
+ "height": "3.810"
+ },
+ {
+ "time": "14:40:00",
+ "height": "4.095"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2024-12-10",
+ "groups": [
+ {
+ "time": "03:19:00",
+ "height": "3.821"
+ },
+ {
+ "time": "15:52:00",
+ "height": "4.172"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2024-12-11",
+ "groups": [
+ {
+ "time": "04:27:00",
+ "height": "3.983"
+ },
+ {
+ "time": "16:55:00",
+ "height": "4.352"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2024-12-12",
+ "groups": [
+ {
+ "time": "05:26:00",
+ "height": "4.245"
+ },
+ {
+ "time": "17:53:00",
+ "height": "4.571"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2024-12-13",
+ "groups": [
+ {
+ "time": "06:21:00",
+ "height": "4.533"
+ },
+ {
+ "time": "18:45:00",
+ "height": "4.771"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2024-12-14",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.792"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.914"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2024-12-15",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.980"
+ },
+ {
+ "time": "20:23:00",
+ "height": "4.973"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2024-12-16",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "5.076"
+ },
+ {
+ "time": "21:08:00",
+ "height": "4.940"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2024-12-17",
+ "groups": [
+ {
+ "time": "09:26:00",
+ "height": "5.065"
+ },
+ {
+ "time": "21:51:00",
+ "height": "4.813"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2024-12-18",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "4.949"
+ },
+ {
+ "time": "22:34:00",
+ "height": "4.604"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2024-12-19",
+ "groups": [
+ {
+ "time": "10:53:00",
+ "height": "4.747"
+ },
+ {
+ "time": "23:20:00",
+ "height": "4.340"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2024-12-20",
+ "groups": [
+ {
+ "time": "11:38:00",
+ "height": "4.490"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2024-12-21",
+ "groups": [
+ {
+ "time": "00:04:00",
+ "height": "4.056"
+ },
+ {
+ "time": "12:25:00",
+ "height": "4.212"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2024-12-22",
+ "groups": [
+ {
+ "time": "00:52:00",
+ "height": "3.781"
+ },
+ {
+ "time": "13:14:00",
+ "height": "3.943"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2024-12-23",
+ "groups": [
+ {
+ "time": "01:44:00",
+ "height": "3.544"
+ },
+ {
+ "time": "14:10:00",
+ "height": "3.712"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2024-12-24",
+ "groups": [
+ {
+ "time": "02:47:00",
+ "height": "3.383"
+ },
+ {
+ "time": "15:16:00",
+ "height": "3.562"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2024-12-25",
+ "groups": [
+ {
+ "time": "03:56:00",
+ "height": "3.354"
+ },
+ {
+ "time": "16:22:00",
+ "height": "3.542"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2024-12-26",
+ "groups": [
+ {
+ "time": "04:58:00",
+ "height": "3.479"
+ },
+ {
+ "time": "17:21:00",
+ "height": "3.651"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2024-12-27",
+ "groups": [
+ {
+ "time": "05:51:00",
+ "height": "3.716"
+ },
+ {
+ "time": "18:12:00",
+ "height": "3.844"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2024-12-28",
+ "groups": [
+ {
+ "time": "06:37:00",
+ "height": "4.001"
+ },
+ {
+ "time": "18:56:00",
+ "height": "4.069"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2024-12-29",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.285"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.288"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2024-12-30",
+ "groups": [
+ {
+ "time": "07:57:00",
+ "height": "4.535"
+ },
+ {
+ "time": "20:15:00",
+ "height": "4.478"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2024-12-31",
+ "groups": [
+ {
+ "time": "08:35:00",
+ "height": "4.737"
+ },
+ {
+ "time": "20:53:00",
+ "height": "4.624"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2025-01-01",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "4.881"
+ },
+ {
+ "time": "21:32:00",
+ "height": "4.714"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2025-01-02",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "4.960"
+ },
+ {
+ "time": "22:11:00",
+ "height": "4.736"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2025-01-03",
+ "groups": [
+ {
+ "time": "10:33:00",
+ "height": "4.967"
+ },
+ {
+ "time": "22:56:00",
+ "height": "4.679"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2025-01-04",
+ "groups": [
+ {
+ "time": "11:20:00",
+ "height": "4.898"
+ },
+ {
+ "time": "23:45:00",
+ "height": "4.546"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2025-01-05",
+ "groups": [
+ {
+ "time": "12:10:00",
+ "height": "4.754"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2025-01-06",
+ "groups": [
+ {
+ "time": "00:36:00",
+ "height": "4.352"
+ },
+ {
+ "time": "13:04:00",
+ "height": "4.551"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2025-01-07",
+ "groups": [
+ {
+ "time": "01:31:00",
+ "height": "4.127"
+ },
+ {
+ "time": "14:04:00",
+ "height": "4.317"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2025-01-08",
+ "groups": [
+ {
+ "time": "02:35:00",
+ "height": "3.921"
+ },
+ {
+ "time": "15:12:00",
+ "height": "4.106"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2025-01-09",
+ "groups": [
+ {
+ "time": "03:48:00",
+ "height": "3.807"
+ },
+ {
+ "time": "16:22:00",
+ "height": "3.995"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2025-01-10",
+ "groups": [
+ {
+ "time": "04:57:00",
+ "height": "3.855"
+ },
+ {
+ "time": "17:31:00",
+ "height": "4.035"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2025-01-11",
+ "groups": [
+ {
+ "time": "06:04:00",
+ "height": "4.067"
+ },
+ {
+ "time": "18:35:00",
+ "height": "4.210"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2025-01-12",
+ "groups": [
+ {
+ "time": "07:03:00",
+ "height": "4.371"
+ },
+ {
+ "time": "19:31:00",
+ "height": "4.440"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2025-01-13",
+ "groups": [
+ {
+ "time": "07:54:00",
+ "height": "4.668"
+ },
+ {
+ "time": "20:19:00",
+ "height": "4.641"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2025-01-14",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "4.888"
+ },
+ {
+ "time": "21:03:00",
+ "height": "4.761"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2025-01-15",
+ "groups": [
+ {
+ "time": "09:20:00",
+ "height": "4.999"
+ },
+ {
+ "time": "21:40:00",
+ "height": "4.783"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2025-01-16",
+ "groups": [
+ {
+ "time": "09:56:00",
+ "height": "4.997"
+ },
+ {
+ "time": "22:17:00",
+ "height": "4.712"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2025-01-17",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "4.898"
+ },
+ {
+ "time": "22:55:00",
+ "height": "4.564"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2025-01-18",
+ "groups": [
+ {
+ "time": "11:11:00",
+ "height": "4.723"
+ },
+ {
+ "time": "23:32:00",
+ "height": "4.360"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2025-01-19",
+ "groups": [
+ {
+ "time": "11:48:00",
+ "height": "4.494"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2025-01-20",
+ "groups": [
+ {
+ "time": "00:08:00",
+ "height": "4.117"
+ },
+ {
+ "time": "12:25:00",
+ "height": "4.223"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:39"
+ },
+ {
+ "date": "2025-01-21",
+ "groups": [
+ {
+ "time": "00:46:00",
+ "height": "3.847"
+ },
+ {
+ "time": "13:05:00",
+ "height": "3.918"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2025-01-22",
+ "groups": [
+ {
+ "time": "01:30:00",
+ "height": "3.565"
+ },
+ {
+ "time": "13:54:00",
+ "height": "3.603"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2025-01-23",
+ "groups": [
+ {
+ "time": "02:27:00",
+ "height": "3.312"
+ },
+ {
+ "time": "14:58:00",
+ "height": "3.333"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2025-01-24",
+ "groups": [
+ {
+ "time": "03:45:00",
+ "height": "3.178"
+ },
+ {
+ "time": "16:18:00",
+ "height": "3.221"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2025-01-25",
+ "groups": [
+ {
+ "time": "05:04:00",
+ "height": "3.286"
+ },
+ {
+ "time": "17:34:00",
+ "height": "3.364"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2025-01-26",
+ "groups": [
+ {
+ "time": "06:09:00",
+ "height": "3.606"
+ },
+ {
+ "time": "18:34:00",
+ "height": "3.683"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:50"
+ },
+ {
+ "date": "2025-01-27",
+ "groups": [
+ {
+ "time": "06:59:00",
+ "height": "4.013"
+ },
+ {
+ "time": "19:21:00",
+ "height": "4.060"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:52"
+ },
+ {
+ "date": "2025-01-28",
+ "groups": [
+ {
+ "time": "07:42:00",
+ "height": "4.421"
+ },
+ {
+ "time": "20:03:00",
+ "height": "4.426"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:53"
+ },
+ {
+ "date": "2025-01-29",
+ "groups": [
+ {
+ "time": "08:22:00",
+ "height": "4.788"
+ },
+ {
+ "time": "20:43:00",
+ "height": "4.740"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:55"
+ },
+ {
+ "date": "2025-01-30",
+ "groups": [
+ {
+ "time": "09:01:00",
+ "height": "5.086"
+ },
+ {
+ "time": "21:21:00",
+ "height": "4.973"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "16:57"
+ },
+ {
+ "date": "2025-01-31",
+ "groups": [
+ {
+ "time": "09:39:00",
+ "height": "5.292"
+ },
+ {
+ "time": "21:59:00",
+ "height": "5.098"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:59"
+ },
+ {
+ "date": "2025-02-01",
+ "groups": [
+ {
+ "time": "10:18:00",
+ "height": "5.379"
+ },
+ {
+ "time": "22:41:00",
+ "height": "5.093"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "17:01"
+ },
+ {
+ "date": "2025-02-02",
+ "groups": [
+ {
+ "time": "11:03:00",
+ "height": "5.325"
+ },
+ {
+ "time": "23:24:00",
+ "height": "4.952"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "17:03"
+ },
+ {
+ "date": "2025-02-03",
+ "groups": [
+ {
+ "time": "11:48:00",
+ "height": "5.123"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "17:05"
+ },
+ {
+ "date": "2025-02-04",
+ "groups": [
+ {
+ "time": "00:09:00",
+ "height": "4.687"
+ },
+ {
+ "time": "12:36:00",
+ "height": "4.786"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "17:07"
+ },
+ {
+ "date": "2025-02-05",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "4.330"
+ },
+ {
+ "time": "13:28:00",
+ "height": "4.352"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "17:09"
+ },
+ {
+ "date": "2025-02-06",
+ "groups": [
+ {
+ "time": "01:54:00",
+ "height": "3.932"
+ },
+ {
+ "time": "14:34:00",
+ "height": "3.895"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "17:11"
+ },
+ {
+ "date": "2025-02-07",
+ "groups": [
+ {
+ "time": "03:09:00",
+ "height": "3.592"
+ },
+ {
+ "time": "15:55:00",
+ "height": "3.565"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "17:13"
+ },
+ {
+ "date": "2025-02-08",
+ "groups": [
+ {
+ "time": "04:37:00",
+ "height": "3.493"
+ },
+ {
+ "time": "17:21:00",
+ "height": "3.550"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "17:14"
+ },
+ {
+ "date": "2025-02-09",
+ "groups": [
+ {
+ "time": "06:00:00",
+ "height": "3.736"
+ },
+ {
+ "time": "18:36:00",
+ "height": "3.840"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "17:16"
+ },
+ {
+ "date": "2025-02-10",
+ "groups": [
+ {
+ "time": "07:03:00",
+ "height": "4.160"
+ },
+ {
+ "time": "19:31:00",
+ "height": "4.219"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "17:18"
+ },
+ {
+ "date": "2025-02-11",
+ "groups": [
+ {
+ "time": "07:50:00",
+ "height": "4.559"
+ },
+ {
+ "time": "20:13:00",
+ "height": "4.538"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "17:20"
+ },
+ {
+ "date": "2025-02-12",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "4.846"
+ },
+ {
+ "time": "20:50:00",
+ "height": "4.746"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "17:22"
+ },
+ {
+ "date": "2025-02-13",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "5.003"
+ },
+ {
+ "time": "21:23:00",
+ "height": "4.841"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "17:24"
+ },
+ {
+ "date": "2025-02-14",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "5.045"
+ },
+ {
+ "time": "21:54:00",
+ "height": "4.839"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "17:26"
+ },
+ {
+ "date": "2025-02-15",
+ "groups": [
+ {
+ "time": "10:07:00",
+ "height": "4.994"
+ },
+ {
+ "time": "22:24:00",
+ "height": "4.755"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "17:28"
+ },
+ {
+ "date": "2025-02-16",
+ "groups": [
+ {
+ "time": "10:39:00",
+ "height": "4.866"
+ },
+ {
+ "time": "22:55:00",
+ "height": "4.602"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "17:30"
+ },
+ {
+ "date": "2025-02-17",
+ "groups": [
+ {
+ "time": "11:09:00",
+ "height": "4.669"
+ },
+ {
+ "time": "23:25:00",
+ "height": "4.385"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "17:32"
+ },
+ {
+ "date": "2025-02-18",
+ "groups": [
+ {
+ "time": "11:41:00",
+ "height": "4.404"
+ },
+ {
+ "time": "23:57:00",
+ "height": "4.110"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "17:34"
+ },
+ {
+ "date": "2025-02-19",
+ "groups": [
+ {
+ "time": "12:13:00",
+ "height": "4.076"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "17:36"
+ },
+ {
+ "date": "2025-02-20",
+ "groups": [
+ {
+ "time": "00:31:00",
+ "height": "3.788"
+ },
+ {
+ "time": "12:51:00",
+ "height": "3.697"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "17:38"
+ },
+ {
+ "date": "2025-02-21",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "3.437"
+ },
+ {
+ "time": "13:43:00",
+ "height": "3.302"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "17:39"
+ },
+ {
+ "date": "2025-02-22",
+ "groups": [
+ {
+ "time": "02:24:00",
+ "height": "3.119"
+ },
+ {
+ "time": "15:06:00",
+ "height": "2.995"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "17:41"
+ },
+ {
+ "date": "2025-02-23",
+ "groups": [
+ {
+ "time": "04:08:00",
+ "height": "3.028"
+ },
+ {
+ "time": "16:56:00",
+ "height": "3.038"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "17:43"
+ },
+ {
+ "date": "2025-02-24",
+ "groups": [
+ {
+ "time": "05:40:00",
+ "height": "3.354"
+ },
+ {
+ "time": "18:12:00",
+ "height": "3.458"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "17:45"
+ },
+ {
+ "date": "2025-02-25",
+ "groups": [
+ {
+ "time": "06:38:00",
+ "height": "3.880"
+ },
+ {
+ "time": "19:03:00",
+ "height": "3.990"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "17:47"
+ },
+ {
+ "date": "2025-02-26",
+ "groups": [
+ {
+ "time": "07:22:00",
+ "height": "4.430"
+ },
+ {
+ "time": "19:45:00",
+ "height": "4.504"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "17:49"
+ },
+ {
+ "date": "2025-02-27",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "4.925"
+ },
+ {
+ "time": "20:23:00",
+ "height": "4.937"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "17:51"
+ },
+ {
+ "date": "2025-02-28",
+ "groups": [
+ {
+ "time": "08:41:00",
+ "height": "5.321"
+ },
+ {
+ "time": "21:02:00",
+ "height": "5.249"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "17:53"
+ },
+ {
+ "date": "2025-03-01",
+ "groups": [
+ {
+ "time": "09:20:00",
+ "height": "5.581"
+ },
+ {
+ "time": "21:38:00",
+ "height": "5.409"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "17:55"
+ },
+ {
+ "date": "2025-03-02",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "5.669"
+ },
+ {
+ "time": "22:16:00",
+ "height": "5.397"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2025-03-03",
+ "groups": [
+ {
+ "time": "10:39:00",
+ "height": "5.564"
+ },
+ {
+ "time": "22:58:00",
+ "height": "5.209"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2025-03-04",
+ "groups": [
+ {
+ "time": "11:22:00",
+ "height": "5.263"
+ },
+ {
+ "time": "23:41:00",
+ "height": "4.866"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2025-03-05",
+ "groups": [
+ {
+ "time": "12:08:00",
+ "height": "4.795"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2025-03-06",
+ "groups": [
+ {
+ "time": "00:27:00",
+ "height": "4.406"
+ },
+ {
+ "time": "12:59:00",
+ "height": "4.218"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2025-03-07",
+ "groups": [
+ {
+ "time": "01:22:00",
+ "height": "3.890"
+ },
+ {
+ "time": "14:05:00",
+ "height": "3.630"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2025-03-08",
+ "groups": [
+ {
+ "time": "02:40:00",
+ "height": "3.436"
+ },
+ {
+ "time": "15:40:00",
+ "height": "3.235"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2025-03-09",
+ "groups": [
+ {
+ "time": "04:27:00",
+ "height": "3.316"
+ },
+ {
+ "time": "17:20:00",
+ "height": "3.311"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2025-03-10",
+ "groups": [
+ {
+ "time": "05:57:00",
+ "height": "3.653"
+ },
+ {
+ "time": "18:31:00",
+ "height": "3.731"
+ }
+ ],
+ "sunrise": "06:41",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2025-03-11",
+ "groups": [
+ {
+ "time": "06:53:00",
+ "height": "4.134"
+ },
+ {
+ "time": "19:18:00",
+ "height": "4.175"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2025-03-12",
+ "groups": [
+ {
+ "time": "07:35:00",
+ "height": "4.537"
+ },
+ {
+ "time": "19:55:00",
+ "height": "4.519"
+ }
+ ],
+ "sunrise": "06:36",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2025-03-13",
+ "groups": [
+ {
+ "time": "08:10:00",
+ "height": "4.807"
+ },
+ {
+ "time": "20:28:00",
+ "height": "4.740"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2025-03-14",
+ "groups": [
+ {
+ "time": "08:43:00",
+ "height": "4.951"
+ },
+ {
+ "time": "20:58:00",
+ "height": "4.855"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2025-03-15",
+ "groups": [
+ {
+ "time": "09:11:00",
+ "height": "4.998"
+ },
+ {
+ "time": "21:26:00",
+ "height": "4.884"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2025-03-16",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "4.969"
+ },
+ {
+ "time": "21:52:00",
+ "height": "4.840"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2025-03-17",
+ "groups": [
+ {
+ "time": "10:04:00",
+ "height": "4.871"
+ },
+ {
+ "time": "22:18:00",
+ "height": "4.724"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2025-03-18",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "4.699"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.536"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2025-03-19",
+ "groups": [
+ {
+ "time": "11:02:00",
+ "height": "4.451"
+ },
+ {
+ "time": "23:17:00",
+ "height": "4.279"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2025-03-20",
+ "groups": [
+ {
+ "time": "11:32:00",
+ "height": "4.133"
+ },
+ {
+ "time": "23:49:00",
+ "height": "3.960"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2025-03-21",
+ "groups": [
+ {
+ "time": "12:08:00",
+ "height": "3.757"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2025-03-22",
+ "groups": [
+ {
+ "time": "00:29:00",
+ "height": "3.597"
+ },
+ {
+ "time": "12:55:00",
+ "height": "3.346"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2025-03-23",
+ "groups": [
+ {
+ "time": "01:32:00",
+ "height": "3.231"
+ },
+ {
+ "time": "14:15:00",
+ "height": "2.988"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2025-03-24",
+ "groups": [
+ {
+ "time": "03:18:00",
+ "height": "3.046"
+ },
+ {
+ "time": "16:17:00",
+ "height": "2.975"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2025-03-25",
+ "groups": [
+ {
+ "time": "05:04:00",
+ "height": "3.334"
+ },
+ {
+ "time": "17:42:00",
+ "height": "3.434"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2025-03-26",
+ "groups": [
+ {
+ "time": "06:07:00",
+ "height": "3.902"
+ },
+ {
+ "time": "18:35:00",
+ "height": "4.033"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2025-03-27",
+ "groups": [
+ {
+ "time": "06:53:00",
+ "height": "4.505"
+ },
+ {
+ "time": "19:17:00",
+ "height": "4.603"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "18:42"
+ },
+ {
+ "date": "2025-03-28",
+ "groups": [
+ {
+ "time": "07:35:00",
+ "height": "5.039"
+ },
+ {
+ "time": "19:58:00",
+ "height": "5.069"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2025-03-29",
+ "groups": [
+ {
+ "time": "08:16:00",
+ "height": "5.445"
+ },
+ {
+ "time": "20:36:00",
+ "height": "5.389"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "18:45"
+ },
+ {
+ "date": "2025-03-30",
+ "groups": [
+ {
+ "time": "08:55:00",
+ "height": "5.680"
+ },
+ {
+ "time": "21:14:00",
+ "height": "5.536"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "18:47"
+ },
+ {
+ "date": "2025-03-31",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "5.715"
+ },
+ {
+ "time": "22:52:00",
+ "height": "5.495"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2025-04-01",
+ "groups": [
+ {
+ "time": "11:14:00",
+ "height": "5.538"
+ },
+ {
+ "time": "23:32:00",
+ "height": "5.271"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "19:51"
+ },
+ {
+ "date": "2025-04-02",
+ "groups": [
+ {
+ "time": "11:58:00",
+ "height": "5.162"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2025-04-03",
+ "groups": [
+ {
+ "time": "00:17:00",
+ "height": "4.889"
+ },
+ {
+ "time": "12:46:00",
+ "height": "4.632"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2025-04-04",
+ "groups": [
+ {
+ "time": "01:05:00",
+ "height": "4.396"
+ },
+ {
+ "time": "13:39:00",
+ "height": "4.026"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2025-04-05",
+ "groups": [
+ {
+ "time": "02:04:00",
+ "height": "3.868"
+ },
+ {
+ "time": "14:49:00",
+ "height": "3.460"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:58"
+ },
+ {
+ "date": "2025-04-06",
+ "groups": [
+ {
+ "time": "03:27:00",
+ "height": "3.442"
+ },
+ {
+ "time": "16:29:00",
+ "height": "3.147"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2025-04-07",
+ "groups": [
+ {
+ "time": "05:12:00",
+ "height": "3.371"
+ },
+ {
+ "time": "18:03:00",
+ "height": "3.292"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2025-04-08",
+ "groups": [
+ {
+ "time": "06:34:00",
+ "height": "3.684"
+ },
+ {
+ "time": "19:08:00",
+ "height": "3.699"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2025-04-09",
+ "groups": [
+ {
+ "time": "07:27:00",
+ "height": "4.092"
+ },
+ {
+ "time": "19:52:00",
+ "height": "4.104"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2025-04-10",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "4.428"
+ },
+ {
+ "time": "20:28:00",
+ "height": "4.419"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2025-04-11",
+ "groups": [
+ {
+ "time": "08:42:00",
+ "height": "4.651"
+ },
+ {
+ "time": "20:59:00",
+ "height": "4.629"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "20:09"
+ },
+ {
+ "date": "2025-04-12",
+ "groups": [
+ {
+ "time": "09:13:00",
+ "height": "4.776"
+ },
+ {
+ "time": "21:28:00",
+ "height": "4.754"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2025-04-13",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "4.827"
+ },
+ {
+ "time": "21:56:00",
+ "height": "4.808"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2025-04-14",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "4.817"
+ },
+ {
+ "time": "22:22:00",
+ "height": "4.798"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2025-04-15",
+ "groups": [
+ {
+ "time": "10:35:00",
+ "height": "4.744"
+ },
+ {
+ "time": "22:48:00",
+ "height": "4.718"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:16"
+ },
+ {
+ "date": "2025-04-16",
+ "groups": [
+ {
+ "time": "11:01:00",
+ "height": "4.602"
+ },
+ {
+ "time": "23:15:00",
+ "height": "4.567"
+ }
+ ],
+ "sunrise": "06:14",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2025-04-17",
+ "groups": [
+ {
+ "time": "11:31:00",
+ "height": "4.389"
+ },
+ {
+ "time": "23:47:00",
+ "height": "4.347"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2025-04-18",
+ "groups": [
+ {
+ "time": "12:04:00",
+ "height": "4.112"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2025-04-19",
+ "groups": [
+ {
+ "time": "00:22:00",
+ "height": "4.067"
+ },
+ {
+ "time": "12:44:00",
+ "height": "3.784"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2025-04-20",
+ "groups": [
+ {
+ "time": "01:08:00",
+ "height": "3.747"
+ },
+ {
+ "time": "13:36:00",
+ "height": "3.436"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:25"
+ },
+ {
+ "date": "2025-04-21",
+ "groups": [
+ {
+ "time": "02:12:00",
+ "height": "3.441"
+ },
+ {
+ "time": "14:55:00",
+ "height": "3.158"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2025-04-22",
+ "groups": [
+ {
+ "time": "03:47:00",
+ "height": "3.308"
+ },
+ {
+ "time": "16:40:00",
+ "height": "3.175"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2025-04-23",
+ "groups": [
+ {
+ "time": "05:22:00",
+ "height": "3.539"
+ },
+ {
+ "time": "18:01:00",
+ "height": "3.563"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:30"
+ },
+ {
+ "date": "2025-04-24",
+ "groups": [
+ {
+ "time": "06:27:00",
+ "height": "4.024"
+ },
+ {
+ "time": "18:57:00",
+ "height": "4.099"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2025-04-25",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.558"
+ },
+ {
+ "time": "19:44:00",
+ "height": "4.617"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2025-04-26",
+ "groups": [
+ {
+ "time": "08:04:00",
+ "height": "5.024"
+ },
+ {
+ "time": "20:28:00",
+ "height": "5.036"
+ }
+ ],
+ "sunrise": "05:52",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2025-04-27",
+ "groups": [
+ {
+ "time": "08:47:00",
+ "height": "5.358"
+ },
+ {
+ "time": "21:09:00",
+ "height": "5.317"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2025-04-28",
+ "groups": [
+ {
+ "time": "09:30:00",
+ "height": "5.524"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.437"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2025-04-29",
+ "groups": [
+ {
+ "time": "10:12:00",
+ "height": "5.502"
+ },
+ {
+ "time": "22:31:00",
+ "height": "5.388"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2025-04-30",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "5.293"
+ },
+ {
+ "time": "23:12:00",
+ "height": "5.174"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2025-05-01",
+ "groups": [
+ {
+ "time": "11:41:00",
+ "height": "4.924"
+ }
+ ],
+ "sunrise": "05:42",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2025-05-02",
+ "groups": [
+ {
+ "time": "00:00:00",
+ "height": "4.827"
+ },
+ {
+ "time": "12:32:00",
+ "height": "4.447"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "20:46"
+ },
+ {
+ "date": "2025-05-03",
+ "groups": [
+ {
+ "time": "00:54:00",
+ "height": "4.398"
+ },
+ {
+ "time": "13:28:00",
+ "height": "3.940"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2025-05-04",
+ "groups": [
+ {
+ "time": "01:54:00",
+ "height": "3.964"
+ },
+ {
+ "time": "14:36:00",
+ "height": "3.507"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2025-05-05",
+ "groups": [
+ {
+ "time": "03:10:00",
+ "height": "3.633"
+ },
+ {
+ "time": "16:01:00",
+ "height": "3.277"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2025-05-06",
+ "groups": [
+ {
+ "time": "04:39:00",
+ "height": "3.537"
+ },
+ {
+ "time": "17:22:00",
+ "height": "3.342"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2025-05-07",
+ "groups": [
+ {
+ "time": "05:50:00",
+ "height": "3.686"
+ },
+ {
+ "time": "18:25:00",
+ "height": "3.607"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2025-05-08",
+ "groups": [
+ {
+ "time": "06:45:00",
+ "height": "3.938"
+ },
+ {
+ "time": "19:12:00",
+ "height": "3.916"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2025-05-09",
+ "groups": [
+ {
+ "time": "07:28:00",
+ "height": "4.178"
+ },
+ {
+ "time": "19:51:00",
+ "height": "4.187"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "20:58"
+ },
+ {
+ "date": "2025-05-10",
+ "groups": [
+ {
+ "time": "08:06:00",
+ "height": "4.364"
+ },
+ {
+ "time": "20:25:00",
+ "height": "4.396"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2025-05-11",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "4.489"
+ },
+ {
+ "time": "20:56:00",
+ "height": "4.544"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2025-05-12",
+ "groups": [
+ {
+ "time": "09:10:00",
+ "height": "4.560"
+ },
+ {
+ "time": "21:26:00",
+ "height": "4.633"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2025-05-13",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "4.579"
+ },
+ {
+ "time": "21:56:00",
+ "height": "4.664"
+ }
+ ],
+ "sunrise": "05:20",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2025-05-14",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "4.545"
+ },
+ {
+ "time": "22:25:00",
+ "height": "4.633"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2025-05-15",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "4.454"
+ },
+ {
+ "time": "22:55:00",
+ "height": "4.539"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2025-05-16",
+ "groups": [
+ {
+ "time": "11:11:00",
+ "height": "4.308"
+ },
+ {
+ "time": "23:30:00",
+ "height": "4.387"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2025-05-17",
+ "groups": [
+ {
+ "time": "11:50:00",
+ "height": "4.112"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:11"
+ },
+ {
+ "date": "2025-05-18",
+ "groups": [
+ {
+ "time": "00:11:00",
+ "height": "4.187"
+ },
+ {
+ "time": "12:35:00",
+ "height": "3.882"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2025-05-19",
+ "groups": [
+ {
+ "time": "01:01:00",
+ "height": "3.967"
+ },
+ {
+ "time": "13:31:00",
+ "height": "3.652"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2025-05-20",
+ "groups": [
+ {
+ "time": "02:05:00",
+ "height": "3.780"
+ },
+ {
+ "time": "14:42:00",
+ "height": "3.496"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2025-05-21",
+ "groups": [
+ {
+ "time": "03:22:00",
+ "height": "3.718"
+ },
+ {
+ "time": "16:04:00",
+ "height": "3.513"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2025-05-22",
+ "groups": [
+ {
+ "time": "04:41:00",
+ "height": "3.849"
+ },
+ {
+ "time": "17:18:00",
+ "height": "3.742"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2025-05-23",
+ "groups": [
+ {
+ "time": "05:46:00",
+ "height": "4.144"
+ },
+ {
+ "time": "18:18:00",
+ "height": "4.103"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2025-05-24",
+ "groups": [
+ {
+ "time": "06:42:00",
+ "height": "4.498"
+ },
+ {
+ "time": "19:11:00",
+ "height": "4.485"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2025-05-25",
+ "groups": [
+ {
+ "time": "07:33:00",
+ "height": "4.818"
+ },
+ {
+ "time": "19:59:00",
+ "height": "4.816"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2025-05-26",
+ "groups": [
+ {
+ "time": "08:22:00",
+ "height": "5.047"
+ },
+ {
+ "time": "20:45:00",
+ "height": "5.053"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2025-05-27",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "5.157"
+ },
+ {
+ "time": "21:30:00",
+ "height": "5.174"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2025-05-28",
+ "groups": [
+ {
+ "time": "09:56:00",
+ "height": "5.136"
+ },
+ {
+ "time": "22:16:00",
+ "height": "5.169"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2025-05-29",
+ "groups": [
+ {
+ "time": "10:42:00",
+ "height": "4.987"
+ },
+ {
+ "time": "23:00:00",
+ "height": "5.040"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2025-05-30",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "4.727"
+ },
+ {
+ "time": "23:51:00",
+ "height": "4.805"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2025-05-31",
+ "groups": [
+ {
+ "time": "12:22:00",
+ "height": "4.396"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2025-06-01",
+ "groups": [
+ {
+ "time": "00:44:00",
+ "height": "4.504"
+ },
+ {
+ "time": "13:15:00",
+ "height": "4.044"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2025-06-02",
+ "groups": [
+ {
+ "time": "01:39:00",
+ "height": "4.185"
+ },
+ {
+ "time": "14:13:00",
+ "height": "3.728"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2025-06-03",
+ "groups": [
+ {
+ "time": "02:39:00",
+ "height": "3.904"
+ },
+ {
+ "time": "15:17:00",
+ "height": "3.501"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2025-06-04",
+ "groups": [
+ {
+ "time": "03:46:00",
+ "height": "3.714"
+ },
+ {
+ "time": "16:27:00",
+ "height": "3.413"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2025-06-05",
+ "groups": [
+ {
+ "time": "04:53:00",
+ "height": "3.653"
+ },
+ {
+ "time": "17:28:00",
+ "height": "3.477"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2025-06-06",
+ "groups": [
+ {
+ "time": "05:52:00",
+ "height": "3.710"
+ },
+ {
+ "time": "18:22:00",
+ "height": "3.647"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2025-06-07",
+ "groups": [
+ {
+ "time": "06:42:00",
+ "height": "3.837"
+ },
+ {
+ "time": "19:09:00",
+ "height": "3.863"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2025-06-08",
+ "groups": [
+ {
+ "time": "07:27:00",
+ "height": "3.989"
+ },
+ {
+ "time": "19:49:00",
+ "height": "4.081"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2025-06-09",
+ "groups": [
+ {
+ "time": "08:06:00",
+ "height": "4.134"
+ },
+ {
+ "time": "20:27:00",
+ "height": "4.274"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2025-06-10",
+ "groups": [
+ {
+ "time": "08:44:00",
+ "height": "4.253"
+ },
+ {
+ "time": "21:02:00",
+ "height": "4.424"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2025-06-11",
+ "groups": [
+ {
+ "time": "09:19:00",
+ "height": "4.335"
+ },
+ {
+ "time": "21:36:00",
+ "height": "4.524"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2025-06-12",
+ "groups": [
+ {
+ "time": "09:53:00",
+ "height": "4.379"
+ },
+ {
+ "time": "22:09:00",
+ "height": "4.575"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2025-06-13",
+ "groups": [
+ {
+ "time": "10:27:00",
+ "height": "4.383"
+ },
+ {
+ "time": "22:44:00",
+ "height": "4.576"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2025-06-14",
+ "groups": [
+ {
+ "time": "11:03:00",
+ "height": "4.346"
+ },
+ {
+ "time": "23:23:00",
+ "height": "4.531"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2025-06-15",
+ "groups": [
+ {
+ "time": "11:44:00",
+ "height": "4.267"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2025-06-16",
+ "groups": [
+ {
+ "time": "00:07:00",
+ "height": "4.445"
+ },
+ {
+ "time": "12:31:00",
+ "height": "4.153"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2025-06-17",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "4.332"
+ },
+ {
+ "time": "13:23:00",
+ "height": "4.019"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2025-06-18",
+ "groups": [
+ {
+ "time": "01:52:00",
+ "height": "4.214"
+ },
+ {
+ "time": "14:21:00",
+ "height": "3.896"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2025-06-19",
+ "groups": [
+ {
+ "time": "02:54:00",
+ "height": "4.121"
+ },
+ {
+ "time": "15:26:00",
+ "height": "3.824"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2025-06-20",
+ "groups": [
+ {
+ "time": "04:01:00",
+ "height": "4.085"
+ },
+ {
+ "time": "16:37:00",
+ "height": "3.846"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2025-06-21",
+ "groups": [
+ {
+ "time": "05:08:00",
+ "height": "4.129"
+ },
+ {
+ "time": "17:40:00",
+ "height": "3.981"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2025-06-22",
+ "groups": [
+ {
+ "time": "06:10:00",
+ "height": "4.254"
+ },
+ {
+ "time": "18:41:00",
+ "height": "4.206"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2025-06-23",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "4.425"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.467"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2025-06-24",
+ "groups": [
+ {
+ "time": "08:05:00",
+ "height": "4.601"
+ },
+ {
+ "time": "20:31:00",
+ "height": "4.714"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2025-06-25",
+ "groups": [
+ {
+ "time": "08:59:00",
+ "height": "4.743"
+ },
+ {
+ "time": "21:20:00",
+ "height": "4.905"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2025-06-26",
+ "groups": [
+ {
+ "time": "09:49:00",
+ "height": "4.817"
+ },
+ {
+ "time": "22:08:00",
+ "height": "5.005"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2025-06-27",
+ "groups": [
+ {
+ "time": "10:35:00",
+ "height": "4.803"
+ },
+ {
+ "time": "22:53:00",
+ "height": "4.998"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2025-06-28",
+ "groups": [
+ {
+ "time": "11:18:00",
+ "height": "4.694"
+ },
+ {
+ "time": "23:39:00",
+ "height": "4.884"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2025-06-29",
+ "groups": [
+ {
+ "time": "12:06:00",
+ "height": "4.505"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2025-06-30",
+ "groups": [
+ {
+ "time": "00:25:00",
+ "height": "4.684"
+ },
+ {
+ "time": "12:51:00",
+ "height": "4.262"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2025-07-01",
+ "groups": [
+ {
+ "time": "01:11:00",
+ "height": "4.428"
+ },
+ {
+ "time": "13:36:00",
+ "height": "3.998"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2025-07-02",
+ "groups": [
+ {
+ "time": "01:56:00",
+ "height": "4.148"
+ },
+ {
+ "time": "14:23:00",
+ "height": "3.742"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2025-07-03",
+ "groups": [
+ {
+ "time": "02:46:00",
+ "height": "3.873"
+ },
+ {
+ "time": "15:17:00",
+ "height": "3.522"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2025-07-04",
+ "groups": [
+ {
+ "time": "03:43:00",
+ "height": "3.635"
+ },
+ {
+ "time": "16:20:00",
+ "height": "3.381"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2025-07-05",
+ "groups": [
+ {
+ "time": "04:48:00",
+ "height": "3.484"
+ },
+ {
+ "time": "17:24:00",
+ "height": "3.373"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2025-07-06",
+ "groups": [
+ {
+ "time": "05:50:00",
+ "height": "3.468"
+ },
+ {
+ "time": "18:25:00",
+ "height": "3.512"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2025-07-07",
+ "groups": [
+ {
+ "time": "06:48:00",
+ "height": "3.582"
+ },
+ {
+ "time": "19:17:00",
+ "height": "3.750"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2025-07-08",
+ "groups": [
+ {
+ "time": "07:39:00",
+ "height": "3.777"
+ },
+ {
+ "time": "20:03:00",
+ "height": "4.021"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2025-07-09",
+ "groups": [
+ {
+ "time": "08:23:00",
+ "height": "3.994"
+ },
+ {
+ "time": "20:44:00",
+ "height": "4.278"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2025-07-10",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "4.199"
+ },
+ {
+ "time": "21:21:00",
+ "height": "4.496"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2025-07-11",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "4.374"
+ },
+ {
+ "time": "21:58:00",
+ "height": "4.669"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2025-07-12",
+ "groups": [
+ {
+ "time": "10:17:00",
+ "height": "4.509"
+ },
+ {
+ "time": "22:35:00",
+ "height": "4.792"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2025-07-13",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "4.595"
+ },
+ {
+ "time": "23:12:00",
+ "height": "4.857"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2025-07-14",
+ "groups": [
+ {
+ "time": "11:33:00",
+ "height": "4.614"
+ },
+ {
+ "time": "23:55:00",
+ "height": "4.852"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2025-07-15",
+ "groups": [
+ {
+ "time": "12:18:00",
+ "height": "4.558"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2025-07-16",
+ "groups": [
+ {
+ "time": "00:41:00",
+ "height": "4.769"
+ },
+ {
+ "time": "13:03:00",
+ "height": "4.427"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2025-07-17",
+ "groups": [
+ {
+ "time": "01:29:00",
+ "height": "4.610"
+ },
+ {
+ "time": "13:53:00",
+ "height": "4.236"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2025-07-18",
+ "groups": [
+ {
+ "time": "02:22:00",
+ "height": "4.389"
+ },
+ {
+ "time": "14:49:00",
+ "height": "4.016"
+ }
+ ],
+ "sunrise": "05:14",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2025-07-19",
+ "groups": [
+ {
+ "time": "03:23:00",
+ "height": "4.139"
+ },
+ {
+ "time": "15:57:00",
+ "height": "3.823"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2025-07-20",
+ "groups": [
+ {
+ "time": "04:35:00",
+ "height": "3.931"
+ },
+ {
+ "time": "17:10:00",
+ "height": "3.751"
+ }
+ ],
+ "sunrise": "05:17",
+ "sunset": "21:28"
+ },
+ {
+ "date": "2025-07-21",
+ "groups": [
+ {
+ "time": "05:47:00",
+ "height": "3.867"
+ },
+ {
+ "time": "18:23:00",
+ "height": "3.876"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2025-07-22",
+ "groups": [
+ {
+ "time": "06:58:00",
+ "height": "3.992"
+ },
+ {
+ "time": "19:30:00",
+ "height": "4.168"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2025-07-23",
+ "groups": [
+ {
+ "time": "08:02:00",
+ "height": "4.247"
+ },
+ {
+ "time": "20:28:00",
+ "height": "4.519"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2025-07-24",
+ "groups": [
+ {
+ "time": "08:56:00",
+ "height": "4.521"
+ },
+ {
+ "time": "21:17:00",
+ "height": "4.822"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2025-07-25",
+ "groups": [
+ {
+ "time": "09:42:00",
+ "height": "4.725"
+ },
+ {
+ "time": "22:00:00",
+ "height": "5.015"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2025-07-26",
+ "groups": [
+ {
+ "time": "10:23:00",
+ "height": "4.822"
+ },
+ {
+ "time": "22:39:00",
+ "height": "5.079"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2025-07-27",
+ "groups": [
+ {
+ "time": "11:01:00",
+ "height": "4.807"
+ },
+ {
+ "time": "23:17:00",
+ "height": "5.021"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2025-07-28",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "4.692"
+ },
+ {
+ "time": "23:56:00",
+ "height": "4.861"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2025-07-29",
+ "groups": [
+ {
+ "time": "12:17:00",
+ "height": "4.503"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2025-07-30",
+ "groups": [
+ {
+ "time": "00:33:00",
+ "height": "4.629"
+ },
+ {
+ "time": "12:52:00",
+ "height": "4.260"
+ }
+ ],
+ "sunrise": "05:32",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2025-07-31",
+ "groups": [
+ {
+ "time": "01:10:00",
+ "height": "4.343"
+ },
+ {
+ "time": "13:30:00",
+ "height": "3.982"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2025-08-01",
+ "groups": [
+ {
+ "time": "01:48:00",
+ "height": "4.020"
+ },
+ {
+ "time": "14:12:00",
+ "height": "3.686"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2025-08-02",
+ "groups": [
+ {
+ "time": "02:32:00",
+ "height": "3.676"
+ },
+ {
+ "time": "15:02:00",
+ "height": "3.399"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "21:08"
+ },
+ {
+ "date": "2025-08-03",
+ "groups": [
+ {
+ "time": "03:30:00",
+ "height": "3.354"
+ },
+ {
+ "time": "16:14:00",
+ "height": "3.193"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2025-08-04",
+ "groups": [
+ {
+ "time": "04:50:00",
+ "height": "3.153"
+ },
+ {
+ "time": "17:40:00",
+ "height": "3.210"
+ }
+ ],
+ "sunrise": "05:40",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2025-08-05",
+ "groups": [
+ {
+ "time": "06:14:00",
+ "height": "3.219"
+ },
+ {
+ "time": "18:52:00",
+ "height": "3.484"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2025-08-06",
+ "groups": [
+ {
+ "time": "07:19:00",
+ "height": "3.510"
+ },
+ {
+ "time": "19:44:00",
+ "height": "3.875"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2025-08-07",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "3.879"
+ },
+ {
+ "time": "20:27:00",
+ "height": "4.274"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2025-08-08",
+ "groups": [
+ {
+ "time": "08:47:00",
+ "height": "4.242"
+ },
+ {
+ "time": "21:04:00",
+ "height": "4.632"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2025-08-09",
+ "groups": [
+ {
+ "time": "09:25:00",
+ "height": "4.560"
+ },
+ {
+ "time": "21:42:00",
+ "height": "4.928"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:55"
+ },
+ {
+ "date": "2025-08-10",
+ "groups": [
+ {
+ "time": "10:01:00",
+ "height": "4.812"
+ },
+ {
+ "time": "22:18:00",
+ "height": "5.147"
+ }
+ ],
+ "sunrise": "05:50",
+ "sunset": "20:53"
+ },
+ {
+ "date": "2025-08-11",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "4.976"
+ },
+ {
+ "time": "22:54:00",
+ "height": "5.269"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:51"
+ },
+ {
+ "date": "2025-08-12",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "5.029"
+ },
+ {
+ "time": "23:34:00",
+ "height": "5.268"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2025-08-13",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "4.955"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2025-08-14",
+ "groups": [
+ {
+ "time": "00:17:00",
+ "height": "5.128"
+ },
+ {
+ "time": "12:37:00",
+ "height": "4.756"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2025-08-15",
+ "groups": [
+ {
+ "time": "01:01:00",
+ "height": "4.850"
+ },
+ {
+ "time": "13:22:00",
+ "height": "4.450"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2025-08-16",
+ "groups": [
+ {
+ "time": "01:51:00",
+ "height": "4.458"
+ },
+ {
+ "time": "14:15:00",
+ "height": "4.075"
+ }
+ ],
+ "sunrise": "06:00",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2025-08-17",
+ "groups": [
+ {
+ "time": "02:51:00",
+ "height": "4.005"
+ },
+ {
+ "time": "15:22:00",
+ "height": "3.706"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2025-08-18",
+ "groups": [
+ {
+ "time": "04:10:00",
+ "height": "3.612"
+ },
+ {
+ "time": "16:53:00",
+ "height": "3.510"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2025-08-19",
+ "groups": [
+ {
+ "time": "05:40:00",
+ "height": "3.499"
+ },
+ {
+ "time": "18:23:00",
+ "height": "3.676"
+ }
+ ],
+ "sunrise": "06:05",
+ "sunset": "20:34"
+ },
+ {
+ "date": "2025-08-20",
+ "groups": [
+ {
+ "time": "07:03:00",
+ "height": "3.751"
+ },
+ {
+ "time": "19:33:00",
+ "height": "4.106"
+ }
+ ],
+ "sunrise": "06:07",
+ "sunset": "20:32"
+ },
+ {
+ "date": "2025-08-21",
+ "groups": [
+ {
+ "time": "08:04:00",
+ "height": "4.165"
+ },
+ {
+ "time": "20:25:00",
+ "height": "4.560"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:30"
+ },
+ {
+ "date": "2025-08-22",
+ "groups": [
+ {
+ "time": "08:50:00",
+ "height": "4.540"
+ },
+ {
+ "time": "21:07:00",
+ "height": "4.904"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2025-08-23",
+ "groups": [
+ {
+ "time": "09:30:00",
+ "height": "4.798"
+ },
+ {
+ "time": "21:45:00",
+ "height": "5.101"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2025-08-24",
+ "groups": [
+ {
+ "time": "10:05:00",
+ "height": "4.925"
+ },
+ {
+ "time": "22:19:00",
+ "height": "5.160"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "20:23"
+ },
+ {
+ "date": "2025-08-25",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "4.936"
+ },
+ {
+ "time": "22:50:00",
+ "height": "5.106"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2025-08-26",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.853"
+ },
+ {
+ "time": "23:20:00",
+ "height": "4.962"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2025-08-27",
+ "groups": [
+ {
+ "time": "11:38:00",
+ "height": "4.692"
+ },
+ {
+ "time": "23:53:00",
+ "height": "4.744"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2025-08-28",
+ "groups": [
+ {
+ "time": "12:09:00",
+ "height": "4.469"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:14"
+ },
+ {
+ "date": "2025-08-29",
+ "groups": [
+ {
+ "time": "00:23:00",
+ "height": "4.464"
+ },
+ {
+ "time": "12:41:00",
+ "height": "4.188"
+ }
+ ],
+ "sunrise": "06:22",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2025-08-30",
+ "groups": [
+ {
+ "time": "00:56:00",
+ "height": "4.123"
+ },
+ {
+ "time": "13:15:00",
+ "height": "3.860"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2025-08-31",
+ "groups": [
+ {
+ "time": "01:34:00",
+ "height": "3.732"
+ },
+ {
+ "time": "13:59:00",
+ "height": "3.500"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "20:07"
+ },
+ {
+ "date": "2025-09-01",
+ "groups": [
+ {
+ "time": "02:22:00",
+ "height": "3.321"
+ },
+ {
+ "time": "15:02:00",
+ "height": "3.166"
+ }
+ ],
+ "sunrise": "06:27",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2025-09-02",
+ "groups": [
+ {
+ "time": "03:41:00",
+ "height": "2.983"
+ },
+ {
+ "time": "16:50:00",
+ "height": "3.041"
+ }
+ ],
+ "sunrise": "06:29",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2025-09-03",
+ "groups": [
+ {
+ "time": "05:41:00",
+ "height": "2.987"
+ },
+ {
+ "time": "18:26:00",
+ "height": "3.347"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:00"
+ },
+ {
+ "date": "2025-09-04",
+ "groups": [
+ {
+ "time": "06:58:00",
+ "height": "3.391"
+ },
+ {
+ "time": "19:22:00",
+ "height": "3.852"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "19:58"
+ },
+ {
+ "date": "2025-09-05",
+ "groups": [
+ {
+ "time": "07:46:00",
+ "height": "3.902"
+ },
+ {
+ "time": "20:04:00",
+ "height": "4.373"
+ }
+ ],
+ "sunrise": "06:34",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2025-09-06",
+ "groups": [
+ {
+ "time": "08:25:00",
+ "height": "4.396"
+ },
+ {
+ "time": "20:42:00",
+ "height": "4.842"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "19:53"
+ },
+ {
+ "date": "2025-09-07",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "4.819"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.221"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "19:51"
+ },
+ {
+ "date": "2025-09-08",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "5.138"
+ },
+ {
+ "time": "21:55:00",
+ "height": "5.482"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "19:48"
+ },
+ {
+ "date": "2025-09-09",
+ "groups": [
+ {
+ "time": "10:13:00",
+ "height": "5.327"
+ },
+ {
+ "time": "22:31:00",
+ "height": "5.598"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:46"
+ },
+ {
+ "date": "2025-09-10",
+ "groups": [
+ {
+ "time": "10:49:00",
+ "height": "5.363"
+ },
+ {
+ "time": "23:08:00",
+ "height": "5.542"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:44"
+ },
+ {
+ "date": "2025-09-11",
+ "groups": [
+ {
+ "time": "11:27:00",
+ "height": "5.236"
+ },
+ {
+ "time": "23:51:00",
+ "height": "5.302"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "19:41"
+ },
+ {
+ "date": "2025-09-12",
+ "groups": [
+ {
+ "time": "12:09:00",
+ "height": "4.954"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "19:39"
+ },
+ {
+ "date": "2025-09-13",
+ "groups": [
+ {
+ "time": "00:35:00",
+ "height": "4.893"
+ },
+ {
+ "time": "12:55:00",
+ "height": "4.545"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:36"
+ },
+ {
+ "date": "2025-09-14",
+ "groups": [
+ {
+ "time": "01:26:00",
+ "height": "4.360"
+ },
+ {
+ "time": "13:49:00",
+ "height": "4.060"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "19:34"
+ },
+ {
+ "date": "2025-09-15",
+ "groups": [
+ {
+ "time": "02:29:00",
+ "height": "3.787"
+ },
+ {
+ "time": "15:04:00",
+ "height": "3.606"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "19:32"
+ },
+ {
+ "date": "2025-09-16",
+ "groups": [
+ {
+ "time": "04:00:00",
+ "height": "3.357"
+ },
+ {
+ "time": "16:50:00",
+ "height": "3.430"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:29"
+ },
+ {
+ "date": "2025-09-17",
+ "groups": [
+ {
+ "time": "05:45:00",
+ "height": "3.365"
+ },
+ {
+ "time": "18:25:00",
+ "height": "3.728"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:27"
+ },
+ {
+ "date": "2025-09-18",
+ "groups": [
+ {
+ "time": "07:03:00",
+ "height": "3.772"
+ },
+ {
+ "time": "19:27:00",
+ "height": "4.226"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "19:24"
+ },
+ {
+ "date": "2025-09-19",
+ "groups": [
+ {
+ "time": "07:54:00",
+ "height": "4.244"
+ },
+ {
+ "time": "20:12:00",
+ "height": "4.664"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "19:22"
+ },
+ {
+ "date": "2025-09-20",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.618"
+ },
+ {
+ "time": "20:48:00",
+ "height": "4.958"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "19:20"
+ },
+ {
+ "date": "2025-09-21",
+ "groups": [
+ {
+ "time": "09:07:00",
+ "height": "4.857"
+ },
+ {
+ "time": "21:22:00",
+ "height": "5.106"
+ }
+ ],
+ "sunrise": "07:01",
+ "sunset": "19:17"
+ },
+ {
+ "date": "2025-09-22",
+ "groups": [
+ {
+ "time": "09:39:00",
+ "height": "4.973"
+ },
+ {
+ "time": "21:52:00",
+ "height": "5.138"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "19:15"
+ },
+ {
+ "date": "2025-09-23",
+ "groups": [
+ {
+ "time": "10:07:00",
+ "height": "4.992"
+ },
+ {
+ "time": "22:21:00",
+ "height": "5.085"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "19:12"
+ },
+ {
+ "date": "2025-09-24",
+ "groups": [
+ {
+ "time": "10:35:00",
+ "height": "4.934"
+ },
+ {
+ "time": "22:47:00",
+ "height": "4.960"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "19:10"
+ },
+ {
+ "date": "2025-09-25",
+ "groups": [
+ {
+ "time": "11:01:00",
+ "height": "4.805"
+ },
+ {
+ "time": "23:14:00",
+ "height": "4.766"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "19:08"
+ },
+ {
+ "date": "2025-09-26",
+ "groups": [
+ {
+ "time": "11:29:00",
+ "height": "4.606"
+ },
+ {
+ "time": "23:43:00",
+ "height": "4.502"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "19:05"
+ },
+ {
+ "date": "2025-09-27",
+ "groups": [
+ {
+ "time": "11:59:00",
+ "height": "4.341"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "19:03"
+ },
+ {
+ "date": "2025-09-28",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "4.172"
+ },
+ {
+ "time": "12:33:00",
+ "height": "4.017"
+ }
+ ],
+ "sunrise": "07:13",
+ "sunset": "19:00"
+ },
+ {
+ "date": "2025-09-29",
+ "groups": [
+ {
+ "time": "00:49:00",
+ "height": "3.786"
+ },
+ {
+ "time": "13:13:00",
+ "height": "3.650"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "18:58"
+ },
+ {
+ "date": "2025-09-30",
+ "groups": [
+ {
+ "time": "01:36:00",
+ "height": "3.369"
+ },
+ {
+ "time": "14:13:00",
+ "height": "3.286"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "18:56"
+ },
+ {
+ "date": "2025-10-01",
+ "groups": [
+ {
+ "time": "02:53:00",
+ "height": "3.006"
+ },
+ {
+ "time": "15:59:00",
+ "height": "3.096"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "18:53"
+ },
+ {
+ "date": "2025-10-02",
+ "groups": [
+ {
+ "time": "04:59:00",
+ "height": "2.971"
+ },
+ {
+ "time": "17:49:00",
+ "height": "3.367"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "18:51"
+ },
+ {
+ "date": "2025-10-03",
+ "groups": [
+ {
+ "time": "06:25:00",
+ "height": "3.406"
+ },
+ {
+ "time": "18:48:00",
+ "height": "3.904"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "18:48"
+ },
+ {
+ "date": "2025-10-04",
+ "groups": [
+ {
+ "time": "07:15:00",
+ "height": "3.978"
+ },
+ {
+ "time": "19:32:00",
+ "height": "4.477"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "18:46"
+ },
+ {
+ "date": "2025-10-05",
+ "groups": [
+ {
+ "time": "07:56:00",
+ "height": "4.532"
+ },
+ {
+ "time": "20:12:00",
+ "height": "4.991"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2025-10-06",
+ "groups": [
+ {
+ "time": "08:33:00",
+ "height": "4.998"
+ },
+ {
+ "time": "20:50:00",
+ "height": "5.394"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "18:41"
+ },
+ {
+ "date": "2025-10-07",
+ "groups": [
+ {
+ "time": "09:10:00",
+ "height": "5.334"
+ },
+ {
+ "time": "21:28:00",
+ "height": "5.644"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "18:39"
+ },
+ {
+ "date": "2025-10-08",
+ "groups": [
+ {
+ "time": "09:48:00",
+ "height": "5.516"
+ },
+ {
+ "time": "22:07:00",
+ "height": "5.716"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2025-10-09",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "5.525"
+ },
+ {
+ "time": "22:46:00",
+ "height": "5.592"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "18:34"
+ },
+ {
+ "date": "2025-10-10",
+ "groups": [
+ {
+ "time": "11:03:00",
+ "height": "5.358"
+ },
+ {
+ "time": "23:28:00",
+ "height": "5.274"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "18:32"
+ },
+ {
+ "date": "2025-10-11",
+ "groups": [
+ {
+ "time": "11:47:00",
+ "height": "5.031"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2025-10-12",
+ "groups": [
+ {
+ "time": "00:17:00",
+ "height": "4.795"
+ },
+ {
+ "time": "12:37:00",
+ "height": "4.582"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2025-10-13",
+ "groups": [
+ {
+ "time": "01:12:00",
+ "height": "4.224"
+ },
+ {
+ "time": "13:37:00",
+ "height": "4.085"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2025-10-14",
+ "groups": [
+ {
+ "time": "02:20:00",
+ "height": "3.674"
+ },
+ {
+ "time": "14:58:00",
+ "height": "3.672"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "18:23"
+ },
+ {
+ "date": "2025-10-15",
+ "groups": [
+ {
+ "time": "03:54:00",
+ "height": "3.342"
+ },
+ {
+ "time": "16:43:00",
+ "height": "3.574"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2025-10-16",
+ "groups": [
+ {
+ "time": "05:34:00",
+ "height": "3.437"
+ },
+ {
+ "time": "18:06:00",
+ "height": "3.858"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2025-10-17",
+ "groups": [
+ {
+ "time": "06:42:00",
+ "height": "3.825"
+ },
+ {
+ "time": "19:03:00",
+ "height": "4.266"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2025-10-18",
+ "groups": [
+ {
+ "time": "07:29:00",
+ "height": "4.237"
+ },
+ {
+ "time": "19:46:00",
+ "height": "4.608"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2025-10-19",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "4.560"
+ },
+ {
+ "time": "20:22:00",
+ "height": "4.831"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "18:12"
+ },
+ {
+ "date": "2025-10-20",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "4.771"
+ },
+ {
+ "time": "20:54:00",
+ "height": "4.943"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2025-10-21",
+ "groups": [
+ {
+ "time": "09:10:00",
+ "height": "4.888"
+ },
+ {
+ "time": "21:23:00",
+ "height": "4.973"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2025-10-22",
+ "groups": [
+ {
+ "time": "09:39:00",
+ "height": "4.930"
+ },
+ {
+ "time": "21:51:00",
+ "height": "4.940"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "18:05"
+ },
+ {
+ "date": "2025-10-23",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "4.907"
+ },
+ {
+ "time": "22:19:00",
+ "height": "4.847"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2025-10-24",
+ "groups": [
+ {
+ "time": "10:33:00",
+ "height": "4.818"
+ },
+ {
+ "time": "22:46:00",
+ "height": "4.690"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "18:01"
+ },
+ {
+ "date": "2025-10-25",
+ "groups": [
+ {
+ "time": "11:00:00",
+ "height": "4.659"
+ },
+ {
+ "time": "23:14:00",
+ "height": "4.466"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "17:59"
+ },
+ {
+ "date": "2025-10-26",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "4.434"
+ },
+ {
+ "time": "23:47:00",
+ "height": "4.182"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "17:57"
+ },
+ {
+ "date": "2025-10-27",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "4.155"
+ },
+ {
+ "time": "23:25:00",
+ "height": "3.853"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "16:55"
+ },
+ {
+ "date": "2025-10-28",
+ "groups": [
+ {
+ "time": "11:49:00",
+ "height": "3.838"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "16:53"
+ },
+ {
+ "date": "2025-10-29",
+ "groups": [
+ {
+ "time": "00:14:00",
+ "height": "3.506"
+ },
+ {
+ "time": "12:50:00",
+ "height": "3.533"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "16:51"
+ },
+ {
+ "date": "2025-10-30",
+ "groups": [
+ {
+ "time": "01:28:00",
+ "height": "3.221"
+ },
+ {
+ "time": "14:20:00",
+ "height": "3.377"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "16:49"
+ },
+ {
+ "date": "2025-10-31",
+ "groups": [
+ {
+ "time": "03:10:00",
+ "height": "3.186"
+ },
+ {
+ "time": "15:56:00",
+ "height": "3.547"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "16:47"
+ },
+ {
+ "date": "2025-11-01",
+ "groups": [
+ {
+ "time": "04:37:00",
+ "height": "3.511"
+ },
+ {
+ "time": "17:03:00",
+ "height": "3.982"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "16:45"
+ },
+ {
+ "date": "2025-11-02",
+ "groups": [
+ {
+ "time": "05:34:00",
+ "height": "4.016"
+ },
+ {
+ "time": "17:54:00",
+ "height": "4.494"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "16:43"
+ },
+ {
+ "date": "2025-11-03",
+ "groups": [
+ {
+ "time": "06:20:00",
+ "height": "4.534"
+ },
+ {
+ "time": "18:39:00",
+ "height": "4.966"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "16:41"
+ },
+ {
+ "date": "2025-11-04",
+ "groups": [
+ {
+ "time": "07:02:00",
+ "height": "4.979"
+ },
+ {
+ "time": "19:22:00",
+ "height": "5.329"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2025-11-05",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "5.303"
+ },
+ {
+ "time": "20:04:00",
+ "height": "5.541"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2025-11-06",
+ "groups": [
+ {
+ "time": "08:25:00",
+ "height": "5.476"
+ },
+ {
+ "time": "20:47:00",
+ "height": "5.576"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2025-11-07",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "5.489"
+ },
+ {
+ "time": "21:30:00",
+ "height": "5.432"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "16:34"
+ },
+ {
+ "date": "2025-11-08",
+ "groups": [
+ {
+ "time": "09:48:00",
+ "height": "5.340"
+ },
+ {
+ "time": "22:15:00",
+ "height": "5.125"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2025-11-09",
+ "groups": [
+ {
+ "time": "10:36:00",
+ "height": "5.051"
+ },
+ {
+ "time": "23:08:00",
+ "height": "4.696"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2025-11-10",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "4.667"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "16:29"
+ },
+ {
+ "date": "2025-11-11",
+ "groups": [
+ {
+ "time": "00:05:00",
+ "height": "4.219"
+ },
+ {
+ "time": "12:31:00",
+ "height": "4.259"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2025-11-12",
+ "groups": [
+ {
+ "time": "01:12:00",
+ "height": "3.790"
+ },
+ {
+ "time": "13:44:00",
+ "height": "3.929"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2025-11-13",
+ "groups": [
+ {
+ "time": "02:31:00",
+ "height": "3.526"
+ },
+ {
+ "time": "15:10:00",
+ "height": "3.789"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2025-11-14",
+ "groups": [
+ {
+ "time": "03:55:00",
+ "height": "3.524"
+ },
+ {
+ "time": "16:24:00",
+ "height": "3.879"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2025-11-15",
+ "groups": [
+ {
+ "time": "05:00:00",
+ "height": "3.737"
+ },
+ {
+ "time": "17:23:00",
+ "height": "4.091"
+ }
+ ],
+ "sunrise": "07:40",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2025-11-16",
+ "groups": [
+ {
+ "time": "05:52:00",
+ "height": "4.025"
+ },
+ {
+ "time": "18:10:00",
+ "height": "4.313"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2025-11-17",
+ "groups": [
+ {
+ "time": "06:33:00",
+ "height": "4.291"
+ },
+ {
+ "time": "18:49:00",
+ "height": "4.486"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2025-11-18",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "4.500"
+ },
+ {
+ "time": "19:25:00",
+ "height": "4.604"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2025-11-19",
+ "groups": [
+ {
+ "time": "07:42:00",
+ "height": "4.650"
+ },
+ {
+ "time": "19:57:00",
+ "height": "4.669"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2025-11-20",
+ "groups": [
+ {
+ "time": "08:13:00",
+ "height": "4.741"
+ },
+ {
+ "time": "20:28:00",
+ "height": "4.684"
+ }
+ ],
+ "sunrise": "07:49",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2025-11-21",
+ "groups": [
+ {
+ "time": "08:44:00",
+ "height": "4.774"
+ },
+ {
+ "time": "20:58:00",
+ "height": "4.647"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2025-11-22",
+ "groups": [
+ {
+ "time": "09:13:00",
+ "height": "4.745"
+ },
+ {
+ "time": "21:28:00",
+ "height": "4.556"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2025-11-23",
+ "groups": [
+ {
+ "time": "09:43:00",
+ "height": "4.655"
+ },
+ {
+ "time": "21:58:00",
+ "height": "4.413"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2025-11-24",
+ "groups": [
+ {
+ "time": "10:16:00",
+ "height": "4.511"
+ },
+ {
+ "time": "22:34:00",
+ "height": "4.225"
+ }
+ ],
+ "sunrise": "07:56",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2025-11-25",
+ "groups": [
+ {
+ "time": "10:55:00",
+ "height": "4.321"
+ },
+ {
+ "time": "23:16:00",
+ "height": "4.004"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2025-11-26",
+ "groups": [
+ {
+ "time": "11:41:00",
+ "height": "4.107"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2025-11-27",
+ "groups": [
+ {
+ "time": "00:05:00",
+ "height": "3.777"
+ },
+ {
+ "time": "12:37:00",
+ "height": "3.907"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2025-11-28",
+ "groups": [
+ {
+ "time": "01:08:00",
+ "height": "3.591"
+ },
+ {
+ "time": "13:46:00",
+ "height": "3.788"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2025-11-29",
+ "groups": [
+ {
+ "time": "02:24:00",
+ "height": "3.529"
+ },
+ {
+ "time": "15:04:00",
+ "height": "3.826"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2025-11-30",
+ "groups": [
+ {
+ "time": "03:43:00",
+ "height": "3.660"
+ },
+ {
+ "time": "16:14:00",
+ "height": "4.040"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2025-12-01",
+ "groups": [
+ {
+ "time": "04:47:00",
+ "height": "3.965"
+ },
+ {
+ "time": "17:13:00",
+ "height": "4.365"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2025-12-02",
+ "groups": [
+ {
+ "time": "05:42:00",
+ "height": "4.349"
+ },
+ {
+ "time": "18:07:00",
+ "height": "4.708"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2025-12-03",
+ "groups": [
+ {
+ "time": "06:33:00",
+ "height": "4.724"
+ },
+ {
+ "time": "18:57:00",
+ "height": "4.997"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2025-12-04",
+ "groups": [
+ {
+ "time": "07:21:00",
+ "height": "5.032"
+ },
+ {
+ "time": "19:46:00",
+ "height": "5.188"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2025-12-05",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "5.240"
+ },
+ {
+ "time": "20:34:00",
+ "height": "5.257"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2025-12-06",
+ "groups": [
+ {
+ "time": "08:54:00",
+ "height": "5.325"
+ },
+ {
+ "time": "21:22:00",
+ "height": "5.196"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2025-12-07",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "5.283"
+ },
+ {
+ "time": "22:08:00",
+ "height": "5.013"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2025-12-08",
+ "groups": [
+ {
+ "time": "10:29:00",
+ "height": "5.120"
+ },
+ {
+ "time": "23:00:00",
+ "height": "4.734"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-09",
+ "groups": [
+ {
+ "time": "11:22:00",
+ "height": "4.862"
+ },
+ {
+ "time": "23:54:00",
+ "height": "4.399"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-10",
+ "groups": [
+ {
+ "time": "12:17:00",
+ "height": "4.551"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-11",
+ "groups": [
+ {
+ "time": "00:49:00",
+ "height": "4.061"
+ },
+ {
+ "time": "13:15:00",
+ "height": "4.236"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-12",
+ "groups": [
+ {
+ "time": "01:49:00",
+ "height": "3.775"
+ },
+ {
+ "time": "14:18:00",
+ "height": "3.972"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-13",
+ "groups": [
+ {
+ "time": "02:56:00",
+ "height": "3.594"
+ },
+ {
+ "time": "15:27:00",
+ "height": "3.811"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-14",
+ "groups": [
+ {
+ "time": "04:03:00",
+ "height": "3.560"
+ },
+ {
+ "time": "16:28:00",
+ "height": "3.777"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-15",
+ "groups": [
+ {
+ "time": "05:02:00",
+ "height": "3.666"
+ },
+ {
+ "time": "17:25:00",
+ "height": "3.853"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-16",
+ "groups": [
+ {
+ "time": "05:54:00",
+ "height": "3.862"
+ },
+ {
+ "time": "18:14:00",
+ "height": "3.992"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-17",
+ "groups": [
+ {
+ "time": "06:39:00",
+ "height": "4.089"
+ },
+ {
+ "time": "18:58:00",
+ "height": "4.149"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-18",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.305"
+ },
+ {
+ "time": "19:36:00",
+ "height": "4.291"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2025-12-19",
+ "groups": [
+ {
+ "time": "07:55:00",
+ "height": "4.483"
+ },
+ {
+ "time": "20:12:00",
+ "height": "4.398"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2025-12-20",
+ "groups": [
+ {
+ "time": "08:29:00",
+ "height": "4.608"
+ },
+ {
+ "time": "20:46:00",
+ "height": "4.463"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2025-12-21",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "4.680"
+ },
+ {
+ "time": "21:19:00",
+ "height": "4.486"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2025-12-22",
+ "groups": [
+ {
+ "time": "09:35:00",
+ "height": "4.700"
+ },
+ {
+ "time": "21:52:00",
+ "height": "4.468"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2025-12-23",
+ "groups": [
+ {
+ "time": "10:09:00",
+ "height": "4.673"
+ },
+ {
+ "time": "22:28:00",
+ "height": "4.410"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2025-12-24",
+ "groups": [
+ {
+ "time": "10:49:00",
+ "height": "4.602"
+ },
+ {
+ "time": "23:09:00",
+ "height": "4.310"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2025-12-25",
+ "groups": [
+ {
+ "time": "11:32:00",
+ "height": "4.490"
+ },
+ {
+ "time": "23:54:00",
+ "height": "4.173"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2025-12-26",
+ "groups": [
+ {
+ "time": "12:20:00",
+ "height": "4.350"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2025-12-27",
+ "groups": [
+ {
+ "time": "00:43:00",
+ "height": "4.016"
+ },
+ {
+ "time": "13:14:00",
+ "height": "4.201"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2025-12-28",
+ "groups": [
+ {
+ "time": "01:42:00",
+ "height": "3.871"
+ },
+ {
+ "time": "14:17:00",
+ "height": "4.075"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2025-12-29",
+ "groups": [
+ {
+ "time": "02:50:00",
+ "height": "3.785"
+ },
+ {
+ "time": "15:28:00",
+ "height": "4.018"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2025-12-30",
+ "groups": [
+ {
+ "time": "04:03:00",
+ "height": "3.821"
+ },
+ {
+ "time": "16:36:00",
+ "height": "4.078"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2025-12-31",
+ "groups": [
+ {
+ "time": "05:09:00",
+ "height": "4.011"
+ },
+ {
+ "time": "17:41:00",
+ "height": "4.259"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2026-01-01",
+ "groups": [
+ {
+ "time": "06:12:00",
+ "height": "4.315"
+ },
+ {
+ "time": "18:42:00",
+ "height": "4.510"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2026-01-02",
+ "groups": [
+ {
+ "time": "07:09:00",
+ "height": "4.660"
+ },
+ {
+ "time": "19:38:00",
+ "height": "4.767"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:12"
+ },
+ {
+ "date": "2026-01-03",
+ "groups": [
+ {
+ "time": "08:02:00",
+ "height": "4.973"
+ },
+ {
+ "time": "20:29:00",
+ "height": "4.966"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2026-01-04",
+ "groups": [
+ {
+ "time": "08:50:00",
+ "height": "5.198"
+ },
+ {
+ "time": "21:17:00",
+ "height": "5.063"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2026-01-05",
+ "groups": [
+ {
+ "time": "09:36:00",
+ "height": "5.297"
+ },
+ {
+ "time": "22:00:00",
+ "height": "5.038"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2026-01-06",
+ "groups": [
+ {
+ "time": "10:19:00",
+ "height": "5.257"
+ },
+ {
+ "time": "22:46:00",
+ "height": "4.893"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:17"
+ },
+ {
+ "date": "2026-01-07",
+ "groups": [
+ {
+ "time": "11:06:00",
+ "height": "5.087"
+ },
+ {
+ "time": "23:31:00",
+ "height": "4.652"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2026-01-08",
+ "groups": [
+ {
+ "time": "11:51:00",
+ "height": "4.816"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2026-01-09",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "4.350"
+ },
+ {
+ "time": "12:36:00",
+ "height": "4.480"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:21"
+ },
+ {
+ "date": "2026-01-10",
+ "groups": [
+ {
+ "time": "01:00:00",
+ "height": "4.024"
+ },
+ {
+ "time": "13:21:00",
+ "height": "4.120"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2026-01-11",
+ "groups": [
+ {
+ "time": "01:48:00",
+ "height": "3.711"
+ },
+ {
+ "time": "14:13:00",
+ "height": "3.773"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:24"
+ },
+ {
+ "date": "2026-01-12",
+ "groups": [
+ {
+ "time": "02:48:00",
+ "height": "3.451"
+ },
+ {
+ "time": "15:18:00",
+ "height": "3.496"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2026-01-13",
+ "groups": [
+ {
+ "time": "03:59:00",
+ "height": "3.322"
+ },
+ {
+ "time": "16:30:00",
+ "height": "3.377"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:27"
+ },
+ {
+ "date": "2026-01-14",
+ "groups": [
+ {
+ "time": "05:09:00",
+ "height": "3.398"
+ },
+ {
+ "time": "17:38:00",
+ "height": "3.461"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2026-01-15",
+ "groups": [
+ {
+ "time": "06:12:00",
+ "height": "3.645"
+ },
+ {
+ "time": "18:36:00",
+ "height": "3.687"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2026-01-16",
+ "groups": [
+ {
+ "time": "07:00:00",
+ "height": "3.961"
+ },
+ {
+ "time": "19:21:00",
+ "height": "3.955"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:32"
+ },
+ {
+ "date": "2026-01-17",
+ "groups": [
+ {
+ "time": "07:41:00",
+ "height": "4.265"
+ },
+ {
+ "time": "20:00:00",
+ "height": "4.205"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2026-01-18",
+ "groups": [
+ {
+ "time": "08:17:00",
+ "height": "4.521"
+ },
+ {
+ "time": "20:35:00",
+ "height": "4.413"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2026-01-19",
+ "groups": [
+ {
+ "time": "08:51:00",
+ "height": "4.720"
+ },
+ {
+ "time": "21:08:00",
+ "height": "4.574"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:37"
+ },
+ {
+ "date": "2026-01-20",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "4.865"
+ },
+ {
+ "time": "21:40:00",
+ "height": "4.686"
+ }
+ ],
+ "sunrise": "08:16",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2026-01-21",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "4.952"
+ },
+ {
+ "time": "22:14:00",
+ "height": "4.735"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2026-01-22",
+ "groups": [
+ {
+ "time": "10:34:00",
+ "height": "4.968"
+ },
+ {
+ "time": "22:53:00",
+ "height": "4.705"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2026-01-23",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "4.900"
+ },
+ {
+ "time": "23:33:00",
+ "height": "4.589"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2026-01-24",
+ "groups": [
+ {
+ "time": "11:56:00",
+ "height": "4.743"
+ }
+ ],
+ "sunrise": "08:11",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2026-01-25",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "4.391"
+ },
+ {
+ "time": "12:41:00",
+ "height": "4.502"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:47"
+ },
+ {
+ "date": "2026-01-26",
+ "groups": [
+ {
+ "time": "01:04:00",
+ "height": "4.131"
+ },
+ {
+ "time": "13:35:00",
+ "height": "4.197"
+ }
+ ],
+ "sunrise": "08:08",
+ "sunset": "16:49"
+ },
+ {
+ "date": "2026-01-27",
+ "groups": [
+ {
+ "time": "02:04:00",
+ "height": "3.846"
+ },
+ {
+ "time": "14:44:00",
+ "height": "3.883"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:51"
+ },
+ {
+ "date": "2026-01-28",
+ "groups": [
+ {
+ "time": "03:22:00",
+ "height": "3.632"
+ },
+ {
+ "time": "16:06:00",
+ "height": "3.698"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:53"
+ },
+ {
+ "date": "2026-01-29",
+ "groups": [
+ {
+ "time": "04:46:00",
+ "height": "3.652"
+ },
+ {
+ "time": "17:27:00",
+ "height": "3.788"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:55"
+ },
+ {
+ "date": "2026-01-30",
+ "groups": [
+ {
+ "time": "06:04:00",
+ "height": "3.960"
+ },
+ {
+ "time": "18:40:00",
+ "height": "4.117"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:57"
+ },
+ {
+ "date": "2026-01-31",
+ "groups": [
+ {
+ "time": "07:07:00",
+ "height": "4.420"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.520"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:59"
+ },
+ {
+ "date": "2026-02-01",
+ "groups": [
+ {
+ "time": "07:59:00",
+ "height": "4.861"
+ },
+ {
+ "time": "20:25:00",
+ "height": "4.858"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "17:01"
+ },
+ {
+ "date": "2026-02-02",
+ "groups": [
+ {
+ "time": "08:44:00",
+ "height": "5.185"
+ },
+ {
+ "time": "21:06:00",
+ "height": "5.067"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "17:02"
+ },
+ {
+ "date": "2026-02-03",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "5.351"
+ },
+ {
+ "time": "21:45:00",
+ "height": "5.127"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "17:04"
+ },
+ {
+ "date": "2026-02-04",
+ "groups": [
+ {
+ "time": "10:01:00",
+ "height": "5.354"
+ },
+ {
+ "time": "22:21:00",
+ "height": "5.049"
+ }
+ ],
+ "sunrise": "07:54",
+ "sunset": "17:06"
+ },
+ {
+ "date": "2026-02-05",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "5.212"
+ },
+ {
+ "time": "22:59:00",
+ "height": "4.855"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "17:08"
+ },
+ {
+ "date": "2026-02-06",
+ "groups": [
+ {
+ "time": "11:17:00",
+ "height": "4.954"
+ },
+ {
+ "time": "23:35:00",
+ "height": "4.576"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "17:10"
+ },
+ {
+ "date": "2026-02-07",
+ "groups": [
+ {
+ "time": "11:52:00",
+ "height": "4.614"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "17:12"
+ },
+ {
+ "date": "2026-02-08",
+ "groups": [
+ {
+ "time": "00:11:00",
+ "height": "4.242"
+ },
+ {
+ "time": "12:28:00",
+ "height": "4.223"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "17:14"
+ },
+ {
+ "date": "2026-02-09",
+ "groups": [
+ {
+ "time": "00:48:00",
+ "height": "3.875"
+ },
+ {
+ "time": "13:08:00",
+ "height": "3.802"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "17:16"
+ },
+ {
+ "date": "2026-02-10",
+ "groups": [
+ {
+ "time": "01:33:00",
+ "height": "3.499"
+ },
+ {
+ "time": "13:59:00",
+ "height": "3.380"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "17:18"
+ },
+ {
+ "date": "2026-02-11",
+ "groups": [
+ {
+ "time": "02:37:00",
+ "height": "3.165"
+ },
+ {
+ "time": "15:17:00",
+ "height": "3.044"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "17:20"
+ },
+ {
+ "date": "2026-02-12",
+ "groups": [
+ {
+ "time": "04:17:00",
+ "height": "3.041"
+ },
+ {
+ "time": "17:01:00",
+ "height": "3.020"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "17:22"
+ },
+ {
+ "date": "2026-02-13",
+ "groups": [
+ {
+ "time": "05:44:00",
+ "height": "3.286"
+ },
+ {
+ "time": "18:16:00",
+ "height": "3.331"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "17:24"
+ },
+ {
+ "date": "2026-02-14",
+ "groups": [
+ {
+ "time": "06:42:00",
+ "height": "3.707"
+ },
+ {
+ "time": "19:05:00",
+ "height": "3.741"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "17:26"
+ },
+ {
+ "date": "2026-02-15",
+ "groups": [
+ {
+ "time": "07:23:00",
+ "height": "4.138"
+ },
+ {
+ "time": "19:43:00",
+ "height": "4.136"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "17:28"
+ },
+ {
+ "date": "2026-02-16",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.519"
+ },
+ {
+ "time": "20:17:00",
+ "height": "4.480"
+ }
+ ],
+ "sunrise": "07:31",
+ "sunset": "17:29"
+ },
+ {
+ "date": "2026-02-17",
+ "groups": [
+ {
+ "time": "08:32:00",
+ "height": "4.834"
+ },
+ {
+ "time": "20:50:00",
+ "height": "4.760"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "17:31"
+ },
+ {
+ "date": "2026-02-18",
+ "groups": [
+ {
+ "time": "09:05:00",
+ "height": "5.078"
+ },
+ {
+ "time": "21:22:00",
+ "height": "4.964"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "17:33"
+ },
+ {
+ "date": "2026-02-19",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "5.236"
+ },
+ {
+ "time": "21:54:00",
+ "height": "5.069"
+ }
+ ],
+ "sunrise": "07:24",
+ "sunset": "17:35"
+ },
+ {
+ "date": "2026-02-20",
+ "groups": [
+ {
+ "time": "10:11:00",
+ "height": "5.285"
+ },
+ {
+ "time": "22:29:00",
+ "height": "5.054"
+ }
+ ],
+ "sunrise": "07:22",
+ "sunset": "17:37"
+ },
+ {
+ "date": "2026-02-21",
+ "groups": [
+ {
+ "time": "10:50:00",
+ "height": "5.201"
+ },
+ {
+ "time": "23:07:00",
+ "height": "4.909"
+ }
+ ],
+ "sunrise": "07:20",
+ "sunset": "17:39"
+ },
+ {
+ "date": "2026-02-22",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "4.975"
+ },
+ {
+ "time": "23:47:00",
+ "height": "4.640"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "17:41"
+ },
+ {
+ "date": "2026-02-23",
+ "groups": [
+ {
+ "time": "12:13:00",
+ "height": "4.614"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "17:43"
+ },
+ {
+ "date": "2026-02-24",
+ "groups": [
+ {
+ "time": "00:33:00",
+ "height": "4.267"
+ },
+ {
+ "time": "13:05:00",
+ "height": "4.148"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "17:45"
+ },
+ {
+ "date": "2026-02-25",
+ "groups": [
+ {
+ "time": "01:30:00",
+ "height": "3.835"
+ },
+ {
+ "time": "14:14:00",
+ "height": "3.659"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "17:47"
+ },
+ {
+ "date": "2026-02-26",
+ "groups": [
+ {
+ "time": "02:54:00",
+ "height": "3.467"
+ },
+ {
+ "time": "15:52:00",
+ "height": "3.364"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "17:49"
+ },
+ {
+ "date": "2026-02-27",
+ "groups": [
+ {
+ "time": "04:38:00",
+ "height": "3.445"
+ },
+ {
+ "time": "17:29:00",
+ "height": "3.521"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "17:50"
+ },
+ {
+ "date": "2026-02-28",
+ "groups": [
+ {
+ "time": "06:04:00",
+ "height": "3.853"
+ },
+ {
+ "time": "18:41:00",
+ "height": "3.990"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "17:52"
+ },
+ {
+ "date": "2026-03-01",
+ "groups": [
+ {
+ "time": "07:03:00",
+ "height": "4.399"
+ },
+ {
+ "time": "19:31:00",
+ "height": "4.478"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "17:54"
+ },
+ {
+ "date": "2026-03-02",
+ "groups": [
+ {
+ "time": "07:48:00",
+ "height": "4.862"
+ },
+ {
+ "time": "20:12:00",
+ "height": "4.849"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "17:56"
+ },
+ {
+ "date": "2026-03-03",
+ "groups": [
+ {
+ "time": "08:29:00",
+ "height": "5.168"
+ },
+ {
+ "time": "20:49:00",
+ "height": "5.069"
+ }
+ ],
+ "sunrise": "06:58",
+ "sunset": "17:58"
+ },
+ {
+ "date": "2026-03-04",
+ "groups": [
+ {
+ "time": "09:05:00",
+ "height": "5.307"
+ },
+ {
+ "time": "21:22:00",
+ "height": "5.143"
+ }
+ ],
+ "sunrise": "06:56",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2026-03-05",
+ "groups": [
+ {
+ "time": "09:37:00",
+ "height": "5.298"
+ },
+ {
+ "time": "21:53:00",
+ "height": "5.091"
+ }
+ ],
+ "sunrise": "06:53",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2026-03-06",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "5.166"
+ },
+ {
+ "time": "22:24:00",
+ "height": "4.935"
+ }
+ ],
+ "sunrise": "06:51",
+ "sunset": "18:03"
+ },
+ {
+ "date": "2026-03-07",
+ "groups": [
+ {
+ "time": "10:40:00",
+ "height": "4.934"
+ },
+ {
+ "time": "22:56:00",
+ "height": "4.693"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "18:05"
+ },
+ {
+ "date": "2026-03-08",
+ "groups": [
+ {
+ "time": "11:11:00",
+ "height": "4.624"
+ },
+ {
+ "time": "23:26:00",
+ "height": "4.384"
+ }
+ ],
+ "sunrise": "06:46",
+ "sunset": "18:07"
+ },
+ {
+ "date": "2026-03-09",
+ "groups": [
+ {
+ "time": "11:43:00",
+ "height": "4.251"
+ }
+ ],
+ "sunrise": "06:44",
+ "sunset": "18:09"
+ },
+ {
+ "date": "2026-03-10",
+ "groups": [
+ {
+ "time": "00:00:00",
+ "height": "4.022"
+ },
+ {
+ "time": "12:17:00",
+ "height": "3.826"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "18:11"
+ },
+ {
+ "date": "2026-03-11",
+ "groups": [
+ {
+ "time": "00:38:00",
+ "height": "3.620"
+ },
+ {
+ "time": "13:01:00",
+ "height": "3.370"
+ }
+ ],
+ "sunrise": "06:39",
+ "sunset": "18:13"
+ },
+ {
+ "date": "2026-03-12",
+ "groups": [
+ {
+ "time": "01:32:00",
+ "height": "3.212"
+ },
+ {
+ "time": "14:08:00",
+ "height": "2.945"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "18:14"
+ },
+ {
+ "date": "2026-03-13",
+ "groups": [
+ {
+ "time": "03:09:00",
+ "height": "2.930"
+ },
+ {
+ "time": "16:13:00",
+ "height": "2.787"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "18:16"
+ },
+ {
+ "date": "2026-03-14",
+ "groups": [
+ {
+ "time": "05:08:00",
+ "height": "3.097"
+ },
+ {
+ "time": "17:47:00",
+ "height": "3.131"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "18:18"
+ },
+ {
+ "date": "2026-03-15",
+ "groups": [
+ {
+ "time": "06:11:00",
+ "height": "3.563"
+ },
+ {
+ "time": "18:36:00",
+ "height": "3.629"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "18:20"
+ },
+ {
+ "date": "2026-03-16",
+ "groups": [
+ {
+ "time": "06:53:00",
+ "height": "4.069"
+ },
+ {
+ "time": "19:15:00",
+ "height": "4.124"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "18:22"
+ },
+ {
+ "date": "2026-03-17",
+ "groups": [
+ {
+ "time": "07:30:00",
+ "height": "4.534"
+ },
+ {
+ "time": "19:48:00",
+ "height": "4.563"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2026-03-18",
+ "groups": [
+ {
+ "time": "08:03:00",
+ "height": "4.927"
+ },
+ {
+ "time": "20:21:00",
+ "height": "4.919"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "18:25"
+ },
+ {
+ "date": "2026-03-19",
+ "groups": [
+ {
+ "time": "08:38:00",
+ "height": "5.228"
+ },
+ {
+ "time": "20:55:00",
+ "height": "5.171"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "18:27"
+ },
+ {
+ "date": "2026-03-20",
+ "groups": [
+ {
+ "time": "09:12:00",
+ "height": "5.411"
+ },
+ {
+ "time": "21:29:00",
+ "height": "5.292"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "18:29"
+ },
+ {
+ "date": "2026-03-21",
+ "groups": [
+ {
+ "time": "09:47:00",
+ "height": "5.445"
+ },
+ {
+ "time": "22:03:00",
+ "height": "5.263"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "18:31"
+ },
+ {
+ "date": "2026-03-22",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "5.311"
+ },
+ {
+ "time": "22:42:00",
+ "height": "5.077"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2026-03-23",
+ "groups": [
+ {
+ "time": "11:07:00",
+ "height": "5.004"
+ },
+ {
+ "time": "23:24:00",
+ "height": "4.746"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "18:34"
+ },
+ {
+ "date": "2026-03-24",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "4.547"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "18:36"
+ },
+ {
+ "date": "2026-03-25",
+ "groups": [
+ {
+ "time": "00:13:00",
+ "height": "4.303"
+ },
+ {
+ "time": "12:50:00",
+ "height": "3.999"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "18:38"
+ },
+ {
+ "date": "2026-03-26",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "3.816"
+ },
+ {
+ "time": "14:07:00",
+ "height": "3.484"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2026-03-27",
+ "groups": [
+ {
+ "time": "02:49:00",
+ "height": "3.456"
+ },
+ {
+ "time": "15:51:00",
+ "height": "3.267"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "18:41"
+ },
+ {
+ "date": "2026-03-28",
+ "groups": [
+ {
+ "time": "04:35:00",
+ "height": "3.514"
+ },
+ {
+ "time": "17:24:00",
+ "height": "3.531"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "18:43"
+ },
+ {
+ "date": "2026-03-29",
+ "groups": [
+ {
+ "time": "05:53:00",
+ "height": "3.944"
+ },
+ {
+ "time": "18:26:00",
+ "height": "4.012"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "18:45"
+ },
+ {
+ "date": "2026-03-30",
+ "groups": [
+ {
+ "time": "07:46:00",
+ "height": "4.426"
+ },
+ {
+ "time": "20:11:00",
+ "height": "4.454"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2026-03-31",
+ "groups": [
+ {
+ "time": "08:28:00",
+ "height": "4.796"
+ },
+ {
+ "time": "20:49:00",
+ "height": "4.772"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2026-04-01",
+ "groups": [
+ {
+ "time": "09:04:00",
+ "height": "5.014"
+ },
+ {
+ "time": "21:23:00",
+ "height": "4.952"
+ }
+ ],
+ "sunrise": "06:49",
+ "sunset": "19:50"
+ },
+ {
+ "date": "2026-04-02",
+ "groups": [
+ {
+ "time": "09:38:00",
+ "height": "5.097"
+ },
+ {
+ "time": "21:54:00",
+ "height": "5.018"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:52"
+ },
+ {
+ "date": "2026-04-03",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "5.074"
+ },
+ {
+ "time": "22:23:00",
+ "height": "4.990"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2026-04-04",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "4.966"
+ },
+ {
+ "time": "22:52:00",
+ "height": "4.879"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2026-04-05",
+ "groups": [
+ {
+ "time": "11:05:00",
+ "height": "4.780"
+ },
+ {
+ "time": "23:19:00",
+ "height": "4.689"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:57"
+ },
+ {
+ "date": "2026-04-06",
+ "groups": [
+ {
+ "time": "11:36:00",
+ "height": "4.522"
+ },
+ {
+ "time": "23:51:00",
+ "height": "4.430"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2026-04-07",
+ "groups": [
+ {
+ "time": "12:07:00",
+ "height": "4.199"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2026-04-08",
+ "groups": [
+ {
+ "time": "00:24:00",
+ "height": "4.111"
+ },
+ {
+ "time": "12:42:00",
+ "height": "3.823"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2026-04-09",
+ "groups": [
+ {
+ "time": "01:02:00",
+ "height": "3.747"
+ },
+ {
+ "time": "13:24:00",
+ "height": "3.415"
+ }
+ ],
+ "sunrise": "06:31",
+ "sunset": "20:05"
+ },
+ {
+ "date": "2026-04-10",
+ "groups": [
+ {
+ "time": "01:53:00",
+ "height": "3.371"
+ },
+ {
+ "time": "14:27:00",
+ "height": "3.034"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2026-04-11",
+ "groups": [
+ {
+ "time": "03:17:00",
+ "height": "3.088"
+ },
+ {
+ "time": "16:12:00",
+ "height": "2.851"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2026-04-12",
+ "groups": [
+ {
+ "time": "05:09:00",
+ "height": "3.137"
+ },
+ {
+ "time": "17:55:00",
+ "height": "3.104"
+ }
+ ],
+ "sunrise": "06:24",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2026-04-13",
+ "groups": [
+ {
+ "time": "06:22:00",
+ "height": "3.534"
+ },
+ {
+ "time": "18:52:00",
+ "height": "3.589"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:12"
+ },
+ {
+ "date": "2026-04-14",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.032"
+ },
+ {
+ "time": "19:35:00",
+ "height": "4.108"
+ }
+ ],
+ "sunrise": "06:19",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2026-04-15",
+ "groups": [
+ {
+ "time": "07:51:00",
+ "height": "4.517"
+ },
+ {
+ "time": "20:13:00",
+ "height": "4.581"
+ }
+ ],
+ "sunrise": "06:17",
+ "sunset": "20:15"
+ },
+ {
+ "date": "2026-04-16",
+ "groups": [
+ {
+ "time": "08:30:00",
+ "height": "4.932"
+ },
+ {
+ "time": "20:49:00",
+ "height": "4.964"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2026-04-17",
+ "groups": [
+ {
+ "time": "09:07:00",
+ "height": "5.240"
+ },
+ {
+ "time": "21:27:00",
+ "height": "5.227"
+ }
+ ],
+ "sunrise": "06:12",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2026-04-18",
+ "groups": [
+ {
+ "time": "09:47:00",
+ "height": "5.408"
+ },
+ {
+ "time": "22:05:00",
+ "height": "5.347"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:21"
+ },
+ {
+ "date": "2026-04-19",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "5.410"
+ },
+ {
+ "time": "22:42:00",
+ "height": "5.306"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2026-04-20",
+ "groups": [
+ {
+ "time": "11:05:00",
+ "height": "5.233"
+ },
+ {
+ "time": "23:24:00",
+ "height": "5.106"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2026-04-21",
+ "groups": [
+ {
+ "time": "11:53:00",
+ "height": "4.891"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2026-04-22",
+ "groups": [
+ {
+ "time": "00:12:00",
+ "height": "4.770"
+ },
+ {
+ "time": "12:46:00",
+ "height": "4.430"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2026-04-23",
+ "groups": [
+ {
+ "time": "01:08:00",
+ "height": "4.348"
+ },
+ {
+ "time": "13:48:00",
+ "height": "3.933"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:29"
+ },
+ {
+ "date": "2026-04-24",
+ "groups": [
+ {
+ "time": "02:17:00",
+ "height": "3.933"
+ },
+ {
+ "time": "15:06:00",
+ "height": "3.536"
+ }
+ ],
+ "sunrise": "05:57",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2026-04-25",
+ "groups": [
+ {
+ "time": "03:44:00",
+ "height": "3.679"
+ },
+ {
+ "time": "16:39:00",
+ "height": "3.417"
+ }
+ ],
+ "sunrise": "05:55",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2026-04-26",
+ "groups": [
+ {
+ "time": "05:14:00",
+ "height": "3.731"
+ },
+ {
+ "time": "17:57:00",
+ "height": "3.625"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2026-04-27",
+ "groups": [
+ {
+ "time": "06:23:00",
+ "height": "4.012"
+ },
+ {
+ "time": "18:56:00",
+ "height": "3.978"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:36"
+ },
+ {
+ "date": "2026-04-28",
+ "groups": [
+ {
+ "time": "07:15:00",
+ "height": "4.325"
+ },
+ {
+ "time": "19:41:00",
+ "height": "4.307"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:38"
+ },
+ {
+ "date": "2026-04-29",
+ "groups": [
+ {
+ "time": "07:59:00",
+ "height": "4.561"
+ },
+ {
+ "time": "20:19:00",
+ "height": "4.549"
+ }
+ ],
+ "sunrise": "05:47",
+ "sunset": "20:40"
+ },
+ {
+ "date": "2026-04-30",
+ "groups": [
+ {
+ "time": "08:35:00",
+ "height": "4.698"
+ },
+ {
+ "time": "20:53:00",
+ "height": "4.700"
+ }
+ ],
+ "sunrise": "05:45",
+ "sunset": "20:42"
+ },
+ {
+ "date": "2026-05-01",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "4.752"
+ },
+ {
+ "time": "21:25:00",
+ "height": "4.774"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "20:44"
+ },
+ {
+ "date": "2026-05-02",
+ "groups": [
+ {
+ "time": "09:40:00",
+ "height": "4.743"
+ },
+ {
+ "time": "21:55:00",
+ "height": "4.781"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2026-05-03",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "4.678"
+ },
+ {
+ "time": "22:24:00",
+ "height": "4.724"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "20:47"
+ },
+ {
+ "date": "2026-05-04",
+ "groups": [
+ {
+ "time": "10:39:00",
+ "height": "4.553"
+ },
+ {
+ "time": "22:54:00",
+ "height": "4.599"
+ }
+ ],
+ "sunrise": "05:37",
+ "sunset": "20:49"
+ },
+ {
+ "date": "2026-05-05",
+ "groups": [
+ {
+ "time": "11:09:00",
+ "height": "4.367"
+ },
+ {
+ "time": "23:25:00",
+ "height": "4.412"
+ }
+ ],
+ "sunrise": "05:35",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2026-05-06",
+ "groups": [
+ {
+ "time": "11:43:00",
+ "height": "4.127"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2026-05-07",
+ "groups": [
+ {
+ "time": "00:02:00",
+ "height": "4.173"
+ },
+ {
+ "time": "12:21:00",
+ "height": "3.847"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2026-05-08",
+ "groups": [
+ {
+ "time": "00:43:00",
+ "height": "3.899"
+ },
+ {
+ "time": "13:05:00",
+ "height": "3.551"
+ }
+ ],
+ "sunrise": "05:29",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2026-05-09",
+ "groups": [
+ {
+ "time": "01:35:00",
+ "height": "3.626"
+ },
+ {
+ "time": "14:05:00",
+ "height": "3.288"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2026-05-10",
+ "groups": [
+ {
+ "time": "02:44:00",
+ "height": "3.426"
+ },
+ {
+ "time": "15:24:00",
+ "height": "3.160"
+ }
+ ],
+ "sunrise": "05:26",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2026-05-11",
+ "groups": [
+ {
+ "time": "04:09:00",
+ "height": "3.417"
+ },
+ {
+ "time": "16:50:00",
+ "height": "3.280"
+ }
+ ],
+ "sunrise": "05:24",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2026-05-12",
+ "groups": [
+ {
+ "time": "05:22:00",
+ "height": "3.649"
+ },
+ {
+ "time": "17:56:00",
+ "height": "3.627"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:02"
+ },
+ {
+ "date": "2026-05-13",
+ "groups": [
+ {
+ "time": "06:21:00",
+ "height": "4.030"
+ },
+ {
+ "time": "18:48:00",
+ "height": "4.067"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:04"
+ },
+ {
+ "date": "2026-05-14",
+ "groups": [
+ {
+ "time": "07:10:00",
+ "height": "4.444"
+ },
+ {
+ "time": "19:34:00",
+ "height": "4.499"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:06"
+ },
+ {
+ "date": "2026-05-15",
+ "groups": [
+ {
+ "time": "07:55:00",
+ "height": "4.812"
+ },
+ {
+ "time": "20:17:00",
+ "height": "4.862"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2026-05-16",
+ "groups": [
+ {
+ "time": "08:39:00",
+ "height": "5.083"
+ },
+ {
+ "time": "21:01:00",
+ "height": "5.119"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2026-05-17",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "5.226"
+ },
+ {
+ "time": "21:44:00",
+ "height": "5.248"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2026-05-18",
+ "groups": [
+ {
+ "time": "10:08:00",
+ "height": "5.223"
+ },
+ {
+ "time": "22:28:00",
+ "height": "5.238"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2026-05-19",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "5.073"
+ },
+ {
+ "time": "23:14:00",
+ "height": "5.095"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:13"
+ },
+ {
+ "date": "2026-05-20",
+ "groups": [
+ {
+ "time": "11:46:00",
+ "height": "4.798"
+ }
+ ],
+ "sunrise": "05:10",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2026-05-21",
+ "groups": [
+ {
+ "time": "00:08:00",
+ "height": "4.844"
+ },
+ {
+ "time": "12:43:00",
+ "height": "4.445"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:16"
+ },
+ {
+ "date": "2026-05-22",
+ "groups": [
+ {
+ "time": "01:07:00",
+ "height": "4.532"
+ },
+ {
+ "time": "13:43:00",
+ "height": "4.081"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:18"
+ },
+ {
+ "date": "2026-05-23",
+ "groups": [
+ {
+ "time": "02:10:00",
+ "height": "4.224"
+ },
+ {
+ "time": "14:51:00",
+ "height": "3.786"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2026-05-24",
+ "groups": [
+ {
+ "time": "03:22:00",
+ "height": "3.995"
+ },
+ {
+ "time": "16:05:00",
+ "height": "3.636"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:21"
+ },
+ {
+ "date": "2026-05-25",
+ "groups": [
+ {
+ "time": "04:37:00",
+ "height": "3.905"
+ },
+ {
+ "time": "17:14:00",
+ "height": "3.665"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2026-05-26",
+ "groups": [
+ {
+ "time": "05:40:00",
+ "height": "3.949"
+ },
+ {
+ "time": "18:13:00",
+ "height": "3.822"
+ }
+ ],
+ "sunrise": "05:03",
+ "sunset": "21:24"
+ },
+ {
+ "date": "2026-05-27",
+ "groups": [
+ {
+ "time": "06:36:00",
+ "height": "4.062"
+ },
+ {
+ "time": "19:03:00",
+ "height": "4.025"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2026-05-28",
+ "groups": [
+ {
+ "time": "07:23:00",
+ "height": "4.185"
+ },
+ {
+ "time": "19:46:00",
+ "height": "4.215"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2026-05-29",
+ "groups": [
+ {
+ "time": "08:04:00",
+ "height": "4.287"
+ },
+ {
+ "time": "20:25:00",
+ "height": "4.371"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2026-05-30",
+ "groups": [
+ {
+ "time": "08:42:00",
+ "height": "4.360"
+ },
+ {
+ "time": "21:00:00",
+ "height": "4.483"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2026-05-31",
+ "groups": [
+ {
+ "time": "09:17:00",
+ "height": "4.399"
+ },
+ {
+ "time": "21:33:00",
+ "height": "4.547"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2026-06-01",
+ "groups": [
+ {
+ "time": "09:50:00",
+ "height": "4.399"
+ },
+ {
+ "time": "22:06:00",
+ "height": "4.558"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2026-06-02",
+ "groups": [
+ {
+ "time": "10:22:00",
+ "height": "4.356"
+ },
+ {
+ "time": "22:38:00",
+ "height": "4.517"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2026-06-03",
+ "groups": [
+ {
+ "time": "10:54:00",
+ "height": "4.269"
+ },
+ {
+ "time": "23:10:00",
+ "height": "4.428"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2026-06-04",
+ "groups": [
+ {
+ "time": "11:29:00",
+ "height": "4.144"
+ },
+ {
+ "time": "23:49:00",
+ "height": "4.299"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:34"
+ },
+ {
+ "date": "2026-06-05",
+ "groups": [
+ {
+ "time": "12:08:00",
+ "height": "3.991"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2026-06-06",
+ "groups": [
+ {
+ "time": "00:31:00",
+ "height": "4.142"
+ },
+ {
+ "time": "12:52:00",
+ "height": "3.823"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2026-06-07",
+ "groups": [
+ {
+ "time": "01:18:00",
+ "height": "3.979"
+ },
+ {
+ "time": "13:43:00",
+ "height": "3.667"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2026-06-08",
+ "groups": [
+ {
+ "time": "02:15:00",
+ "height": "3.845"
+ },
+ {
+ "time": "14:44:00",
+ "height": "3.563"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2026-06-09",
+ "groups": [
+ {
+ "time": "03:19:00",
+ "height": "3.784"
+ },
+ {
+ "time": "15:53:00",
+ "height": "3.563"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2026-06-10",
+ "groups": [
+ {
+ "time": "04:29:00",
+ "height": "3.837"
+ },
+ {
+ "time": "17:03:00",
+ "height": "3.705"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2026-06-11",
+ "groups": [
+ {
+ "time": "05:32:00",
+ "height": "4.013"
+ },
+ {
+ "time": "18:03:00",
+ "height": "3.972"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2026-06-12",
+ "groups": [
+ {
+ "time": "06:30:00",
+ "height": "4.271"
+ },
+ {
+ "time": "18:59:00",
+ "height": "4.302"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2026-06-13",
+ "groups": [
+ {
+ "time": "07:26:00",
+ "height": "4.547"
+ },
+ {
+ "time": "19:51:00",
+ "height": "4.629"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2026-06-14",
+ "groups": [
+ {
+ "time": "08:18:00",
+ "height": "4.787"
+ },
+ {
+ "time": "20:42:00",
+ "height": "4.906"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2026-06-15",
+ "groups": [
+ {
+ "time": "09:09:00",
+ "height": "4.956"
+ },
+ {
+ "time": "21:31:00",
+ "height": "5.100"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2026-06-16",
+ "groups": [
+ {
+ "time": "10:00:00",
+ "height": "5.028"
+ },
+ {
+ "time": "22:20:00",
+ "height": "5.191"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2026-06-17",
+ "groups": [
+ {
+ "time": "10:48:00",
+ "height": "4.993"
+ },
+ {
+ "time": "23:08:00",
+ "height": "5.168"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2026-06-18",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "4.852"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2026-06-19",
+ "groups": [
+ {
+ "time": "00:02:00",
+ "height": "5.034"
+ },
+ {
+ "time": "12:32:00",
+ "height": "4.626"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2026-06-20",
+ "groups": [
+ {
+ "time": "00:55:00",
+ "height": "4.810"
+ },
+ {
+ "time": "13:25:00",
+ "height": "4.345"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2026-06-21",
+ "groups": [
+ {
+ "time": "01:49:00",
+ "height": "4.525"
+ },
+ {
+ "time": "14:19:00",
+ "height": "4.055"
+ }
+ ],
+ "sunrise": "04:50",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2026-06-22",
+ "groups": [
+ {
+ "time": "02:45:00",
+ "height": "4.224"
+ },
+ {
+ "time": "15:19:00",
+ "height": "3.802"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2026-06-23",
+ "groups": [
+ {
+ "time": "03:46:00",
+ "height": "3.955"
+ },
+ {
+ "time": "16:23:00",
+ "height": "3.633"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2026-06-24",
+ "groups": [
+ {
+ "time": "04:50:00",
+ "height": "3.768"
+ },
+ {
+ "time": "17:23:00",
+ "height": "3.588"
+ }
+ ],
+ "sunrise": "04:51",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2026-06-25",
+ "groups": [
+ {
+ "time": "05:49:00",
+ "height": "3.698"
+ },
+ {
+ "time": "18:22:00",
+ "height": "3.670"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2026-06-26",
+ "groups": [
+ {
+ "time": "06:45:00",
+ "height": "3.741"
+ },
+ {
+ "time": "19:14:00",
+ "height": "3.841"
+ }
+ ],
+ "sunrise": "04:52",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2026-06-27",
+ "groups": [
+ {
+ "time": "07:37:00",
+ "height": "3.860"
+ },
+ {
+ "time": "20:00:00",
+ "height": "4.046"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:46"
+ },
+ {
+ "date": "2026-06-28",
+ "groups": [
+ {
+ "time": "08:21:00",
+ "height": "4.006"
+ },
+ {
+ "time": "20:41:00",
+ "height": "4.239"
+ }
+ ],
+ "sunrise": "04:53",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2026-06-29",
+ "groups": [
+ {
+ "time": "09:01:00",
+ "height": "4.140"
+ },
+ {
+ "time": "21:18:00",
+ "height": "4.393"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2026-06-30",
+ "groups": [
+ {
+ "time": "09:36:00",
+ "height": "4.241"
+ },
+ {
+ "time": "21:52:00",
+ "height": "4.499"
+ }
+ ],
+ "sunrise": "04:54",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2026-07-01",
+ "groups": [
+ {
+ "time": "10:10:00",
+ "height": "4.305"
+ },
+ {
+ "time": "22:25:00",
+ "height": "4.558"
+ }
+ ],
+ "sunrise": "04:55",
+ "sunset": "21:45"
+ },
+ {
+ "date": "2026-07-02",
+ "groups": [
+ {
+ "time": "10:42:00",
+ "height": "4.333"
+ },
+ {
+ "time": "22:58:00",
+ "height": "4.574"
+ }
+ ],
+ "sunrise": "04:56",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2026-07-03",
+ "groups": [
+ {
+ "time": "11:15:00",
+ "height": "4.327"
+ },
+ {
+ "time": "23:34:00",
+ "height": "4.549"
+ }
+ ],
+ "sunrise": "04:57",
+ "sunset": "21:44"
+ },
+ {
+ "date": "2026-07-04",
+ "groups": [
+ {
+ "time": "11:54:00",
+ "height": "4.281"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2026-07-05",
+ "groups": [
+ {
+ "time": "00:15:00",
+ "height": "4.480"
+ },
+ {
+ "time": "12:33:00",
+ "height": "4.193"
+ }
+ ],
+ "sunrise": "04:58",
+ "sunset": "21:43"
+ },
+ {
+ "date": "2026-07-06",
+ "groups": [
+ {
+ "time": "00:57:00",
+ "height": "4.372"
+ },
+ {
+ "time": "13:17:00",
+ "height": "4.071"
+ }
+ ],
+ "sunrise": "04:59",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2026-07-07",
+ "groups": [
+ {
+ "time": "01:42:00",
+ "height": "4.233"
+ },
+ {
+ "time": "14:06:00",
+ "height": "3.930"
+ }
+ ],
+ "sunrise": "05:00",
+ "sunset": "21:42"
+ },
+ {
+ "date": "2026-07-08",
+ "groups": [
+ {
+ "time": "02:36:00",
+ "height": "4.082"
+ },
+ {
+ "time": "15:05:00",
+ "height": "3.799"
+ }
+ ],
+ "sunrise": "05:01",
+ "sunset": "21:41"
+ },
+ {
+ "date": "2026-07-09",
+ "groups": [
+ {
+ "time": "03:39:00",
+ "height": "3.948"
+ },
+ {
+ "time": "16:14:00",
+ "height": "3.729"
+ }
+ ],
+ "sunrise": "05:02",
+ "sunset": "21:40"
+ },
+ {
+ "date": "2026-07-10",
+ "groups": [
+ {
+ "time": "04:51:00",
+ "height": "3.892"
+ },
+ {
+ "time": "17:25:00",
+ "height": "3.796"
+ }
+ ],
+ "sunrise": "05:04",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2026-07-11",
+ "groups": [
+ {
+ "time": "06:01:00",
+ "height": "3.976"
+ },
+ {
+ "time": "18:34:00",
+ "height": "4.029"
+ }
+ ],
+ "sunrise": "05:05",
+ "sunset": "21:39"
+ },
+ {
+ "date": "2026-07-12",
+ "groups": [
+ {
+ "time": "07:07:00",
+ "height": "4.198"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.374"
+ }
+ ],
+ "sunrise": "05:06",
+ "sunset": "21:38"
+ },
+ {
+ "date": "2026-07-13",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "4.492"
+ },
+ {
+ "time": "20:33:00",
+ "height": "4.744"
+ }
+ ],
+ "sunrise": "05:07",
+ "sunset": "21:37"
+ },
+ {
+ "date": "2026-07-14",
+ "groups": [
+ {
+ "time": "09:03:00",
+ "height": "4.776"
+ },
+ {
+ "time": "21:25:00",
+ "height": "5.063"
+ }
+ ],
+ "sunrise": "05:08",
+ "sunset": "21:36"
+ },
+ {
+ "date": "2026-07-15",
+ "groups": [
+ {
+ "time": "09:53:00",
+ "height": "4.984"
+ },
+ {
+ "time": "22:13:00",
+ "height": "5.272"
+ }
+ ],
+ "sunrise": "05:09",
+ "sunset": "21:35"
+ },
+ {
+ "date": "2026-07-16",
+ "groups": [
+ {
+ "time": "10:39:00",
+ "height": "5.072"
+ },
+ {
+ "time": "22:57:00",
+ "height": "5.339"
+ }
+ ],
+ "sunrise": "05:11",
+ "sunset": "21:33"
+ },
+ {
+ "date": "2026-07-17",
+ "groups": [
+ {
+ "time": "11:24:00",
+ "height": "5.026"
+ },
+ {
+ "time": "23:44:00",
+ "height": "5.256"
+ }
+ ],
+ "sunrise": "05:12",
+ "sunset": "21:32"
+ },
+ {
+ "date": "2026-07-18",
+ "groups": [
+ {
+ "time": "12:10:00",
+ "height": "4.855"
+ }
+ ],
+ "sunrise": "05:13",
+ "sunset": "21:31"
+ },
+ {
+ "date": "2026-07-19",
+ "groups": [
+ {
+ "time": "00:30:00",
+ "height": "5.035"
+ },
+ {
+ "time": "12:55:00",
+ "height": "4.588"
+ }
+ ],
+ "sunrise": "05:15",
+ "sunset": "21:30"
+ },
+ {
+ "date": "2026-07-20",
+ "groups": [
+ {
+ "time": "01:14:00",
+ "height": "4.713"
+ },
+ {
+ "time": "13:38:00",
+ "height": "4.261"
+ }
+ ],
+ "sunrise": "05:16",
+ "sunset": "21:29"
+ },
+ {
+ "date": "2026-07-21",
+ "groups": [
+ {
+ "time": "02:00:00",
+ "height": "4.328"
+ },
+ {
+ "time": "14:25:00",
+ "height": "3.916"
+ }
+ ],
+ "sunrise": "05:18",
+ "sunset": "21:27"
+ },
+ {
+ "date": "2026-07-22",
+ "groups": [
+ {
+ "time": "02:48:00",
+ "height": "3.930"
+ },
+ {
+ "time": "15:18:00",
+ "height": "3.597"
+ }
+ ],
+ "sunrise": "05:19",
+ "sunset": "21:26"
+ },
+ {
+ "date": "2026-07-23",
+ "groups": [
+ {
+ "time": "03:46:00",
+ "height": "3.571"
+ },
+ {
+ "time": "16:26:00",
+ "height": "3.370"
+ }
+ ],
+ "sunrise": "05:21",
+ "sunset": "21:25"
+ },
+ {
+ "date": "2026-07-24",
+ "groups": [
+ {
+ "time": "04:58:00",
+ "height": "3.337"
+ },
+ {
+ "time": "17:39:00",
+ "height": "3.334"
+ }
+ ],
+ "sunrise": "05:22",
+ "sunset": "21:23"
+ },
+ {
+ "date": "2026-07-25",
+ "groups": [
+ {
+ "time": "06:11:00",
+ "height": "3.324"
+ },
+ {
+ "time": "18:48:00",
+ "height": "3.518"
+ }
+ ],
+ "sunrise": "05:23",
+ "sunset": "21:22"
+ },
+ {
+ "date": "2026-07-26",
+ "groups": [
+ {
+ "time": "07:16:00",
+ "height": "3.514"
+ },
+ {
+ "time": "19:44:00",
+ "height": "3.823"
+ }
+ ],
+ "sunrise": "05:25",
+ "sunset": "21:20"
+ },
+ {
+ "date": "2026-07-27",
+ "groups": [
+ {
+ "time": "08:07:00",
+ "height": "3.790"
+ },
+ {
+ "time": "20:27:00",
+ "height": "4.137"
+ }
+ ],
+ "sunrise": "05:27",
+ "sunset": "21:19"
+ },
+ {
+ "date": "2026-07-28",
+ "groups": [
+ {
+ "time": "08:47:00",
+ "height": "4.056"
+ },
+ {
+ "time": "21:03:00",
+ "height": "4.404"
+ }
+ ],
+ "sunrise": "05:28",
+ "sunset": "21:17"
+ },
+ {
+ "date": "2026-07-29",
+ "groups": [
+ {
+ "time": "09:22:00",
+ "height": "4.277"
+ },
+ {
+ "time": "21:37:00",
+ "height": "4.609"
+ }
+ ],
+ "sunrise": "05:30",
+ "sunset": "21:15"
+ },
+ {
+ "date": "2026-07-30",
+ "groups": [
+ {
+ "time": "09:54:00",
+ "height": "4.448"
+ },
+ {
+ "time": "22:09:00",
+ "height": "4.756"
+ }
+ ],
+ "sunrise": "05:31",
+ "sunset": "21:14"
+ },
+ {
+ "date": "2026-07-31",
+ "groups": [
+ {
+ "time": "10:25:00",
+ "height": "4.573"
+ },
+ {
+ "time": "22:41:00",
+ "height": "4.851"
+ }
+ ],
+ "sunrise": "05:33",
+ "sunset": "21:12"
+ },
+ {
+ "date": "2026-08-01",
+ "groups": [
+ {
+ "time": "10:56:00",
+ "height": "4.645"
+ },
+ {
+ "time": "23:13:00",
+ "height": "4.885"
+ }
+ ],
+ "sunrise": "05:34",
+ "sunset": "21:10"
+ },
+ {
+ "date": "2026-08-02",
+ "groups": [
+ {
+ "time": "11:30:00",
+ "height": "4.651"
+ },
+ {
+ "time": "23:50:00",
+ "height": "4.846"
+ }
+ ],
+ "sunrise": "05:36",
+ "sunset": "21:09"
+ },
+ {
+ "date": "2026-08-03",
+ "groups": [
+ {
+ "time": "12:07:00",
+ "height": "4.578"
+ }
+ ],
+ "sunrise": "05:38",
+ "sunset": "21:07"
+ },
+ {
+ "date": "2026-08-04",
+ "groups": [
+ {
+ "time": "00:29:00",
+ "height": "4.723"
+ },
+ {
+ "time": "12:46:00",
+ "height": "4.424"
+ }
+ ],
+ "sunrise": "05:39",
+ "sunset": "21:05"
+ },
+ {
+ "date": "2026-08-05",
+ "groups": [
+ {
+ "time": "01:10:00",
+ "height": "4.517"
+ },
+ {
+ "time": "13:29:00",
+ "height": "4.201"
+ }
+ ],
+ "sunrise": "05:41",
+ "sunset": "21:03"
+ },
+ {
+ "date": "2026-08-06",
+ "groups": [
+ {
+ "time": "01:59:00",
+ "height": "4.237"
+ },
+ {
+ "time": "14:22:00",
+ "height": "3.929"
+ }
+ ],
+ "sunrise": "05:43",
+ "sunset": "21:01"
+ },
+ {
+ "date": "2026-08-07",
+ "groups": [
+ {
+ "time": "02:59:00",
+ "height": "3.916"
+ },
+ {
+ "time": "15:33:00",
+ "height": "3.672"
+ }
+ ],
+ "sunrise": "05:44",
+ "sunset": "20:59"
+ },
+ {
+ "date": "2026-08-08",
+ "groups": [
+ {
+ "time": "04:20:00",
+ "height": "3.657"
+ },
+ {
+ "time": "17:02:00",
+ "height": "3.585"
+ }
+ ],
+ "sunrise": "05:46",
+ "sunset": "20:57"
+ },
+ {
+ "date": "2026-08-09",
+ "groups": [
+ {
+ "time": "05:47:00",
+ "height": "3.651"
+ },
+ {
+ "time": "18:25:00",
+ "height": "3.818"
+ }
+ ],
+ "sunrise": "05:48",
+ "sunset": "20:56"
+ },
+ {
+ "date": "2026-08-10",
+ "groups": [
+ {
+ "time": "07:05:00",
+ "height": "3.947"
+ },
+ {
+ "time": "19:35:00",
+ "height": "4.276"
+ }
+ ],
+ "sunrise": "05:49",
+ "sunset": "20:54"
+ },
+ {
+ "date": "2026-08-11",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "4.385"
+ },
+ {
+ "time": "20:31:00",
+ "height": "4.772"
+ }
+ ],
+ "sunrise": "05:51",
+ "sunset": "20:52"
+ },
+ {
+ "date": "2026-08-12",
+ "groups": [
+ {
+ "time": "08:58:00",
+ "height": "4.794"
+ },
+ {
+ "time": "21:18:00",
+ "height": "5.171"
+ }
+ ],
+ "sunrise": "05:53",
+ "sunset": "20:50"
+ },
+ {
+ "date": "2026-08-13",
+ "groups": [
+ {
+ "time": "09:43:00",
+ "height": "5.080"
+ },
+ {
+ "time": "22:00:00",
+ "height": "5.412"
+ }
+ ],
+ "sunrise": "05:54",
+ "sunset": "20:48"
+ },
+ {
+ "date": "2026-08-14",
+ "groups": [
+ {
+ "time": "10:22:00",
+ "height": "5.210"
+ },
+ {
+ "time": "22:39:00",
+ "height": "5.477"
+ }
+ ],
+ "sunrise": "05:56",
+ "sunset": "20:45"
+ },
+ {
+ "date": "2026-08-15",
+ "groups": [
+ {
+ "time": "11:00:00",
+ "height": "5.184"
+ },
+ {
+ "time": "23:17:00",
+ "height": "5.371"
+ }
+ ],
+ "sunrise": "05:58",
+ "sunset": "20:43"
+ },
+ {
+ "date": "2026-08-16",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "5.019"
+ },
+ {
+ "time": "23:56:00",
+ "height": "5.122"
+ }
+ ],
+ "sunrise": "05:59",
+ "sunset": "20:41"
+ },
+ {
+ "date": "2026-08-17",
+ "groups": [
+ {
+ "time": "12:17:00",
+ "height": "4.745"
+ }
+ ],
+ "sunrise": "06:01",
+ "sunset": "20:39"
+ },
+ {
+ "date": "2026-08-18",
+ "groups": [
+ {
+ "time": "00:34:00",
+ "height": "4.766"
+ },
+ {
+ "time": "12:54:00",
+ "height": "4.399"
+ }
+ ],
+ "sunrise": "06:03",
+ "sunset": "20:37"
+ },
+ {
+ "date": "2026-08-19",
+ "groups": [
+ {
+ "time": "01:11:00",
+ "height": "4.346"
+ },
+ {
+ "time": "13:31:00",
+ "height": "4.013"
+ }
+ ],
+ "sunrise": "06:04",
+ "sunset": "20:35"
+ },
+ {
+ "date": "2026-08-20",
+ "groups": [
+ {
+ "time": "01:51:00",
+ "height": "3.893"
+ },
+ {
+ "time": "14:15:00",
+ "height": "3.616"
+ }
+ ],
+ "sunrise": "06:06",
+ "sunset": "20:33"
+ },
+ {
+ "date": "2026-08-21",
+ "groups": [
+ {
+ "time": "02:40:00",
+ "height": "3.444"
+ },
+ {
+ "time": "15:17:00",
+ "height": "3.259"
+ }
+ ],
+ "sunrise": "06:08",
+ "sunset": "20:31"
+ },
+ {
+ "date": "2026-08-22",
+ "groups": [
+ {
+ "time": "03:53:00",
+ "height": "3.074"
+ },
+ {
+ "time": "16:54:00",
+ "height": "3.089"
+ }
+ ],
+ "sunrise": "06:10",
+ "sunset": "20:28"
+ },
+ {
+ "date": "2026-08-23",
+ "groups": [
+ {
+ "time": "05:40:00",
+ "height": "3.001"
+ },
+ {
+ "time": "18:26:00",
+ "height": "3.301"
+ }
+ ],
+ "sunrise": "06:11",
+ "sunset": "20:26"
+ },
+ {
+ "date": "2026-08-24",
+ "groups": [
+ {
+ "time": "07:00:00",
+ "height": "3.296"
+ },
+ {
+ "time": "19:26:00",
+ "height": "3.715"
+ }
+ ],
+ "sunrise": "06:13",
+ "sunset": "20:24"
+ },
+ {
+ "date": "2026-08-25",
+ "groups": [
+ {
+ "time": "07:50:00",
+ "height": "3.705"
+ },
+ {
+ "time": "20:07:00",
+ "height": "4.139"
+ }
+ ],
+ "sunrise": "06:15",
+ "sunset": "20:22"
+ },
+ {
+ "date": "2026-08-26",
+ "groups": [
+ {
+ "time": "08:28:00",
+ "height": "4.092"
+ },
+ {
+ "time": "20:43:00",
+ "height": "4.502"
+ }
+ ],
+ "sunrise": "06:16",
+ "sunset": "20:19"
+ },
+ {
+ "date": "2026-08-27",
+ "groups": [
+ {
+ "time": "09:01:00",
+ "height": "4.419"
+ },
+ {
+ "time": "21:15:00",
+ "height": "4.789"
+ }
+ ],
+ "sunrise": "06:18",
+ "sunset": "20:17"
+ },
+ {
+ "date": "2026-08-28",
+ "groups": [
+ {
+ "time": "09:32:00",
+ "height": "4.677"
+ },
+ {
+ "time": "21:46:00",
+ "height": "5.003"
+ }
+ ],
+ "sunrise": "06:20",
+ "sunset": "20:15"
+ },
+ {
+ "date": "2026-08-29",
+ "groups": [
+ {
+ "time": "10:02:00",
+ "height": "4.868"
+ },
+ {
+ "time": "22:17:00",
+ "height": "5.143"
+ }
+ ],
+ "sunrise": "06:21",
+ "sunset": "20:13"
+ },
+ {
+ "date": "2026-08-30",
+ "groups": [
+ {
+ "time": "10:32:00",
+ "height": "4.979"
+ },
+ {
+ "time": "22:49:00",
+ "height": "5.194"
+ }
+ ],
+ "sunrise": "06:23",
+ "sunset": "20:10"
+ },
+ {
+ "date": "2026-08-31",
+ "groups": [
+ {
+ "time": "11:03:00",
+ "height": "4.992"
+ },
+ {
+ "time": "23:23:00",
+ "height": "5.136"
+ }
+ ],
+ "sunrise": "06:25",
+ "sunset": "20:08"
+ },
+ {
+ "date": "2026-09-01",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "4.890"
+ }
+ ],
+ "sunrise": "06:26",
+ "sunset": "20:06"
+ },
+ {
+ "date": "2026-09-02",
+ "groups": [
+ {
+ "time": "00:00:00",
+ "height": "4.953"
+ },
+ {
+ "time": "12:17:00",
+ "height": "4.673"
+ }
+ ],
+ "sunrise": "06:28",
+ "sunset": "20:03"
+ },
+ {
+ "date": "2026-09-03",
+ "groups": [
+ {
+ "time": "00:42:00",
+ "height": "4.645"
+ },
+ {
+ "time": "13:00:00",
+ "height": "4.353"
+ }
+ ],
+ "sunrise": "06:30",
+ "sunset": "20:01"
+ },
+ {
+ "date": "2026-09-04",
+ "groups": [
+ {
+ "time": "01:29:00",
+ "height": "4.229"
+ },
+ {
+ "time": "13:53:00",
+ "height": "3.959"
+ }
+ ],
+ "sunrise": "06:32",
+ "sunset": "19:59"
+ },
+ {
+ "date": "2026-09-05",
+ "groups": [
+ {
+ "time": "02:33:00",
+ "height": "3.762"
+ },
+ {
+ "time": "15:10:00",
+ "height": "3.584"
+ }
+ ],
+ "sunrise": "06:33",
+ "sunset": "19:56"
+ },
+ {
+ "date": "2026-09-06",
+ "groups": [
+ {
+ "time": "04:07:00",
+ "height": "3.420"
+ },
+ {
+ "time": "16:56:00",
+ "height": "3.481"
+ }
+ ],
+ "sunrise": "06:35",
+ "sunset": "19:54"
+ },
+ {
+ "date": "2026-09-07",
+ "groups": [
+ {
+ "time": "05:49:00",
+ "height": "3.495"
+ },
+ {
+ "time": "18:27:00",
+ "height": "3.834"
+ }
+ ],
+ "sunrise": "06:37",
+ "sunset": "19:51"
+ },
+ {
+ "date": "2026-09-08",
+ "groups": [
+ {
+ "time": "07:07:00",
+ "height": "3.945"
+ },
+ {
+ "time": "19:32:00",
+ "height": "4.394"
+ }
+ ],
+ "sunrise": "06:38",
+ "sunset": "19:49"
+ },
+ {
+ "date": "2026-09-09",
+ "groups": [
+ {
+ "time": "08:01:00",
+ "height": "4.469"
+ },
+ {
+ "time": "20:21:00",
+ "height": "4.907"
+ }
+ ],
+ "sunrise": "06:40",
+ "sunset": "19:47"
+ },
+ {
+ "date": "2026-09-10",
+ "groups": [
+ {
+ "time": "08:46:00",
+ "height": "4.893"
+ },
+ {
+ "time": "21:03:00",
+ "height": "5.268"
+ }
+ ],
+ "sunrise": "06:42",
+ "sunset": "19:44"
+ },
+ {
+ "date": "2026-09-11",
+ "groups": [
+ {
+ "time": "09:24:00",
+ "height": "5.160"
+ },
+ {
+ "time": "21:40:00",
+ "height": "5.447"
+ }
+ ],
+ "sunrise": "06:43",
+ "sunset": "19:42"
+ },
+ {
+ "date": "2026-09-12",
+ "groups": [
+ {
+ "time": "10:00:00",
+ "height": "5.267"
+ },
+ {
+ "time": "22:15:00",
+ "height": "5.456"
+ }
+ ],
+ "sunrise": "06:45",
+ "sunset": "19:39"
+ },
+ {
+ "date": "2026-09-13",
+ "groups": [
+ {
+ "time": "10:33:00",
+ "height": "5.230"
+ },
+ {
+ "time": "22:48:00",
+ "height": "5.320"
+ }
+ ],
+ "sunrise": "06:47",
+ "sunset": "19:37"
+ },
+ {
+ "date": "2026-09-14",
+ "groups": [
+ {
+ "time": "11:04:00",
+ "height": "5.073"
+ },
+ {
+ "time": "23:19:00",
+ "height": "5.067"
+ }
+ ],
+ "sunrise": "06:48",
+ "sunset": "19:35"
+ },
+ {
+ "date": "2026-09-15",
+ "groups": [
+ {
+ "time": "11:37:00",
+ "height": "4.817"
+ },
+ {
+ "time": "23:53:00",
+ "height": "4.725"
+ }
+ ],
+ "sunrise": "06:50",
+ "sunset": "19:32"
+ },
+ {
+ "date": "2026-09-16",
+ "groups": [
+ {
+ "time": "12:10:00",
+ "height": "4.488"
+ }
+ ],
+ "sunrise": "06:52",
+ "sunset": "19:30"
+ },
+ {
+ "date": "2026-09-17",
+ "groups": [
+ {
+ "time": "00:26:00",
+ "height": "4.321"
+ },
+ {
+ "time": "12:45:00",
+ "height": "4.111"
+ }
+ ],
+ "sunrise": "06:54",
+ "sunset": "19:27"
+ },
+ {
+ "date": "2026-09-18",
+ "groups": [
+ {
+ "time": "01:02:00",
+ "height": "3.878"
+ },
+ {
+ "time": "13:24:00",
+ "height": "3.701"
+ }
+ ],
+ "sunrise": "06:55",
+ "sunset": "19:25"
+ },
+ {
+ "date": "2026-09-19",
+ "groups": [
+ {
+ "time": "01:47:00",
+ "height": "3.416"
+ },
+ {
+ "time": "14:20:00",
+ "height": "3.297"
+ }
+ ],
+ "sunrise": "06:57",
+ "sunset": "19:23"
+ },
+ {
+ "date": "2026-09-20",
+ "groups": [
+ {
+ "time": "02:54:00",
+ "height": "2.995"
+ },
+ {
+ "time": "15:58:00",
+ "height": "3.031"
+ }
+ ],
+ "sunrise": "06:59",
+ "sunset": "19:20"
+ },
+ {
+ "date": "2026-09-21",
+ "groups": [
+ {
+ "time": "05:02:00",
+ "height": "2.850"
+ },
+ {
+ "time": "17:54:00",
+ "height": "3.210"
+ }
+ ],
+ "sunrise": "07:00",
+ "sunset": "19:18"
+ },
+ {
+ "date": "2026-09-22",
+ "groups": [
+ {
+ "time": "06:33:00",
+ "height": "3.190"
+ },
+ {
+ "time": "18:56:00",
+ "height": "3.661"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "19:15"
+ },
+ {
+ "date": "2026-09-23",
+ "groups": [
+ {
+ "time": "07:21:00",
+ "height": "3.668"
+ },
+ {
+ "time": "19:37:00",
+ "height": "4.140"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "19:13"
+ },
+ {
+ "date": "2026-09-24",
+ "groups": [
+ {
+ "time": "07:58:00",
+ "height": "4.134"
+ },
+ {
+ "time": "20:12:00",
+ "height": "4.567"
+ }
+ ],
+ "sunrise": "07:05",
+ "sunset": "19:11"
+ },
+ {
+ "date": "2026-09-25",
+ "groups": [
+ {
+ "time": "08:31:00",
+ "height": "4.540"
+ },
+ {
+ "time": "20:45:00",
+ "height": "4.917"
+ }
+ ],
+ "sunrise": "07:07",
+ "sunset": "19:08"
+ },
+ {
+ "date": "2026-09-26",
+ "groups": [
+ {
+ "time": "09:02:00",
+ "height": "4.867"
+ },
+ {
+ "time": "21:17:00",
+ "height": "5.180"
+ }
+ ],
+ "sunrise": "07:09",
+ "sunset": "19:06"
+ },
+ {
+ "date": "2026-09-27",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "5.103"
+ },
+ {
+ "time": "21:50:00",
+ "height": "5.344"
+ }
+ ],
+ "sunrise": "07:11",
+ "sunset": "19:03"
+ },
+ {
+ "date": "2026-09-28",
+ "groups": [
+ {
+ "time": "10:06:00",
+ "height": "5.231"
+ },
+ {
+ "time": "22:23:00",
+ "height": "5.387"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "19:01"
+ },
+ {
+ "date": "2026-09-29",
+ "groups": [
+ {
+ "time": "10:38:00",
+ "height": "5.232"
+ },
+ {
+ "time": "22:57:00",
+ "height": "5.287"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "18:59"
+ },
+ {
+ "date": "2026-09-30",
+ "groups": [
+ {
+ "time": "11:13:00",
+ "height": "5.093"
+ },
+ {
+ "time": "23:38:00",
+ "height": "5.032"
+ }
+ ],
+ "sunrise": "07:16",
+ "sunset": "18:56"
+ },
+ {
+ "date": "2026-10-01",
+ "groups": [
+ {
+ "time": "11:55:00",
+ "height": "4.818"
+ }
+ ],
+ "sunrise": "07:18",
+ "sunset": "18:54"
+ },
+ {
+ "date": "2026-10-02",
+ "groups": [
+ {
+ "time": "00:22:00",
+ "height": "4.636"
+ },
+ {
+ "time": "12:42:00",
+ "height": "4.429"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "18:51"
+ },
+ {
+ "date": "2026-10-03",
+ "groups": [
+ {
+ "time": "01:16:00",
+ "height": "4.140"
+ },
+ {
+ "time": "13:42:00",
+ "height": "3.984"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "18:49"
+ },
+ {
+ "date": "2026-10-04",
+ "groups": [
+ {
+ "time": "02:29:00",
+ "height": "3.649"
+ },
+ {
+ "time": "15:09:00",
+ "height": "3.626"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "18:47"
+ },
+ {
+ "date": "2026-10-05",
+ "groups": [
+ {
+ "time": "04:11:00",
+ "height": "3.392"
+ },
+ {
+ "time": "16:57:00",
+ "height": "3.627"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "18:44"
+ },
+ {
+ "date": "2026-10-06",
+ "groups": [
+ {
+ "time": "05:48:00",
+ "height": "3.591"
+ },
+ {
+ "time": "18:20:00",
+ "height": "4.024"
+ }
+ ],
+ "sunrise": "07:26",
+ "sunset": "18:42"
+ },
+ {
+ "date": "2026-10-07",
+ "groups": [
+ {
+ "time": "06:56:00",
+ "height": "4.063"
+ },
+ {
+ "time": "19:17:00",
+ "height": "4.525"
+ }
+ ],
+ "sunrise": "07:28",
+ "sunset": "18:40"
+ },
+ {
+ "date": "2026-10-08",
+ "groups": [
+ {
+ "time": "07:44:00",
+ "height": "4.533"
+ },
+ {
+ "time": "20:01:00",
+ "height": "4.932"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "18:37"
+ },
+ {
+ "date": "2026-10-09",
+ "groups": [
+ {
+ "time": "08:24:00",
+ "height": "4.886"
+ },
+ {
+ "time": "20:41:00",
+ "height": "5.183"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "18:35"
+ },
+ {
+ "date": "2026-10-10",
+ "groups": [
+ {
+ "time": "09:00:00",
+ "height": "5.094"
+ },
+ {
+ "time": "21:16:00",
+ "height": "5.279"
+ }
+ ],
+ "sunrise": "07:33",
+ "sunset": "18:33"
+ },
+ {
+ "date": "2026-10-11",
+ "groups": [
+ {
+ "time": "09:34:00",
+ "height": "5.171"
+ },
+ {
+ "time": "21:49:00",
+ "height": "5.249"
+ }
+ ],
+ "sunrise": "07:35",
+ "sunset": "18:30"
+ },
+ {
+ "date": "2026-10-12",
+ "groups": [
+ {
+ "time": "10:05:00",
+ "height": "5.140"
+ },
+ {
+ "time": "22:20:00",
+ "height": "5.120"
+ }
+ ],
+ "sunrise": "07:37",
+ "sunset": "18:28"
+ },
+ {
+ "date": "2026-10-13",
+ "groups": [
+ {
+ "time": "10:35:00",
+ "height": "5.017"
+ },
+ {
+ "time": "22:49:00",
+ "height": "4.907"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "18:26"
+ },
+ {
+ "date": "2026-10-14",
+ "groups": [
+ {
+ "time": "11:03:00",
+ "height": "4.812"
+ },
+ {
+ "time": "23:18:00",
+ "height": "4.623"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "18:24"
+ },
+ {
+ "date": "2026-10-15",
+ "groups": [
+ {
+ "time": "11:36:00",
+ "height": "4.536"
+ },
+ {
+ "time": "23:52:00",
+ "height": "4.280"
+ }
+ ],
+ "sunrise": "07:42",
+ "sunset": "18:21"
+ },
+ {
+ "date": "2026-10-16",
+ "groups": [
+ {
+ "time": "12:10:00",
+ "height": "4.207"
+ }
+ ],
+ "sunrise": "07:44",
+ "sunset": "18:19"
+ },
+ {
+ "date": "2026-10-17",
+ "groups": [
+ {
+ "time": "00:28:00",
+ "height": "3.895"
+ },
+ {
+ "time": "12:49:00",
+ "height": "3.843"
+ }
+ ],
+ "sunrise": "07:46",
+ "sunset": "18:17"
+ },
+ {
+ "date": "2026-10-18",
+ "groups": [
+ {
+ "time": "01:11:00",
+ "height": "3.489"
+ },
+ {
+ "time": "13:42:00",
+ "height": "3.476"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "18:15"
+ },
+ {
+ "date": "2026-10-19",
+ "groups": [
+ {
+ "time": "02:14:00",
+ "height": "3.116"
+ },
+ {
+ "time": "15:05:00",
+ "height": "3.207"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "18:12"
+ },
+ {
+ "date": "2026-10-20",
+ "groups": [
+ {
+ "time": "03:57:00",
+ "height": "2.935"
+ },
+ {
+ "time": "16:57:00",
+ "height": "3.253"
+ }
+ ],
+ "sunrise": "07:51",
+ "sunset": "18:10"
+ },
+ {
+ "date": "2026-10-21",
+ "groups": [
+ {
+ "time": "05:41:00",
+ "height": "3.164"
+ },
+ {
+ "time": "18:08:00",
+ "height": "3.618"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "18:08"
+ },
+ {
+ "date": "2026-10-22",
+ "groups": [
+ {
+ "time": "06:37:00",
+ "height": "3.612"
+ },
+ {
+ "time": "18:55:00",
+ "height": "4.073"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "18:06"
+ },
+ {
+ "date": "2026-10-23",
+ "groups": [
+ {
+ "time": "07:18:00",
+ "height": "4.095"
+ },
+ {
+ "time": "19:33:00",
+ "height": "4.518"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "18:04"
+ },
+ {
+ "date": "2026-10-24",
+ "groups": [
+ {
+ "time": "07:54:00",
+ "height": "4.543"
+ },
+ {
+ "time": "20:10:00",
+ "height": "4.904"
+ }
+ ],
+ "sunrise": "07:59",
+ "sunset": "18:02"
+ },
+ {
+ "date": "2026-10-25",
+ "groups": [
+ {
+ "time": "08:29:00",
+ "height": "4.916"
+ },
+ {
+ "time": "20:47:00",
+ "height": "5.198"
+ }
+ ],
+ "sunrise": "08:01",
+ "sunset": "18:00"
+ },
+ {
+ "date": "2026-10-26",
+ "groups": [
+ {
+ "time": "08:04:00",
+ "height": "5.187"
+ },
+ {
+ "time": "20:23:00",
+ "height": "5.375"
+ }
+ ],
+ "sunrise": "07:02",
+ "sunset": "16:58"
+ },
+ {
+ "date": "2026-10-27",
+ "groups": [
+ {
+ "time": "08:41:00",
+ "height": "5.333"
+ },
+ {
+ "time": "21:02:00",
+ "height": "5.409"
+ }
+ ],
+ "sunrise": "07:04",
+ "sunset": "16:55"
+ },
+ {
+ "date": "2026-10-28",
+ "groups": [
+ {
+ "time": "09:19:00",
+ "height": "5.337"
+ },
+ {
+ "time": "21:40:00",
+ "height": "5.286"
+ }
+ ],
+ "sunrise": "07:06",
+ "sunset": "16:53"
+ },
+ {
+ "date": "2026-10-29",
+ "groups": [
+ {
+ "time": "09:57:00",
+ "height": "5.194"
+ },
+ {
+ "time": "22:24:00",
+ "height": "5.009"
+ }
+ ],
+ "sunrise": "07:08",
+ "sunset": "16:51"
+ },
+ {
+ "date": "2026-10-30",
+ "groups": [
+ {
+ "time": "10:44:00",
+ "height": "4.919"
+ },
+ {
+ "time": "23:17:00",
+ "height": "4.610"
+ }
+ ],
+ "sunrise": "07:10",
+ "sunset": "16:49"
+ },
+ {
+ "date": "2026-10-31",
+ "groups": [
+ {
+ "time": "11:38:00",
+ "height": "4.551"
+ }
+ ],
+ "sunrise": "07:12",
+ "sunset": "16:48"
+ },
+ {
+ "date": "2026-11-01",
+ "groups": [
+ {
+ "time": "00:16:00",
+ "height": "4.159"
+ },
+ {
+ "time": "12:46:00",
+ "height": "4.170"
+ }
+ ],
+ "sunrise": "07:14",
+ "sunset": "16:46"
+ },
+ {
+ "date": "2026-11-02",
+ "groups": [
+ {
+ "time": "01:31:00",
+ "height": "3.770"
+ },
+ {
+ "time": "14:08:00",
+ "height": "3.909"
+ }
+ ],
+ "sunrise": "07:15",
+ "sunset": "16:44"
+ },
+ {
+ "date": "2026-11-03",
+ "groups": [
+ {
+ "time": "03:00:00",
+ "height": "3.602"
+ },
+ {
+ "time": "15:39:00",
+ "height": "3.907"
+ }
+ ],
+ "sunrise": "07:17",
+ "sunset": "16:42"
+ },
+ {
+ "date": "2026-11-04",
+ "groups": [
+ {
+ "time": "04:23:00",
+ "height": "3.743"
+ },
+ {
+ "time": "16:52:00",
+ "height": "4.146"
+ }
+ ],
+ "sunrise": "07:19",
+ "sunset": "16:40"
+ },
+ {
+ "date": "2026-11-05",
+ "groups": [
+ {
+ "time": "05:26:00",
+ "height": "4.068"
+ },
+ {
+ "time": "17:48:00",
+ "height": "4.456"
+ }
+ ],
+ "sunrise": "07:21",
+ "sunset": "16:38"
+ },
+ {
+ "date": "2026-11-06",
+ "groups": [
+ {
+ "time": "06:16:00",
+ "height": "4.408"
+ },
+ {
+ "time": "18:35:00",
+ "height": "4.709"
+ }
+ ],
+ "sunrise": "07:23",
+ "sunset": "16:36"
+ },
+ {
+ "date": "2026-11-07",
+ "groups": [
+ {
+ "time": "06:58:00",
+ "height": "4.673"
+ },
+ {
+ "time": "19:15:00",
+ "height": "4.862"
+ }
+ ],
+ "sunrise": "07:25",
+ "sunset": "16:35"
+ },
+ {
+ "date": "2026-11-08",
+ "groups": [
+ {
+ "time": "07:34:00",
+ "height": "4.842"
+ },
+ {
+ "time": "19:50:00",
+ "height": "4.920"
+ }
+ ],
+ "sunrise": "07:27",
+ "sunset": "16:33"
+ },
+ {
+ "date": "2026-11-09",
+ "groups": [
+ {
+ "time": "08:08:00",
+ "height": "4.925"
+ },
+ {
+ "time": "20:24:00",
+ "height": "4.903"
+ }
+ ],
+ "sunrise": "07:29",
+ "sunset": "16:31"
+ },
+ {
+ "date": "2026-11-10",
+ "groups": [
+ {
+ "time": "08:40:00",
+ "height": "4.933"
+ },
+ {
+ "time": "20:56:00",
+ "height": "4.826"
+ }
+ ],
+ "sunrise": "07:30",
+ "sunset": "16:30"
+ },
+ {
+ "date": "2026-11-11",
+ "groups": [
+ {
+ "time": "09:11:00",
+ "height": "4.872"
+ },
+ {
+ "time": "21:26:00",
+ "height": "4.690"
+ }
+ ],
+ "sunrise": "07:32",
+ "sunset": "16:28"
+ },
+ {
+ "date": "2026-11-12",
+ "groups": [
+ {
+ "time": "09:41:00",
+ "height": "4.744"
+ },
+ {
+ "time": "21:56:00",
+ "height": "4.497"
+ }
+ ],
+ "sunrise": "07:34",
+ "sunset": "16:26"
+ },
+ {
+ "date": "2026-11-13",
+ "groups": [
+ {
+ "time": "10:13:00",
+ "height": "4.555"
+ },
+ {
+ "time": "22:30:00",
+ "height": "4.254"
+ }
+ ],
+ "sunrise": "07:36",
+ "sunset": "16:25"
+ },
+ {
+ "date": "2026-11-14",
+ "groups": [
+ {
+ "time": "10:50:00",
+ "height": "4.318"
+ },
+ {
+ "time": "23:08:00",
+ "height": "3.976"
+ }
+ ],
+ "sunrise": "07:38",
+ "sunset": "16:23"
+ },
+ {
+ "date": "2026-11-15",
+ "groups": [
+ {
+ "time": "11:31:00",
+ "height": "4.048"
+ },
+ {
+ "time": "23:51:00",
+ "height": "3.682"
+ }
+ ],
+ "sunrise": "07:39",
+ "sunset": "16:22"
+ },
+ {
+ "date": "2026-11-16",
+ "groups": [
+ {
+ "time": "12:20:00",
+ "height": "3.776"
+ }
+ ],
+ "sunrise": "07:41",
+ "sunset": "16:20"
+ },
+ {
+ "date": "2026-11-17",
+ "groups": [
+ {
+ "time": "00:47:00",
+ "height": "3.412"
+ },
+ {
+ "time": "13:25:00",
+ "height": "3.557"
+ }
+ ],
+ "sunrise": "07:43",
+ "sunset": "16:19"
+ },
+ {
+ "date": "2026-11-18",
+ "groups": [
+ {
+ "time": "01:59:00",
+ "height": "3.243"
+ },
+ {
+ "time": "14:44:00",
+ "height": "3.487"
+ }
+ ],
+ "sunrise": "07:45",
+ "sunset": "16:18"
+ },
+ {
+ "date": "2026-11-19",
+ "groups": [
+ {
+ "time": "03:25:00",
+ "height": "3.282"
+ },
+ {
+ "time": "16:01:00",
+ "height": "3.637"
+ }
+ ],
+ "sunrise": "07:47",
+ "sunset": "16:16"
+ },
+ {
+ "date": "2026-11-20",
+ "groups": [
+ {
+ "time": "04:36:00",
+ "height": "3.557"
+ },
+ {
+ "time": "17:00:00",
+ "height": "3.955"
+ }
+ ],
+ "sunrise": "07:48",
+ "sunset": "16:15"
+ },
+ {
+ "date": "2026-11-21",
+ "groups": [
+ {
+ "time": "05:28:00",
+ "height": "3.958"
+ },
+ {
+ "time": "17:50:00",
+ "height": "4.338"
+ }
+ ],
+ "sunrise": "07:50",
+ "sunset": "16:14"
+ },
+ {
+ "date": "2026-11-22",
+ "groups": [
+ {
+ "time": "06:14:00",
+ "height": "4.385"
+ },
+ {
+ "time": "18:34:00",
+ "height": "4.708"
+ }
+ ],
+ "sunrise": "07:52",
+ "sunset": "16:13"
+ },
+ {
+ "date": "2026-11-23",
+ "groups": [
+ {
+ "time": "06:57:00",
+ "height": "4.772"
+ },
+ {
+ "time": "19:18:00",
+ "height": "5.011"
+ }
+ ],
+ "sunrise": "07:53",
+ "sunset": "16:11"
+ },
+ {
+ "date": "2026-11-24",
+ "groups": [
+ {
+ "time": "07:39:00",
+ "height": "5.075"
+ },
+ {
+ "time": "20:02:00",
+ "height": "5.208"
+ }
+ ],
+ "sunrise": "07:55",
+ "sunset": "16:10"
+ },
+ {
+ "date": "2026-11-25",
+ "groups": [
+ {
+ "time": "08:22:00",
+ "height": "5.266"
+ },
+ {
+ "time": "20:47:00",
+ "height": "5.277"
+ }
+ ],
+ "sunrise": "07:57",
+ "sunset": "16:09"
+ },
+ {
+ "date": "2026-11-26",
+ "groups": [
+ {
+ "time": "09:06:00",
+ "height": "5.331"
+ },
+ {
+ "time": "21:32:00",
+ "height": "5.209"
+ }
+ ],
+ "sunrise": "07:58",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2026-11-27",
+ "groups": [
+ {
+ "time": "09:51:00",
+ "height": "5.266"
+ },
+ {
+ "time": "22:19:00",
+ "height": "5.014"
+ }
+ ],
+ "sunrise": "08:00",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2026-11-28",
+ "groups": [
+ {
+ "time": "10:42:00",
+ "height": "5.087"
+ },
+ {
+ "time": "23:16:00",
+ "height": "4.724"
+ }
+ ],
+ "sunrise": "08:02",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2026-11-29",
+ "groups": [
+ {
+ "time": "11:39:00",
+ "height": "4.827"
+ }
+ ],
+ "sunrise": "08:03",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2026-11-30",
+ "groups": [
+ {
+ "time": "00:14:00",
+ "height": "4.390"
+ },
+ {
+ "time": "12:40:00",
+ "height": "4.536"
+ }
+ ],
+ "sunrise": "08:05",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2026-12-01",
+ "groups": [
+ {
+ "time": "01:18:00",
+ "height": "4.079"
+ },
+ {
+ "time": "13:47:00",
+ "height": "4.278"
+ }
+ ],
+ "sunrise": "08:06",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2026-12-02",
+ "groups": [
+ {
+ "time": "02:28:00",
+ "height": "3.863"
+ },
+ {
+ "time": "15:01:00",
+ "height": "4.115"
+ }
+ ],
+ "sunrise": "08:07",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2026-12-03",
+ "groups": [
+ {
+ "time": "03:42:00",
+ "height": "3.802"
+ },
+ {
+ "time": "16:10:00",
+ "height": "4.080"
+ }
+ ],
+ "sunrise": "08:09",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2026-12-04",
+ "groups": [
+ {
+ "time": "04:45:00",
+ "height": "3.892"
+ },
+ {
+ "time": "17:09:00",
+ "height": "4.145"
+ }
+ ],
+ "sunrise": "08:10",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2026-12-05",
+ "groups": [
+ {
+ "time": "05:41:00",
+ "height": "4.071"
+ },
+ {
+ "time": "18:02:00",
+ "height": "4.256"
+ }
+ ],
+ "sunrise": "08:12",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2026-12-06",
+ "groups": [
+ {
+ "time": "06:28:00",
+ "height": "4.273"
+ },
+ {
+ "time": "18:48:00",
+ "height": "4.367"
+ }
+ ],
+ "sunrise": "08:13",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2026-12-07",
+ "groups": [
+ {
+ "time": "07:11:00",
+ "height": "4.454"
+ },
+ {
+ "time": "19:30:00",
+ "height": "4.457"
+ }
+ ],
+ "sunrise": "08:14",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2026-12-08",
+ "groups": [
+ {
+ "time": "07:48:00",
+ "height": "4.592"
+ },
+ {
+ "time": "20:06:00",
+ "height": "4.515"
+ }
+ ],
+ "sunrise": "08:15",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-09",
+ "groups": [
+ {
+ "time": "08:24:00",
+ "height": "4.680"
+ },
+ {
+ "time": "20:41:00",
+ "height": "4.533"
+ }
+ ],
+ "sunrise": "08:17",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-10",
+ "groups": [
+ {
+ "time": "08:57:00",
+ "height": "4.711"
+ },
+ {
+ "time": "21:14:00",
+ "height": "4.505"
+ }
+ ],
+ "sunrise": "08:18",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-11",
+ "groups": [
+ {
+ "time": "09:29:00",
+ "height": "4.686"
+ },
+ {
+ "time": "21:45:00",
+ "height": "4.432"
+ }
+ ],
+ "sunrise": "08:19",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-12",
+ "groups": [
+ {
+ "time": "10:01:00",
+ "height": "4.609"
+ },
+ {
+ "time": "22:18:00",
+ "height": "4.317"
+ }
+ ],
+ "sunrise": "08:20",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-13",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "4.489"
+ },
+ {
+ "time": "22:55:00",
+ "height": "4.169"
+ }
+ ],
+ "sunrise": "08:21",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-14",
+ "groups": [
+ {
+ "time": "11:17:00",
+ "height": "4.333"
+ },
+ {
+ "time": "23:35:00",
+ "height": "3.994"
+ }
+ ],
+ "sunrise": "08:22",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-15",
+ "groups": [
+ {
+ "time": "11:59:00",
+ "height": "4.152"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-16",
+ "groups": [
+ {
+ "time": "00:21:00",
+ "height": "3.811"
+ },
+ {
+ "time": "12:49:00",
+ "height": "3.972"
+ }
+ ],
+ "sunrise": "08:23",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-17",
+ "groups": [
+ {
+ "time": "01:13:00",
+ "height": "3.647"
+ },
+ {
+ "time": "13:46:00",
+ "height": "3.827"
+ }
+ ],
+ "sunrise": "08:24",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-18",
+ "groups": [
+ {
+ "time": "02:17:00",
+ "height": "3.549"
+ },
+ {
+ "time": "14:53:00",
+ "height": "3.769"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:00"
+ },
+ {
+ "date": "2026-12-19",
+ "groups": [
+ {
+ "time": "03:29:00",
+ "height": "3.577"
+ },
+ {
+ "time": "16:02:00",
+ "height": "3.844"
+ }
+ ],
+ "sunrise": "08:25",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2026-12-20",
+ "groups": [
+ {
+ "time": "04:36:00",
+ "height": "3.769"
+ },
+ {
+ "time": "17:05:00",
+ "height": "4.057"
+ }
+ ],
+ "sunrise": "08:26",
+ "sunset": "16:01"
+ },
+ {
+ "date": "2026-12-21",
+ "groups": [
+ {
+ "time": "05:36:00",
+ "height": "4.091"
+ },
+ {
+ "time": "18:03:00",
+ "height": "4.355"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2026-12-22",
+ "groups": [
+ {
+ "time": "06:30:00",
+ "height": "4.467"
+ },
+ {
+ "time": "18:58:00",
+ "height": "4.667"
+ }
+ ],
+ "sunrise": "08:27",
+ "sunset": "16:02"
+ },
+ {
+ "date": "2026-12-23",
+ "groups": [
+ {
+ "time": "07:22:00",
+ "height": "4.829"
+ },
+ {
+ "time": "19:49:00",
+ "height": "4.937"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2026-12-24",
+ "groups": [
+ {
+ "time": "08:11:00",
+ "height": "5.128"
+ },
+ {
+ "time": "20:39:00",
+ "height": "5.123"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:03"
+ },
+ {
+ "date": "2026-12-25",
+ "groups": [
+ {
+ "time": "09:00:00",
+ "height": "5.328"
+ },
+ {
+ "time": "21:27:00",
+ "height": "5.197"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:04"
+ },
+ {
+ "date": "2026-12-26",
+ "groups": [
+ {
+ "time": "09:47:00",
+ "height": "5.410"
+ },
+ {
+ "time": "22:14:00",
+ "height": "5.150"
+ }
+ ],
+ "sunrise": "08:28",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2026-12-27",
+ "groups": [
+ {
+ "time": "10:37:00",
+ "height": "5.357"
+ },
+ {
+ "time": "23:06:00",
+ "height": "4.981"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:05"
+ },
+ {
+ "date": "2026-12-28",
+ "groups": [
+ {
+ "time": "11:29:00",
+ "height": "5.177"
+ },
+ {
+ "time": "23:58:00",
+ "height": "4.716"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:06"
+ },
+ {
+ "date": "2026-12-29",
+ "groups": [
+ {
+ "time": "12:21:00",
+ "height": "4.894"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:07"
+ },
+ {
+ "date": "2026-12-30",
+ "groups": [
+ {
+ "time": "00:50:00",
+ "height": "4.395"
+ },
+ {
+ "time": "13:14:00",
+ "height": "4.546"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:08"
+ },
+ {
+ "date": "2026-12-31",
+ "groups": [
+ {
+ "time": "01:44:00",
+ "height": "4.065"
+ },
+ {
+ "time": "14:12:00",
+ "height": "4.186"
+ }
+ ],
+ "sunrise": "08:29",
+ "sunset": "16:09"
+ }
+ ],
+ "pdfs": [
+ {
+ "name": "September 2014",
+ "date": "2014-09-01",
+ "filename": "2014\/09.pdf",
+ "htmlfilename": "2014\/09.html",
+ "url": "2014\/09"
+ },
+ {
+ "name": "October 2014",
+ "date": "2014-10-01",
+ "filename": "2014\/10.pdf",
+ "htmlfilename": "2014\/10.html",
+ "url": "2014\/10"
+ },
+ {
+ "name": "November 2014",
+ "date": "2014-11-01",
+ "filename": "2014\/11.pdf",
+ "htmlfilename": "2014\/11.html",
+ "url": "2014\/11"
+ },
+ {
+ "name": "December 2014",
+ "date": "2014-12-01",
+ "filename": "2014\/12.pdf",
+ "htmlfilename": "2014\/12.html",
+ "url": "2014\/12"
+ },
+ {
+ "name": "January 2015",
+ "date": "2015-01-01",
+ "filename": "2015\/01.pdf",
+ "htmlfilename": "2015\/01.html",
+ "url": "2015\/01"
+ },
+ {
+ "name": "February 2015",
+ "date": "2015-02-01",
+ "filename": "2015\/02.pdf",
+ "htmlfilename": "2015\/02.html",
+ "url": "2015\/02"
+ },
+ {
+ "name": "March 2015",
+ "date": "2015-03-01",
+ "filename": "2015\/03.pdf",
+ "htmlfilename": "2015\/03.html",
+ "url": "2015\/03"
+ },
+ {
+ "name": "April 2015",
+ "date": "2015-04-01",
+ "filename": "2015\/04.pdf",
+ "htmlfilename": "2015\/04.html",
+ "url": "2015\/04"
+ },
+ {
+ "name": "May 2015",
+ "date": "2015-05-01",
+ "filename": "2015\/05.pdf",
+ "htmlfilename": "2015\/05.html",
+ "url": "2015\/05"
+ },
+ {
+ "name": "June 2015",
+ "date": "2015-06-01",
+ "filename": "2015\/06.pdf",
+ "htmlfilename": "2015\/06.html",
+ "url": "2015\/06"
+ },
+ {
+ "name": "July 2015",
+ "date": "2015-07-01",
+ "filename": "2015\/07.pdf",
+ "htmlfilename": "2015\/07.html",
+ "url": "2015\/07"
+ },
+ {
+ "name": "August 2015",
+ "date": "2015-08-01",
+ "filename": "2015\/08.pdf",
+ "htmlfilename": "2015\/08.html",
+ "url": "2015\/08"
+ },
+ {
+ "name": "September 2015",
+ "date": "2015-09-01",
+ "filename": "2015\/09.pdf",
+ "htmlfilename": "2015\/09.html",
+ "url": "2015\/09"
+ },
+ {
+ "name": "October 2015",
+ "date": "2015-10-01",
+ "filename": "2015\/10.pdf",
+ "htmlfilename": "2015\/10.html",
+ "url": "2015\/10"
+ },
+ {
+ "name": "November 2015",
+ "date": "2015-11-01",
+ "filename": "2015\/11.pdf",
+ "htmlfilename": "2015\/11.html",
+ "url": "2015\/11"
+ },
+ {
+ "name": "December 2015",
+ "date": "2015-12-01",
+ "filename": "2015\/12.pdf",
+ "htmlfilename": "2015\/12.html",
+ "url": "2015\/12"
+ },
+ {
+ "name": "January 2016",
+ "date": "2016-01-01",
+ "filename": "2016\/01.pdf",
+ "htmlfilename": "2016\/01.html",
+ "url": "2016\/01"
+ },
+ {
+ "name": "February 2016",
+ "date": "2016-02-01",
+ "filename": "2016\/02.pdf",
+ "htmlfilename": "2016\/02.html",
+ "url": "2016\/02"
+ },
+ {
+ "name": "March 2016",
+ "date": "2016-03-01",
+ "filename": "2016\/03.pdf",
+ "htmlfilename": "2016\/03.html",
+ "url": "2016\/03"
+ },
+ {
+ "name": "April 2016",
+ "date": "2016-04-01",
+ "filename": "2016\/04.pdf",
+ "htmlfilename": "2016\/04.html",
+ "url": "2016\/04"
+ },
+ {
+ "name": "May 2016",
+ "date": "2016-05-01",
+ "filename": "2016\/05.pdf",
+ "htmlfilename": "2016\/05.html",
+ "url": "2016\/05"
+ },
+ {
+ "name": "June 2016",
+ "date": "2016-06-01",
+ "filename": "2016\/06.pdf",
+ "htmlfilename": "2016\/06.html",
+ "url": "2016\/06"
+ },
+ {
+ "name": "July 2016",
+ "date": "2016-07-01",
+ "filename": "2016\/07.pdf",
+ "htmlfilename": "2016\/07.html",
+ "url": "2016\/07"
+ },
+ {
+ "name": "August 2016",
+ "date": "2016-08-01",
+ "filename": "2016\/08.pdf",
+ "htmlfilename": "2016\/08.html",
+ "url": "2016\/08"
+ },
+ {
+ "name": "January 2017",
+ "date": "2017-01-01",
+ "filename": "2017\/01.pdf",
+ "htmlfilename": "2017\/01.html",
+ "url": "2017\/01"
+ },
+ {
+ "name": "February 2017",
+ "date": "2017-02-01",
+ "filename": "2017\/02.pdf",
+ "htmlfilename": "2017\/02.html",
+ "url": "2017\/02"
+ },
+ {
+ "name": "March 2017",
+ "date": "2017-03-01",
+ "filename": "2017\/03.pdf",
+ "htmlfilename": "2017\/03.html",
+ "url": "2017\/03"
+ },
+ {
+ "name": "April 2017",
+ "date": "2017-04-01",
+ "filename": "2017\/04.pdf",
+ "htmlfilename": "2017\/04.html",
+ "url": "2017\/04"
+ },
+ {
+ "name": "May 2017",
+ "date": "2017-05-01",
+ "filename": "2017\/05.pdf",
+ "htmlfilename": "2017\/05.html",
+ "url": "2017\/05"
+ },
+ {
+ "name": "June 2017",
+ "date": "2017-06-01",
+ "filename": "2017\/06.pdf",
+ "htmlfilename": "2017\/06.html",
+ "url": "2017\/06"
+ },
+ {
+ "name": "July 2017",
+ "date": "2017-07-01",
+ "filename": "2017\/07.pdf",
+ "htmlfilename": "2017\/07.html",
+ "url": "2017\/07"
+ },
+ {
+ "name": "August 2017",
+ "date": "2017-08-01",
+ "filename": "2017\/08.pdf",
+ "htmlfilename": "2017\/08.html",
+ "url": "2017\/08"
+ },
+ {
+ "name": "September 2017",
+ "date": "2017-09-01",
+ "filename": "2017\/09.pdf",
+ "htmlfilename": "2017\/09.html",
+ "url": "2017\/09"
+ },
+ {
+ "name": "October 2017",
+ "date": "2017-10-01",
+ "filename": "2017\/10.pdf",
+ "htmlfilename": "2017\/10.html",
+ "url": "2017\/10"
+ },
+ {
+ "name": "November 2017",
+ "date": "2017-11-01",
+ "filename": "2017\/11.pdf",
+ "htmlfilename": "2017\/11.html",
+ "url": "2017\/11"
+ },
+ {
+ "name": "December 2017",
+ "date": "2017-12-01",
+ "filename": "2017\/12.pdf",
+ "htmlfilename": "2017\/12.html",
+ "url": "2017\/12"
+ },
+ {
+ "name": "January 2018",
+ "date": "2018-01-01",
+ "filename": "2018\/01.pdf",
+ "htmlfilename": "2018\/01.html",
+ "url": "2018\/01"
+ },
+ {
+ "name": "February 2018",
+ "date": "2018-02-01",
+ "filename": "2018\/02.pdf",
+ "htmlfilename": "2018\/02.html",
+ "url": "2018\/02"
+ },
+ {
+ "name": "March 2018",
+ "date": "2018-03-01",
+ "filename": "2018\/03.pdf",
+ "htmlfilename": "2018\/03.html",
+ "url": "2018\/03"
+ },
+ {
+ "name": "April 2018",
+ "date": "2018-04-01",
+ "filename": "2018\/04.pdf",
+ "htmlfilename": "2018\/04.html",
+ "url": "2018\/04"
+ },
+ {
+ "name": "May 2018",
+ "date": "2018-05-01",
+ "filename": "2018\/05.pdf",
+ "htmlfilename": "2018\/05.html",
+ "url": "2018\/05"
+ },
+ {
+ "name": "June 2018",
+ "date": "2018-06-01",
+ "filename": "2018\/06.pdf",
+ "htmlfilename": "2018\/06.html",
+ "url": "2018\/06"
+ },
+ {
+ "name": "July 2018",
+ "date": "2018-07-01",
+ "filename": "2018\/07.pdf",
+ "htmlfilename": "2018\/07.html",
+ "url": "2018\/07"
+ },
+ {
+ "name": "August 2018",
+ "date": "2018-08-01",
+ "filename": "2018\/08.pdf",
+ "htmlfilename": "2018\/08.html",
+ "url": "2018\/08"
+ },
+ {
+ "name": "September 2018",
+ "date": "2018-09-01",
+ "filename": "2018\/09.pdf",
+ "htmlfilename": "2018\/09.html",
+ "url": "2018\/09"
+ },
+ {
+ "name": "October 2018",
+ "date": "2018-10-01",
+ "filename": "2018\/10.pdf",
+ "htmlfilename": "2018\/10.html",
+ "url": "2018\/10"
+ },
+ {
+ "name": "November 2018",
+ "date": "2018-11-01",
+ "filename": "2018\/11.pdf",
+ "htmlfilename": "2018\/11.html",
+ "url": "2018\/11"
+ },
+ {
+ "name": "December 2018",
+ "date": "2018-12-01",
+ "filename": "2018\/12.pdf",
+ "htmlfilename": "2018\/12.html",
+ "url": "2018\/12"
+ },
+ {
+ "name": "March 2019",
+ "date": "2019-03-01",
+ "filename": "2019\/03.pdf",
+ "htmlfilename": "2019\/03.html",
+ "url": "2019\/03"
+ },
+ {
+ "name": "April 2019",
+ "date": "2019-04-01",
+ "filename": "2019\/04.pdf",
+ "htmlfilename": "2019\/04.html",
+ "url": "2019\/04"
+ },
+ {
+ "name": "May 2019",
+ "date": "2019-05-01",
+ "filename": "2019\/05.pdf",
+ "htmlfilename": "2019\/05.html",
+ "url": "2019\/05"
+ },
+ {
+ "name": "June 2019",
+ "date": "2019-06-01",
+ "filename": "2019\/06.pdf",
+ "htmlfilename": "2019\/06.html",
+ "url": "2019\/06"
+ },
+ {
+ "name": "July 2019",
+ "date": "2019-07-01",
+ "filename": "2019\/07.pdf",
+ "htmlfilename": "2019\/07.html",
+ "url": "2019\/07"
+ },
+ {
+ "name": "August 2019",
+ "date": "2019-08-01",
+ "filename": "2019\/08.pdf",
+ "htmlfilename": "2019\/08.html",
+ "url": "2019\/08"
+ },
+ {
+ "name": "September 2019",
+ "date": "2019-09-01",
+ "filename": "2019\/09.pdf",
+ "htmlfilename": "2019\/09.html",
+ "url": "2019\/09"
+ },
+ {
+ "name": "October 2019",
+ "date": "2019-10-01",
+ "filename": "2019\/10.pdf",
+ "htmlfilename": "2019\/10.html",
+ "url": "2019\/10"
+ },
+ {
+ "name": "November 2019",
+ "date": "2019-11-01",
+ "filename": "2019\/11.pdf",
+ "htmlfilename": "2019\/11.html",
+ "url": "2019\/11"
+ },
+ {
+ "name": "December 2019",
+ "date": "2019-12-01",
+ "filename": "2019\/12.pdf",
+ "htmlfilename": "2019\/12.html",
+ "url": "2019\/12"
+ },
+ {
+ "name": "January 2020",
+ "date": "2020-01-01",
+ "filename": "2020\/01.pdf",
+ "htmlfilename": "2020\/01.html",
+ "url": "2020\/01"
+ },
+ {
+ "name": "February 2020",
+ "date": "2020-02-01",
+ "filename": "2020\/02.pdf",
+ "htmlfilename": "2020\/02.html",
+ "url": "2020\/02"
+ },
+ {
+ "name": "June 2020",
+ "date": "2020-06-01",
+ "filename": "2020\/06.pdf",
+ "htmlfilename": "2020\/06.html",
+ "url": "2020\/06"
+ },
+ {
+ "name": "July 2020",
+ "date": "2020-07-01",
+ "filename": "2020\/07.pdf",
+ "htmlfilename": "2020\/07.html",
+ "url": "2020\/07"
+ },
+ {
+ "name": "August 2020",
+ "date": "2020-08-01",
+ "filename": "2020\/08.pdf",
+ "htmlfilename": "2020\/08.html",
+ "url": "2020\/08"
+ },
+ {
+ "name": "September 2020",
+ "date": "2020-09-01",
+ "filename": "2020\/09.pdf",
+ "htmlfilename": "2020\/09.html",
+ "url": "2020\/09"
+ },
+ {
+ "name": "October 2020",
+ "date": "2020-10-01",
+ "filename": "2020\/10.pdf",
+ "htmlfilename": "2020\/10.html",
+ "url": "2020\/10"
+ },
+ {
+ "name": "November 2020",
+ "date": "2020-11-01",
+ "filename": "2020\/11.pdf",
+ "htmlfilename": "2020\/11.html",
+ "url": "2020\/11"
+ },
+ {
+ "name": "December 2020",
+ "date": "2020-12-01",
+ "filename": "2020\/12.pdf",
+ "htmlfilename": "2020\/12.html",
+ "url": "2020\/12"
+ },
+ {
+ "name": "January 2021",
+ "date": "2021-01-01",
+ "filename": "2021\/01.pdf",
+ "htmlfilename": "2021\/01.html",
+ "url": "2021\/01"
+ },
+ {
+ "name": "February 2021",
+ "date": "2021-02-01",
+ "filename": "2021\/02.pdf",
+ "htmlfilename": "2021\/02.html",
+ "url": "2021\/02"
+ },
+ {
+ "name": "March 2021",
+ "date": "2021-03-01",
+ "filename": "2021\/03.pdf",
+ "htmlfilename": "2021\/03.html",
+ "url": "2021\/03"
+ },
+ {
+ "name": "April 2021",
+ "date": "2021-04-01",
+ "filename": "2021\/04.pdf",
+ "htmlfilename": "2021\/04.html",
+ "url": "2021\/04"
+ },
+ {
+ "name": "May 2021",
+ "date": "2021-05-01",
+ "filename": "2021\/05.pdf",
+ "htmlfilename": "2021\/05.html",
+ "url": "2021\/05"
+ },
+ {
+ "name": "June 2021",
+ "date": "2021-06-01",
+ "filename": "2021\/06.pdf",
+ "htmlfilename": "2021\/06.html",
+ "url": "2021\/06"
+ },
+ {
+ "name": "July 2021",
+ "date": "2021-07-01",
+ "filename": "2021\/07.pdf",
+ "htmlfilename": "2021\/07.html",
+ "url": "2021\/07"
+ },
+ {
+ "name": "August 2021",
+ "date": "2021-08-01",
+ "filename": "2021\/08.pdf",
+ "htmlfilename": "2021\/08.html",
+ "url": "2021\/08"
+ },
+ {
+ "name": "September 2021",
+ "date": "2021-09-01",
+ "filename": "2021\/09.pdf",
+ "htmlfilename": "2021\/09.html",
+ "url": "2021\/09"
+ },
+ {
+ "name": "October 2021",
+ "date": "2021-10-01",
+ "filename": "2021\/10.pdf",
+ "htmlfilename": "2021\/10.html",
+ "url": "2021\/10"
+ },
+ {
+ "name": "November 2021",
+ "date": "2021-11-01",
+ "filename": "2021\/11.pdf",
+ "htmlfilename": "2021\/11.html",
+ "url": "2021\/11"
+ },
+ {
+ "name": "December 2021",
+ "date": "2021-12-01",
+ "filename": "2021\/12.pdf",
+ "htmlfilename": "2021\/12.html",
+ "url": "2021\/12"
+ },
+ {
+ "name": "January 2022",
+ "date": "2022-01-01",
+ "filename": "2022\/01.pdf",
+ "htmlfilename": "2022\/01.html",
+ "url": "2022\/01"
+ },
+ {
+ "name": "February 2022",
+ "date": "2022-02-01",
+ "filename": "2022\/02.pdf",
+ "htmlfilename": "2022\/02.html",
+ "url": "2022\/02"
+ },
+ {
+ "name": "March 2022",
+ "date": "2022-03-01",
+ "filename": "2022\/03.pdf",
+ "htmlfilename": "2022\/03.html",
+ "url": "2022\/03"
+ },
+ {
+ "name": "April 2022",
+ "date": "2022-04-01",
+ "filename": "2022\/04.pdf",
+ "htmlfilename": "2022\/04.html",
+ "url": "2022\/04"
+ },
+ {
+ "name": "May 2022",
+ "date": "2022-05-01",
+ "filename": "2022\/05.pdf",
+ "htmlfilename": "2022\/05.html",
+ "url": "2022\/05"
+ },
+ {
+ "name": "June 2022",
+ "date": "2022-06-01",
+ "filename": "2022\/06.pdf",
+ "htmlfilename": "2022\/06.html",
+ "url": "2022\/06"
+ },
+ {
+ "name": "July 2022",
+ "date": "2022-07-01",
+ "filename": "2022\/07.pdf",
+ "htmlfilename": "2022\/07.html",
+ "url": "2022\/07"
+ },
+ {
+ "name": "August 2022",
+ "date": "2022-08-01",
+ "filename": "2022\/08.pdf",
+ "htmlfilename": "2022\/08.html",
+ "url": "2022\/08"
+ },
+ {
+ "name": "September 2022",
+ "date": "2022-09-01",
+ "filename": "2022\/09.pdf",
+ "htmlfilename": "2022\/09.html",
+ "url": "2022\/09"
+ },
+ {
+ "name": "October 2022",
+ "date": "2022-10-01",
+ "filename": "2022\/10.pdf",
+ "htmlfilename": "2022\/10.html",
+ "url": "2022\/10"
+ },
+ {
+ "name": "November 2022",
+ "date": "2022-11-01",
+ "filename": "2022\/11.pdf",
+ "htmlfilename": "2022\/11.html",
+ "url": "2022\/11"
+ },
+ {
+ "name": "December 2022",
+ "date": "2022-12-01",
+ "filename": "2022\/12.pdf",
+ "htmlfilename": "2022\/12.html",
+ "url": "2022\/12"
+ },
+ {
+ "name": "January 2023",
+ "date": "2023-01-01",
+ "filename": "2023\/01.pdf",
+ "htmlfilename": "2023\/01.html",
+ "url": "2023\/01"
+ },
+ {
+ "name": "February 2023",
+ "date": "2023-02-01",
+ "filename": "2023\/02.pdf",
+ "htmlfilename": "2023\/02.html",
+ "url": "2023\/02"
+ },
+ {
+ "name": "March 2023",
+ "date": "2023-03-01",
+ "filename": "2023\/03.pdf",
+ "htmlfilename": "2023\/03.html",
+ "url": "2023\/03"
+ },
+ {
+ "name": "April 2023",
+ "date": "2023-04-01",
+ "filename": "2023\/04.pdf",
+ "htmlfilename": "2023\/04.html",
+ "url": "2023\/04"
+ },
+ {
+ "name": "May 2023",
+ "date": "2023-05-01",
+ "filename": "2023\/05.pdf",
+ "htmlfilename": "2023\/05.html",
+ "url": "2023\/05"
+ },
+ {
+ "name": "June 2023",
+ "date": "2023-06-01",
+ "filename": "2023\/06.pdf",
+ "htmlfilename": "2023\/06.html",
+ "url": "2023\/06"
+ },
+ {
+ "name": "July 2023",
+ "date": "2023-07-01",
+ "filename": "2023\/07.pdf",
+ "htmlfilename": "2023\/07.html",
+ "url": "2023\/07"
+ },
+ {
+ "name": "August 2023",
+ "date": "2023-08-01",
+ "filename": "2023\/08.pdf",
+ "htmlfilename": "2023\/08.html",
+ "url": "2023\/08"
+ },
+ {
+ "name": "September 2023",
+ "date": "2023-09-01",
+ "filename": "2023\/09.pdf",
+ "htmlfilename": "2023\/09.html",
+ "url": "2023\/09"
+ },
+ {
+ "name": "October 2023",
+ "date": "2023-10-01",
+ "filename": "2023\/10.pdf",
+ "htmlfilename": "2023\/10.html",
+ "url": "2023\/10"
+ },
+ {
+ "name": "November 2023",
+ "date": "2023-11-01",
+ "filename": "2023\/11.pdf",
+ "htmlfilename": "2023\/11.html",
+ "url": "2023\/11"
+ },
+ {
+ "name": "December 2023",
+ "date": "2023-12-01",
+ "filename": "2023\/12.pdf",
+ "htmlfilename": "2023\/12.html",
+ "url": "2023\/12"
+ },
+ {
+ "name": "January 2024",
+ "date": "2024-01-01",
+ "filename": "2024\/01.pdf",
+ "htmlfilename": "2024\/01.html",
+ "url": "2024\/01"
+ },
+ {
+ "name": "February 2024",
+ "date": "2024-02-01",
+ "filename": "2024\/02.pdf",
+ "htmlfilename": "2024\/02.html",
+ "url": "2024\/02"
+ },
+ {
+ "name": "March 2024",
+ "date": "2024-03-01",
+ "filename": "2024\/03.pdf",
+ "htmlfilename": "2024\/03.html",
+ "url": "2024\/03"
+ },
+ {
+ "name": "April 2024",
+ "date": "2024-04-01",
+ "filename": "2024\/04.pdf",
+ "htmlfilename": "2024\/04.html",
+ "url": "2024\/04"
+ },
+ {
+ "name": "May 2024",
+ "date": "2024-05-01",
+ "filename": "2024\/05.pdf",
+ "htmlfilename": "2024\/05.html",
+ "url": "2024\/05"
+ },
+ {
+ "name": "June 2024",
+ "date": "2024-06-01",
+ "filename": "2024\/06.pdf",
+ "htmlfilename": "2024\/06.html",
+ "url": "2024\/06"
+ },
+ {
+ "name": "July 2024",
+ "date": "2024-07-01",
+ "filename": "2024\/07.pdf",
+ "htmlfilename": "2024\/07.html",
+ "url": "2024\/07"
+ },
+ {
+ "name": "August 2024",
+ "date": "2024-08-01",
+ "filename": "2024\/08.pdf",
+ "htmlfilename": "2024\/08.html",
+ "url": "2024\/08"
+ },
+ {
+ "name": "September 2024",
+ "date": "2024-09-01",
+ "filename": "2024\/09.pdf",
+ "htmlfilename": "2024\/09.html",
+ "url": "2024\/09"
+ },
+ {
+ "name": "October 2024",
+ "date": "2024-10-01",
+ "filename": "2024\/10.pdf",
+ "htmlfilename": "2024\/10.html",
+ "url": "2024\/10"
+ },
+ {
+ "name": "November 2024",
+ "date": "2024-11-01",
+ "filename": "2024\/11.pdf",
+ "htmlfilename": "2024\/11.html",
+ "url": "2024\/11"
+ },
+ {
+ "name": "December 2024",
+ "date": "2024-12-01",
+ "filename": "2024\/12.pdf",
+ "htmlfilename": "2024\/12.html",
+ "url": "2024\/12"
+ },
+ {
+ "name": "January 2025",
+ "date": "2025-01-01",
+ "filename": "2025\/01.pdf",
+ "htmlfilename": "2025\/01.html",
+ "url": "2025\/01"
+ },
+ {
+ "name": "February 2025",
+ "date": "2025-02-01",
+ "filename": "2025\/02.pdf",
+ "htmlfilename": "2025\/02.html",
+ "url": "2025\/02"
+ },
+ {
+ "name": "March 2025",
+ "date": "2025-03-01",
+ "filename": "2025\/03.pdf",
+ "htmlfilename": "2025\/03.html",
+ "url": "2025\/03"
+ },
+ {
+ "name": "April 2025",
+ "date": "2025-04-01",
+ "filename": "2025\/04.pdf",
+ "htmlfilename": "2025\/04.html",
+ "url": "2025\/04"
+ },
+ {
+ "name": "May 2025",
+ "date": "2025-05-01",
+ "filename": "2025\/05.pdf",
+ "htmlfilename": "2025\/05.html",
+ "url": "2025\/05"
+ },
+ {
+ "name": "June 2025",
+ "date": "2025-06-01",
+ "filename": "2025\/06.pdf",
+ "htmlfilename": "2025\/06.html",
+ "url": "2025\/06"
+ },
+ {
+ "name": "July 2025",
+ "date": "2025-07-01",
+ "filename": "2025\/07.pdf",
+ "htmlfilename": "2025\/07.html",
+ "url": "2025\/07"
+ },
+ {
+ "name": "August 2025",
+ "date": "2025-08-01",
+ "filename": "2025\/08.pdf",
+ "htmlfilename": "2025\/08.html",
+ "url": "2025\/08"
+ },
+ {
+ "name": "September 2025",
+ "date": "2025-09-01",
+ "filename": "2025\/09.pdf",
+ "htmlfilename": "2025\/09.html",
+ "url": "2025\/09"
+ },
+ {
+ "name": "October 2025",
+ "date": "2025-10-01",
+ "filename": "2025\/10.pdf",
+ "htmlfilename": "2025\/10.html",
+ "url": "2025\/10"
+ },
+ {
+ "name": "November 2025",
+ "date": "2025-11-01",
+ "filename": "2025\/11.pdf",
+ "htmlfilename": "2025\/11.html",
+ "url": "2025\/11"
+ },
+ {
+ "name": "December 2025",
+ "date": "2025-12-01",
+ "filename": "2025\/12.pdf",
+ "htmlfilename": "2025\/12.html",
+ "url": "2025\/12"
+ },
+ {
+ "name": "January 2026",
+ "date": "2026-01-01",
+ "filename": "2026\/01.pdf",
+ "htmlfilename": "2026\/01.html",
+ "url": "2026\/01"
+ },
+ {
+ "name": "February 2026",
+ "date": "2026-02-01",
+ "filename": "2026\/02.pdf",
+ "htmlfilename": "2026\/02.html",
+ "url": "2026\/02"
+ },
+ {
+ "name": "March 2026",
+ "date": "2026-03-01",
+ "filename": "2026\/03.pdf",
+ "htmlfilename": "2026\/03.html",
+ "url": "2026\/03"
+ },
+ {
+ "name": "April 2026",
+ "date": "2026-04-01",
+ "filename": "2026\/04.pdf",
+ "htmlfilename": "2026\/04.html",
+ "url": "2026\/04"
+ },
+ {
+ "name": "May 2026",
+ "date": "2026-05-01",
+ "filename": "2026\/05.pdf",
+ "htmlfilename": "2026\/05.html",
+ "url": "2026\/05"
+ },
+ {
+ "name": "June 2026",
+ "date": "2026-06-01",
+ "filename": "2026\/06.pdf",
+ "htmlfilename": "2026\/06.html",
+ "url": "2026\/06"
+ },
+ {
+ "name": "July 2026",
+ "date": "2026-07-01",
+ "filename": "2026\/07.pdf",
+ "htmlfilename": "2026\/07.html",
+ "url": "2026\/07"
+ },
+ {
+ "name": "August 2026",
+ "date": "2026-08-01",
+ "filename": "2026\/08.pdf",
+ "htmlfilename": "2026\/08.html",
+ "url": "2026\/08"
+ },
+ {
+ "name": "September 2026",
+ "date": "2026-09-01",
+ "filename": "2026\/09.pdf",
+ "htmlfilename": "2026\/09.html",
+ "url": "2026\/09"
+ },
+ {
+ "name": "October 2026",
+ "date": "2026-10-01",
+ "filename": "2026\/10.pdf",
+ "htmlfilename": "2026\/10.html",
+ "url": "2026\/10"
+ },
+ {
+ "name": "November 2026",
+ "date": "2026-11-01",
+ "filename": "2026\/11.pdf",
+ "htmlfilename": "2026\/11.html",
+ "url": "2026\/11"
+ },
+ {
+ "name": "December 2026",
+ "date": "2026-12-01",
+ "filename": "2026\/12.pdf",
+ "htmlfilename": "2026\/12.html",
+ "url": "2026\/12"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/data/tides.json b/data/tides.json
index cf26061..0e32e40 100644
--- a/data/tides.json
+++ b/data/tides.json
@@ -1 +1 @@
-{"schedule":[{"date":"2014-09-01","groups":[{"time":"13:07:00","height":"4.2"}]},{"date":"2014-09-02","groups":[{"time":"01:29:00","height":"4.1"},{"time":"14:00:00","height":"3.9"}]},{"date":"2014-09-03","groups":[{"time":"02:30:00","height":"3.8"},{"time":"15:14:00","height":"3.7"}]},{"date":"2014-09-04","groups":[{"time":"03:56:00","height":"3.6"},{"time":"16:48:00","height":"3.7"}]},{"date":"2014-09-05","groups":[{"time":"05:27:00","height":"3.7"},{"time":"18:08:00","height":"4.0"}]},{"date":"2014-09-06","groups":[{"time":"06:41:00","height":"4.1"},{"time":"19:12:00","height":"4.5"}]},{"date":"2014-09-07","groups":[{"time":"07:41:00","height":"4.6"},{"time":"20:04:00","height":"5.1"}]},{"date":"2014-09-08","groups":[{"time":"08:31:00","height":"5.1"},{"time":"20:52:00","height":"5.5"}]},{"date":"2014-09-09","groups":[{"time":"09:16:00","height":"5.4"},{"time":"21:35:00","height":"5.8"}]},{"date":"2014-09-10","groups":[{"time":"09:58:00","height":"5.6"},{"time":"22:18:00","height":"5.8"}]},{"date":"2014-09-11","groups":[{"time":"10:38:00","height":"5.6"},{"time":"22:58:00","height":"5.7"}]},{"date":"2014-09-12","groups":[{"time":"11:18:00","height":"5.4"},{"time":"23:41:00","height":"5.4"}]},{"date":"2014-09-13","groups":[{"time":"12:02:00","height":"5.1"}]},{"date":"2014-09-14","groups":[{"time":"00:25:00","height":"5.0"},{"time":"12:45:00","height":"4.7"}]},{"date":"2014-09-15","groups":[{"time":"01:11:00","height":"4.5"},{"time":"13:30:00","height":"4.2"}]},{"date":"2014-09-16","groups":[{"time":"02:01:00","height":"3.9"},{"time":"14:26:00","height":"3.7"}]},{"date":"2014-09-17","groups":[{"time":"03:05:00","height":"3.5"},{"time":"15:44:00","height":"3.4"}]},{"date":"2014-09-18","groups":[{"time":"04:35:00","height":"3.2"},{"time":"17:18:00","height":"3.4"}]},{"date":"2014-09-19","groups":[{"time":"05:58:00","height":"3.4"},{"time":"18:31:00","height":"3.7"}]},{"date":"2014-09-20","groups":[{"time":"07:00:00","height":"3.7"},{"time":"19:23:00","height":"4.1"}]},{"date":"2014-09-21","groups":[{"time":"07:44:00","height":"4.1"},{"time":"20:01:00","height":"4.4"}]},{"date":"2014-09-22","groups":[{"time":"08:20:00","height":"4.4"},{"time":"20:35:00","height":"4.7"}]},{"date":"2014-09-23","groups":[{"time":"08:53:00","height":"4.7"},{"time":"21:06:00","height":"4.9"}]},{"date":"2014-09-24","groups":[{"time":"09:23:00","height":"4.9"},{"time":"21:36:00","height":"5.0"}]},{"date":"2014-09-25","groups":[{"time":"09:52:00","height":"5.0"},{"time":"22:05:00","height":"5.1"}]},{"date":"2014-09-26","groups":[{"time":"10:21:00","height":"5.0"},{"time":"22:34:00","height":"5.1"}]},{"date":"2014-09-27","groups":[{"time":"10:50:00","height":"5.0"},{"time":"23:04:00","height":"5.0"}]},{"date":"2014-09-28","groups":[{"time":"11:23:00","height":"4.9"},{"time":"23:39:00","height":"4.8"}]},{"date":"2014-09-29","groups":[{"time":"12:00:00","height":"4.7"}]},{"date":"2014-09-30","groups":[{"time":"00:20:00","height":"4.5"},{"time":"12:44:00","height":"4.4"}]},{"date":"2014-10-01","groups":[{"time":"01:08:00","height":"4.2"},{"time":"13:39:00","height":"4.1"}]},{"date":"2014-10-02","groups":[{"time":"02:12:00","height":"3.8"},{"time":"14:55:00","height":"3.8"}]},{"date":"2014-10-03","groups":[{"time":"03:38:00","height":"3.6"},{"time":"16:30:00","height":"3.8"}]},{"date":"2014-10-04","groups":[{"time":"05:13:00","height":"3.7"},{"time":"17:52:00","height":"4.1"}]},{"date":"2014-10-05","groups":[{"time":"06:27:00","height":"4.1"},{"time":"18:55:00","height":"4.6"}]},{"date":"2014-10-06","groups":[{"time":"07:25:00","height":"4.7"},{"time":"19:47:00","height":"5.1"}]},{"date":"2014-10-07","groups":[{"time":"08:13:00","height":"5.1"},{"time":"20:34:00","height":"5.5"}]},{"date":"2014-10-08","groups":[{"time":"08:57:00","height":"5.4"},{"time":"21:17:00","height":"5.7"}]},{"date":"2014-10-09","groups":[{"time":"09:37:00","height":"5.6"},{"time":"21:58:00","height":"5.7"}]},{"date":"2014-10-10","groups":[{"time":"10:16:00","height":"5.6"},{"time":"22:37:00","height":"5.6"}]},{"date":"2014-10-11","groups":[{"time":"10:54:00","height":"5.4"},{"time":"23:14:00","height":"5.3"}]},{"date":"2014-10-12","groups":[{"time":"11:32:00","height":"5.1"},{"time":"23:56:00","height":"4.9"}]},{"date":"2014-10-13","groups":[{"time":"12:15:00","height":"4.7"}]},{"date":"2014-10-14","groups":[{"time":"00:39:00","height":"4.4"},{"time":"12:58:00","height":"4.3"}]},{"date":"2014-10-15","groups":[{"time":"01:25:00","height":"3.9"},{"time":"13:48:00","height":"3.8"}]},{"date":"2014-10-16","groups":[{"time":"02:22:00","height":"3.5"},{"time":"14:54:00","height":"3.5"}]},{"date":"2014-10-17","groups":[{"time":"03:43:00","height":"3.2"},{"time":"16:29:00","height":"3.4"}]},{"date":"2014-10-18","groups":[{"time":"05:16:00","height":"3.3"},{"time":"17:49:00","height":"3.6"}]},{"date":"2014-10-19","groups":[{"time":"06:22:00","height":"3.6"},{"time":"18:45:00","height":"3.9"}]},{"date":"2014-10-20","groups":[{"time":"07:11:00","height":"4.0"},{"time":"19:28:00","height":"4.3"}]},{"date":"2014-10-21","groups":[{"time":"07:48:00","height":"4.3"},{"time":"20:03:00","height":"4.6"}]},{"date":"2014-10-22","groups":[{"time":"08:22:00","height":"4.7"},{"time":"20:36:00","height":"4.8"}]},{"date":"2014-10-23","groups":[{"time":"08:54:00","height":"4.9"},{"time":"21:08:00","height":"5.0"}]},{"date":"2014-10-24","groups":[{"time":"09:25:00","height":"5.1"},{"time":"21:39:00","height":"5.1"}]},{"date":"2014-10-25","groups":[{"time":"09:57:00","height":"5.2"},{"time":"22:11:00","height":"5.1"}]},{"date":"2014-10-26","groups":[{"time":"10:29:00","height":"5.2"},{"time":"22:45:00","height":"5.1"}]},{"date":"2014-10-27","groups":[{"time":"10:03:00","height":"5.1"},{"time":"22:23:00","height":"4.9"}]},{"date":"2014-10-28","groups":[{"time":"10:44:00","height":"4.9"},{"time":"23:07:00","height":"4.7"}]},{"date":"2014-10-29","groups":[{"time":"11:33:00","height":"4.6"},{"time":"23:59:00","height":"4.3"}]},{"date":"2014-10-30","groups":[{"time":"12:31:00","height":"4.3"}]},{"date":"2014-10-31","groups":[{"time":"01:05:00","height":"4.0"},{"time":"13:45:00","height":"4.0"}]},{"date":"2014-11-01","groups":[{"time":"02:27:00","height":"3.8"},{"time":"15:13:00","height":"4.0"}]},{"date":"2014-11-02","groups":[{"time":"03:55:00","height":"3.8"},{"time":"16:30:00","height":"4.2"}]},{"date":"2014-11-03","groups":[{"time":"05:06:00","height":"4.2"},{"time":"17:34:00","height":"4.6"}]},{"date":"2014-11-04","groups":[{"time":"06:04:00","height":"4.6"},{"time":"18:28:00","height":"5.0"}]},{"date":"2014-11-05","groups":[{"time":"06:54:00","height":"5.0"},{"time":"19:15:00","height":"5.2"}]},{"date":"2014-11-06","groups":[{"time":"07:37:00","height":"5.2"},{"time":"19:58:00","height":"5.4"}]},{"date":"2014-11-07","groups":[{"time":"08:18:00","height":"5.4"},{"time":"20:38:00","height":"5.4"}]},{"date":"2014-11-08","groups":[{"time":"08:56:00","height":"5.4"},{"time":"21:17:00","height":"5.3"}]},{"date":"2014-11-09","groups":[{"time":"09:33:00","height":"5.3"},{"time":"21:54:00","height":"5.1"}]},{"date":"2014-11-10","groups":[{"time":"10:09:00","height":"5.0"},{"time":"22:32:00","height":"4.8"}]},{"date":"2014-11-11","groups":[{"time":"10:49:00","height":"4.7"},{"time":"23:13:00","height":"4.4"}]},{"date":"2014-11-12","groups":[{"time":"11:30:00","height":"4.4"},{"time":"23:56:00","height":"4.1"}]},{"date":"2014-11-13","groups":[{"time":"12:15:00","height":"4.1"}]},{"date":"2014-11-14","groups":[{"time":"00:46:00","height":"3.7"},{"time":"13:09:00","height":"3.7"}]},{"date":"2014-11-15","groups":[{"time":"01:47:00","height":"3.4"},{"time":"14:20:00","height":"3.5"}]},{"date":"2014-11-16","groups":[{"time":"03:10:00","height":"3.3"},{"time":"15:47:00","height":"3.5"}]},{"date":"2014-11-17","groups":[{"time":"04:28:00","height":"3.4"},{"time":"16:53:00","height":"3.7"}]},{"date":"2014-11-18","groups":[{"time":"05:25:00","height":"3.7"},{"time":"17:44:00","height":"4.0"}]},{"date":"2014-11-19","groups":[{"time":"06:10:00","height":"4.1"},{"time":"18:27:00","height":"4.3"}]},{"date":"2014-11-20","groups":[{"time":"06:48:00","height":"4.5"},{"time":"19:04:00","height":"4.6"}]},{"date":"2014-11-21","groups":[{"time":"07:24:00","height":"4.8"},{"time":"19:40:00","height":"4.9"}]},{"date":"2014-11-22","groups":[{"time":"08:00:00","height":"5.0"},{"time":"20:16:00","height":"5.1"}]},{"date":"2014-11-23","groups":[{"time":"08:36:00","height":"5.2"},{"time":"20:53:00","height":"5.2"}]},{"date":"2014-11-24","groups":[{"time":"09:13:00","height":"5.3"},{"time":"21:32:00","height":"5.2"}]},{"date":"2014-11-25","groups":[{"time":"09:52:00","height":"5.2"},{"time":"22:13:00","height":"5.0"}]},{"date":"2014-11-26","groups":[{"time":"10:37:00","height":"5.1"},{"time":"23:02:00","height":"4.8"}]},{"date":"2014-11-27","groups":[{"time":"11:29:00","height":"4.9"},{"time":"23:56:00","height":"4.5"}]},{"date":"2014-11-28","groups":[{"time":"12:26:00","height":"4.6"}]},{"date":"2014-11-29","groups":[{"time":"00:59:00","height":"4.2"},{"time":"13:33:00","height":"4.4"}]},{"date":"2014-11-30","groups":[{"time":"02:09:00","height":"4.0"},{"time":"14:48:00","height":"4.2"}]},{"date":"2014-12-01","groups":[{"time":"03:29:00","height":"4.0"},{"time":"16:03:00","height":"4.2"}]},{"date":"2014-12-02","groups":[{"time":"04:38:00","height":"4.1"},{"time":"17:08:00","height":"4.4"}]},{"date":"2014-12-03","groups":[{"time":"05:40:00","height":"4.4"},{"time":"18:05:00","height":"4.6"}]},{"date":"2014-12-04","groups":[{"time":"06:33:00","height":"4.6"},{"time":"18:57:00","height":"4.8"}]},{"date":"2014-12-05","groups":[{"time":"07:20:00","height":"4.9"},{"time":"19:42:00","height":"5.0"}]},{"date":"2014-12-06","groups":[{"time":"08:03:00","height":"5.0"},{"time":"20:22:00","height":"5.0"}]},{"date":"2014-12-07","groups":[{"time":"08:41:00","height":"5.1"},{"time":"21:01:00","height":"5.0"}]},{"date":"2014-12-08","groups":[{"time":"09:18:00","height":"5.1"},{"time":"21:38:00","height":"4.9"}]},{"date":"2014-12-09","groups":[{"time":"09:53:00","height":"5.0"},{"time":"22:12:00","height":"4.7"}]},{"date":"2014-12-10","groups":[{"time":"10:28:00","height":"4.8"},{"time":"22:51:00","height":"4.5"}]},{"date":"2014-12-11","groups":[{"time":"11:07:00","height":"4.6"},{"time":"23:30:00","height":"4.3"}]},{"date":"2014-12-12","groups":[{"time":"11:46:00","height":"4.3"}]},{"date":"2014-12-13","groups":[{"time":"00:12:00","height":"4.0"},{"time":"12:30:00","height":"4.1"}]},{"date":"2014-12-14","groups":[{"time":"01:00:00","height":"3.7"},{"time":"13:22:00","height":"3.8"}]},{"date":"2014-12-15","groups":[{"time":"01:58:00","height":"3.5"},{"time":"14:26:00","height":"3.6"}]},{"date":"2014-12-16","groups":[{"time":"03:11:00","height":"3.4"},{"time":"15:42:00","height":"3.6"}]},{"date":"2014-12-17","groups":[{"time":"04:23:00","height":"3.5"},{"time":"16:49:00","height":"3.7"}]},{"date":"2014-12-18","groups":[{"time":"05:23:00","height":"3.8"},{"time":"17:43:00","height":"4.0"}]},{"date":"2014-12-19","groups":[{"time":"06:12:00","height":"4.2"},{"time":"18:30:00","height":"4.3"}]},{"date":"2014-12-20","groups":[{"time":"06:56:00","height":"4.6"},{"time":"19:15:00","height":"4.7"}]},{"date":"2014-12-21","groups":[{"time":"07:37:00","height":"4.9"},{"time":"19:57:00","height":"5.0"}]},{"date":"2014-12-22","groups":[{"time":"08:19:00","height":"5.2"},{"time":"20:40:00","height":"5.2"}]},{"date":"2014-12-23","groups":[{"time":"09:01:00","height":"5.4"},{"time":"21:22:00","height":"5.3"}]},{"date":"2014-12-24","groups":[{"time":"09:43:00","height":"5.4"},{"time":"22:06:00","height":"5.2"}]},{"date":"2014-12-25","groups":[{"time":"10:29:00","height":"5.4"},{"time":"22:55:00","height":"5.1"}]},{"date":"2014-12-26","groups":[{"time":"11:21:00","height":"5.2"},{"time":"23:47:00","height":"4.9"}]},{"date":"2014-12-27","groups":[{"time":"12:15:00","height":"5.0"}]},{"date":"2014-12-28","groups":[{"time":"00:42:00","height":"4.6"},{"time":"13:13:00","height":"4.7"}]},{"date":"2014-12-29","groups":[{"time":"01:43:00","height":"4.2"},{"time":"14:18:00","height":"4.4"}]},{"date":"2014-12-30","groups":[{"time":"02:52:00","height":"4.0"},{"time":"15:30:00","height":"4.2"}]},{"date":"2014-12-31","groups":[{"time":"04:06:00","height":"3.9"},{"time":"16:38:00","height":"4.1"}]},{"date":"2015-01-01","groups":[{"time":"05:13:00","height":"4.0"},{"time":"17:43:00","height":"4.2"}]},{"date":"2015-01-02","groups":[{"time":"06:15:00","height":"4.2"},{"time":"18:41:00","height":"4.4"}]},{"date":"2015-01-03","groups":[{"time":"07:06:00","height":"4.5"},{"time":"19:29:00","height":"4.6"}]},{"date":"2015-01-04","groups":[{"time":"07:50:00","height":"4.7"},{"time":"20:11:00","height":"4.7"}]},{"date":"2015-01-05","groups":[{"time":"08:29:00","height":"4.9"},{"time":"20:49:00","height":"4.8"}]},{"date":"2015-01-06","groups":[{"time":"09:05:00","height":"5.0"},{"time":"21:22:00","height":"4.8"}]},{"date":"2015-01-07","groups":[{"time":"09:37:00","height":"5.0"},{"time":"21:54:00","height":"4.8"}]},{"date":"2015-01-08","groups":[{"time":"10:09:00","height":"4.9"},{"time":"22:28:00","height":"4.7"}]},{"date":"2015-01-09","groups":[{"time":"10:43:00","height":"4.8"},{"time":"23:03:00","height":"4.5"}]},{"date":"2015-01-10","groups":[{"time":"11:18:00","height":"4.6"},{"time":"23:39:00","height":"4.3"}]},{"date":"2015-01-11","groups":[{"time":"11:56:00","height":"4.3"}]},{"date":"2015-01-12","groups":[{"time":"00:18:00","height":"4.0"},{"time":"12:37:00","height":"4.1"}]},{"date":"2015-01-13","groups":[{"time":"01:03:00","height":"3.8"},{"time":"13:26:00","height":"3.8"}]},{"date":"2015-01-14","groups":[{"time":"01:59:00","height":"3.5"},{"time":"14:27:00","height":"3.6"}]},{"date":"2015-01-15","groups":[{"time":"03:11:00","height":"3.4"},{"time":"15:44:00","height":"3.5"}]},{"date":"2015-01-16","groups":[{"time":"04:28:00","height":"3.5"},{"time":"16:57:00","height":"3.7"}]},{"date":"2015-01-17","groups":[{"time":"05:34:00","height":"3.9"},{"time":"17:59:00","height":"4.0"}]},{"date":"2015-01-18","groups":[{"time":"06:28:00","height":"4.3"},{"time":"18:53:00","height":"4.5"}]},{"date":"2015-01-19","groups":[{"time":"07:17:00","height":"4.8"},{"time":"19:41:00","height":"4.9"}]},{"date":"2015-01-20","groups":[{"time":"08:03:00","height":"5.2"},{"time":"20:27:00","height":"5.2"}]},{"date":"2015-01-21","groups":[{"time":"08:49:00","height":"5.5"},{"time":"21:11:00","height":"5.4"}]},{"date":"2015-01-22","groups":[{"time":"09:33:00","height":"5.7"},{"time":"21:54:00","height":"5.5"}]},{"date":"2015-01-23","groups":[{"time":"10:16:00","height":"5.7"},{"time":"22:41:00","height":"5.4"}]},{"date":"2015-01-24","groups":[{"time":"11:06:00","height":"5.5"},{"time":"23:30:00","height":"5.2"}]},{"date":"2015-01-25","groups":[{"time":"11:56:00","height":"5.3"}]},{"date":"2015-01-26","groups":[{"time":"00:20:00","height":"4.8"},{"time":"12:48:00","height":"4.8"}]},{"date":"2015-01-27","groups":[{"time":"01:13:00","height":"4.4"},{"time":"13:44:00","height":"4.4"}]},{"date":"2015-01-28","groups":[{"time":"02:14:00","height":"4.0"},{"time":"14:52:00","height":"4.0"}]},{"date":"2015-01-29","groups":[{"time":"03:30:00","height":"3.7"},{"time":"16:07:00","height":"3.7"}]},{"date":"2015-01-30","groups":[{"time":"04:46:00","height":"3.7"},{"time":"17:22:00","height":"3.8"}]},{"date":"2015-01-31","groups":[{"time":"05:57:00","height":"3.9"},{"time":"18:27:00","height":"4.0"}]},{"date":"2015-02-01","groups":[{"time":"06:54:00","height":"4.2"},{"time":"19:16:00","height":"4.3"}]},{"date":"2015-02-02","groups":[{"time":"07:37:00","height":"4.5"},{"time":"19:57:00","height":"4.5"}]},{"date":"2015-02-03","groups":[{"time":"08:15:00","height":"4.7"},{"time":"20:33:00","height":"4.7"}]},{"date":"2015-02-04","groups":[{"time":"08:49:00","height":"4.9"},{"time":"21:05:00","height":"4.8"}]},{"date":"2015-02-05","groups":[{"time":"09:19:00","height":"4.9"},{"time":"21:35:00","height":"4.8"}]},{"date":"2015-02-06","groups":[{"time":"09:48:00","height":"4.9"},{"time":"22:04:00","height":"4.8"}]},{"date":"2015-02-07","groups":[{"time":"10:17:00","height":"4.9"},{"time":"22:34:00","height":"4.7"}]},{"date":"2015-02-08","groups":[{"time":"10:50:00","height":"4.8"},{"time":"23:07:00","height":"4.5"}]},{"date":"2015-02-09","groups":[{"time":"11:22:00","height":"4.6"},{"time":"23:42:00","height":"4.3"}]},{"date":"2015-02-10","groups":[{"time":"11:58:00","height":"4.3"}]},{"date":"2015-02-11","groups":[{"time":"00:18:00","height":"4.0"},{"time":"12:39:00","height":"4.0"}]},{"date":"2015-02-12","groups":[{"time":"01:06:00","height":"3.8"},{"time":"13:32:00","height":"3.7"}]},{"date":"2015-02-13","groups":[{"time":"02:10:00","height":"3.5"},{"time":"14:46:00","height":"3.5"}]},{"date":"2015-02-14","groups":[{"time":"03:36:00","height":"3.4"},{"time":"16:14:00","height":"3.5"}]},{"date":"2015-02-15","groups":[{"time":"04:58:00","height":"3.7"},{"time":"17:32:00","height":"3.8"}]},{"date":"2015-02-16","groups":[{"time":"06:05:00","height":"4.1"},{"time":"18:33:00","height":"4.3"}]},{"date":"2015-02-17","groups":[{"time":"07:00:00","height":"4.7"},{"time":"19:25:00","height":"4.8"}]},{"date":"2015-02-18","groups":[{"time":"07:47:00","height":"5.2"},{"time":"20:12:00","height":"5.2"}]},{"date":"2015-02-19","groups":[{"time":"08:34:00","height":"5.6"},{"time":"20:56:00","height":"5.5"}]},{"date":"2015-02-20","groups":[{"time":"09:17:00","height":"5.8"},{"time":"21:38:00","height":"5.6"}]},{"date":"2015-02-21","groups":[{"time":"09:59:00","height":"5.9"},{"time":"22:20:00","height":"5.6"}]},{"date":"2015-02-22","groups":[{"time":"10:44:00","height":"5.7"},{"time":"23:07:00","height":"5.3"}]},{"date":"2015-02-23","groups":[{"time":"11:32:00","height":"5.4"},{"time":"23:52:00","height":"4.9"}]},{"date":"2015-02-24","groups":[{"time":"12:20:00","height":"4.9"}]},{"date":"2015-02-25","groups":[{"time":"00:41:00","height":"4.5"},{"time":"13:12:00","height":"4.3"}]},{"date":"2015-02-26","groups":[{"time":"01:36:00","height":"4.0"},{"time":"14:13:00","height":"3.8"}]},{"date":"2015-02-27","groups":[{"time":"02:48:00","height":"3.6"},{"time":"15:35:00","height":"3.4"}]},{"date":"2015-02-28","groups":[{"time":"04:16:00","height":"3.4"},{"time":"16:57:00","height":"3.4"}]},{"date":"2015-03-01","groups":[{"time":"05:36:00","height":"3.6"},{"time":"18:08:00","height":"3.7"}]},{"date":"2015-03-02","groups":[{"time":"06:34:00","height":"4.0"},{"time":"18:59:00","height":"4.1"}]},{"date":"2015-03-03","groups":[{"time":"07:18:00","height":"4.4"},{"time":"19:37:00","height":"4.4"}]},{"date":"2015-03-04","groups":[{"time":"07:54:00","height":"4.6"},{"time":"20:11:00","height":"4.6"}]},{"date":"2015-03-05","groups":[{"time":"08:27:00","height":"4.8"},{"time":"20:43:00","height":"4.8"}]},{"date":"2015-03-06","groups":[{"time":"08:56:00","height":"4.9"},{"time":"21:11:00","height":"4.9"}]},{"date":"2015-03-07","groups":[{"time":"09:24:00","height":"5.0"},{"time":"21:38:00","height":"4.9"}]},{"date":"2015-03-08","groups":[{"time":"09:52:00","height":"4.9"},{"time":"22:06:00","height":"4.8"}]},{"date":"2015-03-09","groups":[{"time":"10:19:00","height":"4.8"},{"time":"22:37:00","height":"4.7"}]},{"date":"2015-03-10","groups":[{"time":"10:52:00","height":"4.7"},{"time":"23:09:00","height":"4.5"}]},{"date":"2015-03-11","groups":[{"time":"11:26:00","height":"4.5"},{"time":"23:46:00","height":"4.3"}]},{"date":"2015-03-12","groups":[{"time":"12:05:00","height":"4.2"}]},{"date":"2015-03-13","groups":[{"time":"00:30:00","height":"4.0"},{"time":"12:55:00","height":"3.8"}]},{"date":"2015-03-14","groups":[{"time":"01:30:00","height":"3.7"},{"time":"14:07:00","height":"3.5"}]},{"date":"2015-03-15","groups":[{"time":"02:57:00","height":"3.5"},{"time":"15:43:00","height":"3.4"}]},{"date":"2015-03-16","groups":[{"time":"04:28:00","height":"3.6"},{"time":"17:08:00","height":"3.7"}]},{"date":"2015-03-17","groups":[{"time":"05:41:00","height":"4.1"},{"time":"18:13:00","height":"4.3"}]},{"date":"2015-03-18","groups":[{"time":"06:39:00","height":"4.7"},{"time":"19:07:00","height":"4.8"}]},{"date":"2015-03-19","groups":[{"time":"07:29:00","height":"5.2"},{"time":"19:53:00","height":"5.2"}]},{"date":"2015-03-20","groups":[{"time":"08:15:00","height":"5.6"},{"time":"20:36:00","height":"5.6"}]},{"date":"2015-03-21","groups":[{"time":"08:58:00","height":"5.8"},{"time":"21:19:00","height":"5.7"}]},{"date":"2015-03-22","groups":[{"time":"09:39:00","height":"5.8"},{"time":"21:58:00","height":"5.6"}]},{"date":"2015-03-23","groups":[{"time":"10:20:00","height":"5.6"},{"time":"22:41:00","height":"5.4"}]},{"date":"2015-03-24","groups":[{"time":"11:06:00","height":"5.3"},{"time":"23:25:00","height":"5.0"}]},{"date":"2015-03-25","groups":[{"time":"11:51:00","height":"4.8"}]},{"date":"2015-03-26","groups":[{"time":"00:11:00","height":"4.5"},{"time":"12:40:00","height":"4.2"}]},{"date":"2015-03-27","groups":[{"time":"01:03:00","height":"4.0"},{"time":"13:38:00","height":"3.7"}]},{"date":"2015-03-28","groups":[{"time":"02:09:00","height":"3.6"},{"time":"14:56:00","height":"3.3"}]},{"date":"2015-03-29","groups":[{"time":"03:39:00","height":"3.4"},{"time":"16:24:00","height":"3.3"}]},{"date":"2015-03-30","groups":[{"time":"06:01:00","height":"3.5"},{"time":"18:38:00","height":"3.5"}]},{"date":"2015-03-31","groups":[{"time":"07:03:00","height":"3.8"},{"time":"19:29:00","height":"3.9"}]},{"date":"2015-04-01","groups":[{"time":"07:49:00","height":"4.2"},{"time":"20:10:00","height":"4.3"}]},{"date":"2015-04-02","groups":[{"time":"08:26:00","height":"4.5"},{"time":"20:44:00","height":"4.5"}]},{"date":"2015-04-03","groups":[{"time":"08:58:00","height":"4.7"},{"time":"21:15:00","height":"4.7"}]},{"date":"2015-04-04","groups":[{"time":"09:29:00","height":"4.8"},{"time":"21:44:00","height":"4.9"}]},{"date":"2015-04-05","groups":[{"time":"09:57:00","height":"4.9"},{"time":"22:12:00","height":"4.9"}]},{"date":"2015-04-06","groups":[{"time":"10:25:00","height":"4.9"},{"time":"22:40:00","height":"4.9"}]},{"date":"2015-04-07","groups":[{"time":"10:54:00","height":"4.9"},{"time":"23:10:00","height":"4.8"}]},{"date":"2015-04-08","groups":[{"time":"11:26:00","height":"4.7"},{"time":"23:44:00","height":"4.7"}]},{"date":"2015-04-09","groups":[{"time":"12:03:00","height":"4.5"}]},{"date":"2015-04-10","groups":[{"time":"00:23:00","height":"4.5"},{"time":"12:45:00","height":"4.3"}]},{"date":"2015-04-11","groups":[{"time":"01:10:00","height":"4.2"},{"time":"13:37:00","height":"3.9"}]},{"date":"2015-04-12","groups":[{"time":"02:10:00","height":"3.9"},{"time":"14:48:00","height":"3.6"}]},{"date":"2015-04-13","groups":[{"time":"03:34:00","height":"3.7"},{"time":"16:20:00","height":"3.6"}]},{"date":"2015-04-14","groups":[{"time":"05:04:00","height":"3.8"},{"time":"17:44:00","height":"3.8"}]},{"date":"2015-04-15","groups":[{"time":"06:17:00","height":"4.2"},{"time":"18:50:00","height":"4.3"}]},{"date":"2015-04-16","groups":[{"time":"07:16:00","height":"4.7"},{"time":"19:44:00","height":"4.8"}]},{"date":"2015-04-17","groups":[{"time":"08:07:00","height":"5.1"},{"time":"20:31:00","height":"5.2"}]},{"date":"2015-04-18","groups":[{"time":"08:53:00","height":"5.4"},{"time":"21:16:00","height":"5.4"}]},{"date":"2015-04-19","groups":[{"time":"09:37:00","height":"5.6"},{"time":"21:57:00","height":"5.5"}]},{"date":"2015-04-20","groups":[{"time":"10:19:00","height":"5.6"},{"time":"22:38:00","height":"5.5"}]},{"date":"2015-04-21","groups":[{"time":"10:59:00","height":"5.4"},{"time":"23:17:00","height":"5.3"}]},{"date":"2015-04-22","groups":[{"time":"11:42:00","height":"5.1"}]},{"date":"2015-04-23","groups":[{"time":"00:00:00","height":"4.9"},{"time":"12:26:00","height":"4.7"}]},{"date":"2015-04-24","groups":[{"time":"00:45:00","height":"4.5"},{"time":"13:13:00","height":"4.2"}]},{"date":"2015-04-25","groups":[{"time":"01:34:00","height":"4.1"},{"time":"14:06:00","height":"3.7"}]},{"date":"2015-04-26","groups":[{"time":"02:32:00","height":"3.7"},{"time":"15:13:00","height":"3.4"}]},{"date":"2015-04-27","groups":[{"time":"03:49:00","height":"3.4"},{"time":"16:39:00","height":"3.2"}]},{"date":"2015-04-28","groups":[{"time":"05:13:00","height":"3.4"},{"time":"17:53:00","height":"3.4"}]},{"date":"2015-04-29","groups":[{"time":"06:19:00","height":"3.7"},{"time":"18:49:00","height":"3.7"}]},{"date":"2015-04-30","groups":[{"time":"07:09:00","height":"4.0"},{"time":"19:33:00","height":"4.1"}]},{"date":"2015-05-01","groups":[{"time":"07:49:00","height":"4.3"},{"time":"20:10:00","height":"4.4"}]},{"date":"2015-05-02","groups":[{"time":"08:25:00","height":"4.5"},{"time":"20:43:00","height":"4.6"}]},{"date":"2015-05-03","groups":[{"time":"08:58:00","height":"4.7"},{"time":"21:15:00","height":"4.8"}]},{"date":"2015-05-04","groups":[{"time":"09:30:00","height":"4.8"},{"time":"21:46:00","height":"4.9"}]},{"date":"2015-05-05","groups":[{"time":"10:01:00","height":"4.9"},{"time":"22:18:00","height":"5.0"}]},{"date":"2015-05-06","groups":[{"time":"10:33:00","height":"4.9"},{"time":"22:50:00","height":"4.9"}]},{"date":"2015-05-07","groups":[{"time":"11:07:00","height":"4.8"},{"time":"23:27:00","height":"4.8"}]},{"date":"2015-05-08","groups":[{"time":"11:47:00","height":"4.6"}]},{"date":"2015-05-09","groups":[{"time":"00:11:00","height":"4.6"},{"time":"12:35:00","height":"4.4"}]},{"date":"2015-05-10","groups":[{"time":"01:01:00","height":"4.4"},{"time":"13:30:00","height":"4.1"}]},{"date":"2015-05-11","groups":[{"time":"02:04:00","height":"4.1"},{"time":"14:40:00","height":"3.9"}]},{"date":"2015-05-12","groups":[{"time":"03:19:00","height":"4.0"},{"time":"16:01:00","height":"3.8"}]},{"date":"2015-05-13","groups":[{"time":"04:41:00","height":"4.0"},{"time":"17:19:00","height":"3.9"}]},{"date":"2015-05-14","groups":[{"time":"05:51:00","height":"4.3"},{"time":"18:25:00","height":"4.2"}]},{"date":"2015-05-15","groups":[{"time":"06:51:00","height":"4.6"},{"time":"19:20:00","height":"4.6"}]},{"date":"2015-05-16","groups":[{"time":"07:44:00","height":"4.9"},{"time":"20:10:00","height":"4.9"}]},{"date":"2015-05-17","groups":[{"time":"08:32:00","height":"5.1"},{"time":"20:55:00","height":"5.2"}]},{"date":"2015-05-18","groups":[{"time":"09:18:00","height":"5.3"},{"time":"21:37:00","height":"5.3"}]},{"date":"2015-05-19","groups":[{"time":"10:00:00","height":"5.3"},{"time":"22:18:00","height":"5.3"}]},{"date":"2015-05-20","groups":[{"time":"10:40:00","height":"5.1"},{"time":"22:57:00","height":"5.1"}]},{"date":"2015-05-21","groups":[{"time":"11:20:00","height":"4.9"},{"time":"23:39:00","height":"4.9"}]},{"date":"2015-05-22","groups":[{"time":"12:04:00","height":"4.6"}]},{"date":"2015-05-23","groups":[{"time":"00:22:00","height":"4.6"},{"time":"12:48:00","height":"4.2"}]},{"date":"2015-05-24","groups":[{"time":"01:07:00","height":"4.2"},{"time":"13:36:00","height":"3.9"}]},{"date":"2015-05-25","groups":[{"time":"01:56:00","height":"3.9"},{"time":"14:30:00","height":"3.6"}]},{"date":"2015-05-26","groups":[{"time":"02:56:00","height":"3.6"},{"time":"15:38:00","height":"3.4"}]},{"date":"2015-05-27","groups":[{"time":"04:10:00","height":"3.5"},{"time":"16:54:00","height":"3.4"}]},{"date":"2015-05-28","groups":[{"time":"05:22:00","height":"3.5"},{"time":"17:57:00","height":"3.5"}]},{"date":"2015-05-29","groups":[{"time":"06:20:00","height":"3.7"},{"time":"18:48:00","height":"3.8"}]},{"date":"2015-05-30","groups":[{"time":"07:07:00","height":"4.0"},{"time":"19:31:00","height":"4.1"}]},{"date":"2015-05-31","groups":[{"time":"07:48:00","height":"4.3"},{"time":"20:10:00","height":"4.4"}]},{"date":"2015-06-01","groups":[{"time":"08:26:00","height":"4.5"},{"time":"20:46:00","height":"4.7"}]},{"date":"2015-06-02","groups":[{"time":"09:03:00","height":"4.7"},{"time":"21:21:00","height":"4.9"}]},{"date":"2015-06-03","groups":[{"time":"09:39:00","height":"4.8"},{"time":"21:58:00","height":"5.0"}]},{"date":"2015-06-04","groups":[{"time":"10:17:00","height":"4.9"},{"time":"22:36:00","height":"5.0"}]},{"date":"2015-06-05","groups":[{"time":"10:54:00","height":"4.9"},{"time":"23:16:00","height":"5.0"}]},{"date":"2015-06-06","groups":[{"time":"11:40:00","height":"4.8"}]},{"date":"2015-06-07","groups":[{"time":"00:04:00","height":"4.9"},{"time":"12:30:00","height":"4.6"}]},{"date":"2015-06-08","groups":[{"time":"00:57:00","height":"4.7"},{"time":"13:25:00","height":"4.4"}]},{"date":"2015-06-09","groups":[{"time":"01:55:00","height":"4.5"},{"time":"14:27:00","height":"4.1"}]},{"date":"2015-06-10","groups":[{"time":"03:01:00","height":"4.3"},{"time":"15:38:00","height":"4.0"}]},{"date":"2015-06-11","groups":[{"time":"04:15:00","height":"4.2"},{"time":"16:52:00","height":"4.0"}]},{"date":"2015-06-12","groups":[{"time":"05:23:00","height":"4.2"},{"time":"17:57:00","height":"4.1"}]},{"date":"2015-06-13","groups":[{"time":"06:26:00","height":"4.4"},{"time":"18:57:00","height":"4.4"}]},{"date":"2015-06-14","groups":[{"time":"07:24:00","height":"4.6"},{"time":"19:50:00","height":"4.6"}]},{"date":"2015-06-15","groups":[{"time":"08:15:00","height":"4.8"},{"time":"20:38:00","height":"4.8"}]},{"date":"2015-06-16","groups":[{"time":"09:02:00","height":"4.9"},{"time":"21:22:00","height":"5.0"}]},{"date":"2015-06-17","groups":[{"time":"09:45:00","height":"4.9"},{"time":"22:03:00","height":"5.0"}]},{"date":"2015-06-18","groups":[{"time":"10:24:00","height":"4.9"},{"time":"22:41:00","height":"5.0"}]},{"date":"2015-06-19","groups":[{"time":"11:02:00","height":"4.8"},{"time":"23:18:00","height":"4.8"}]},{"date":"2015-06-20","groups":[{"time":"11:42:00","height":"4.6"},{"time":"23:58:00","height":"4.6"}]},{"date":"2015-06-21","groups":[{"time":"12:22:00","height":"4.3"}]},{"date":"2015-06-22","groups":[{"time":"00:38:00","height":"4.4"},{"time":"13:03:00","height":"4.1"}]},{"date":"2015-06-23","groups":[{"time":"01:21:00","height":"4.2"},{"time":"13:48:00","height":"3.8"}]},{"date":"2015-06-24","groups":[{"time":"02:08:00","height":"3.9"},{"time":"14:40:00","height":"3.6"}]},{"date":"2015-06-25","groups":[{"time":"03:04:00","height":"3.7"},{"time":"15:43:00","height":"3.4"}]},{"date":"2015-06-26","groups":[{"time":"04:11:00","height":"3.5"},{"time":"16:53:00","height":"3.4"}]},{"date":"2015-06-27","groups":[{"time":"05:21:00","height":"3.5"},{"time":"17:57:00","height":"3.6"}]},{"date":"2015-06-28","groups":[{"time":"06:20:00","height":"3.7"},{"time":"18:51:00","height":"3.9"}]},{"date":"2015-06-29","groups":[{"time":"07:11:00","height":"4.0"},{"time":"19:37:00","height":"4.2"}]},{"date":"2015-06-30","groups":[{"time":"07:57:00","height":"4.3"},{"time":"20:19:00","height":"4.6"}]},{"date":"2015-07-01","groups":[{"time":"08:39:00","height":"4.6"},{"time":"21:01:00","height":"4.8"}]},{"date":"2015-07-02","groups":[{"time":"09:21:00","height":"4.8"},{"time":"21:42:00","height":"5.1"}]},{"date":"2015-07-03","groups":[{"time":"10:03:00","height":"5.0"},{"time":"22:23:00","height":"5.2"}]},{"date":"2015-07-04","groups":[{"time":"10:44:00","height":"5.1"},{"time":"23:05:00","height":"5.3"}]},{"date":"2015-07-05","groups":[{"time":"11:30:00","height":"5.0"},{"time":"23:54:00","height":"5.2"}]},{"date":"2015-07-06","groups":[{"time":"12:20:00","height":"4.9"}]},{"date":"2015-07-07","groups":[{"time":"00:46:00","height":"5.0"},{"time":"13:12:00","height":"4.7"}]},{"date":"2015-07-08","groups":[{"time":"01:40:00","height":"4.8"},{"time":"14:08:00","height":"4.4"}]},{"date":"2015-07-09","groups":[{"time":"02:40:00","height":"4.5"},{"time":"15:11:00","height":"4.1"}]},{"date":"2015-07-10","groups":[{"time":"03:46:00","height":"4.2"},{"time":"16:23:00","height":"3.9"}]},{"date":"2015-07-11","groups":[{"time":"04:57:00","height":"4.1"},{"time":"17:32:00","height":"3.9"}]},{"date":"2015-07-12","groups":[{"time":"06:04:00","height":"4.1"},{"time":"18:38:00","height":"4.1"}]},{"date":"2015-07-13","groups":[{"time":"07:08:00","height":"4.2"},{"time":"19:37:00","height":"4.3"}]},{"date":"2015-07-14","groups":[{"time":"08:03:00","height":"4.4"},{"time":"20:27:00","height":"4.6"}]},{"date":"2015-07-15","groups":[{"time":"08:50:00","height":"4.6"},{"time":"21:10:00","height":"4.8"}]},{"date":"2015-07-16","groups":[{"time":"09:32:00","height":"4.7"},{"time":"21:49:00","height":"4.9"}]},{"date":"2015-07-17","groups":[{"time":"10:08:00","height":"4.8"},{"time":"22:24:00","height":"4.9"}]},{"date":"2015-07-18","groups":[{"time":"10:43:00","height":"4.7"},{"time":"22:57:00","height":"4.9"}]},{"date":"2015-07-19","groups":[{"time":"11:16:00","height":"4.7"},{"time":"23:32:00","height":"4.8"}]},{"date":"2015-07-20","groups":[{"time":"11:53:00","height":"4.5"}]},{"date":"2015-07-21","groups":[{"time":"00:08:00","height":"4.6"},{"time":"12:29:00","height":"4.3"}]},{"date":"2015-07-22","groups":[{"time":"00:44:00","height":"4.4"},{"time":"13:07:00","height":"4.1"}]},{"date":"2015-07-23","groups":[{"time":"01:24:00","height":"4.1"},{"time":"13:49:00","height":"3.8"}]},{"date":"2015-07-24","groups":[{"time":"02:08:00","height":"3.9"},{"time":"14:39:00","height":"3.6"}]},{"date":"2015-07-25","groups":[{"time":"03:05:00","height":"3.6"},{"time":"15:44:00","height":"3.4"}]},{"date":"2015-07-26","groups":[{"time":"04:15:00","height":"3.5"},{"time":"17:00:00","height":"3.4"}]},{"date":"2015-07-27","groups":[{"time":"05:30:00","height":"3.5"},{"time":"18:09:00","height":"3.7"}]},{"date":"2015-07-28","groups":[{"time":"06:36:00","height":"3.8"},{"time":"19:07:00","height":"4.1"}]},{"date":"2015-07-29","groups":[{"time":"07:30:00","height":"4.2"},{"time":"19:57:00","height":"4.5"}]},{"date":"2015-07-30","groups":[{"time":"08:19:00","height":"4.6"},{"time":"20:42:00","height":"4.9"}]},{"date":"2015-07-31","groups":[{"time":"09:04:00","height":"4.9"},{"time":"21:26:00","height":"5.2"}]},{"date":"2015-08-01","groups":[{"time":"09:49:00","height":"5.2"},{"time":"22:09:00","height":"5.5"}]},{"date":"2015-08-02","groups":[{"time":"10:31:00","height":"5.3"},{"time":"22:52:00","height":"5.6"}]},{"date":"2015-08-03","groups":[{"time":"11:14:00","height":"5.3"},{"time":"23:38:00","height":"5.5"}]},{"date":"2015-08-04","groups":[{"time":"12:03:00","height":"5.2"}]},{"date":"2015-08-05","groups":[{"time":"00:28:00","height":"5.3"},{"time":"12:51:00","height":"4.9"}]},{"date":"2015-08-06","groups":[{"time":"01:18:00","height":"5.0"},{"time":"13:43:00","height":"4.6"}]},{"date":"2015-08-07","groups":[{"time":"02:13:00","height":"4.6"},{"time":"14:41:00","height":"4.2"}]},{"date":"2015-08-08","groups":[{"time":"03:17:00","height":"4.1"},{"time":"15:51:00","height":"3.9"}]},{"date":"2015-08-09","groups":[{"time":"04:31:00","height":"3.8"},{"time":"17:09:00","height":"3.7"}]},{"date":"2015-08-10","groups":[{"time":"05:46:00","height":"3.8"},{"time":"18:24:00","height":"3.9"}]},{"date":"2015-08-11","groups":[{"time":"06:57:00","height":"3.9"},{"time":"19:27:00","height":"4.2"}]},{"date":"2015-08-12","groups":[{"time":"07:53:00","height":"4.2"},{"time":"20:15:00","height":"4.5"}]},{"date":"2015-08-13","groups":[{"time":"08:38:00","height":"4.5"},{"time":"20:56:00","height":"4.7"}]},{"date":"2015-08-14","groups":[{"time":"09:16:00","height":"4.7"},{"time":"21:32:00","height":"4.9"}]},{"date":"2015-08-15","groups":[{"time":"09:50:00","height":"4.8"},{"time":"22:05:00","height":"4.9"}]},{"date":"2015-08-16","groups":[{"time":"10:22:00","height":"4.8"},{"time":"22:35:00","height":"4.9"}]},{"date":"2015-08-17","groups":[{"time":"10:51:00","height":"4.8"},{"time":"23:04:00","height":"4.9"}]},{"date":"2015-08-18","groups":[{"time":"11:21:00","height":"4.7"},{"time":"23:36:00","height":"4.8"}]},{"date":"2015-08-19","groups":[{"time":"11:54:00","height":"4.5"}]},{"date":"2015-08-20","groups":[{"time":"00:08:00","height":"4.6"},{"time":"12:28:00","height":"4.3"}]},{"date":"2015-08-21","groups":[{"time":"00:43:00","height":"4.3"},{"time":"13:03:00","height":"4.1"}]},{"date":"2015-08-22","groups":[{"time":"01:22:00","height":"4.0"},{"time":"13:48:00","height":"3.8"}]},{"date":"2015-08-23","groups":[{"time":"02:10:00","height":"3.7"},{"time":"14:45:00","height":"3.5"}]},{"date":"2015-08-24","groups":[{"time":"03:18:00","height":"3.5"},{"time":"16:06:00","height":"3.4"}]},{"date":"2015-08-25","groups":[{"time":"04:45:00","height":"3.4"},{"time":"17:32:00","height":"3.6"}]},{"date":"2015-08-26","groups":[{"time":"06:06:00","height":"3.6"},{"time":"18:41:00","height":"4.0"}]},{"date":"2015-08-27","groups":[{"time":"07:09:00","height":"4.1"},{"time":"19:35:00","height":"4.5"}]},{"date":"2015-08-28","groups":[{"time":"08:00:00","height":"4.6"},{"time":"20:23:00","height":"5.0"}]},{"date":"2015-08-29","groups":[{"time":"08:47:00","height":"5.1"},{"time":"21:08:00","height":"5.4"}]},{"date":"2015-08-30","groups":[{"time":"09:32:00","height":"5.4"},{"time":"21:51:00","height":"5.7"}]},{"date":"2015-08-31","groups":[{"time":"10:13:00","height":"5.6"},{"time":"22:34:00","height":"5.8"}]},{"date":"2015-09-01","groups":[{"time":"10:54:00","height":"5.590"},{"time":"23:17:00","height":"5.747"}]},{"date":"2015-09-02","groups":[{"time":"11:40:00","height":"5.422"}]},{"date":"2015-09-03","groups":[{"time":"00:05:00","height":"5.475"},{"time":"12:26:00","height":"5.100"}]},{"date":"2015-09-04","groups":[{"time":"00:54:00","height":"5.048"},{"time":"13:15:00","height":"4.667"}]},{"date":"2015-09-05","groups":[{"time":"01:46:00","height":"4.527"},{"time":"14:10:00","height":"4.193"}]},{"date":"2015-09-06","groups":[{"time":"02:46:00","height":"4.002"},{"time":"15:20:00","height":"3.776"}]},{"date":"2015-09-07","groups":[{"time":"04:03:00","height":"3.608"},{"time":"16:47:00","height":"3.575"}]},{"date":"2015-09-08","groups":[{"time":"05:28:00","height":"3.517"},{"time":"18:09:00","height":"3.714"}]},{"date":"2015-09-09","groups":[{"time":"06:43:00","height":"3.750"},{"time":"19:12:00","height":"4.066"}]},{"date":"2015-09-10","groups":[{"time":"07:38:00","height":"4.110"},{"time":"19:59:00","height":"4.429"}]},{"date":"2015-09-11","groups":[{"time":"08:19:00","height":"4.438"},{"time":"20:37:00","height":"4.708"}]},{"date":"2015-09-12","groups":[{"time":"08:55:00","height":"4.679"},{"time":"21:10:00","height":"4.887"}]},{"date":"2015-09-13","groups":[{"time":"09:27:00","height":"4.829"},{"time":"21:41:00","height":"4.981"}]},{"date":"2015-09-14","groups":[{"time":"09:57:00","height":"4.903"},{"time":"22:09:00","height":"5.008"}]},{"date":"2015-09-15","groups":[{"time":"10:24:00","height":"4.913"},{"time":"22:37:00","height":"4.974"}]},{"date":"2015-09-16","groups":[{"time":"10:52:00","height":"4.861"},{"time":"23:04:00","height":"4.879"}]},{"date":"2015-09-17","groups":[{"time":"11:20:00","height":"4.742"},{"time":"23:34:00","height":"4.714"}]},{"date":"2015-09-18","groups":[{"time":"11:53:00","height":"4.555"}]},{"date":"2015-09-19","groups":[{"time":"00:08:00","height":"4.480"},{"time":"12:28:00","height":"4.306"}]},{"date":"2015-09-20","groups":[{"time":"00:45:00","height":"4.188"},{"time":"13:09:00","height":"4.012"}]},{"date":"2015-09-21","groups":[{"time":"01:31:00","height":"3.859"},{"time":"14:04:00","height":"3.710"}]},{"date":"2015-09-22","groups":[{"time":"02:36:00","height":"3.546"},{"time":"15:24:00","height":"3.502"}]},{"date":"2015-09-23","groups":[{"time":"04:09:00","height":"3.409"},{"time":"17:00:00","height":"3.592"}]},{"date":"2015-09-24","groups":[{"time":"05:39:00","height":"3.638"},{"time":"18:15:00","height":"4.022"}]},{"date":"2015-09-25","groups":[{"time":"06:47:00","height":"4.139"},{"time":"19:13:00","height":"4.592"}]},{"date":"2015-09-26","groups":[{"time":"07:41:00","height":"4.698"},{"time":"20:02:00","height":"5.139"}]},{"date":"2015-09-27","groups":[{"time":"08:28:00","height":"5.186"},{"time":"20:48:00","height":"5.571"}]},{"date":"2015-09-28","groups":[{"time":"09:11:00","height":"5.536"},{"time":"21:32:00","height":"5.838"}]},{"date":"2015-09-29","groups":[{"time":"09:53:00","height":"5.717"},{"time":"22:14:00","height":"5.913"}]},{"date":"2015-09-30","groups":[{"time":"10:35:00","height":"5.714"},{"time":"22:55:00","height":"5.786"}]},{"date":"2015-10-01","groups":[{"time":"11:15:00","height":"5.528"},{"time":"23:41:00","height":"5.469"}]},{"date":"2015-10-02","groups":[{"time":"12:02:00","height":"5.184"}]},{"date":"2015-10-03","groups":[{"time":"00:29:00","height":"5.003"},{"time":"12:49:00","height":"4.730"}]},{"date":"2015-10-04","groups":[{"time":"01:18:00","height":"4.455"},{"time":"13:42:00","height":"4.234"}]},{"date":"2015-10-05","groups":[{"time":"02:17:00","height":"3.915"},{"time":"14:48:00","height":"3.790"}]},{"date":"2015-10-06","groups":[{"time":"03:32:00","height":"3.507"},{"time":"16:16:00","height":"3.546"}]},{"date":"2015-10-07","groups":[{"time":"05:03:00","height":"3.403"},{"time":"17:41:00","height":"3.643"}]},{"date":"2015-10-08","groups":[{"time":"06:18:00","height":"3.635"},{"time":"18:46:00","height":"3.971"}]},{"date":"2015-10-09","groups":[{"time":"07:13:00","height":"4.010"},{"time":"19:33:00","height":"4.331"}]},{"date":"2015-10-10","groups":[{"time":"07:54:00","height":"4.364"},{"time":"20:11:00","height":"4.625"}]},{"date":"2015-10-11","groups":[{"time":"08:29:00","height":"4.641"},{"time":"20:44:00","height":"4.829"}]},{"date":"2015-10-12","groups":[{"time":"09:01:00","height":"4.831"},{"time":"21:14:00","height":"4.952"}]},{"date":"2015-10-13","groups":[{"time":"09:30:00","height":"4.945"},{"time":"21:43:00","height":"5.007"}]},{"date":"2015-10-14","groups":[{"time":"09:58:00","height":"4.994"},{"time":"22:11:00","height":"5.004"}]},{"date":"2015-10-15","groups":[{"time":"10:26:00","height":"4.981"},{"time":"22:38:00","height":"4.938"}]},{"date":"2015-10-16","groups":[{"time":"10:54:00","height":"4.899"},{"time":"23:08:00","height":"4.803"}]},{"date":"2015-10-17","groups":[{"time":"11:26:00","height":"4.743"},{"time":"23:42:00","height":"4.597"}]},{"date":"2015-10-18","groups":[{"time":"12:03:00","height":"4.517"}]},{"date":"2015-10-19","groups":[{"time":"00:21:00","height":"4.325"},{"time":"12:45:00","height":"4.237"}]},{"date":"2015-10-20","groups":[{"time":"01:09:00","height":"4.007"},{"time":"13:41:00","height":"3.940"}]},{"date":"2015-10-21","groups":[{"time":"02:14:00","height":"3.702"},{"time":"14:58:00","height":"3.725"}]},{"date":"2015-10-22","groups":[{"time":"03:43:00","height":"3.555"},{"time":"16:32:00","height":"3.769"}]},{"date":"2015-10-23","groups":[{"time":"05:13:00","height":"3.738"},{"time":"17:49:00","height":"4.127"}]},{"date":"2015-10-24","groups":[{"time":"06:23:00","height":"4.189"},{"time":"18:49:00","height":"4.636"}]},{"date":"2015-10-25","groups":[{"time":"07:18:00","height":"4.711"},{"time":"19:41:00","height":"5.131"}]},{"date":"2015-10-26","groups":[{"time":"07:06:00","height":"5.170"},{"time":"19:28:00","height":"5.515"}]},{"date":"2015-10-27","groups":[{"time":"07:50:00","height":"5.501"},{"time":"20:12:00","height":"5.740"}]},{"date":"2015-10-28","groups":[{"time":"08:34:00","height":"5.672"},{"time":"20:55:00","height":"5.785"}]},{"date":"2015-10-29","groups":[{"time":"09:15:00","height":"5.674"},{"time":"21:37:00","height":"5.649"}]},{"date":"2015-10-30","groups":[{"time":"09:55:00","height":"5.510"},{"time":"22:19:00","height":"5.349"}]},{"date":"2015-10-31","groups":[{"time":"10:40:00","height":"5.202"},{"time":"23:07:00","height":"4.924"}]},{"date":"2015-11-01","groups":[{"time":"11:26:00","height":"4.792"},{"time":"23:56:00","height":"4.434"}]},{"date":"2015-11-02","groups":[{"time":"12:17:00","height":"4.342"}]},{"date":"2015-11-03","groups":[{"time":"00:50:00","height":"3.954"},{"time":"13:17:00","height":"3.925"}]},{"date":"2015-11-04","groups":[{"time":"01:56:00","height":"3.569"},{"time":"14:32:00","height":"3.640"}]},{"date":"2015-11-05","groups":[{"time":"03:19:00","height":"3.399"},{"time":"15:57:00","height":"3.605"}]},{"date":"2015-11-06","groups":[{"time":"04:37:00","height":"3.519"},{"time":"17:04:00","height":"3.810"}]},{"date":"2015-11-07","groups":[{"time":"05:35:00","height":"3.823"},{"time":"17:57:00","height":"4.111"}]},{"date":"2015-11-08","groups":[{"time":"06:21:00","height":"4.166"},{"time":"18:38:00","height":"4.402"}]},{"date":"2015-11-09","groups":[{"time":"06:59:00","height":"4.470"},{"time":"19:14:00","height":"4.636"}]},{"date":"2015-11-10","groups":[{"time":"07:31:00","height":"4.710"},{"time":"19:47:00","height":"4.804"}]},{"date":"2015-11-11","groups":[{"time":"08:03:00","height":"4.883"},{"time":"20:17:00","height":"4.909"}]},{"date":"2015-11-12","groups":[{"time":"08:34:00","height":"4.990"},{"time":"20:48:00","height":"4.957"}]},{"date":"2015-11-13","groups":[{"time":"09:04:00","height":"5.033"},{"time":"21:18:00","height":"4.943"}]},{"date":"2015-11-14","groups":[{"time":"09:35:00","height":"5.006"},{"time":"21:50:00","height":"4.861"}]},{"date":"2015-11-15","groups":[{"time":"10:08:00","height":"4.902"},{"time":"22:26:00","height":"4.704"}]},{"date":"2015-11-16","groups":[{"time":"10:47:00","height":"4.725"},{"time":"23:09:00","height":"4.479"}]},{"date":"2015-11-17","groups":[{"time":"11:34:00","height":"4.490"},{"time":"23:59:00","height":"4.207"}]},{"date":"2015-11-18","groups":[{"time":"12:30:00","height":"4.236"}]},{"date":"2015-11-19","groups":[{"time":"01:03:00","height":"3.943"},{"time":"13:42:00","height":"4.039"}]},{"date":"2015-11-20","groups":[{"time":"02:21:00","height":"3.793"},{"time":"15:04:00","height":"4.013"}]},{"date":"2015-11-21","groups":[{"time":"03:45:00","height":"3.870"},{"time":"16:20:00","height":"4.212"}]},{"date":"2015-11-22","groups":[{"time":"04:54:00","height":"4.172"},{"time":"17:23:00","height":"4.560"}]},{"date":"2015-11-23","groups":[{"time":"05:53:00","height":"4.576"},{"time":"18:18:00","height":"4.932"}]},{"date":"2015-11-24","groups":[{"time":"06:44:00","height":"4.964"},{"time":"19:08:00","height":"5.237"}]},{"date":"2015-11-25","groups":[{"time":"07:31:00","height":"5.265"},{"time":"19:54:00","height":"5.427"}]},{"date":"2015-11-26","groups":[{"time":"08:17:00","height":"5.445"},{"time":"20:39:00","height":"5.482"}]},{"date":"2015-11-27","groups":[{"time":"08:59:00","height":"5.489"},{"time":"21:22:00","height":"5.397"}]},{"date":"2015-11-28","groups":[{"time":"09:40:00","height":"5.394"},{"time":"22:03:00","height":"5.183"}]},{"date":"2015-11-29","groups":[{"time":"10:21:00","height":"5.176"},{"time":"22:47:00","height":"4.868"}]},{"date":"2015-11-30","groups":[{"time":"11:07:00","height":"4.865"},{"time":"23:33:00","height":"4.493"}]},{"date":"2015-12-01","groups":[{"time":"11:54:00","height":"4.505"}]},{"date":"2015-12-02","groups":[{"time":"00:21:00","height":"4.107"},{"time":"12:42:00","height":"4.144"}]},{"date":"2015-12-03","groups":[{"time":"01:14:00","height":"3.759"},{"time":"13:41:00","height":"3.833"}]},{"date":"2015-12-04","groups":[{"time":"02:19:00","height":"3.507"},{"time":"14:52:00","height":"3.636"}]},{"date":"2015-12-05","groups":[{"time":"03:37:00","height":"3.431"},{"time":"16:06:00","height":"3.627"}]},{"date":"2015-12-06","groups":[{"time":"04:44:00","height":"3.567"},{"time":"17:08:00","height":"3.791"}]},{"date":"2015-12-07","groups":[{"time":"05:39:00","height":"3.837"},{"time":"17:58:00","height":"4.038"}]},{"date":"2015-12-08","groups":[{"time":"06:23:00","height":"4.149"},{"time":"18:41:00","height":"4.298"}]},{"date":"2015-12-09","groups":[{"time":"07:01:00","height":"4.447"},{"time":"19:18:00","height":"4.531"}]},{"date":"2015-12-10","groups":[{"time":"07:37:00","height":"4.700"},{"time":"19:53:00","height":"4.720"}]},{"date":"2015-12-11","groups":[{"time":"08:11:00","height":"4.897"},{"time":"20:27:00","height":"4.856"}]},{"date":"2015-12-12","groups":[{"time":"08:46:00","height":"5.030"},{"time":"21:03:00","height":"4.933"}]},{"date":"2015-12-13","groups":[{"time":"09:21:00","height":"5.093"},{"time":"21:38:00","height":"4.939"}]},{"date":"2015-12-14","groups":[{"time":"09:57:00","height":"5.077"},{"time":"22:16:00","height":"4.865"}]},{"date":"2015-12-15","groups":[{"time":"10:40:00","height":"4.980"},{"time":"23:03:00","height":"4.712"}]},{"date":"2015-12-16","groups":[{"time":"11:28:00","height":"4.812"},{"time":"23:52:00","height":"4.495"}]},{"date":"2015-12-17","groups":[{"time":"12:22:00","height":"4.597"}]},{"date":"2015-12-18","groups":[{"time":"00:50:00","height":"4.254"},{"time":"13:23:00","height":"4.380"}]},{"date":"2015-12-19","groups":[{"time":"01:57:00","height":"4.048"},{"time":"14:34:00","height":"4.226"}]},{"date":"2015-12-20","groups":[{"time":"03:12:00","height":"3.960"},{"time":"15:49:00","height":"4.203"}]},{"date":"2015-12-21","groups":[{"time":"04:24:00","height":"4.051"},{"time":"16:55:00","height":"4.333"}]},{"date":"2015-12-22","groups":[{"time":"05:29:00","height":"4.296"},{"time":"17:57:00","height":"4.561"}]},{"date":"2015-12-23","groups":[{"time":"06:27:00","height":"4.610"},{"time":"18:52:00","height":"4.809"}]},{"date":"2015-12-24","groups":[{"time":"07:18:00","height":"4.908"},{"time":"19:42:00","height":"5.012"}]},{"date":"2015-12-25","groups":[{"time":"08:04:00","height":"5.132"},{"time":"20:28:00","height":"5.129"}]},{"date":"2015-12-26","groups":[{"time":"08:48:00","height":"5.250"},{"time":"21:09:00","height":"5.142"}]},{"date":"2015-12-27","groups":[{"time":"09:27:00","height":"5.252"},{"time":"21:49:00","height":"5.050"}]},{"date":"2015-12-28","groups":[{"time":"10:05:00","height":"5.144"},{"time":"22:28:00","height":"4.866"}]},{"date":"2015-12-29","groups":[{"time":"10:46:00","height":"4.944"},{"time":"23:09:00","height":"4.614"}]},{"date":"2015-12-30","groups":[{"time":"11:26:00","height":"4.681"},{"time":"23:49:00","height":"4.321"}]},{"date":"2015-12-31","groups":[{"time":"12:08:00","height":"4.383"}]},{"date":"2016-01-01","groups":[{"time":"00:33:00","height":"4.015"},{"time":"12:52:00","height":"4.074"}]},{"date":"2016-01-02","groups":[{"time":"01:20:00","height":"3.721"},{"time":"13:44:00","height":"3.781"}]},{"date":"2016-01-03","groups":[{"time":"02:20:00","height":"3.480"},{"time":"14:49:00","height":"3.557"}]},{"date":"2016-01-04","groups":[{"time":"03:35:00","height":"3.371"},{"time":"16:04:00","height":"3.489"}]},{"date":"2016-01-05","groups":[{"time":"04:45:00","height":"3.474"},{"time":"17:10:00","height":"3.621"}]},{"date":"2016-01-06","groups":[{"time":"05:43:00","height":"3.748"},{"time":"18:04:00","height":"3.884"}]},{"date":"2016-01-07","groups":[{"time":"06:30:00","height":"4.097"},{"time":"18:50:00","height":"4.196"}]},{"date":"2016-01-08","groups":[{"time":"07:13:00","height":"4.451"},{"time":"19:31:00","height":"4.501"}]},{"date":"2016-01-09","groups":[{"time":"07:51:00","height":"4.770"},{"time":"20:10:00","height":"4.766"}]},{"date":"2016-01-10","groups":[{"time":"08:30:00","height":"5.030"},{"time":"20:49:00","height":"4.970"}]},{"date":"2016-01-11","groups":[{"time":"09:08:00","height":"5.214"},{"time":"21:27:00","height":"5.092"}]},{"date":"2016-01-12","groups":[{"time":"09:47:00","height":"5.308"},{"time":"22:07:00","height":"5.115"}]},{"date":"2016-01-13","groups":[{"time":"10:30:00","height":"5.298"},{"time":"22:53:00","height":"5.029"}]},{"date":"2016-01-14","groups":[{"time":"11:17:00","height":"5.176"},{"time":"23:41:00","height":"4.838"}]},{"date":"2016-01-15","groups":[{"time":"12:08:00","height":"4.953"}]},{"date":"2016-01-16","groups":[{"time":"00:33:00","height":"4.566"},{"time":"13:02:00","height":"4.657"}]},{"date":"2016-01-17","groups":[{"time":"01:30:00","height":"4.260"},{"time":"14:05:00","height":"4.340"}]},{"date":"2016-01-18","groups":[{"time":"02:38:00","height":"3.991"},{"time":"15:17:00","height":"4.089"}]},{"date":"2016-01-19","groups":[{"time":"03:54:00","height":"3.867"},{"time":"16:30:00","height":"4.008"}]},{"date":"2016-01-20","groups":[{"time":"05:07:00","height":"3.964"},{"time":"17:41:00","height":"4.133"}]},{"date":"2016-01-21","groups":[{"time":"06:13:00","height":"4.242"},{"time":"18:43:00","height":"4.388"}]},{"date":"2016-01-22","groups":[{"time":"07:09:00","height":"4.579"},{"time":"19:33:00","height":"4.659"}]},{"date":"2016-01-23","groups":[{"time":"07:56:00","height":"4.870"},{"time":"20:18:00","height":"4.865"}]},{"date":"2016-01-24","groups":[{"time":"08:37:00","height":"5.061"},{"time":"20:57:00","height":"4.976"}]},{"date":"2016-01-25","groups":[{"time":"09:14:00","height":"5.142"},{"time":"21:33:00","height":"4.988"}]},{"date":"2016-01-26","groups":[{"time":"09:48:00","height":"5.119"},{"time":"22:06:00","height":"4.909"}]},{"date":"2016-01-27","groups":[{"time":"10:23:00","height":"5.008"},{"time":"22:42:00","height":"4.755"}]},{"date":"2016-01-28","groups":[{"time":"10:57:00","height":"4.825"},{"time":"23:17:00","height":"4.541"}]},{"date":"2016-01-29","groups":[{"time":"11:33:00","height":"4.585"},{"time":"23:52:00","height":"4.278"}]},{"date":"2016-01-30","groups":[{"time":"12:09:00","height":"4.297"}]},{"date":"2016-01-31","groups":[{"time":"00:31:00","height":"3.979"},{"time":"12:50:00","height":"3.973"}]},{"date":"2016-02-01","groups":[{"time":"01:16:00","height":"3.668"},{"time":"13:40:00","height":"3.644"}]},{"date":"2016-02-02","groups":[{"time":"02:14:00","height":"3.394"},{"time":"14:46:00","height":"3.378"}]},{"date":"2016-02-03","groups":[{"time":"03:35:00","height":"3.263"},{"time":"16:08:00","height":"3.306"}]},{"date":"2016-02-04","groups":[{"time":"04:54:00","height":"3.406"},{"time":"17:25:00","height":"3.517"}]},{"date":"2016-02-05","groups":[{"time":"05:57:00","height":"3.776"},{"time":"18:22:00","height":"3.902"}]},{"date":"2016-02-06","groups":[{"time":"06:47:00","height":"4.231"},{"time":"19:09:00","height":"4.335"}]},{"date":"2016-02-07","groups":[{"time":"07:31:00","height":"4.680"},{"time":"19:52:00","height":"4.741"}]},{"date":"2016-02-08","groups":[{"time":"08:12:00","height":"5.073"},{"time":"20:33:00","height":"5.074"}]},{"date":"2016-02-09","groups":[{"time":"08:52:00","height":"5.375"},{"time":"21:13:00","height":"5.303"}]},{"date":"2016-02-10","groups":[{"time":"09:33:00","height":"5.560"},{"time":"21:53:00","height":"5.399"}]},{"date":"2016-02-11","groups":[{"time":"10:14:00","height":"5.600"},{"time":"22:37:00","height":"5.345"}]},{"date":"2016-02-12","groups":[{"time":"11:00:00","height":"5.480"},{"time":"23:22:00","height":"5.141"}]},{"date":"2016-02-13","groups":[{"time":"11:48:00","height":"5.204"}]},{"date":"2016-02-14","groups":[{"time":"00:10:00","height":"4.812"},{"time":"12:39:00","height":"4.804"}]},{"date":"2016-02-15","groups":[{"time":"01:03:00","height":"4.403"},{"time":"13:36:00","height":"4.340"}]},{"date":"2016-02-16","groups":[{"time":"02:07:00","height":"3.990"},{"time":"14:47:00","height":"3.916"}]},{"date":"2016-02-17","groups":[{"time":"03:26:00","height":"3.702"},{"time":"16:08:00","height":"3.693"}]},{"date":"2016-02-18","groups":[{"time":"04:48:00","height":"3.698"},{"time":"17:27:00","height":"3.783"}]},{"date":"2016-02-19","groups":[{"time":"06:02:00","height":"3.980"},{"time":"18:33:00","height":"4.094"}]},{"date":"2016-02-20","groups":[{"time":"06:59:00","height":"4.365"},{"time":"19:23:00","height":"4.439"}]},{"date":"2016-02-21","groups":[{"time":"07:44:00","height":"4.700"},{"time":"20:04:00","height":"4.710"}]},{"date":"2016-02-22","groups":[{"time":"08:22:00","height":"4.926"},{"time":"20:40:00","height":"4.880"}]},{"date":"2016-02-23","groups":[{"time":"08:56:00","height":"5.044"},{"time":"21:13:00","height":"4.954"}]},{"date":"2016-02-24","groups":[{"time":"09:27:00","height":"5.069"},{"time":"21:43:00","height":"4.944"}]},{"date":"2016-02-25","groups":[{"time":"09:56:00","height":"5.016"},{"time":"22:12:00","height":"4.860"}]},{"date":"2016-02-26","groups":[{"time":"10:27:00","height":"4.894"},{"time":"22:44:00","height":"4.707"}]},{"date":"2016-02-27","groups":[{"time":"10:58:00","height":"4.703"},{"time":"23:16:00","height":"4.489"}]},{"date":"2016-02-28","groups":[{"time":"11:31:00","height":"4.445"},{"time":"23:49:00","height":"4.212"}]},{"date":"2016-02-29","groups":[{"time":"12:07:00","height":"4.131"}]},{"date":"2016-03-01","groups":[{"time":"00:28:00","height":"3.893"},{"time":"12:48:00","height":"3.779"}]},{"date":"2016-03-02","groups":[{"time":"01:16:00","height":"3.563"},{"time":"13:44:00","height":"3.435"}]},{"date":"2016-03-03","groups":[{"time":"02:26:00","height":"3.298"},{"time":"15:07:00","height":"3.215"}]},{"date":"2016-03-04","groups":[{"time":"04:00:00","height":"3.270"},{"time":"16:40:00","height":"3.315"}]},{"date":"2016-03-05","groups":[{"time":"05:21:00","height":"3.596"},{"time":"17:52:00","height":"3.732"}]},{"date":"2016-03-06","groups":[{"time":"06:19:00","height":"4.111"},{"time":"18:44:00","height":"4.260"}]},{"date":"2016-03-07","groups":[{"time":"07:07:00","height":"4.654"},{"time":"19:31:00","height":"4.769"}]},{"date":"2016-03-08","groups":[{"time":"07:50:00","height":"5.139"},{"time":"20:13:00","height":"5.191"}]},{"date":"2016-03-09","groups":[{"time":"08:33:00","height":"5.512"},{"time":"20:54:00","height":"5.481"}]},{"date":"2016-03-10","groups":[{"time":"09:14:00","height":"5.735"},{"time":"21:35:00","height":"5.610"}]},{"date":"2016-03-11","groups":[{"time":"09:55:00","height":"5.779"},{"time":"22:15:00","height":"5.560"}]},{"date":"2016-03-12","groups":[{"time":"10:40:00","height":"5.627"},{"time":"23:00:00","height":"5.334"}]},{"date":"2016-03-13","groups":[{"time":"11:26:00","height":"5.292"},{"time":"23:48:00","height":"4.959"}]},{"date":"2016-03-14","groups":[{"time":"12:16:00","height":"4.815"}]},{"date":"2016-03-15","groups":[{"time":"00:39:00","height":"4.489"},{"time":"13:12:00","height":"4.270"}]},{"date":"2016-03-16","groups":[{"time":"01:40:00","height":"4.003"},{"time":"14:21:00","height":"3.770"}]},{"date":"2016-03-17","groups":[{"time":"02:59:00","height":"3.635"},{"time":"15:47:00","height":"3.492"}]},{"date":"2016-03-18","groups":[{"time":"04:27:00","height":"3.574"},{"time":"17:10:00","height":"3.581"}]},{"date":"2016-03-19","groups":[{"time":"05:44:00","height":"3.842"},{"time":"18:16:00","height":"3.923"}]},{"date":"2016-03-20","groups":[{"time":"06:41:00","height":"4.226"},{"time":"19:04:00","height":"4.296"}]},{"date":"2016-03-21","groups":[{"time":"07:23:00","height":"4.558"},{"time":"19:44:00","height":"4.592"}]},{"date":"2016-03-22","groups":[{"time":"08:00:00","height":"4.786"},{"time":"20:18:00","height":"4.788"}]},{"date":"2016-03-23","groups":[{"time":"08:33:00","height":"4.916"},{"time":"20:49:00","height":"4.896"}]},{"date":"2016-03-24","groups":[{"time":"09:03:00","height":"4.968"},{"time":"21:18:00","height":"4.931"}]},{"date":"2016-03-25","groups":[{"time":"09:31:00","height":"4.954"},{"time":"21:45:00","height":"4.899"}]},{"date":"2016-03-26","groups":[{"time":"09:57:00","height":"4.877"},{"time":"22:12:00","height":"4.799"}]},{"date":"2016-03-27","groups":[{"time":"10:27:00","height":"4.730"},{"time":"22:43:00","height":"4.628"}]},{"date":"2016-03-28","groups":[{"time":"11:58:00","height":"4.514"}]},{"date":"2016-03-29","groups":[{"time":"00:16:00","height":"4.391"},{"time":"12:33:00","height":"4.234"}]},{"date":"2016-03-30","groups":[{"time":"00:52:00","height":"4.101"},{"time":"13:13:00","height":"3.909"}]},{"date":"2016-03-31","groups":[{"time":"01:38:00","height":"3.782"},{"time":"14:05:00","height":"3.571"}]},{"date":"2016-04-01","groups":[{"time":"02:43:00","height":"3.489"},{"time":"15:22:00","height":"3.314"}]},{"date":"2016-04-02","groups":[{"time":"04:14:00","height":"3.378"},{"time":"16:59:00","height":"3.337"}]},{"date":"2016-04-03","groups":[{"time":"05:41:00","height":"3.618"},{"time":"18:18:00","height":"3.718"}]},{"date":"2016-04-04","groups":[{"time":"06:46:00","height":"4.114"},{"time":"19:16:00","height":"4.260"}]},{"date":"2016-04-05","groups":[{"time":"07:39:00","height":"4.669"},{"time":"20:04:00","height":"4.796"}]},{"date":"2016-04-06","groups":[{"time":"08:26:00","height":"5.168"},{"time":"20:49:00","height":"5.239"}]},{"date":"2016-04-07","groups":[{"time":"09:10:00","height":"5.542"},{"time":"21:32:00","height":"5.540"}]},{"date":"2016-04-08","groups":[{"time":"09:53:00","height":"5.751"},{"time":"22:14:00","height":"5.672"}]},{"date":"2016-04-09","groups":[{"time":"10:36:00","height":"5.770"},{"time":"22:54:00","height":"5.620"}]},{"date":"2016-04-10","groups":[{"time":"11:18:00","height":"5.591"},{"time":"23:39:00","height":"5.391"}]},{"date":"2016-04-11","groups":[{"time":"12:06:00","height":"5.232"}]},{"date":"2016-04-12","groups":[{"time":"00:26:00","height":"5.015"},{"time":"12:56:00","height":"4.745"}]},{"date":"2016-04-13","groups":[{"time":"01:17:00","height":"4.548"},{"time":"13:51:00","height":"4.209"}]},{"date":"2016-04-14","groups":[{"time":"02:17:00","height":"4.069"},{"time":"14:57:00","height":"3.727"}]},{"date":"2016-04-15","groups":[{"time":"03:31:00","height":"3.694"},{"time":"16:20:00","height":"3.447"}]},{"date":"2016-04-16","groups":[{"time":"04:59:00","height":"3.578"},{"time":"17:41:00","height":"3.495"}]},{"date":"2016-04-17","groups":[{"time":"06:13:00","height":"3.759"},{"time":"18:47:00","height":"3.787"}]},{"date":"2016-04-18","groups":[{"time":"07:11:00","height":"4.072"},{"time":"19:36:00","height":"4.133"}]},{"date":"2016-04-19","groups":[{"time":"07:55:00","height":"4.368"},{"time":"20:15:00","height":"4.427"}]},{"date":"2016-04-20","groups":[{"time":"08:31:00","height":"4.589"},{"time":"20:49:00","height":"4.641"}]},{"date":"2016-04-21","groups":[{"time":"09:04:00","height":"4.733"},{"time":"21:20:00","height":"4.781"}]},{"date":"2016-04-22","groups":[{"time":"09:35:00","height":"4.810"},{"time":"21:50:00","height":"4.856"}]},{"date":"2016-04-23","groups":[{"time":"10:04:00","height":"4.831"},{"time":"22:19:00","height":"4.870"}]},{"date":"2016-04-24","groups":[{"time":"10:32:00","height":"4.795"},{"time":"22:47:00","height":"4.821"}]},{"date":"2016-04-25","groups":[{"time":"11:00:00","height":"4.698"},{"time":"23:16:00","height":"4.705"}]},{"date":"2016-04-26","groups":[{"time":"11:32:00","height":"4.534"},{"time":"23:51:00","height":"4.521"}]},{"date":"2016-04-27","groups":[{"time":"12:09:00","height":"4.310"}]},{"date":"2016-04-28","groups":[{"time":"00:30:00","height":"4.282"},{"time":"12:51:00","height":"4.039"}]},{"date":"2016-04-29","groups":[{"time":"01:16:00","height":"4.011"},{"time":"13:44:00","height":"3.754"}]},{"date":"2016-04-30","groups":[{"time":"02:19:00","height":"3.760"},{"time":"14:56:00","height":"3.534"}]},{"date":"2016-05-01","groups":[{"time":"03:40:00","height":"3.647"},{"time":"16:26:00","height":"3.527"}]},{"date":"2016-05-02","groups":[{"time":"05:05:00","height":"3.801"},{"time":"17:42:00","height":"3.814"}]},{"date":"2016-05-03","groups":[{"time":"06:12:00","height":"4.190"},{"time":"18:44:00","height":"4.274"}]},{"date":"2016-05-04","groups":[{"time":"07:10:00","height":"4.662"},{"time":"19:37:00","height":"4.753"}]},{"date":"2016-05-05","groups":[{"time":"08:00:00","height":"5.093"},{"time":"20:24:00","height":"5.157"}]},{"date":"2016-05-06","groups":[{"time":"08:47:00","height":"5.412"},{"time":"21:09:00","height":"5.436"}]},{"date":"2016-05-07","groups":[{"time":"09:33:00","height":"5.582"},{"time":"21:53:00","height":"5.564"}]},{"date":"2016-05-08","groups":[{"time":"10:17:00","height":"5.584"},{"time":"22:37:00","height":"5.531"}]},{"date":"2016-05-09","groups":[{"time":"11:00:00","height":"5.416"},{"time":"23:20:00","height":"5.339"}]},{"date":"2016-05-10","groups":[{"time":"11:49:00","height":"5.098"}]},{"date":"2016-05-11","groups":[{"time":"00:09:00","height":"5.017"},{"time":"12:38:00","height":"4.677"}]},{"date":"2016-05-12","groups":[{"time":"01:00:00","height":"4.614"},{"time":"13:30:00","height":"4.220"}]},{"date":"2016-05-13","groups":[{"time":"01:55:00","height":"4.197"},{"time":"14:30:00","height":"3.805"}]},{"date":"2016-05-14","groups":[{"time":"03:00:00","height":"3.844"},{"time":"15:43:00","height":"3.525"}]},{"date":"2016-05-15","groups":[{"time":"04:17:00","height":"3.653"},{"time":"16:59:00","height":"3.471"}]},{"date":"2016-05-16","groups":[{"time":"05:29:00","height":"3.684"},{"time":"18:04:00","height":"3.636"}]},{"date":"2016-05-17","groups":[{"time":"06:28:00","height":"3.872"},{"time":"18:57:00","height":"3.908"}]},{"date":"2016-05-18","groups":[{"time":"07:17:00","height":"4.109"},{"time":"19:41:00","height":"4.187"}]},{"date":"2016-05-19","groups":[{"time":"07:58:00","height":"4.326"},{"time":"20:17:00","height":"4.425"}]},{"date":"2016-05-20","groups":[{"time":"08:33:00","height":"4.495"},{"time":"20:51:00","height":"4.607"}]},{"date":"2016-05-21","groups":[{"time":"09:06:00","height":"4.612"},{"time":"21:23:00","height":"4.732"}]},{"date":"2016-05-22","groups":[{"time":"09:38:00","height":"4.680"},{"time":"21:54:00","height":"4.802"}]},{"date":"2016-05-23","groups":[{"time":"10:09:00","height":"4.699"},{"time":"22:25:00","height":"4.814"}]},{"date":"2016-05-24","groups":[{"time":"10:40:00","height":"4.664"},{"time":"22:57:00","height":"4.764"}]},{"date":"2016-05-25","groups":[{"time":"11:14:00","height":"4.570"},{"time":"23:33:00","height":"4.650"}]},{"date":"2016-05-26","groups":[{"time":"11:54:00","height":"4.418"}]},{"date":"2016-05-27","groups":[{"time":"00:16:00","height":"4.481"},{"time":"12:38:00","height":"4.219"}]},{"date":"2016-05-28","groups":[{"time":"01:05:00","height":"4.279"},{"time":"13:33:00","height":"4.002"}]},{"date":"2016-05-29","groups":[{"time":"02:04:00","height":"4.086"},{"time":"14:38:00","height":"3.824"}]},{"date":"2016-05-30","groups":[{"time":"03:15:00","height":"3.973"},{"time":"15:54:00","height":"3.776"}]},{"date":"2016-05-31","groups":[{"time":"04:33:00","height":"4.020"},{"time":"17:09:00","height":"3.922"}]},{"date":"2016-06-01","groups":[{"time":"05:40:00","height":"4.240"},{"time":"18:13:00","height":"4.230"}]},{"date":"2016-06-02","groups":[{"time":"06:41:00","height":"4.558"},{"time":"19:11:00","height":"4.598"}]},{"date":"2016-06-03","groups":[{"time":"07:36:00","height":"4.877"},{"time":"20:02:00","height":"4.939"}]},{"date":"2016-06-04","groups":[{"time":"08:27:00","height":"5.131"},{"time":"20:50:00","height":"5.199"}]},{"date":"2016-06-05","groups":[{"time":"09:15:00","height":"5.281"},{"time":"21:36:00","height":"5.345"}]},{"date":"2016-06-06","groups":[{"time":"10:02:00","height":"5.307"},{"time":"22:22:00","height":"5.361"}]},{"date":"2016-06-07","groups":[{"time":"10:46:00","height":"5.202"},{"time":"23:04:00","height":"5.245"}]},{"date":"2016-06-08","groups":[{"time":"11:31:00","height":"4.978"},{"time":"23:52:00","height":"5.013"}]},{"date":"2016-06-09","groups":[{"time":"12:19:00","height":"4.666"}]},{"date":"2016-06-10","groups":[{"time":"00:39:00","height":"4.702"},{"time":"13:08:00","height":"4.311"}]},{"date":"2016-06-11","groups":[{"time":"01:28:00","height":"4.356"},{"time":"13:59:00","height":"3.962"}]},{"date":"2016-06-12","groups":[{"time":"02:22:00","height":"4.026"},{"time":"14:56:00","height":"3.670"}]},{"date":"2016-06-13","groups":[{"time":"03:24:00","height":"3.761"},{"time":"16:04:00","height":"3.494"}]},{"date":"2016-06-14","groups":[{"time":"04:35:00","height":"3.624"},{"time":"17:12:00","height":"3.489"}]},{"date":"2016-06-15","groups":[{"time":"05:38:00","height":"3.650"},{"time":"18:11:00","height":"3.645"}]},{"date":"2016-06-16","groups":[{"time":"06:33:00","height":"3.801"},{"time":"19:01:00","height":"3.890"}]},{"date":"2016-06-17","groups":[{"time":"07:21:00","height":"4.008"},{"time":"19:44:00","height":"4.156"}]},{"date":"2016-06-18","groups":[{"time":"08:02:00","height":"4.220"},{"time":"20:23:00","height":"4.399"}]},{"date":"2016-06-19","groups":[{"time":"08:40:00","height":"4.403"},{"time":"20:59:00","height":"4.599"}]},{"date":"2016-06-20","groups":[{"time":"09:16:00","height":"4.547"},{"time":"21:34:00","height":"4.747"}]},{"date":"2016-06-21","groups":[{"time":"09:50:00","height":"4.647"},{"time":"22:07:00","height":"4.841"}]},{"date":"2016-06-22","groups":[{"time":"10:25:00","height":"4.699"},{"time":"22:43:00","height":"4.876"}]},{"date":"2016-06-23","groups":[{"time":"11:01:00","height":"4.692"},{"time":"23:21:00","height":"4.847"}]},{"date":"2016-06-24","groups":[{"time":"11:42:00","height":"4.619"}]},{"date":"2016-06-25","groups":[{"time":"00:06:00","height":"4.752"},{"time":"12:29:00","height":"4.484"}]},{"date":"2016-06-26","groups":[{"time":"00:55:00","height":"4.602"},{"time":"13:20:00","height":"4.304"}]},{"date":"2016-06-27","groups":[{"time":"01:49:00","height":"4.423"},{"time":"14:18:00","height":"4.116"}]},{"date":"2016-06-28","groups":[{"time":"02:52:00","height":"4.254"},{"time":"15:25:00","height":"3.974"}]},{"date":"2016-06-29","groups":[{"time":"04:02:00","height":"4.151"},{"time":"16:39:00","height":"3.951"}]},{"date":"2016-06-30","groups":[{"time":"05:12:00","height":"4.172"},{"time":"17:46:00","height":"4.088"}]},{"date":"2016-07-01","groups":[{"time":"06:17:00","height":"4.323"},{"time":"18:49:00","height":"4.348"}]},{"date":"2016-07-02","groups":[{"time":"07:17:00","height":"4.551"},{"time":"19:45:00","height":"4.653"}]},{"date":"2016-07-03","groups":[{"time":"08:13:00","height":"4.786"},{"time":"20:37:00","height":"4.930"}]},{"date":"2016-07-04","groups":[{"time":"09:03:00","height":"4.970"},{"time":"21:25:00","height":"5.127"}]},{"date":"2016-07-05","groups":[{"time":"09:50:00","height":"5.064"},{"time":"22:09:00","height":"5.213"}]},{"date":"2016-07-06","groups":[{"time":"10:32:00","height":"5.050"},{"time":"22:50:00","height":"5.179"}]},{"date":"2016-07-07","groups":[{"time":"11:13:00","height":"4.930"},{"time":"23:31:00","height":"5.034"}]},{"date":"2016-07-08","groups":[{"time":"11:56:00","height":"4.720"}]},{"date":"2016-07-09","groups":[{"time":"00:15:00","height":"4.801"},{"time":"12:38:00","height":"4.451"}]},{"date":"2016-07-10","groups":[{"time":"00:57:00","height":"4.514"},{"time":"13:21:00","height":"4.152"}]},{"date":"2016-07-11","groups":[{"time":"01:40:00","height":"4.203"},{"time":"14:06:00","height":"3.854"}]},{"date":"2016-07-12","groups":[{"time":"02:28:00","height":"3.895"},{"time":"14:59:00","height":"3.588"}]},{"date":"2016-07-13","groups":[{"time":"03:25:00","height":"3.628"},{"time":"16:05:00","height":"3.412"}]},{"date":"2016-07-14","groups":[{"time":"04:36:00","height":"3.471"},{"time":"17:17:00","height":"3.407"}]},{"date":"2016-07-15","groups":[{"time":"05:44:00","height":"3.496"},{"time":"18:20:00","height":"3.591"}]},{"date":"2016-07-16","groups":[{"time":"06:43:00","height":"3.684"},{"time":"19:12:00","height":"3.888"}]},{"date":"2016-07-17","groups":[{"time":"07:33:00","height":"3.954"},{"time":"19:57:00","height":"4.214"}]},{"date":"2016-07-18","groups":[{"time":"08:15:00","height":"4.237"},{"time":"20:36:00","height":"4.517"}]},{"date":"2016-07-19","groups":[{"time":"08:55:00","height":"4.495"},{"time":"21:14:00","height":"4.774"}]},{"date":"2016-07-20","groups":[{"time":"09:33:00","height":"4.708"},{"time":"21:51:00","height":"4.973"}]},{"date":"2016-07-21","groups":[{"time":"10:10:00","height":"4.863"},{"time":"22:29:00","height":"5.103"}]},{"date":"2016-07-22","groups":[{"time":"10:48:00","height":"4.942"},{"time":"23:07:00","height":"5.149"}]},{"date":"2016-07-23","groups":[{"time":"11:28:00","height":"4.930"},{"time":"23:52:00","height":"5.099"}]},{"date":"2016-07-24","groups":[{"time":"12:13:00","height":"4.820"}]},{"date":"2016-07-25","groups":[{"time":"00:38:00","height":"4.950"},{"time":"13:02:00","height":"4.621"}]},{"date":"2016-07-26","groups":[{"time":"01:29:00","height":"4.717"},{"time":"13:55:00","height":"4.362"}]},{"date":"2016-07-27","groups":[{"time":"02:27:00","height":"4.432"},{"time":"14:57:00","height":"4.096"}]},{"date":"2016-07-28","groups":[{"time":"03:33:00","height":"4.158"},{"time":"16:10:00","height":"3.906"}]},{"date":"2016-07-29","groups":[{"time":"04:49:00","height":"3.995"},{"time":"17:25:00","height":"3.900"}]},{"date":"2016-07-30","groups":[{"time":"06:00:00","height":"4.029"},{"time":"18:35:00","height":"4.106"}]},{"date":"2016-07-31","groups":[{"time":"07:08:00","height":"4.241"},{"time":"19:37:00","height":"4.436"}]},{"date":"2016-08-01","groups":[{"time":"08:05:00","height":"4.528"},{"time":"20:30:00","height":"4.768"}]},{"date":"2016-08-02","groups":[{"time":"08:54:00","height":"4.784"},{"time":"21:15:00","height":"5.018"}]},{"date":"2016-08-03","groups":[{"time":"09:37:00","height":"4.949"},{"time":"21:55:00","height":"5.151"}]},{"date":"2016-08-04","groups":[{"time":"10:16:00","height":"5.005"},{"time":"22:33:00","height":"5.166"}]},{"date":"2016-08-05","groups":[{"time":"10:52:00","height":"4.957"},{"time":"23:08:00","height":"5.074"}]},{"date":"2016-08-06","groups":[{"time":"11:28:00","height":"4.820"},{"time":"23:44:00","height":"4.897"}]},{"date":"2016-08-07","groups":[{"time":"12:05:00","height":"4.612"}]},{"date":"2016-08-08","groups":[{"time":"00:21:00","height":"4.655"},{"time":"12:41:00","height":"4.353"}]},{"date":"2016-08-09","groups":[{"time":"00:57:00","height":"4.365"},{"time":"13:18:00","height":"4.061"}]},{"date":"2016-08-10","groups":[{"time":"01:37:00","height":"4.042"},{"time":"14:02:00","height":"3.752"}]},{"date":"2016-08-11","groups":[{"time":"02:23:00","height":"3.707"},{"time":"14:56:00","height":"3.466"}]},{"date":"2016-08-12","groups":[{"time":"03:24:00","height":"3.412"},{"time":"16:11:00","height":"3.288"}]},{"date":"2016-08-13","groups":[{"time":"04:46:00","height":"3.272"},{"time":"17:34:00","height":"3.357"}]},{"date":"2016-08-14","groups":[{"time":"06:05:00","height":"3.409"},{"time":"18:41:00","height":"3.672"}]},{"date":"2016-08-15","groups":[{"time":"07:05:00","height":"3.747"},{"time":"19:31:00","height":"4.091"}]},{"date":"2016-08-16","groups":[{"time":"07:53:00","height":"4.151"},{"time":"20:14:00","height":"4.514"}]},{"date":"2016-08-17","groups":[{"time":"08:34:00","height":"4.540"},{"time":"20:53:00","height":"4.890"}]},{"date":"2016-08-18","groups":[{"time":"09:13:00","height":"4.872"},{"time":"21:32:00","height":"5.193"}]},{"date":"2016-08-19","groups":[{"time":"09:52:00","height":"5.121"},{"time":"22:11:00","height":"5.399"}]},{"date":"2016-08-20","groups":[{"time":"10:31:00","height":"5.261"},{"time":"22:50:00","height":"5.486"}]},{"date":"2016-08-21","groups":[{"time":"11:10:00","height":"5.272"},{"time":"23:32:00","height":"5.432"}]},{"date":"2016-08-22","groups":[{"time":"11:54:00","height":"5.144"}]},{"date":"2016-08-23","groups":[{"time":"00:19:00","height":"5.231"},{"time":"12:41:00","height":"4.887"}]},{"date":"2016-08-24","groups":[{"time":"01:08:00","height":"4.900"},{"time":"13:31:00","height":"4.535"}]},{"date":"2016-08-25","groups":[{"time":"02:03:00","height":"4.482"},{"time":"14:31:00","height":"4.148"}]},{"date":"2016-08-26","groups":[{"time":"03:09:00","height":"4.060"},{"time":"15:45:00","height":"3.831"}]},{"date":"2016-08-27","groups":[{"time":"04:30:00","height":"3.776"},{"time":"17:10:00","height":"3.745"}]},{"date":"2016-08-28","groups":[{"time":"05:51:00","height":"3.780"},{"time":"18:27:00","height":"3.965"}]},{"date":"2016-08-29","groups":[{"time":"07:02:00","height":"4.054"},{"time":"19:31:00","height":"4.353"}]},{"date":"2016-08-30","groups":[{"time":"07:58:00","height":"4.418"},{"time":"20:20:00","height":"4.725"}]},{"date":"2016-08-31","groups":[{"time":"08:43:00","height":"4.726"},{"time":"21:02:00","height":"4.990"}]},{"date":"2017-01-01","groups":[{"time":"10:06:00","height":"4.933"},{"time":"22:24:00","height":"4.713"}]},{"date":"2017-01-02","groups":[{"time":"10:45:00","height":"4.853"},{"time":"23:05:00","height":"4.593"}]},{"date":"2017-01-03","groups":[{"time":"11:29:00","height":"4.712"},{"time":"23:50:00","height":"4.416"}]},{"date":"2017-01-04","groups":[{"time":"12:17:00","height":"4.524"}]},{"date":"2017-01-05","groups":[{"time":"00:42:00","height":"4.206"},{"time":"13:13:00","height":"4.318"}]},{"date":"2017-01-06","groups":[{"time":"01:43:00","height":"4.004"},{"time":"14:20:00","height":"4.143"}]},{"date":"2017-01-07","groups":[{"time":"02:56:00","height":"3.883"},{"time":"15:35:00","height":"4.075"}]},{"date":"2017-01-08","groups":[{"time":"04:11:00","height":"3.930"},{"time":"16:45:00","height":"4.175"}]},{"date":"2017-01-09","groups":[{"time":"05:19:00","height":"4.169"},{"time":"17:50:00","height":"4.422"}]},{"date":"2017-01-10","groups":[{"time":"06:21:00","height":"4.522"},{"time":"18:49:00","height":"4.730"}]},{"date":"2017-01-11","groups":[{"time":"07:16:00","height":"4.892"},{"time":"19:43:00","height":"5.017"}]},{"date":"2017-01-12","groups":[{"time":"08:05:00","height":"5.200"},{"time":"20:31:00","height":"5.216"}]},{"date":"2017-01-13","groups":[{"time":"08:51:00","height":"5.394"},{"time":"21:15:00","height":"5.294"}]},{"date":"2017-01-14","groups":[{"time":"09:34:00","height":"5.447"},{"time":"21:56:00","height":"5.237"}]},{"date":"2017-01-15","groups":[{"time":"10:15:00","height":"5.358"},{"time":"22:40:00","height":"5.056"}]},{"date":"2017-01-16","groups":[{"time":"10:59:00","height":"5.142"},{"time":"23:22:00","height":"4.778"}]},{"date":"2017-01-17","groups":[{"time":"11:42:00","height":"4.834"}]},{"date":"2017-01-18","groups":[{"time":"00:04:00","height":"4.440"},{"time":"12:24:00","height":"4.473"}]},{"date":"2017-01-19","groups":[{"time":"00:49:00","height":"4.081"},{"time":"13:09:00","height":"4.097"}]},{"date":"2017-01-20","groups":[{"time":"01:38:00","height":"3.737"},{"time":"14:02:00","height":"3.745"}]},{"date":"2017-01-21","groups":[{"time":"02:38:00","height":"3.459"},{"time":"15:11:00","height":"3.480"}]},{"date":"2017-01-22","groups":[{"time":"03:56:00","height":"3.340"},{"time":"16:27:00","height":"3.408"}]},{"date":"2017-01-23","groups":[{"time":"05:07:00","height":"3.459"},{"time":"17:34:00","height":"3.558"}]},{"date":"2017-01-24","groups":[{"time":"06:06:00","height":"3.749"},{"time":"18:28:00","height":"3.837"}]},{"date":"2017-01-25","groups":[{"time":"06:53:00","height":"4.095"},{"time":"19:12:00","height":"4.144"}]},{"date":"2017-01-26","groups":[{"time":"07:32:00","height":"4.425"},{"time":"19:50:00","height":"4.425"}]},{"date":"2017-01-27","groups":[{"time":"08:08:00","height":"4.705"},{"time":"20:25:00","height":"4.659"}]},{"date":"2017-01-28","groups":[{"time":"08:43:00","height":"4.925"},{"time":"21:00:00","height":"4.840"}]},{"date":"2017-01-29","groups":[{"time":"09:17:00","height":"5.082"},{"time":"21:34:00","height":"4.955"}]},{"date":"2017-01-30","groups":[{"time":"09:52:00","height":"5.165"},{"time":"22:09:00","height":"4.987"}]},{"date":"2017-01-31","groups":[{"time":"10:30:00","height":"5.158"},{"time":"22:50:00","height":"4.923"}]},{"date":"2017-02-01","groups":[{"time":"11:12:00","height":"5.050"},{"time":"23:33:00","height":"4.758"}]},{"date":"2017-02-02","groups":[{"time":"11:58:00","height":"4.843"}]},{"date":"2017-02-03","groups":[{"time":"00:20:00","height":"4.509"},{"time":"12:49:00","height":"4.556"}]},{"date":"2017-02-04","groups":[{"time":"01:14:00","height":"4.207"},{"time":"13:48:00","height":"4.230"}]},{"date":"2017-02-05","groups":[{"time":"02:21:00","height":"3.919"},{"time":"15:03:00","height":"3.956"}]},{"date":"2017-02-06","groups":[{"time":"03:42:00","height":"3.768"},{"time":"16:22:00","height":"3.873"}]},{"date":"2017-02-07","groups":[{"time":"05:00:00","height":"3.880"},{"time":"17:37:00","height":"4.050"}]},{"date":"2017-02-08","groups":[{"time":"06:11:00","height":"4.223"},{"time":"18:43:00","height":"4.395"}]},{"date":"2017-02-09","groups":[{"time":"07:09:00","height":"4.647"},{"time":"19:35:00","height":"4.759"}]},{"date":"2017-02-10","groups":[{"time":"07:58:00","height":"5.018"},{"time":"20:21:00","height":"5.038"}]},{"date":"2017-02-11","groups":[{"time":"08:40:00","height":"5.266"},{"time":"21:02:00","height":"5.190"}]},{"date":"2017-02-12","groups":[{"time":"09:20:00","height":"5.369"},{"time":"21:39:00","height":"5.208"}]},{"date":"2017-02-13","groups":[{"time":"09:55:00","height":"5.331"},{"time":"22:15:00","height":"5.102"}]},{"date":"2017-02-14","groups":[{"time":"10:32:00","height":"5.169"},{"time":"22:53:00","height":"4.894"}]},{"date":"2017-02-15","groups":[{"time":"11:09:00","height":"4.912"},{"time":"23:29:00","height":"4.609"}]},{"date":"2017-02-16","groups":[{"time":"11:45:00","height":"4.587"}]},{"date":"2017-02-17","groups":[{"time":"00:04:00","height":"4.276"},{"time":"12:23:00","height":"4.218"}]},{"date":"2017-02-18","groups":[{"time":"00:44:00","height":"3.914"},{"time":"13:05:00","height":"3.825"}]},{"date":"2017-02-19","groups":[{"time":"01:32:00","height":"3.553"},{"time":"13:58:00","height":"3.446"}]},{"date":"2017-02-20","groups":[{"time":"02:38:00","height":"3.254"},{"time":"15:16:00","height":"3.175"}]},{"date":"2017-02-21","groups":[{"time":"04:10:00","height":"3.173"},{"time":"16:49:00","height":"3.195"}]},{"date":"2017-02-22","groups":[{"time":"05:29:00","height":"3.417"},{"time":"17:57:00","height":"3.502"}]},{"date":"2017-02-23","groups":[{"time":"06:25:00","height":"3.826"},{"time":"18:47:00","height":"3.911"}]},{"date":"2017-02-24","groups":[{"time":"07:07:00","height":"4.259"},{"time":"19:28:00","height":"4.319"}]},{"date":"2017-02-25","groups":[{"time":"07:46:00","height":"4.655"},{"time":"20:04:00","height":"4.681"}]},{"date":"2017-02-26","groups":[{"time":"08:22:00","height":"4.988"},{"time":"20:40:00","height":"4.975"}]},{"date":"2017-02-27","groups":[{"time":"08:57:00","height":"5.243"},{"time":"21:15:00","height":"5.179"}]},{"date":"2017-02-28","groups":[{"time":"09:34:00","height":"5.398"},{"time":"21:51:00","height":"5.271"}]},{"date":"2017-03-01","groups":[{"time":"10:10:00","height":"5.427"},{"time":"22:30:00","height":"5.226"}]},{"date":"2017-03-02","groups":[{"time":"10:53:00","height":"5.312"},{"time":"23:12:00","height":"5.044"}]},{"date":"2017-03-03","groups":[{"time":"11:37:00","height":"5.052"},{"time":"23:58:00","height":"4.738"}]},{"date":"2017-03-04","groups":[{"time":"12:27:00","height":"4.671"}]},{"date":"2017-03-05","groups":[{"time":"00:50:00","height":"4.348"},{"time":"13:25:00","height":"4.223"}]},{"date":"2017-03-06","groups":[{"time":"01:55:00","height":"3.944"},{"time":"14:39:00","height":"3.817"}]},{"date":"2017-03-07","groups":[{"time":"03:19:00","height":"3.673"},{"time":"16:06:00","height":"3.643"}]},{"date":"2017-03-08","groups":[{"time":"04:46:00","height":"3.725"},{"time":"17:28:00","height":"3.821"}]},{"date":"2017-03-09","groups":[{"time":"06:01:00","height":"4.081"},{"time":"18:34:00","height":"4.216"}]},{"date":"2017-03-10","groups":[{"time":"06:59:00","height":"4.526"},{"time":"19:24:00","height":"4.618"}]},{"date":"2017-03-11","groups":[{"time":"07:45:00","height":"4.897"},{"time":"20:06:00","height":"4.919"}]},{"date":"2017-03-12","groups":[{"time":"08:24:00","height":"5.134"},{"time":"20:44:00","height":"5.091"}]},{"date":"2017-03-13","groups":[{"time":"09:00:00","height":"5.234"},{"time":"21:18:00","height":"5.141"}]},{"date":"2017-03-14","groups":[{"time":"09:33:00","height":"5.216"},{"time":"21:49:00","height":"5.086"}]},{"date":"2017-03-15","groups":[{"time":"10:03:00","height":"5.099"},{"time":"22:20:00","height":"4.940"}]},{"date":"2017-03-16","groups":[{"time":"10:36:00","height":"4.897"},{"time":"22:53:00","height":"4.718"}]},{"date":"2017-03-17","groups":[{"time":"11:08:00","height":"4.626"},{"time":"23:25:00","height":"4.432"}]},{"date":"2017-03-18","groups":[{"time":"11:42:00","height":"4.296"}]},{"date":"2017-03-19","groups":[{"time":"00:01:00","height":"4.097"},{"time":"12:20:00","height":"3.920"}]},{"date":"2017-03-20","groups":[{"time":"00:42:00","height":"3.731"},{"time":"13:05:00","height":"3.523"}]},{"date":"2017-03-21","groups":[{"time":"01:38:00","height":"3.375"},{"time":"14:11:00","height":"3.175"}]},{"date":"2017-03-22","groups":[{"time":"03:01:00","height":"3.147"},{"time":"15:50:00","height":"3.045"}]},{"date":"2017-03-23","groups":[{"time":"04:40:00","height":"3.257"},{"time":"17:18:00","height":"3.307"}]},{"date":"2017-03-24","groups":[{"time":"05:47:00","height":"3.664"},{"time":"18:14:00","height":"3.772"}]},{"date":"2017-03-25","groups":[{"time":"06:35:00","height":"4.158"},{"time":"18:58:00","height":"4.269"}]},{"date":"2017-03-26","groups":[{"time":"07:16:00","height":"4.636"},{"time":"19:37:00","height":"4.725"}]},{"date":"2017-03-27","groups":[{"time":"08:55:00","height":"5.050"},{"time":"21:15:00","height":"5.098"}]},{"date":"2017-03-28","groups":[{"time":"09:34:00","height":"5.366"},{"time":"21:52:00","height":"5.357"}]},{"date":"2017-03-29","groups":[{"time":"10:12:00","height":"5.554"},{"time":"22:30:00","height":"5.476"}]},{"date":"2017-03-30","groups":[{"time":"10:51:00","height":"5.586"},{"time":"23:09:00","height":"5.434"}]},{"date":"2017-03-31","groups":[{"time":"11:32:00","height":"5.442"},{"time":"23:53:00","height":"5.230"}]},{"date":"2017-04-01","groups":[{"time":"12:20:00","height":"5.130"}]},{"date":"2017-04-02","groups":[{"time":"00:39:00","height":"4.886"},{"time":"13:10:00","height":"4.687"}]},{"date":"2017-04-03","groups":[{"time":"01:33:00","height":"4.451"},{"time":"14:09:00","height":"4.185"}]},{"date":"2017-04-04","groups":[{"time":"02:39:00","height":"4.009"},{"time":"15:24:00","height":"3.750"}]},{"date":"2017-04-05","groups":[{"time":"04:03:00","height":"3.711"},{"time":"16:53:00","height":"3.570"}]},{"date":"2017-04-06","groups":[{"time":"05:31:00","height":"3.736"},{"time":"18:13:00","height":"3.749"}]},{"date":"2017-04-07","groups":[{"time":"06:44:00","height":"4.050"},{"time":"19:17:00","height":"4.127"}]},{"date":"2017-04-08","groups":[{"time":"07:40:00","height":"4.436"},{"time":"20:05:00","height":"4.499"}]},{"date":"2017-04-09","groups":[{"time":"08:24:00","height":"4.747"},{"time":"20:45:00","height":"4.775"}]},{"date":"2017-04-10","groups":[{"time":"09:02:00","height":"4.939"},{"time":"21:19:00","height":"4.939"}]},{"date":"2017-04-11","groups":[{"time":"09:35:00","height":"5.023"},{"time":"21:52:00","height":"5.007"}]},{"date":"2017-04-12","groups":[{"time":"10:06:00","height":"5.021"},{"time":"22:22:00","height":"4.995"}]},{"date":"2017-04-13","groups":[{"time":"10:37:00","height":"4.948"},{"time":"22:51:00","height":"4.909"}]},{"date":"2017-04-14","groups":[{"time":"11:05:00","height":"4.806"},{"time":"23:20:00","height":"4.752"}]},{"date":"2017-04-15","groups":[{"time":"11:37:00","height":"4.598"},{"time":"23:53:00","height":"4.528"}]},{"date":"2017-04-16","groups":[{"time":"12:09:00","height":"4.327"}]},{"date":"2017-04-17","groups":[{"time":"00:28:00","height":"4.247"},{"time":"12:46:00","height":"4.004"}]},{"date":"2017-04-18","groups":[{"time":"01:08:00","height":"3.925"},{"time":"13:29:00","height":"3.655"}]},{"date":"2017-04-19","groups":[{"time":"01:57:00","height":"3.597"},{"time":"14:29:00","height":"3.330"}]},{"date":"2017-04-20","groups":[{"time":"03:10:00","height":"3.347"},{"time":"15:53:00","height":"3.157"}]},{"date":"2017-04-21","groups":[{"time":"04:43:00","height":"3.340"},{"time":"17:25:00","height":"3.308"}]},{"date":"2017-04-22","groups":[{"time":"05:59:00","height":"3.653"},{"time":"18:31:00","height":"3.735"}]},{"date":"2017-04-23","groups":[{"time":"06:56:00","height":"4.128"},{"time":"19:22:00","height":"4.248"}]},{"date":"2017-04-24","groups":[{"time":"07:42:00","height":"4.624"},{"time":"20:05:00","height":"4.737"}]},{"date":"2017-04-25","groups":[{"time":"08:25:00","height":"5.061"},{"time":"20:47:00","height":"5.140"}]},{"date":"2017-04-26","groups":[{"time":"09:07:00","height":"5.390"},{"time":"21:28:00","height":"5.419"}]},{"date":"2017-04-27","groups":[{"time":"09:50:00","height":"5.576"},{"time":"22:09:00","height":"5.548"}]},{"date":"2017-04-28","groups":[{"time":"10:31:00","height":"5.595"},{"time":"22:50:00","height":"5.512"}]},{"date":"2017-04-29","groups":[{"time":"11:14:00","height":"5.435"},{"time":"23:36:00","height":"5.314"}]},{"date":"2017-04-30","groups":[{"time":"12:05:00","height":"5.113"}]},{"date":"2017-05-01","groups":[{"time":"00:26:00","height":"4.980"},{"time":"12:58:00","height":"4.676"}]},{"date":"2017-05-02","groups":[{"time":"01:22:00","height":"4.566"},{"time":"13:57:00","height":"4.205"}]},{"date":"2017-05-03","groups":[{"time":"02:26:00","height":"4.155"},{"time":"15:08:00","height":"3.810"}]},{"date":"2017-05-04","groups":[{"time":"03:44:00","height":"3.867"},{"time":"16:32:00","height":"3.628"}]},{"date":"2017-05-05","groups":[{"time":"05:06:00","height":"3.823"},{"time":"17:46:00","height":"3.730"}]},{"date":"2017-05-06","groups":[{"time":"06:15:00","height":"4.008"},{"time":"18:48:00","height":"4.010"}]},{"date":"2017-05-07","groups":[{"time":"07:11:00","height":"4.275"},{"time":"19:37:00","height":"4.312"}]},{"date":"2017-05-08","groups":[{"time":"07:56:00","height":"4.508"},{"time":"20:17:00","height":"4.553"}]},{"date":"2017-05-09","groups":[{"time":"08:34:00","height":"4.665"},{"time":"20:53:00","height":"4.717"}]},{"date":"2017-05-10","groups":[{"time":"09:09:00","height":"4.752"},{"time":"21:25:00","height":"4.812"}]},{"date":"2017-05-11","groups":[{"time":"09:41:00","height":"4.781"},{"time":"21:56:00","height":"4.845"}]},{"date":"2017-05-12","groups":[{"time":"10:11:00","height":"4.757"},{"time":"22:26:00","height":"4.819"}]},{"date":"2017-05-13","groups":[{"time":"10:40:00","height":"4.677"},{"time":"22:55:00","height":"4.730"}]},{"date":"2017-05-14","groups":[{"time":"11:10:00","height":"4.539"},{"time":"23:27:00","height":"4.578"}]},{"date":"2017-05-15","groups":[{"time":"11:44:00","height":"4.344"}]},{"date":"2017-05-16","groups":[{"time":"00:04:00","height":"4.371"},{"time":"12:22:00","height":"4.102"}]},{"date":"2017-05-17","groups":[{"time":"00:44:00","height":"4.124"},{"time":"13:05:00","height":"3.836"}]},{"date":"2017-05-18","groups":[{"time":"01:33:00","height":"3.868"},{"time":"14:01:00","height":"3.585"}]},{"date":"2017-05-19","groups":[{"time":"02:35:00","height":"3.662"},{"time":"15:12:00","height":"3.431"}]},{"date":"2017-05-20","groups":[{"time":"03:53:00","height":"3.606"},{"time":"16:35:00","height":"3.486"}]},{"date":"2017-05-21","groups":[{"time":"05:10:00","height":"3.783"},{"time":"17:45:00","height":"3.785"}]},{"date":"2017-05-22","groups":[{"time":"06:13:00","height":"4.146"},{"time":"18:42:00","height":"4.220"}]},{"date":"2017-05-23","groups":[{"time":"07:07:00","height":"4.574"},{"time":"19:33:00","height":"4.670"}]},{"date":"2017-05-24","groups":[{"time":"07:56:00","height":"4.971"},{"time":"20:20:00","height":"5.059"}]},{"date":"2017-05-25","groups":[{"time":"08:43:00","height":"5.276"},{"time":"21:05:00","height":"5.340"}]},{"date":"2017-05-26","groups":[{"time":"09:30:00","height":"5.452"},{"time":"21:50:00","height":"5.487"}]},{"date":"2017-05-27","groups":[{"time":"10:15:00","height":"5.477"},{"time":"22:36:00","height":"5.487"}]},{"date":"2017-05-28","groups":[{"time":"11:01:00","height":"5.348"},{"time":"23:21:00","height":"5.340"}]},{"date":"2017-05-29","groups":[{"time":"11:52:00","height":"5.080"}]},{"date":"2017-05-30","groups":[{"time":"00:15:00","height":"5.070"},{"time":"12:46:00","height":"4.713"}]},{"date":"2017-05-31","groups":[{"time":"01:10:00","height":"4.720"},{"time":"13:42:00","height":"4.314"}]},{"date":"2017-06-01","groups":[{"time":"02:08:00","height":"4.356"},{"time":"14:45:00","height":"3.956"}]},{"date":"2017-06-02","groups":[{"time":"03:15:00","height":"4.051"},{"time":"15:57:00","height":"3.726"}]},{"date":"2017-06-03","groups":[{"time":"04:30:00","height":"3.884"},{"time":"17:07:00","height":"3.686"}]},{"date":"2017-06-04","groups":[{"time":"05:36:00","height":"3.889"},{"time":"18:09:00","height":"3.819"}]},{"date":"2017-06-05","groups":[{"time":"06:34:00","height":"4.015"},{"time":"19:02:00","height":"4.037"}]},{"date":"2017-06-06","groups":[{"time":"07:23:00","height":"4.183"},{"time":"19:47:00","height":"4.261"}]},{"date":"2017-06-07","groups":[{"time":"08:05:00","height":"4.339"},{"time":"20:26:00","height":"4.451"}]},{"date":"2017-06-08","groups":[{"time":"08:43:00","height":"4.461"},{"time":"21:01:00","height":"4.594"}]},{"date":"2017-06-09","groups":[{"time":"09:17:00","height":"4.543"},{"time":"21:34:00","height":"4.686"}]},{"date":"2017-06-10","groups":[{"time":"09:50:00","height":"4.579"},{"time":"22:06:00","height":"4.724"}]},{"date":"2017-06-11","groups":[{"time":"10:21:00","height":"4.570"},{"time":"22:37:00","height":"4.709"}]},{"date":"2017-06-12","groups":[{"time":"10:52:00","height":"4.512"},{"time":"23:08:00","height":"4.640"}]},{"date":"2017-06-13","groups":[{"time":"11:26:00","height":"4.408"},{"time":"23:45:00","height":"4.519"}]},{"date":"2017-06-14","groups":[{"time":"12:05:00","height":"4.259"}]},{"date":"2017-06-15","groups":[{"time":"00:26:00","height":"4.358"},{"time":"12:48:00","height":"4.080"}]},{"date":"2017-06-16","groups":[{"time":"01:13:00","height":"4.175"},{"time":"13:38:00","height":"3.895"}]},{"date":"2017-06-17","groups":[{"time":"02:08:00","height":"4.008"},{"time":"14:39:00","height":"3.751"}]},{"date":"2017-06-18","groups":[{"time":"03:14:00","height":"3.909"},{"time":"15:50:00","height":"3.713"}]},{"date":"2017-06-19","groups":[{"time":"04:29:00","height":"3.941"},{"time":"17:04:00","height":"3.843"}]},{"date":"2017-06-20","groups":[{"time":"05:35:00","height":"4.132"},{"time":"18:08:00","height":"4.133"}]},{"date":"2017-06-21","groups":[{"time":"06:36:00","height":"4.431"},{"time":"19:05:00","height":"4.500"}]},{"date":"2017-06-22","groups":[{"time":"07:31:00","height":"4.757"},{"time":"19:58:00","height":"4.863"}]},{"date":"2017-06-23","groups":[{"time":"08:24:00","height":"5.040"},{"time":"20:47:00","height":"5.162"}]},{"date":"2017-06-24","groups":[{"time":"09:14:00","height":"5.236"},{"time":"21:36:00","height":"5.359"}]},{"date":"2017-06-25","groups":[{"time":"10:03:00","height":"5.316"},{"time":"22:23:00","height":"5.430"}]},{"date":"2017-06-26","groups":[{"time":"10:50:00","height":"5.265"},{"time":"23:10:00","height":"5.365"}]},{"date":"2017-06-27","groups":[{"time":"11:39:00","height":"5.087"}]},{"date":"2017-06-28","groups":[{"time":"00:00:00","height":"5.172"},{"time":"12:29:00","height":"4.805"}]},{"date":"2017-06-29","groups":[{"time":"00:51:00","height":"4.879"},{"time":"13:20:00","height":"4.461"}]},{"date":"2017-06-30","groups":[{"time":"01:42:00","height":"4.530"},{"time":"14:13:00","height":"4.110"}]},{"date":"2017-07-01","groups":[{"time":"02:38:00","height":"4.179"},{"time":"15:11:00","height":"3.807"}]},{"date":"2017-07-02","groups":[{"time":"03:39:00","height":"3.885"},{"time":"16:18:00","height":"3.614"}]},{"date":"2017-07-03","groups":[{"time":"04:48:00","height":"3.712"},{"time":"17:23:00","height":"3.586"}]},{"date":"2017-07-04","groups":[{"time":"05:50:00","height":"3.698"},{"time":"18:24:00","height":"3.717"}]},{"date":"2017-07-05","groups":[{"time":"06:47:00","height":"3.816"},{"time":"19:15:00","height":"3.941"}]},{"date":"2017-07-06","groups":[{"time":"07:36:00","height":"4.002"},{"time":"20:00:00","height":"4.188"}]},{"date":"2017-07-07","groups":[{"time":"08:18:00","height":"4.195"},{"time":"20:38:00","height":"4.409"}]},{"date":"2017-07-08","groups":[{"time":"08:56:00","height":"4.359"},{"time":"21:14:00","height":"4.582"}]},{"date":"2017-07-09","groups":[{"time":"09:31:00","height":"4.481"},{"time":"21:48:00","height":"4.700"}]},{"date":"2017-07-10","groups":[{"time":"10:04:00","height":"4.558"},{"time":"22:21:00","height":"4.767"}]},{"date":"2017-07-11","groups":[{"time":"10:37:00","height":"4.592"},{"time":"22:53:00","height":"4.783"}]},{"date":"2017-07-12","groups":[{"time":"11:09:00","height":"4.578"},{"time":"23:29:00","height":"4.745"}]},{"date":"2017-07-13","groups":[{"time":"11:47:00","height":"4.511"}]},{"date":"2017-07-14","groups":[{"time":"00:09:00","height":"4.651"},{"time":"12:30:00","height":"4.389"}]},{"date":"2017-07-15","groups":[{"time":"00:54:00","height":"4.507"},{"time":"13:15:00","height":"4.225"}]},{"date":"2017-07-16","groups":[{"time":"01:42:00","height":"4.331"},{"time":"14:08:00","height":"4.045"}]},{"date":"2017-07-17","groups":[{"time":"02:41:00","height":"4.153"},{"time":"15:12:00","height":"3.894"}]},{"date":"2017-07-18","groups":[{"time":"03:50:00","height":"4.027"},{"time":"16:27:00","height":"3.849"}]},{"date":"2017-07-19","groups":[{"time":"05:04:00","height":"4.028"},{"time":"17:38:00","height":"3.982"}]},{"date":"2017-07-20","groups":[{"time":"06:12:00","height":"4.196"},{"time":"18:44:00","height":"4.278"}]},{"date":"2017-07-21","groups":[{"time":"07:15:00","height":"4.479"},{"time":"19:44:00","height":"4.650"}]},{"date":"2017-07-22","groups":[{"time":"08:13:00","height":"4.793"},{"time":"20:37:00","height":"5.005"}]},{"date":"2017-07-23","groups":[{"time":"09:04:00","height":"5.058"},{"time":"21:26:00","height":"5.276"}]},{"date":"2017-07-24","groups":[{"time":"09:52:00","height":"5.221"},{"time":"22:12:00","height":"5.420"}]},{"date":"2017-07-25","groups":[{"time":"10:37:00","height":"5.253"},{"time":"22:55:00","height":"5.417"}]},{"date":"2017-07-26","groups":[{"time":"11:19:00","height":"5.148"},{"time":"23:40:00","height":"5.270"}]},{"date":"2017-07-27","groups":[{"time":"12:05:00","height":"4.924"}]},{"date":"2017-07-28","groups":[{"time":"00:24:00","height":"5.001"},{"time":"12:49:00","height":"4.612"}]},{"date":"2017-07-29","groups":[{"time":"01:09:00","height":"4.651"},{"time":"13:34:00","height":"4.257"}]},{"date":"2017-07-30","groups":[{"time":"01:54:00","height":"4.263"},{"time":"14:21:00","height":"3.900"}]},{"date":"2017-07-31","groups":[{"time":"02:44:00","height":"3.883"},{"time":"15:17:00","height":"3.589"}]},{"date":"2017-08-01","groups":[{"time":"03:46:00","height":"3.567"},{"time":"16:29:00","height":"3.400"}]},{"date":"2017-08-02","groups":[{"time":"05:00:00","height":"3.405"},{"time":"17:41:00","height":"3.426"}]},{"date":"2017-08-03","groups":[{"time":"06:10:00","height":"3.471"},{"time":"18:44:00","height":"3.656"}]},{"date":"2017-08-04","groups":[{"time":"07:10:00","height":"3.705"},{"time":"19:36:00","height":"3.979"}]},{"date":"2017-08-05","groups":[{"time":"07:57:00","height":"3.997"},{"time":"20:17:00","height":"4.300"}]},{"date":"2017-08-06","groups":[{"time":"08:36:00","height":"4.271"},{"time":"20:54:00","height":"4.572"}]},{"date":"2017-08-07","groups":[{"time":"09:12:00","height":"4.499"},{"time":"21:28:00","height":"4.783"}]},{"date":"2017-08-08","groups":[{"time":"09:46:00","height":"4.674"},{"time":"22:02:00","height":"4.934"}]},{"date":"2017-08-09","groups":[{"time":"10:19:00","height":"4.797"},{"time":"22:35:00","height":"5.025"}]},{"date":"2017-08-10","groups":[{"time":"10:52:00","height":"4.856"},{"time":"23:09:00","height":"5.044"}]},{"date":"2017-08-11","groups":[{"time":"11:28:00","height":"4.835"},{"time":"23:49:00","height":"4.978"}]},{"date":"2017-08-12","groups":[{"time":"12:08:00","height":"4.726"}]},{"date":"2017-08-13","groups":[{"time":"00:31:00","height":"4.822"},{"time":"12:51:00","height":"4.533"}]},{"date":"2017-08-14","groups":[{"time":"01:17:00","height":"4.584"},{"time":"13:40:00","height":"4.277"}]},{"date":"2017-08-15","groups":[{"time":"02:12:00","height":"4.291"},{"time":"14:40:00","height":"4.002"}]},{"date":"2017-08-16","groups":[{"time":"03:19:00","height":"4.004"},{"time":"15:57:00","height":"3.802"}]},{"date":"2017-08-17","groups":[{"time":"04:41:00","height":"3.848"},{"time":"17:19:00","height":"3.821"}]},{"date":"2017-08-18","groups":[{"time":"05:58:00","height":"3.943"},{"time":"18:33:00","height":"4.104"}]},{"date":"2017-08-19","groups":[{"time":"07:08:00","height":"4.258"},{"time":"19:37:00","height":"4.532"}]},{"date":"2017-08-20","groups":[{"time":"08:07:00","height":"4.650"},{"time":"20:30:00","height":"4.953"}]},{"date":"2017-08-21","groups":[{"time":"08:56:00","height":"4.987"},{"time":"21:16:00","height":"5.267"}]},{"date":"2017-08-22","groups":[{"time":"09:40:00","height":"5.202"},{"time":"21:58:00","height":"5.432"}]},{"date":"2017-08-23","groups":[{"time":"10:20:00","height":"5.275"},{"time":"22:37:00","height":"5.441"}]},{"date":"2017-08-24","groups":[{"time":"10:56:00","height":"5.207"},{"time":"23:14:00","height":"5.305"}]},{"date":"2017-08-25","groups":[{"time":"11:36:00","height":"5.017"},{"time":"23:53:00","height":"5.050"}]},{"date":"2017-08-26","groups":[{"time":"12:13:00","height":"4.735"}]},{"date":"2017-08-27","groups":[{"time":"00:31:00","height":"4.711"},{"time":"12:51:00","height":"4.393"}]},{"date":"2017-08-28","groups":[{"time":"01:09:00","height":"4.323"},{"time":"13:31:00","height":"4.024"}]},{"date":"2017-08-29","groups":[{"time":"01:51:00","height":"3.916"},{"time":"14:18:00","height":"3.657"}]},{"date":"2017-08-30","groups":[{"time":"02:42:00","height":"3.523"},{"time":"15:21:00","height":"3.347"}]},{"date":"2017-08-31","groups":[{"time":"03:56:00","height":"3.225"},{"time":"16:51:00","height":"3.230"}]},{"date":"2017-09-01","groups":[{"time":"05:31:00","height":"3.196"},{"time":"18:12:00","height":"3.437"}]},{"date":"2017-09-02","groups":[{"time":"06:42:00","height":"3.472"},{"time":"19:10:00","height":"3.826"}]},{"date":"2017-09-03","groups":[{"time":"07:33:00","height":"3.863"},{"time":"19:54:00","height":"4.243"}]},{"date":"2017-09-04","groups":[{"time":"08:14:00","height":"4.252"},{"time":"20:31:00","height":"4.614"}]},{"date":"2017-09-05","groups":[{"time":"08:49:00","height":"4.590"},{"time":"21:05:00","height":"4.919"}]},{"date":"2017-09-06","groups":[{"time":"09:23:00","height":"4.864"},{"time":"21:39:00","height":"5.151"}]},{"date":"2017-09-07","groups":[{"time":"09:56:00","height":"5.062"},{"time":"22:13:00","height":"5.299"}]},{"date":"2017-09-08","groups":[{"time":"10:30:00","height":"5.170"},{"time":"22:48:00","height":"5.346"}]},{"date":"2017-09-09","groups":[{"time":"11:05:00","height":"5.165"},{"time":"23:26:00","height":"5.271"}]},{"date":"2017-09-10","groups":[{"time":"11:45:00","height":"5.036"}]},{"date":"2017-09-11","groups":[{"time":"00:08:00","height":"5.065"},{"time":"12:29:00","height":"4.788"}]},{"date":"2017-09-12","groups":[{"time":"00:55:00","height":"4.739"},{"time":"13:17:00","height":"4.448"}]},{"date":"2017-09-13","groups":[{"time":"01:49:00","height":"4.331"},{"time":"14:17:00","height":"4.070"}]},{"date":"2017-09-14","groups":[{"time":"02:58:00","height":"3.925"},{"time":"15:37:00","height":"3.773"}]},{"date":"2017-09-15","groups":[{"time":"04:28:00","height":"3.691"},{"time":"17:09:00","height":"3.754"}]},{"date":"2017-09-16","groups":[{"time":"05:53:00","height":"3.802"},{"time":"18:28:00","height":"4.074"}]},{"date":"2017-09-17","groups":[{"time":"07:04:00","height":"4.186"},{"time":"19:30:00","height":"4.542"}]},{"date":"2017-09-18","groups":[{"time":"07:59:00","height":"4.625"},{"time":"20:19:00","height":"4.966"}]},{"date":"2017-09-19","groups":[{"time":"08:43:00","height":"4.977"},{"time":"21:02:00","height":"5.255"}]},{"date":"2017-09-20","groups":[{"time":"09:22:00","height":"5.191"},{"time":"21:39:00","height":"5.389"}]},{"date":"2017-09-21","groups":[{"time":"09:59:00","height":"5.266"},{"time":"22:15:00","height":"5.381"}]},{"date":"2017-09-22","groups":[{"time":"10:32:00","height":"5.218"},{"time":"22:47:00","height":"5.255"}]},{"date":"2017-09-23","groups":[{"time":"11:04:00","height":"5.066"},{"time":"23:19:00","height":"5.032"}]},{"date":"2017-09-24","groups":[{"time":"11:38:00","height":"4.830"},{"time":"23:53:00","height":"4.734"}]},{"date":"2017-09-25","groups":[{"time":"12:11:00","height":"4.529"}]},{"date":"2017-09-26","groups":[{"time":"00:28:00","height":"4.382"},{"time":"12:47:00","height":"4.184"}]},{"date":"2017-09-27","groups":[{"time":"01:05:00","height":"3.992"},{"time":"13:28:00","height":"3.814"}]},{"date":"2017-09-28","groups":[{"time":"01:51:00","height":"3.586"},{"time":"14:23:00","height":"3.456"}]},{"date":"2017-09-29","groups":[{"time":"02:55:00","height":"3.225"},{"time":"15:47:00","height":"3.220"}]},{"date":"2017-09-30","groups":[{"time":"04:36:00","height":"3.074"},{"time":"17:30:00","height":"3.322"}]},{"date":"2017-10-01","groups":[{"time":"06:08:00","height":"3.323"},{"time":"18:37:00","height":"3.719"}]},{"date":"2017-10-02","groups":[{"time":"07:03:00","height":"3.769"},{"time":"19:23:00","height":"4.191"}]},{"date":"2017-10-03","groups":[{"time":"07:44:00","height":"4.243"},{"time":"20:01:00","height":"4.641"}]},{"date":"2017-10-04","groups":[{"time":"08:21:00","height":"4.676"},{"time":"20:37:00","height":"5.027"}]},{"date":"2017-10-05","groups":[{"time":"08:56:00","height":"5.034"},{"time":"21:13:00","height":"5.325"}]},{"date":"2017-10-06","groups":[{"time":"09:32:00","height":"5.294"},{"time":"21:50:00","height":"5.514"}]},{"date":"2017-10-07","groups":[{"time":"10:07:00","height":"5.432"},{"time":"22:27:00","height":"5.568"}]},{"date":"2017-10-08","groups":[{"time":"10:44:00","height":"5.430"},{"time":"23:05:00","height":"5.468"}]},{"date":"2017-10-09","groups":[{"time":"11:24:00","height":"5.278"},{"time":"23:50:00","height":"5.209"}]},{"date":"2017-10-10","groups":[{"time":"12:10:00","height":"4.988"}]},{"date":"2017-10-11","groups":[{"time":"00:38:00","height":"4.815"},{"time":"13:01:00","height":"4.596"}]},{"date":"2017-10-12","groups":[{"time":"01:36:00","height":"4.343"},{"time":"14:04:00","height":"4.173"}]},{"date":"2017-10-13","groups":[{"time":"02:47:00","height":"3.901"},{"time":"15:25:00","height":"3.856"}]},{"date":"2017-10-14","groups":[{"time":"04:17:00","height":"3.671"},{"time":"16:59:00","height":"3.835"}]},{"date":"2017-10-15","groups":[{"time":"05:43:00","height":"3.803"},{"time":"18:16:00","height":"4.136"}]},{"date":"2017-10-16","groups":[{"time":"06:51:00","height":"4.184"},{"time":"19:15:00","height":"4.553"}]},{"date":"2017-10-17","groups":[{"time":"07:43:00","height":"4.594"},{"time":"20:01:00","height":"4.909"}]},{"date":"2017-10-18","groups":[{"time":"08:24:00","height":"4.909"},{"time":"20:42:00","height":"5.134"}]},{"date":"2017-10-19","groups":[{"time":"09:02:00","height":"5.099"},{"time":"21:18:00","height":"5.229"}]},{"date":"2017-10-20","groups":[{"time":"09:35:00","height":"5.174"},{"time":"21:50:00","height":"5.218"}]},{"date":"2017-10-21","groups":[{"time":"10:06:00","height":"5.155"},{"time":"22:21:00","height":"5.123"}]},{"date":"2017-10-22","groups":[{"time":"10:37:00","height":"5.055"},{"time":"22:51:00","height":"4.956"}]},{"date":"2017-10-23","groups":[{"time":"11:06:00","height":"4.883"},{"time":"23:20:00","height":"4.724"}]},{"date":"2017-10-24","groups":[{"time":"11:39:00","height":"4.645"},{"time":"23:54:00","height":"4.433"}]},{"date":"2017-10-25","groups":[{"time":"12:13:00","height":"4.353"}]},{"date":"2017-10-26","groups":[{"time":"00:31:00","height":"4.096"},{"time":"12:52:00","height":"4.023"}]},{"date":"2017-10-27","groups":[{"time":"01:13:00","height":"3.731"},{"time":"13:42:00","height":"3.684"}]},{"date":"2017-10-28","groups":[{"time":"02:10:00","height":"3.385"},{"time":"14:53:00","height":"3.414"}]},{"date":"2017-10-29","groups":[{"time":"03:33:00","height":"3.176"},{"time":"16:28:00","height":"3.375"}]},{"date":"2017-10-30","groups":[{"time":"04:13:00","height":"3.289"},{"time":"16:48:00","height":"3.663"}]},{"date":"2017-10-31","groups":[{"time":"05:20:00","height":"3.694"},{"time":"17:42:00","height":"4.116"}]},{"date":"2017-11-01","groups":[{"time":"06:08:00","height":"4.190"},{"time":"18:27:00","height":"4.595"}]},{"date":"2017-11-02","groups":[{"time":"06:48:00","height":"4.675"},{"time":"19:07:00","height":"5.028"}]},{"date":"2017-11-03","groups":[{"time":"07:28:00","height":"5.088"},{"time":"19:47:00","height":"5.368"}]},{"date":"2017-11-04","groups":[{"time":"08:06:00","height":"5.393"},{"time":"20:26:00","height":"5.582"}]},{"date":"2017-11-05","groups":[{"time":"08:46:00","height":"5.561"},{"time":"21:07:00","height":"5.643"}]},{"date":"2017-11-06","groups":[{"time":"09:26:00","height":"5.575"},{"time":"21:49:00","height":"5.536"}]},{"date":"2017-11-07","groups":[{"time":"10:08:00","height":"5.432"},{"time":"22:36:00","height":"5.267"}]},{"date":"2017-11-08","groups":[{"time":"10:57:00","height":"5.149"},{"time":"23:29:00","height":"4.872"}]},{"date":"2017-11-09","groups":[{"time":"11:51:00","height":"4.771"}]},{"date":"2017-11-10","groups":[{"time":"00:27:00","height":"4.418"},{"time":"12:55:00","height":"4.371"}]},{"date":"2017-11-11","groups":[{"time":"01:36:00","height":"4.007"},{"time":"14:11:00","height":"4.063"}]},{"date":"2017-11-12","groups":[{"time":"02:58:00","height":"3.776"},{"time":"15:37:00","height":"3.976"}]},{"date":"2017-11-13","groups":[{"time":"04:19:00","height":"3.828"},{"time":"16:50:00","height":"4.137"}]},{"date":"2017-11-14","groups":[{"time":"05:25:00","height":"4.097"},{"time":"17:49:00","height":"4.414"}]},{"date":"2017-11-15","groups":[{"time":"06:17:00","height":"4.419"},{"time":"18:37:00","height":"4.672"}]},{"date":"2017-11-16","groups":[{"time":"07:00:00","height":"4.689"},{"time":"19:18:00","height":"4.849"}]},{"date":"2017-11-17","groups":[{"time":"07:38:00","height":"4.873"},{"time":"19:54:00","height":"4.940"}]},{"date":"2017-11-18","groups":[{"time":"08:12:00","height":"4.974"},{"time":"20:27:00","height":"4.960"}]},{"date":"2017-11-19","groups":[{"time":"08:44:00","height":"5.005"},{"time":"20:58:00","height":"4.923"}]},{"date":"2017-11-20","groups":[{"time":"09:14:00","height":"4.973"},{"time":"21:28:00","height":"4.830"}]},{"date":"2017-11-21","groups":[{"time":"09:43:00","height":"4.877"},{"time":"21:58:00","height":"4.678"}]},{"date":"2017-11-22","groups":[{"time":"10:14:00","height":"4.719"},{"time":"22:30:00","height":"4.472"}]},{"date":"2017-11-23","groups":[{"time":"10:50:00","height":"4.505"},{"time":"23:07:00","height":"4.218"}]},{"date":"2017-11-24","groups":[{"time":"11:29:00","height":"4.249"},{"time":"23:48:00","height":"3.934"}]},{"date":"2017-11-25","groups":[{"time":"12:15:00","height":"3.973"}]},{"date":"2017-11-26","groups":[{"time":"00:39:00","height":"3.653"},{"time":"13:14:00","height":"3.728"}]},{"date":"2017-11-27","groups":[{"time":"01:46:00","height":"3.444"},{"time":"14:28:00","height":"3.607"}]},{"date":"2017-11-28","groups":[{"time":"03:07:00","height":"3.420"},{"time":"15:49:00","height":"3.709"}]},{"date":"2017-11-29","groups":[{"time":"04:24:00","height":"3.655"},{"time":"16:53:00","height":"4.028"}]},{"date":"2017-11-30","groups":[{"time":"05:25:00","height":"4.069"},{"time":"17:48:00","height":"4.450"}]},{"date":"2017-12-01","groups":[{"time":"06:13:00","height":"4.535"},{"time":"18:36:00","height":"4.872"}]},{"date":"2017-12-02","groups":[{"time":"07:00:00","height":"4.965"},{"time":"19:22:00","height":"5.225"}]},{"date":"2017-12-03","groups":[{"time":"07:44:00","height":"5.305"},{"time":"20:07:00","height":"5.464"}]},{"date":"2017-12-04","groups":[{"time":"08:29:00","height":"5.521"},{"time":"20:52:00","height":"5.561"}]},{"date":"2017-12-05","groups":[{"time":"09:13:00","height":"5.594"},{"time":"21:38:00","height":"5.504"}]},{"date":"2017-12-06","groups":[{"time":"09:57:00","height":"5.518"},{"time":"22:26:00","height":"5.298"}]},{"date":"2017-12-07","groups":[{"time":"10:49:00","height":"5.307"},{"time":"23:19:00","height":"4.975"}]},{"date":"2017-12-08","groups":[{"time":"11:43:00","height":"4.995"}]},{"date":"2017-12-09","groups":[{"time":"00:15:00","height":"4.587"},{"time":"12:41:00","height":"4.636"}]},{"date":"2017-12-10","groups":[{"time":"01:17:00","height":"4.205"},{"time":"13:46:00","height":"4.300"}]},{"date":"2017-12-11","groups":[{"time":"02:25:00","height":"3.913"},{"time":"14:59:00","height":"4.070"}]},{"date":"2017-12-12","groups":[{"time":"03:41:00","height":"3.795"},{"time":"16:10:00","height":"4.008"}]},{"date":"2017-12-13","groups":[{"time":"04:47:00","height":"3.873"},{"time":"17:13:00","height":"4.097"}]},{"date":"2017-12-14","groups":[{"time":"05:45:00","height":"4.077"},{"time":"18:07:00","height":"4.260"}]},{"date":"2017-12-15","groups":[{"time":"06:33:00","height":"4.317"},{"time":"18:53:00","height":"4.428"}]},{"date":"2017-12-16","groups":[{"time":"07:15:00","height":"4.531"},{"time":"19:32:00","height":"4.565"}]},{"date":"2017-12-17","groups":[{"time":"07:51:00","height":"4.695"},{"time":"20:07:00","height":"4.658"}]},{"date":"2017-12-18","groups":[{"time":"08:25:00","height":"4.803"},{"time":"20:41:00","height":"4.704"}]},{"date":"2017-12-19","groups":[{"time":"08:57:00","height":"4.853"},{"time":"21:12:00","height":"4.699"}]},{"date":"2017-12-20","groups":[{"time":"09:28:00","height":"4.845"},{"time":"21:42:00","height":"4.643"}]},{"date":"2017-12-21","groups":[{"time":"09:58:00","height":"4.779"},{"time":"22:14:00","height":"4.538"}]},{"date":"2017-12-22","groups":[{"time":"10:33:00","height":"4.660"},{"time":"22:51:00","height":"4.385"}]},{"date":"2017-12-23","groups":[{"time":"11:11:00","height":"4.493"},{"time":"23:30:00","height":"4.193"}]},{"date":"2017-12-24","groups":[{"time":"11:54:00","height":"4.292"}]},{"date":"2017-12-25","groups":[{"time":"00:14:00","height":"3.981"},{"time":"12:42:00","height":"4.084"}]},{"date":"2017-12-26","groups":[{"time":"01:07:00","height":"3.783"},{"time":"13:42:00","height":"3.912"}]},{"date":"2017-12-27","groups":[{"time":"02:13:00","height":"3.655"},{"time":"14:53:00","height":"3.846"}]},{"date":"2017-12-28","groups":[{"time":"03:31:00","height":"3.680"},{"time":"16:06:00","height":"3.947"}]},{"date":"2017-12-29","groups":[{"time":"04:40:00","height":"3.905"},{"time":"17:10:00","height":"4.216"}]},{"date":"2017-12-30","groups":[{"time":"05:41:00","height":"4.275"},{"time":"18:09:00","height":"4.573"}]},{"date":"2017-12-31","groups":[{"time":"06:36:00","height":"4.692"},{"time":"19:02:00","height":"4.930"}]},{"date":"2018-01-01","groups":[{"time":"07:27:00","height":"5.077"},{"time":"19:53:00","height":"5.222"}]},{"date":"2018-01-02","groups":[{"time":"08:16:00","height":"5.375"},{"time":"20:42:00","height":"5.405"}]},{"date":"2018-01-03","groups":[{"time":"09:03:00","height":"5.551"},{"time":"21:29:00","height":"5.453"}]},{"date":"2018-01-04","groups":[{"time":"09:49:00","height":"5.584"},{"time":"22:15:00","height":"5.357"}]},{"date":"2018-01-05","groups":[{"time":"10:37:00","height":"5.468"},{"time":"23:06:00","height":"5.126"}]},{"date":"2018-01-06","groups":[{"time":"11:28:00","height":"5.219"},{"time":"23:56:00","height":"4.795"}]},{"date":"2018-01-07","groups":[{"time":"12:18:00","height":"4.871"}]},{"date":"2018-01-08","groups":[{"time":"00:48:00","height":"4.413"},{"time":"13:13:00","height":"4.478"}]},{"date":"2018-01-09","groups":[{"time":"01:44:00","height":"4.039"},{"time":"14:12:00","height":"4.100"}]},{"date":"2018-01-10","groups":[{"time":"02:48:00","height":"3.742"},{"time":"15:20:00","height":"3.816"}]},{"date":"2018-01-11","groups":[{"time":"03:59:00","height":"3.602"},{"time":"16:28:00","height":"3.702"}]},{"date":"2018-01-12","groups":[{"time":"05:05:00","height":"3.664"},{"time":"17:32:00","height":"3.773"}]},{"date":"2018-01-13","groups":[{"time":"06:03:00","height":"3.878"},{"time":"18:27:00","height":"3.963"}]},{"date":"2018-01-14","groups":[{"time":"06:52:00","height":"4.152"},{"time":"19:13:00","height":"4.187"}]},{"date":"2018-01-15","groups":[{"time":"07:32:00","height":"4.411"},{"time":"19:51:00","height":"4.387"}]},{"date":"2018-01-16","groups":[{"time":"08:08:00","height":"4.619"},{"time":"20:25:00","height":"4.538"}]},{"date":"2018-01-17","groups":[{"time":"08:42:00","height":"4.764"},{"time":"20:58:00","height":"4.635"}]},{"date":"2018-01-18","groups":[{"time":"09:14:00","height":"4.849"},{"time":"21:29:00","height":"4.680"}]},{"date":"2018-01-19","groups":[{"time":"09:44:00","height":"4.877"},{"time":"21:59:00","height":"4.676"}]},{"date":"2018-01-20","groups":[{"time":"10:16:00","height":"4.847"},{"time":"22:33:00","height":"4.616"}]},{"date":"2018-01-21","groups":[{"time":"10:53:00","height":"4.759"},{"time":"23:10:00","height":"4.500"}]},{"date":"2018-01-22","groups":[{"time":"11:32:00","height":"4.612"},{"time":"23:49:00","height":"4.329"}]},{"date":"2018-01-23","groups":[{"time":"12:14:00","height":"4.418"}]},{"date":"2018-01-24","groups":[{"time":"00:35:00","height":"4.120"},{"time":"13:05:00","height":"4.195"}]},{"date":"2018-01-25","groups":[{"time":"01:30:00","height":"3.903"},{"time":"14:07:00","height":"3.984"}]},{"date":"2018-01-26","groups":[{"time":"02:40:00","height":"3.741"},{"time":"15:23:00","height":"3.865"}]},{"date":"2018-01-27","groups":[{"time":"04:01:00","height":"3.745"},{"time":"16:38:00","height":"3.943"}]},{"date":"2018-01-28","groups":[{"time":"05:14:00","height":"3.987"},{"time":"17:48:00","height":"4.225"}]},{"date":"2018-01-29","groups":[{"time":"06:19:00","height":"4.395"},{"time":"18:49:00","height":"4.613"}]},{"date":"2018-01-30","groups":[{"time":"07:15:00","height":"4.846"},{"time":"19:44:00","height":"4.993"}]},{"date":"2018-01-31","groups":[{"time":"08:06:00","height":"5.242"},{"time":"20:33:00","height":"5.283"}]},{"date":"2018-02-01","groups":[{"time":"08:53:00","height":"5.517"},{"time":"21:18:00","height":"5.434"}]},{"date":"2018-02-02","groups":[{"time":"09:38:00","height":"5.632"},{"time":"22:00:00","height":"5.426"}]},{"date":"2018-02-03","groups":[{"time":"10:20:00","height":"5.573"},{"time":"22:45:00","height":"5.260"}]},{"date":"2018-02-04","groups":[{"time":"11:06:00","height":"5.351"},{"time":"23:30:00","height":"4.964"}]},{"date":"2018-02-05","groups":[{"time":"11:50:00","height":"4.998"}]},{"date":"2018-02-06","groups":[{"time":"00:13:00","height":"4.580"},{"time":"12:34:00","height":"4.565"}]},{"date":"2018-02-07","groups":[{"time":"00:59:00","height":"4.158"},{"time":"13:21:00","height":"4.106"}]},{"date":"2018-02-08","groups":[{"time":"01:51:00","height":"3.751"},{"time":"14:18:00","height":"3.679"}]},{"date":"2018-02-09","groups":[{"time":"02:57:00","height":"3.430"},{"time":"15:33:00","height":"3.379"}]},{"date":"2018-02-10","groups":[{"time":"04:17:00","height":"3.318"},{"time":"16:52:00","height":"3.336"}]},{"date":"2018-02-11","groups":[{"time":"05:30:00","height":"3.485"},{"time":"18:00:00","height":"3.549"}]},{"date":"2018-02-12","groups":[{"time":"06:28:00","height":"3.819"},{"time":"18:52:00","height":"3.871"}]},{"date":"2018-02-13","groups":[{"time":"07:13:00","height":"4.176"},{"time":"19:32:00","height":"4.186"}]},{"date":"2018-02-14","groups":[{"time":"07:50:00","height":"4.485"},{"time":"20:07:00","height":"4.446"}]},{"date":"2018-02-15","groups":[{"time":"08:24:00","height":"4.723"},{"time":"20:40:00","height":"4.645"}]},{"date":"2018-02-16","groups":[{"time":"08:55:00","height":"4.894"},{"time":"21:10:00","height":"4.786"}]},{"date":"2018-02-17","groups":[{"time":"09:26:00","height":"5.003"},{"time":"21:40:00","height":"4.868"}]},{"date":"2018-02-18","groups":[{"time":"09:57:00","height":"5.047"},{"time":"22:12:00","height":"4.880"}]},{"date":"2018-02-19","groups":[{"time":"10:31:00","height":"5.012"},{"time":"22:47:00","height":"4.806"}]},{"date":"2018-02-20","groups":[{"time":"11:09:00","height":"4.889"},{"time":"23:25:00","height":"4.645"}]},{"date":"2018-02-21","groups":[{"time":"11:49:00","height":"4.677"}]},{"date":"2018-02-22","groups":[{"time":"00:08:00","height":"4.404"},{"time":"12:35:00","height":"4.387"}]},{"date":"2018-02-23","groups":[{"time":"00:57:00","height":"4.104"},{"time":"13:33:00","height":"4.052"}]},{"date":"2018-02-24","groups":[{"time":"02:04:00","height":"3.800"},{"time":"14:49:00","height":"3.763"}]},{"date":"2018-02-25","groups":[{"time":"03:31:00","height":"3.635"},{"time":"16:17:00","height":"3.700"}]},{"date":"2018-02-26","groups":[{"time":"04:55:00","height":"3.784"},{"time":"17:36:00","height":"3.959"}]},{"date":"2018-02-27","groups":[{"time":"06:08:00","height":"4.208"},{"time":"18:42:00","height":"4.405"}]},{"date":"2018-02-28","groups":[{"time":"07:07:00","height":"4.718"},{"time":"19:35:00","height":"4.859"}]},{"date":"2018-03-01","groups":[{"time":"07:56:00","height":"5.163"},{"time":"20:20:00","height":"5.207"}]},{"date":"2018-03-02","groups":[{"time":"08:40:00","height":"5.465"},{"time":"21:03:00","height":"5.402"}]},{"date":"2018-03-03","groups":[{"time":"09:21:00","height":"5.592"},{"time":"21:41:00","height":"5.432"}]},{"date":"2018-03-04","groups":[{"time":"09:58:00","height":"5.542"},{"time":"22:18:00","height":"5.303"}]},{"date":"2018-03-05","groups":[{"time":"10:38:00","height":"5.331"},{"time":"22:58:00","height":"5.042"}]},{"date":"2018-03-06","groups":[{"time":"11:17:00","height":"4.993"},{"time":"23:36:00","height":"4.684"}]},{"date":"2018-03-07","groups":[{"time":"11:55:00","height":"4.572"}]},{"date":"2018-03-08","groups":[{"time":"00:15:00","height":"4.272"},{"time":"12:35:00","height":"4.110"}]},{"date":"2018-03-09","groups":[{"time":"00:57:00","height":"3.842"},{"time":"13:21:00","height":"3.647"}]},{"date":"2018-03-10","groups":[{"time":"01:53:00","height":"3.438"},{"time":"14:25:00","height":"3.242"}]},{"date":"2018-03-11","groups":[{"time":"03:15:00","height":"3.164"},{"time":"16:02:00","height":"3.055"}]},{"date":"2018-03-12","groups":[{"time":"04:50:00","height":"3.225"},{"time":"17:28:00","height":"3.246"}]},{"date":"2018-03-13","groups":[{"time":"05:58:00","height":"3.570"},{"time":"18:26:00","height":"3.632"}]},{"date":"2018-03-14","groups":[{"time":"06:46:00","height":"3.990"},{"time":"19:08:00","height":"4.035"}]},{"date":"2018-03-15","groups":[{"time":"07:24:00","height":"4.375"},{"time":"19:43:00","height":"4.390"}]},{"date":"2018-03-16","groups":[{"time":"07:58:00","height":"4.692"},{"time":"20:15:00","height":"4.680"}]},{"date":"2018-03-17","groups":[{"time":"08:31:00","height":"4.939"},{"time":"20:47:00","height":"4.904"}]},{"date":"2018-03-18","groups":[{"time":"09:03:00","height":"5.116"},{"time":"21:18:00","height":"5.056"}]},{"date":"2018-03-19","groups":[{"time":"09:35:00","height":"5.212"},{"time":"21:49:00","height":"5.115"}]},{"date":"2018-03-20","groups":[{"time":"10:07:00","height":"5.206"},{"time":"22:24:00","height":"5.062"}]},{"date":"2018-03-21","groups":[{"time":"10:45:00","height":"5.079"},{"time":"23:03:00","height":"4.888"}]},{"date":"2018-03-22","groups":[{"time":"11:28:00","height":"4.829"},{"time":"23:46:00","height":"4.606"}]},{"date":"2018-03-23","groups":[{"time":"12:14:00","height":"4.471"}]},{"date":"2018-03-24","groups":[{"time":"00:36:00","height":"4.242"},{"time":"13:13:00","height":"4.051"}]},{"date":"2018-03-25","groups":[{"time":"02:42:00","height":"3.864"},{"time":"14:32:00","height":"3.686"}]},{"date":"2018-03-26","groups":[{"time":"04:13:00","height":"3.634"},{"time":"17:05:00","height":"3.590"}]},{"date":"2018-03-27","groups":[{"time":"05:43:00","height":"3.759"},{"time":"18:26:00","height":"3.866"}]},{"date":"2018-03-28","groups":[{"time":"06:57:00","height":"4.184"},{"time":"19:30:00","height":"4.332"}]},{"date":"2018-03-29","groups":[{"time":"07:54:00","height":"4.674"},{"time":"20:20:00","height":"4.780"}]},{"date":"2018-03-30","groups":[{"time":"08:40:00","height":"5.075"},{"time":"21:03:00","height":"5.108"}]},{"date":"2018-03-31","groups":[{"time":"09:22:00","height":"5.325"},{"time":"21:42:00","height":"5.288"}]},{"date":"2018-04-01","groups":[{"time":"10:00:00","height":"5.415"},{"time":"22:18:00","height":"5.323"}]},{"date":"2018-04-02","groups":[{"time":"10:35:00","height":"5.357"},{"time":"22:52:00","height":"5.226"}]},{"date":"2018-04-03","groups":[{"time":"11:08:00","height":"5.172"},{"time":"23:26:00","height":"5.017"}]},{"date":"2018-04-04","groups":[{"time":"11:44:00","height":"4.884"}]},{"date":"2018-04-05","groups":[{"time":"00:02:00","height":"4.719"},{"time":"12:19:00","height":"4.522"}]},{"date":"2018-04-06","groups":[{"time":"00:37:00","height":"4.362"},{"time":"12:56:00","height":"4.116"}]},{"date":"2018-04-07","groups":[{"time":"01:16:00","height":"3.971"},{"time":"13:38:00","height":"3.689"}]},{"date":"2018-04-08","groups":[{"time":"02:05:00","height":"3.576"},{"time":"14:33:00","height":"3.284"}]},{"date":"2018-04-09","groups":[{"time":"03:13:00","height":"3.246"},{"time":"15:59:00","height":"3.011"}]},{"date":"2018-04-10","groups":[{"time":"04:55:00","height":"3.159"},{"time":"17:41:00","height":"3.091"}]},{"date":"2018-04-11","groups":[{"time":"06:15:00","height":"3.425"},{"time":"18:47:00","height":"3.461"}]},{"date":"2018-04-12","groups":[{"time":"07:08:00","height":"3.838"},{"time":"19:32:00","height":"3.901"}]},{"date":"2018-04-13","groups":[{"time":"07:49:00","height":"4.259"},{"time":"20:10:00","height":"4.321"}]},{"date":"2018-04-14","groups":[{"time":"08:25:00","height":"4.634"},{"time":"20:44:00","height":"4.686"}]},{"date":"2018-04-15","groups":[{"time":"09:00:00","height":"4.944"},{"time":"21:18:00","height":"4.979"}]},{"date":"2018-04-16","groups":[{"time":"09:35:00","height":"5.175"},{"time":"21:52:00","height":"5.182"}]},{"date":"2018-04-17","groups":[{"time":"10:10:00","height":"5.304"},{"time":"22:27:00","height":"5.271"}]},{"date":"2018-04-18","groups":[{"time":"10:46:00","height":"5.308"},{"time":"23:03:00","height":"5.227"}]},{"date":"2018-04-19","groups":[{"time":"11:26:00","height":"5.168"},{"time":"23:44:00","height":"5.046"}]},{"date":"2018-04-20","groups":[{"time":"12:12:00","height":"4.888"}]},{"date":"2018-04-21","groups":[{"time":"00:32:00","height":"4.745"},{"time":"13:03:00","height":"4.498"}]},{"date":"2018-04-22","groups":[{"time":"01:26:00","height":"4.366"},{"time":"14:05:00","height":"4.068"}]},{"date":"2018-04-23","groups":[{"time":"02:35:00","height":"3.996"},{"time":"15:23:00","height":"3.727"}]},{"date":"2018-04-24","groups":[{"time":"04:02:00","height":"3.788"},{"time":"16:53:00","height":"3.652"}]},{"date":"2018-04-25","groups":[{"time":"05:28:00","height":"3.887"},{"time":"18:09:00","height":"3.894"}]},{"date":"2018-04-26","groups":[{"time":"06:38:00","height":"4.222"},{"time":"19:11:00","height":"4.285"}]},{"date":"2018-04-27","groups":[{"time":"07:33:00","height":"4.598"},{"time":"20:00:00","height":"4.652"}]},{"date":"2018-04-28","groups":[{"time":"08:19:00","height":"4.891"},{"time":"20:41:00","height":"4.917"}]},{"date":"2018-04-29","groups":[{"time":"08:59:00","height":"5.059"},{"time":"21:19:00","height":"5.064"}]},{"date":"2018-04-30","groups":[{"time":"09:36:00","height":"5.111"},{"time":"21:53:00","height":"5.104"}]},{"date":"2018-05-01","groups":[{"time":"10:10:00","height":"5.063"},{"time":"22:26:00","height":"5.050"}]},{"date":"2018-05-02","groups":[{"time":"10:42:00","height":"4.929"},{"time":"22:57:00","height":"4.910"}]},{"date":"2018-05-03","groups":[{"time":"11:14:00","height":"4.720"},{"time":"23:31:00","height":"4.696"}]},{"date":"2018-05-04","groups":[{"time":"11:49:00","height":"4.449"}]},{"date":"2018-05-05","groups":[{"time":"00:07:00","height":"4.422"},{"time":"12:25:00","height":"4.131"}]},{"date":"2018-05-06","groups":[{"time":"00:46:00","height":"4.108"},{"time":"13:07:00","height":"3.785"}]},{"date":"2018-05-07","groups":[{"time":"01:31:00","height":"3.778"},{"time":"13:56:00","height":"3.445"}]},{"date":"2018-05-08","groups":[{"time":"02:30:00","height":"3.480"},{"time":"15:05:00","height":"3.183"}]},{"date":"2018-05-09","groups":[{"time":"03:49:00","height":"3.319"},{"time":"16:36:00","height":"3.135"}]},{"date":"2018-05-10","groups":[{"time":"05:16:00","height":"3.420"},{"time":"17:53:00","height":"3.381"}]},{"date":"2018-05-11","groups":[{"time":"06:18:00","height":"3.741"},{"time":"18:46:00","height":"3.786"}]},{"date":"2018-05-12","groups":[{"time":"07:06:00","height":"4.143"},{"time":"19:29:00","height":"4.224"}]},{"date":"2018-05-13","groups":[{"time":"07:47:00","height":"4.541"},{"time":"20:09:00","height":"4.633"}]},{"date":"2018-05-14","groups":[{"time":"08:28:00","height":"4.889"},{"time":"20:47:00","height":"4.972"}]},{"date":"2018-05-15","groups":[{"time":"09:07:00","height":"5.152"},{"time":"21:26:00","height":"5.212"}]},{"date":"2018-05-16","groups":[{"time":"09:48:00","height":"5.303"},{"time":"22:06:00","height":"5.329"}]},{"date":"2018-05-17","groups":[{"time":"10:29:00","height":"5.318"},{"time":"22:47:00","height":"5.309"}]},{"date":"2018-05-18","groups":[{"time":"11:12:00","height":"5.188"},{"time":"23:32:00","height":"5.155"}]},{"date":"2018-05-19","groups":[{"time":"12:03:00","height":"4.925"}]},{"date":"2018-05-20","groups":[{"time":"00:24:00","height":"4.888"},{"time":"12:58:00","height":"4.570"}]},{"date":"2018-05-21","groups":[{"time":"01:23:00","height":"4.556"},{"time":"14:00:00","height":"4.196"}]},{"date":"2018-05-22","groups":[{"time":"02:29:00","height":"4.239"},{"time":"15:12:00","height":"3.902"}]},{"date":"2018-05-23","groups":[{"time":"03:46:00","height":"4.036"},{"time":"16:32:00","height":"3.795"}]},{"date":"2018-05-24","groups":[{"time":"05:04:00","height":"4.027"},{"time":"17:42:00","height":"3.909"}]},{"date":"2018-05-25","groups":[{"time":"06:09:00","height":"4.185"},{"time":"18:42:00","height":"4.156"}]},{"date":"2018-05-26","groups":[{"time":"07:06:00","height":"4.400"},{"time":"19:33:00","height":"4.419"}]},{"date":"2018-05-27","groups":[{"time":"07:53:00","height":"4.584"},{"time":"20:16:00","height":"4.629"}]},{"date":"2018-05-28","groups":[{"time":"08:35:00","height":"4.701"},{"time":"20:55:00","height":"4.766"}]},{"date":"2018-05-29","groups":[{"time":"09:12:00","height":"4.752"},{"time":"21:30:00","height":"4.834"}]},{"date":"2018-05-30","groups":[{"time":"09:47:00","height":"4.746"},{"time":"22:04:00","height":"4.837"}]},{"date":"2018-05-31","groups":[{"time":"10:20:00","height":"4.685"},{"time":"22:36:00","height":"4.777"}]},{"date":"2018-06-01","groups":[{"time":"10:52:00","height":"4.568"},{"time":"23:07:00","height":"4.656"}]},{"date":"2018-06-02","groups":[{"time":"11:25:00","height":"4.400"},{"time":"23:43:00","height":"4.481"}]},{"date":"2018-06-03","groups":[{"time":"12:02:00","height":"4.187"}]},{"date":"2018-06-04","groups":[{"time":"00:22:00","height":"4.263"},{"time":"12:42:00","height":"3.943"}]},{"date":"2018-06-05","groups":[{"time":"01:05:00","height":"4.020"},{"time":"13:28:00","height":"3.691"}]},{"date":"2018-06-06","groups":[{"time":"01:56:00","height":"3.783"},{"time":"14:23:00","height":"3.475"}]},{"date":"2018-06-07","groups":[{"time":"02:58:00","height":"3.610"},{"time":"15:33:00","height":"3.366"}]},{"date":"2018-06-08","groups":[{"time":"04:12:00","height":"3.579"},{"time":"16:49:00","height":"3.445"}]},{"date":"2018-06-09","groups":[{"time":"05:21:00","height":"3.736"},{"time":"17:53:00","height":"3.719"}]},{"date":"2018-06-10","groups":[{"time":"06:18:00","height":"4.041"},{"time":"18:46:00","height":"4.105"}]},{"date":"2018-06-11","groups":[{"time":"07:10:00","height":"4.406"},{"time":"19:34:00","height":"4.512"}]},{"date":"2018-06-12","groups":[{"time":"07:57:00","height":"4.756"},{"time":"20:20:00","height":"4.874"}]},{"date":"2018-06-13","groups":[{"time":"08:43:00","height":"5.040"},{"time":"21:04:00","height":"5.153"}]},{"date":"2018-06-14","groups":[{"time":"09:30:00","height":"5.222"},{"time":"21:50:00","height":"5.321"}]},{"date":"2018-06-15","groups":[{"time":"10:16:00","height":"5.282"},{"time":"22:36:00","height":"5.365"}]},{"date":"2018-06-16","groups":[{"time":"11:02:00","height":"5.211"},{"time":"23:24:00","height":"5.283"}]},{"date":"2018-06-17","groups":[{"time":"11:54:00","height":"5.019"}]},{"date":"2018-06-18","groups":[{"time":"00:17:00","height":"5.089"},{"time":"12:49:00","height":"4.736"}]},{"date":"2018-06-19","groups":[{"time":"01:13:00","height":"4.815"},{"time":"13:47:00","height":"4.410"}]},{"date":"2018-06-20","groups":[{"time":"02:14:00","height":"4.510"},{"time":"14:49:00","height":"4.107"}]},{"date":"2018-06-21","groups":[{"time":"03:20:00","height":"4.236"},{"time":"15:59:00","height":"3.896"}]},{"date":"2018-06-22","groups":[{"time":"04:30:00","height":"4.056"},{"time":"17:06:00","height":"3.834"}]},{"date":"2018-06-23","groups":[{"time":"05:35:00","height":"4.009"},{"time":"18:09:00","height":"3.921"}]},{"date":"2018-06-24","groups":[{"time":"06:34:00","height":"4.073"},{"time":"19:04:00","height":"4.097"}]},{"date":"2018-06-25","groups":[{"time":"07:27:00","height":"4.195"},{"time":"19:52:00","height":"4.295"}]},{"date":"2018-06-26","groups":[{"time":"08:12:00","height":"4.322"},{"time":"20:33:00","height":"4.468"}]},{"date":"2018-06-27","groups":[{"time":"08:52:00","height":"4.426"},{"time":"21:10:00","height":"4.597"}]},{"date":"2018-06-28","groups":[{"time":"09:29:00","height":"4.494"},{"time":"21:46:00","height":"4.674"}]},{"date":"2018-06-29","groups":[{"time":"10:03:00","height":"4.517"},{"time":"22:19:00","height":"4.695"}]},{"date":"2018-06-30","groups":[{"time":"10:35:00","height":"4.496"},{"time":"22:50:00","height":"4.665"}]},{"date":"2018-07-01","groups":[{"time":"11:06:00","height":"4.429"},{"time":"23:24:00","height":"4.585"}]},{"date":"2018-07-02","groups":[{"time":"11:42:00","height":"4.318"}]},{"date":"2018-07-03","groups":[{"time":"00:02:00","height":"4.457"},{"time":"12:19:00","height":"4.168"}]},{"date":"2018-07-04","groups":[{"time":"00:41:00","height":"4.290"},{"time":"13:00:00","height":"3.989"}]},{"date":"2018-07-05","groups":[{"time":"01:25:00","height":"4.101"},{"time":"13:47:00","height":"3.805"}]},{"date":"2018-07-06","groups":[{"time":"02:16:00","height":"3.921"},{"time":"14:43:00","height":"3.655"}]},{"date":"2018-07-07","groups":[{"time":"03:18:00","height":"3.796"},{"time":"15:50:00","height":"3.596"}]},{"date":"2018-07-08","groups":[{"time":"04:28:00","height":"3.785"},{"time":"17:02:00","height":"3.694"}]},{"date":"2018-07-09","groups":[{"time":"05:35:00","height":"3.933"},{"time":"18:07:00","height":"3.963"}]},{"date":"2018-07-10","groups":[{"time":"06:37:00","height":"4.217"},{"time":"19:05:00","height":"4.337"}]},{"date":"2018-07-11","groups":[{"time":"07:33:00","height":"4.558"},{"time":"19:59:00","height":"4.729"}]},{"date":"2018-07-12","groups":[{"time":"08:26:00","height":"4.883"},{"time":"20:49:00","height":"5.075"}]},{"date":"2018-07-13","groups":[{"time":"09:17:00","height":"5.138"},{"time":"21:38:00","height":"5.331"}]},{"date":"2018-07-14","groups":[{"time":"10:06:00","height":"5.286"},{"time":"22:25:00","height":"5.467"}]},{"date":"2018-07-15","groups":[{"time":"10:52:00","height":"5.304"},{"time":"23:12:00","height":"5.465"}]},{"date":"2018-07-16","groups":[{"time":"11:41:00","height":"5.187"}]},{"date":"2018-07-17","groups":[{"time":"00:04:00","height":"5.322"},{"time":"12:33:00","height":"4.948"}]},{"date":"2018-07-18","groups":[{"time":"00:55:00","height":"5.055"},{"time":"13:24:00","height":"4.623"}]},{"date":"2018-07-19","groups":[{"time":"01:48:00","height":"4.702"},{"time":"14:17:00","height":"4.263"}]},{"date":"2018-07-20","groups":[{"time":"02:43:00","height":"4.317"},{"time":"15:17:00","height":"3.930"}]},{"date":"2018-07-21","groups":[{"time":"03:46:00","height":"3.969"},{"time":"16:25:00","height":"3.698"}]},{"date":"2018-07-22","groups":[{"time":"04:54:00","height":"3.741"},{"time":"17:31:00","height":"3.641"}]},{"date":"2018-07-23","groups":[{"time":"06:00:00","height":"3.695"},{"time":"18:35:00","height":"3.767"}]},{"date":"2018-07-24","groups":[{"time":"07:01:00","height":"3.813"},{"time":"19:29:00","height":"4.005"}]},{"date":"2018-07-25","groups":[{"time":"07:53:00","height":"4.014"},{"time":"20:15:00","height":"4.262"}]},{"date":"2018-07-26","groups":[{"time":"08:35:00","height":"4.219"},{"time":"20:54:00","height":"4.481"}]},{"date":"2018-07-27","groups":[{"time":"09:12:00","height":"4.386"},{"time":"21:29:00","height":"4.640"}]},{"date":"2018-07-28","groups":[{"time":"09:46:00","height":"4.500"},{"time":"22:02:00","height":"4.739"}]},{"date":"2018-07-29","groups":[{"time":"10:18:00","height":"4.561"},{"time":"22:33:00","height":"4.780"}]},{"date":"2018-07-30","groups":[{"time":"10:48:00","height":"4.576"},{"time":"23:03:00","height":"4.770"}]},{"date":"2018-07-31","groups":[{"time":"11:19:00","height":"4.542"},{"time":"23:38:00","height":"4.705"}]},{"date":"2018-08-01","groups":[{"time":"11:54:00","height":"4.455"}]},{"date":"2018-08-02","groups":[{"time":"00:15:00","height":"4.582"},{"time":"12:32:00","height":"4.315"}]},{"date":"2018-08-03","groups":[{"time":"00:54:00","height":"4.408"},{"time":"13:12:00","height":"4.133"}]},{"date":"2018-08-04","groups":[{"time":"01:38:00","height":"4.198"},{"time":"14:01:00","height":"3.930"}]},{"date":"2018-08-05","groups":[{"time":"02:32:00","height":"3.981"},{"time":"15:02:00","height":"3.747"}]},{"date":"2018-08-06","groups":[{"time":"03:41:00","height":"3.811"},{"time":"16:19:00","height":"3.672"}]},{"date":"2018-08-07","groups":[{"time":"05:00:00","height":"3.794"},{"time":"17:37:00","height":"3.815"}]},{"date":"2018-08-08","groups":[{"time":"06:13:00","height":"4.000"},{"time":"18:45:00","height":"4.171"}]},{"date":"2018-08-09","groups":[{"time":"07:18:00","height":"4.367"},{"time":"19:45:00","height":"4.626"}]},{"date":"2018-08-10","groups":[{"time":"08:15:00","height":"4.776"},{"time":"20:39:00","height":"5.065"}]},{"date":"2018-08-11","groups":[{"time":"09:06:00","height":"5.127"},{"time":"21:27:00","height":"5.408"}]},{"date":"2018-08-12","groups":[{"time":"09:53:00","height":"5.359"},{"time":"22:13:00","height":"5.608"}]},{"date":"2018-08-13","groups":[{"time":"10:38:00","height":"5.439"},{"time":"22:56:00","height":"5.636"}]},{"date":"2018-08-14","groups":[{"time":"11:21:00","height":"5.355"},{"time":"23:42:00","height":"5.489"}]},{"date":"2018-08-15","groups":[{"time":"12:07:00","height":"5.122"}]},{"date":"2018-08-16","groups":[{"time":"00:29:00","height":"5.186"},{"time":"12:52:00","height":"4.773"}]},{"date":"2018-08-17","groups":[{"time":"01:14:00","height":"4.770"},{"time":"13:39:00","height":"4.360"}]},{"date":"2018-08-18","groups":[{"time":"02:02:00","height":"4.299"},{"time":"14:29:00","height":"3.938"}]},{"date":"2018-08-19","groups":[{"time":"02:56:00","height":"3.839"},{"time":"15:32:00","height":"3.579"}]},{"date":"2018-08-20","groups":[{"time":"04:05:00","height":"3.477"},{"time":"16:50:00","height":"3.396"}]},{"date":"2018-08-21","groups":[{"time":"05:25:00","height":"3.346"},{"time":"18:07:00","height":"3.492"}]},{"date":"2018-08-22","groups":[{"time":"06:39:00","height":"3.500"},{"time":"19:10:00","height":"3.796"}]},{"date":"2018-08-23","groups":[{"time":"07:35:00","height":"3.808"},{"time":"19:57:00","height":"4.152"}]},{"date":"2018-08-24","groups":[{"time":"08:18:00","height":"4.127"},{"time":"20:35:00","height":"4.464"}]},{"date":"2018-08-25","groups":[{"time":"08:54:00","height":"4.391"},{"time":"21:09:00","height":"4.700"}]},{"date":"2018-08-26","groups":[{"time":"09:26:00","height":"4.587"},{"time":"21:41:00","height":"4.860"}]},{"date":"2018-08-27","groups":[{"time":"09:57:00","height":"4.719"},{"time":"22:11:00","height":"4.956"}]},{"date":"2018-08-28","groups":[{"time":"10:26:00","height":"4.795"},{"time":"22:41:00","height":"4.991"}]},{"date":"2018-08-29","groups":[{"time":"10:55:00","height":"4.812"},{"time":"23:12:00","height":"4.960"}]},{"date":"2018-08-30","groups":[{"time":"11:27:00","height":"4.758"},{"time":"23:46:00","height":"4.852"}]},{"date":"2018-08-31","groups":[{"time":"12:03:00","height":"4.626"}]},{"date":"2018-09-01","groups":[{"time":"00:24:00","height":"4.663"},{"time":"12:42:00","height":"4.418"}]},{"date":"2018-09-02","groups":[{"time":"01:07:00","height":"4.401"},{"time":"13:27:00","height":"4.151"}]},{"date":"2018-09-03","groups":[{"time":"01:59:00","height":"4.087"},{"time":"14:26:00","height":"3.860"}]},{"date":"2018-09-04","groups":[{"time":"03:07:00","height":"3.783"},{"time":"15:47:00","height":"3.651"}]},{"date":"2018-09-05","groups":[{"time":"04:37:00","height":"3.647"},{"time":"17:18:00","height":"3.718"}]},{"date":"2018-09-06","groups":[{"time":"06:01:00","height":"3.839"},{"time":"18:35:00","height":"4.105"}]},{"date":"2018-09-07","groups":[{"time":"07:11:00","height":"4.277"},{"time":"19:37:00","height":"4.632"}]},{"date":"2018-09-08","groups":[{"time":"08:07:00","height":"4.768"},{"time":"20:29:00","height":"5.128"}]},{"date":"2018-09-09","groups":[{"time":"08:55:00","height":"5.176"},{"time":"21:14:00","height":"5.494"}]},{"date":"2018-09-10","groups":[{"time":"09:38:00","height":"5.436"},{"time":"21:57:00","height":"5.686"}]},{"date":"2018-09-11","groups":[{"time":"10:19:00","height":"5.525"},{"time":"22:37:00","height":"5.690"}]},{"date":"2018-09-12","groups":[{"time":"10:57:00","height":"5.444"},{"time":"23:15:00","height":"5.513"}]},{"date":"2018-09-13","groups":[{"time":"11:38:00","height":"5.210"},{"time":"23:57:00","height":"5.183"}]},{"date":"2018-09-14","groups":[{"time":"12:18:00","height":"4.858"}]},{"date":"2018-09-15","groups":[{"time":"00:37:00","height":"4.747"},{"time":"12:59:00","height":"4.434"}]},{"date":"2018-09-16","groups":[{"time":"01:18:00","height":"4.256"},{"time":"13:42:00","height":"3.987"}]},{"date":"2018-09-17","groups":[{"time":"02:05:00","height":"3.764"},{"time":"14:36:00","height":"3.569"}]},{"date":"2018-09-18","groups":[{"time":"03:08:00","height":"3.334"},{"time":"15:58:00","height":"3.280"}]},{"date":"2018-09-19","groups":[{"time":"04:45:00","height":"3.118"},{"time":"17:34:00","height":"3.318"}]},{"date":"2018-09-20","groups":[{"time":"06:12:00","height":"3.287"},{"time":"18:43:00","height":"3.656"}]},{"date":"2018-09-21","groups":[{"time":"07:12:00","height":"3.670"},{"time":"19:32:00","height":"4.076"}]},{"date":"2018-09-22","groups":[{"time":"07:55:00","height":"4.073"},{"time":"20:11:00","height":"4.456"}]},{"date":"2018-09-23","groups":[{"time":"08:30:00","height":"4.419"},{"time":"20:44:00","height":"4.755"}]},{"date":"2018-09-24","groups":[{"time":"09:01:00","height":"4.689"},{"time":"21:15:00","height":"4.972"}]},{"date":"2018-09-25","groups":[{"time":"09:31:00","height":"4.888"},{"time":"21:46:00","height":"5.117"}]},{"date":"2018-09-26","groups":[{"time":"10:01:00","height":"5.019"},{"time":"22:16:00","height":"5.190"}]},{"date":"2018-09-27","groups":[{"time":"10:30:00","height":"5.073"},{"time":"22:47:00","height":"5.178"}]},{"date":"2018-09-28","groups":[{"time":"11:01:00","height":"5.035"},{"time":"23:20:00","height":"5.066"}]},{"date":"2018-09-29","groups":[{"time":"11:37:00","height":"4.893"},{"time":"23:59:00","height":"4.844"}]},{"date":"2018-09-30","groups":[{"time":"12:17:00","height":"4.649"}]},{"date":"2018-10-01","groups":[{"time":"00:44:00","height":"4.522"},{"time":"13:03:00","height":"4.322"}]},{"date":"2018-10-02","groups":[{"time":"01:37:00","height":"4.130"},{"time":"14:04:00","height":"3.961"}]},{"date":"2018-10-03","groups":[{"time":"02:49:00","height":"3.753"},{"time":"15:30:00","height":"3.698"}]},{"date":"2018-10-04","groups":[{"time":"04:26:00","height":"3.595"},{"time":"17:07:00","height":"3.762"}]},{"date":"2018-10-05","groups":[{"time":"05:53:00","height":"3.824"},{"time":"18:25:00","height":"4.173"}]},{"date":"2018-10-06","groups":[{"time":"07:01:00","height":"4.301"},{"time":"19:26:00","height":"4.700"}]},{"date":"2018-10-07","groups":[{"time":"07:54:00","height":"4.796"},{"time":"20:15:00","height":"5.161"}]},{"date":"2018-10-08","groups":[{"time":"08:39:00","height":"5.183"},{"time":"20:57:00","height":"5.470"}]},{"date":"2018-10-09","groups":[{"time":"09:19:00","height":"5.415"},{"time":"21:37:00","height":"5.604"}]},{"date":"2018-10-10","groups":[{"time":"09:57:00","height":"5.487"},{"time":"22:14:00","height":"5.570"}]},{"date":"2018-10-11","groups":[{"time":"10:33:00","height":"5.411"},{"time":"22:50:00","height":"5.386"}]},{"date":"2018-10-12","groups":[{"time":"11:07:00","height":"5.203"},{"time":"23:25:00","height":"5.079"}]},{"date":"2018-10-13","groups":[{"time":"11:44:00","height":"4.892"}]},{"date":"2018-10-14","groups":[{"time":"00:03:00","height":"4.684"},{"time":"12:22:00","height":"4.512"}]},{"date":"2018-10-15","groups":[{"time":"00:41:00","height":"4.242"},{"time":"13:02:00","height":"4.099"}]},{"date":"2018-10-16","groups":[{"time":"01:24:00","height":"3.788"},{"time":"13:52:00","height":"3.692"}]},{"date":"2018-10-17","groups":[{"time":"02:19:00","height":"3.367"},{"time":"15:01:00","height":"3.359"}]},{"date":"2018-10-18","groups":[{"time":"03:45:00","height":"3.084"},{"time":"16:46:00","height":"3.277"}]},{"date":"2018-10-19","groups":[{"time":"05:31:00","height":"3.167"},{"time":"18:05:00","height":"3.547"}]},{"date":"2018-10-20","groups":[{"time":"06:37:00","height":"3.536"},{"time":"18:57:00","height":"3.956"}]},{"date":"2018-10-21","groups":[{"time":"07:21:00","height":"3.968"},{"time":"19:37:00","height":"4.363"}]},{"date":"2018-10-22","groups":[{"time":"07:58:00","height":"4.370"},{"time":"20:13:00","height":"4.713"}]},{"date":"2018-10-23","groups":[{"time":"08:31:00","height":"4.711"},{"time":"20:46:00","height":"4.990"}]},{"date":"2018-10-24","groups":[{"time":"09:02:00","height":"4.980"},{"time":"21:18:00","height":"5.191"}]},{"date":"2018-10-25","groups":[{"time":"09:35:00","height":"5.169"},{"time":"21:51:00","height":"5.304"}]},{"date":"2018-10-26","groups":[{"time":"10:06:00","height":"5.262"},{"time":"22:25:00","height":"5.313"}]},{"date":"2018-10-27","groups":[{"time":"10:40:00","height":"5.241"},{"time":"23:00:00","height":"5.198"}]},{"date":"2018-10-28","groups":[{"time":"11:17:00","height":"5.096"},{"time":"23:43:00","height":"4.956"}]},{"date":"2018-10-29","groups":[{"time":"11:02:00","height":"4.836"},{"time":"23:31:00","height":"4.604"}]},{"date":"2018-10-30","groups":[{"time":"11:54:00","height":"4.491"}]},{"date":"2018-10-31","groups":[{"time":"00:29:00","height":"4.193"},{"time":"12:59:00","height":"4.129"}]},{"date":"2018-11-01","groups":[{"time":"01:44:00","height":"3.834"},{"time":"14:23:00","height":"3.889"}]},{"date":"2018-11-02","groups":[{"time":"03:16:00","height":"3.702"},{"time":"15:54:00","height":"3.941"}]},{"date":"2018-11-03","groups":[{"time":"04:38:00","height":"3.905"},{"time":"17:09:00","height":"4.270"}]},{"date":"2018-11-04","groups":[{"time":"05:43:00","height":"4.309"},{"time":"18:07:00","height":"4.684"}]},{"date":"2018-11-05","groups":[{"time":"06:35:00","height":"4.722"},{"time":"18:55:00","height":"5.032"}]},{"date":"2018-11-06","groups":[{"time":"07:19:00","height":"5.041"},{"time":"19:37:00","height":"5.251"}]},{"date":"2018-11-07","groups":[{"time":"07:58:00","height":"5.232"},{"time":"20:16:00","height":"5.332"}]},{"date":"2018-11-08","groups":[{"time":"08:35:00","height":"5.299"},{"time":"20:52:00","height":"5.291"}]},{"date":"2018-11-09","groups":[{"time":"09:09:00","height":"5.254"},{"time":"21:26:00","height":"5.146"}]},{"date":"2018-11-10","groups":[{"time":"09:42:00","height":"5.109"},{"time":"21:59:00","height":"4.914"}]},{"date":"2018-11-11","groups":[{"time":"10:16:00","height":"4.879"},{"time":"22:34:00","height":"4.613"}]},{"date":"2018-11-12","groups":[{"time":"10:53:00","height":"4.586"},{"time":"23:11:00","height":"4.268"}]},{"date":"2018-11-13","groups":[{"time":"11:33:00","height":"4.254"},{"time":"23:52:00","height":"3.901"}]},{"date":"2018-11-14","groups":[{"time":"12:18:00","height":"3.910"}]},{"date":"2018-11-15","groups":[{"time":"00:42:00","height":"3.544"},{"time":"13:16:00","height":"3.599"}]},{"date":"2018-11-16","groups":[{"time":"01:49:00","height":"3.259"},{"time":"14:35:00","height":"3.413"}]},{"date":"2018-11-17","groups":[{"time":"03:22:00","height":"3.175"},{"time":"16:05:00","height":"3.484"}]},{"date":"2018-11-18","groups":[{"time":"04:42:00","height":"3.393"},{"time":"17:08:00","height":"3.778"}]},{"date":"2018-11-19","groups":[{"time":"05:36:00","height":"3.773"},{"time":"17:55:00","height":"4.153"}]},{"date":"2018-11-20","groups":[{"time":"06:18:00","height":"4.191"},{"time":"18:35:00","height":"4.528"}]},{"date":"2018-11-21","groups":[{"time":"06:56:00","height":"4.588"},{"time":"19:13:00","height":"4.861"}]},{"date":"2018-11-22","groups":[{"time":"07:31:00","height":"4.926"},{"time":"19:50:00","height":"5.122"}]},{"date":"2018-11-23","groups":[{"time":"08:08:00","height":"5.180"},{"time":"20:28:00","height":"5.288"}]},{"date":"2018-11-24","groups":[{"time":"08:47:00","height":"5.327"},{"time":"21:07:00","height":"5.337"}]},{"date":"2018-11-25","groups":[{"time":"09:25:00","height":"5.351"},{"time":"21:48:00","height":"5.255"}]},{"date":"2018-11-26","groups":[{"time":"10:06:00","height":"5.247"},{"time":"22:34:00","height":"5.043"}]},{"date":"2018-11-27","groups":[{"time":"10:55:00","height":"5.029"},{"time":"23:28:00","height":"4.731"}]},{"date":"2018-11-28","groups":[{"time":"11:50:00","height":"4.732"}]},{"date":"2018-11-29","groups":[{"time":"00:27:00","height":"4.372"},{"time":"12:54:00","height":"4.421"}]},{"date":"2018-11-30","groups":[{"time":"01:35:00","height":"4.056"},{"time":"14:09:00","height":"4.186"}]},{"date":"2018-12-01","groups":[{"time":"02:54:00","height":"3.888"},{"time":"15:30:00","height":"4.122"}]},{"date":"2018-12-02","groups":[{"time":"04:11:00","height":"3.944"},{"time":"16:40:00","height":"4.247"}]},{"date":"2018-12-03","groups":[{"time":"05:16:00","height":"4.176"},{"time":"17:41:00","height":"4.470"}]},{"date":"2018-12-04","groups":[{"time":"06:11:00","height":"4.464"},{"time":"18:32:00","height":"4.689"}]},{"date":"2018-12-05","groups":[{"time":"06:57:00","height":"4.718"},{"time":"19:16:00","height":"4.845"}]},{"date":"2018-12-06","groups":[{"time":"07:38:00","height":"4.898"},{"time":"19:57:00","height":"4.923"}]},{"date":"2018-12-07","groups":[{"time":"08:16:00","height":"4.997"},{"time":"20:34:00","height":"4.929"}]},{"date":"2018-12-08","groups":[{"time":"08:51:00","height":"5.018"},{"time":"21:08:00","height":"4.868"}]},{"date":"2018-12-09","groups":[{"time":"09:24:00","height":"4.964"},{"time":"21:41:00","height":"4.746"}]},{"date":"2018-12-10","groups":[{"time":"09:57:00","height":"4.841"},{"time":"22:14:00","height":"4.567"}]},{"date":"2018-12-11","groups":[{"time":"10:32:00","height":"4.660"},{"time":"22:51:00","height":"4.343"}]},{"date":"2018-12-12","groups":[{"time":"11:10:00","height":"4.434"},{"time":"23:30:00","height":"4.087"}]},{"date":"2018-12-13","groups":[{"time":"11:52:00","height":"4.179"}]},{"date":"2018-12-14","groups":[{"time":"00:13:00","height":"3.815"},{"time":"12:40:00","height":"3.917"}]},{"date":"2018-12-15","groups":[{"time":"01:04:00","height":"3.561"},{"time":"13:38:00","height":"3.694"}]},{"date":"2018-12-16","groups":[{"time":"02:08:00","height":"3.383"},{"time":"14:48:00","height":"3.578"}]},{"date":"2018-12-17","groups":[{"time":"03:26:00","height":"3.367"},{"time":"16:02:00","height":"3.646"}]},{"date":"2018-12-18","groups":[{"time":"04:36:00","height":"3.569"},{"time":"17:03:00","height":"3.893"}]},{"date":"2018-12-19","groups":[{"time":"05:31:00","height":"3.922"},{"time":"17:55:00","height":"4.236"}]},{"date":"2018-12-20","groups":[{"time":"06:19:00","height":"4.331"},{"time":"18:41:00","height":"4.598"}]},{"date":"2018-12-21","groups":[{"time":"07:04:00","height":"4.725"},{"time":"19:26:00","height":"4.921"}]},{"date":"2018-12-22","groups":[{"time":"07:47:00","height":"5.057"},{"time":"20:10:00","height":"5.163"}]},{"date":"2018-12-23","groups":[{"time":"08:31:00","height":"5.293"},{"time":"20:55:00","height":"5.298"}]},{"date":"2018-12-24","groups":[{"time":"09:15:00","height":"5.414"},{"time":"21:40:00","height":"5.308"}]},{"date":"2018-12-25","groups":[{"time":"09:59:00","height":"5.411"},{"time":"22:28:00","height":"5.190"}]},{"date":"2018-12-26","groups":[{"time":"10:51:00","height":"5.285"},{"time":"23:21:00","height":"4.960"}]},{"date":"2018-12-27","groups":[{"time":"11:45:00","height":"5.057"}]},{"date":"2018-12-28","groups":[{"time":"00:16:00","height":"4.655"},{"time":"12:41:00","height":"4.763"}]},{"date":"2018-12-29","groups":[{"time":"01:16:00","height":"4.328"},{"time":"13:44:00","height":"4.454"}]},{"date":"2018-12-30","groups":[{"time":"02:22:00","height":"4.048"},{"time":"14:53:00","height":"4.199"}]},{"date":"2018-12-31","groups":[{"time":"03:35:00","height":"3.891"},{"time":"16:04:00","height":"4.067"}]},{"date":"2019-03-01","groups":[{"time":"04:38:00","height":"3.339"},{"time":"17:18:00","height":"3.324"}]},{"date":"2019-03-02","groups":[{"time":"05:54:00","height":"3.592"},{"time":"18:25:00","height":"3.632"}]},{"date":"2019-03-03","groups":[{"time":"06:47:00","height":"3.974"},{"time":"19:11:00","height":"3.995"}]},{"date":"2019-03-04","groups":[{"time":"07:29:00","height":"4.331"},{"time":"19:48:00","height":"4.307"}]},{"date":"2019-03-05","groups":[{"time":"08:03:00","height":"4.607"},{"time":"20:20:00","height":"4.540"}]},{"date":"2019-03-06","groups":[{"time":"08:35:00","height":"4.798"},{"time":"20:50:00","height":"4.699"}]},{"date":"2019-03-07","groups":[{"time":"09:05:00","height":"4.914"},{"time":"21:19:00","height":"4.793"}]},{"date":"2019-03-08","groups":[{"time":"09:33:00","height":"4.967"},{"time":"21:46:00","height":"4.829"}]},{"date":"2019-03-09","groups":[{"time":"10:01:00","height":"4.955"},{"time":"22:14:00","height":"4.799"}]},{"date":"2019-03-10","groups":[{"time":"10:32:00","height":"4.869"},{"time":"22:46:00","height":"4.693"}]},{"date":"2019-03-11","groups":[{"time":"11:06:00","height":"4.703"},{"time":"23:20:00","height":"4.508"}]},{"date":"2019-03-12","groups":[{"time":"11:43:00","height":"4.461"},{"time":"23:58:00","height":"4.255"}]},{"date":"2019-03-13","groups":[{"time":"12:26:00","height":"4.152"}]},{"date":"2019-03-14","groups":[{"time":"00:46:00","height":"3.946"},{"time":"13:21:00","height":"3.802"}]},{"date":"2019-03-15","groups":[{"time":"01:52:00","height":"3.633"},{"time":"14:43:00","height":"3.515"}]},{"date":"2019-03-16","groups":[{"time":"03:27:00","height":"3.481"},{"time":"16:19:00","height":"3.516"}]},{"date":"2019-03-17","groups":[{"time":"04:57:00","height":"3.705"},{"time":"17:39:00","height":"3.887"}]},{"date":"2019-03-18","groups":[{"time":"06:08:00","height":"4.216"},{"time":"18:42:00","height":"4.426"}]},{"date":"2019-03-19","groups":[{"time":"07:04:00","height":"4.788"},{"time":"19:32:00","height":"4.942"}]},{"date":"2019-03-20","groups":[{"time":"07:52:00","height":"5.277"},{"time":"20:18:00","height":"5.335"}]},{"date":"2019-03-21","groups":[{"time":"08:36:00","height":"5.609"},{"time":"20:59:00","height":"5.558"}]},{"date":"2019-03-22","groups":[{"time":"09:18:00","height":"5.748"},{"time":"21:38:00","height":"5.598"}]},{"date":"2019-03-23","groups":[{"time":"09:57:00","height":"5.686"},{"time":"22:17:00","height":"5.456"}]},{"date":"2019-03-24","groups":[{"time":"10:38:00","height":"5.433"},{"time":"22:59:00","height":"5.156"}]},{"date":"2019-03-25","groups":[{"time":"11:20:00","height":"5.026"},{"time":"23:41:00","height":"4.740"}]},{"date":"2019-03-26","groups":[{"time":"12:02:00","height":"4.521"}]},{"date":"2019-03-27","groups":[{"time":"00:23:00","height":"4.261"},{"time":"12:47:00","height":"3.979"}]},{"date":"2019-03-28","groups":[{"time":"01:13:00","height":"3.777"},{"time":"13:42:00","height":"3.469"}]},{"date":"2019-03-29","groups":[{"time":"02:21:00","height":"3.367"},{"time":"15:05:00","height":"3.106"}]},{"date":"2019-03-30","groups":[{"time":"03:57:00","height":"3.208"},{"time":"16:44:00","height":"3.107"}]},{"date":"2019-03-31","groups":[{"time":"05:21:00","height":"3.421"},{"time":"17:57:00","height":"3.433"}]},{"date":"2019-04-01","groups":[{"time":"07:18:00","height":"3.813"},{"time":"19:44:00","height":"3.841"}]},{"date":"2019-04-02","groups":[{"time":"08:00:00","height":"4.199"},{"time":"20:20:00","height":"4.205"}]},{"date":"2019-04-03","groups":[{"time":"08:35:00","height":"4.514"},{"time":"20:53:00","height":"4.493"}]},{"date":"2019-04-04","groups":[{"time":"09:07:00","height":"4.745"},{"time":"21:22:00","height":"4.707"}]},{"date":"2019-04-05","groups":[{"time":"09:37:00","height":"4.902"},{"time":"21:51:00","height":"4.856"}]},{"date":"2019-04-06","groups":[{"time":"10:06:00","height":"4.995"},{"time":"22:20:00","height":"4.942"}]},{"date":"2019-04-07","groups":[{"time":"10:36:00","height":"5.019"},{"time":"22:48:00","height":"4.951"}]},{"date":"2019-04-08","groups":[{"time":"11:06:00","height":"4.959"},{"time":"23:19:00","height":"4.870"}]},{"date":"2019-04-09","groups":[{"time":"11:41:00","height":"4.804"},{"time":"23:56:00","height":"4.692"}]},{"date":"2019-04-10","groups":[{"time":"12:20:00","height":"4.551"}]},{"date":"2019-04-11","groups":[{"time":"00:36:00","height":"4.425"},{"time":"13:05:00","height":"4.215"}]},{"date":"2019-04-12","groups":[{"time":"01:27:00","height":"4.091"},{"time":"14:05:00","height":"3.837"}]},{"date":"2019-04-13","groups":[{"time":"02:35:00","height":"3.757"},{"time":"15:28:00","height":"3.542"}]},{"date":"2019-04-14","groups":[{"time":"04:10:00","height":"3.601"},{"time":"17:05:00","height":"3.553"}]},{"date":"2019-04-15","groups":[{"time":"05:40:00","height":"3.812"},{"time":"18:23:00","height":"3.918"}]},{"date":"2019-04-16","groups":[{"time":"06:50:00","height":"4.282"},{"time":"19:24:00","height":"4.425"}]},{"date":"2019-04-17","groups":[{"time":"07:45:00","height":"4.788"},{"time":"20:13:00","height":"4.892"}]},{"date":"2019-04-18","groups":[{"time":"08:32:00","height":"5.197"},{"time":"20:57:00","height":"5.235"}]},{"date":"2019-04-19","groups":[{"time":"09:15:00","height":"5.449"},{"time":"21:36:00","height":"5.422"}]},{"date":"2019-04-20","groups":[{"time":"09:55:00","height":"5.529"},{"time":"22:15:00","height":"5.450"}]},{"date":"2019-04-21","groups":[{"time":"10:34:00","height":"5.440"},{"time":"22:52:00","height":"5.326"}]},{"date":"2019-04-22","groups":[{"time":"11:11:00","height":"5.199"},{"time":"23:30:00","height":"5.069"}]},{"date":"2019-04-23","groups":[{"time":"11:51:00","height":"4.837"}]},{"date":"2019-04-24","groups":[{"time":"00:10:00","height":"4.711"},{"time":"12:31:00","height":"4.399"}]},{"date":"2019-04-25","groups":[{"time":"00:51:00","height":"4.296"},{"time":"13:14:00","height":"3.933"}]},{"date":"2019-04-26","groups":[{"time":"01:38:00","height":"3.869"},{"time":"14:05:00","height":"3.490"}]},{"date":"2019-04-27","groups":[{"time":"02:39:00","height":"3.489"},{"time":"15:17:00","height":"3.144"}]},{"date":"2019-04-28","groups":[{"time":"04:04:00","height":"3.270"},{"time":"16:55:00","height":"3.058"}]},{"date":"2019-04-29","groups":[{"time":"05:33:00","height":"3.361"},{"time":"18:10:00","height":"3.297"}]},{"date":"2019-04-30","groups":[{"time":"06:34:00","height":"3.669"},{"time":"19:03:00","height":"3.669"}]},{"date":"2019-05-01","groups":[{"time":"07:21:00","height":"4.027"},{"time":"19:44:00","height":"4.044"}]},{"date":"2019-05-02","groups":[{"time":"07:59:00","height":"4.351"},{"time":"20:18:00","height":"4.373"}]},{"date":"2019-05-03","groups":[{"time":"08:33:00","height":"4.616"},{"time":"20:50:00","height":"4.641"}]},{"date":"2019-05-04","groups":[{"time":"09:05:00","height":"4.819"},{"time":"21:21:00","height":"4.847"}]},{"date":"2019-05-05","groups":[{"time":"09:38:00","height":"4.956"},{"time":"21:53:00","height":"4.981"}]},{"date":"2019-05-06","groups":[{"time":"10:11:00","height":"5.016"},{"time":"22:25:00","height":"5.028"}]},{"date":"2019-05-07","groups":[{"time":"10:45:00","height":"4.983"},{"time":"22:59:00","height":"4.973"}]},{"date":"2019-05-08","groups":[{"time":"11:23:00","height":"4.844"},{"time":"23:40:00","height":"4.813"}]},{"date":"2019-05-09","groups":[{"time":"12:07:00","height":"4.600"}]},{"date":"2019-05-10","groups":[{"time":"00:26:00","height":"4.561"},{"time":"12:59:00","height":"4.278"}]},{"date":"2019-05-11","groups":[{"time":"01:22:00","height":"4.255"},{"time":"14:03:00","height":"3.942"}]},{"date":"2019-05-12","groups":[{"time":"02:33:00","height":"3.978"},{"time":"15:22:00","height":"3.712"}]},{"date":"2019-05-13","groups":[{"time":"03:59:00","height":"3.865"},{"time":"16:49:00","height":"3.726"}]},{"date":"2019-05-14","groups":[{"time":"05:20:00","height":"4.010"},{"time":"18:00:00","height":"3.994"}]},{"date":"2019-05-15","groups":[{"time":"06:25:00","height":"4.334"},{"time":"18:59:00","height":"4.372"}]},{"date":"2019-05-16","groups":[{"time":"07:21:00","height":"4.684"},{"time":"19:49:00","height":"4.727"}]},{"date":"2019-05-17","groups":[{"time":"08:10:00","height":"4.958"},{"time":"20:33:00","height":"4.989"}]},{"date":"2019-05-18","groups":[{"time":"08:53:00","height":"5.116"},{"time":"21:14:00","height":"5.137"}]},{"date":"2019-05-19","groups":[{"time":"09:34:00","height":"5.153"},{"time":"21:53:00","height":"5.170"}]},{"date":"2019-05-20","groups":[{"time":"10:12:00","height":"5.075"},{"time":"22:30:00","height":"5.092"}]},{"date":"2019-05-21","groups":[{"time":"10:48:00","height":"4.896"},{"time":"23:05:00","height":"4.914"}]},{"date":"2019-05-22","groups":[{"time":"11:26:00","height":"4.634"},{"time":"23:45:00","height":"4.657"}]},{"date":"2019-05-23","groups":[{"time":"12:06:00","height":"4.315"}]},{"date":"2019-05-24","groups":[{"time":"00:26:00","height":"4.349"},{"time":"12:48:00","height":"3.971"}]},{"date":"2019-05-25","groups":[{"time":"01:11:00","height":"4.024"},{"time":"13:35:00","height":"3.634"}]},{"date":"2019-05-26","groups":[{"time":"02:03:00","height":"3.718"},{"time":"14:32:00","height":"3.347"}]},{"date":"2019-05-27","groups":[{"time":"03:09:00","height":"3.488"},{"time":"15:48:00","height":"3.185"}]},{"date":"2019-05-28","groups":[{"time":"04:30:00","height":"3.422"},{"time":"17:08:00","height":"3.245"}]},{"date":"2019-05-29","groups":[{"time":"05:38:00","height":"3.562"},{"time":"18:09:00","height":"3.499"}]},{"date":"2019-05-30","groups":[{"time":"06:31:00","height":"3.827"},{"time":"18:57:00","height":"3.836"}]},{"date":"2019-05-31","groups":[{"time":"07:15:00","height":"4.130"},{"time":"19:38:00","height":"4.184"}]},{"date":"2019-06-01","groups":[{"time":"07:55:00","height":"4.422"},{"time":"20:15:00","height":"4.503"}]},{"date":"2019-06-02","groups":[{"time":"08:33:00","height":"4.673"},{"time":"20:51:00","height":"4.769"}]},{"date":"2019-06-03","groups":[{"time":"09:11:00","height":"4.864"},{"time":"21:29:00","height":"4.960"}]},{"date":"2019-06-04","groups":[{"time":"09:50:00","height":"4.975"},{"time":"22:07:00","height":"5.061"}]},{"date":"2019-06-05","groups":[{"time":"10:30:00","height":"4.990"},{"time":"22:47:00","height":"5.059"}]},{"date":"2019-06-06","groups":[{"time":"11:12:00","height":"4.899"},{"time":"23:31:00","height":"4.956"}]},{"date":"2019-06-07","groups":[{"time":"12:02:00","height":"4.711"}]},{"date":"2019-06-08","groups":[{"time":"00:23:00","height":"4.768"},{"time":"12:57:00","height":"4.455"}]},{"date":"2019-06-09","groups":[{"time":"01:22:00","height":"4.532"},{"time":"13:59:00","height":"4.185"}]},{"date":"2019-06-10","groups":[{"time":"02:27:00","height":"4.306"},{"time":"15:08:00","height":"3.976"}]},{"date":"2019-06-11","groups":[{"time":"03:39:00","height":"4.159"},{"time":"16:24:00","height":"3.903"}]},{"date":"2019-06-12","groups":[{"time":"04:53:00","height":"4.145"},{"time":"17:31:00","height":"3.996"}]},{"date":"2019-06-13","groups":[{"time":"05:57:00","height":"4.255"},{"time":"18:31:00","height":"4.201"}]},{"date":"2019-06-14","groups":[{"time":"06:56:00","height":"4.421"},{"time":"19:25:00","height":"4.439"}]},{"date":"2019-06-15","groups":[{"time":"07:47:00","height":"4.579"},{"time":"20:12:00","height":"4.646"}]},{"date":"2019-06-16","groups":[{"time":"08:33:00","height":"4.690"},{"time":"20:55:00","height":"4.792"}]},{"date":"2019-06-17","groups":[{"time":"09:15:00","height":"4.739"},{"time":"21:35:00","height":"4.865"}]},{"date":"2019-06-18","groups":[{"time":"09:54:00","height":"4.725"},{"time":"22:12:00","height":"4.861"}]},{"date":"2019-06-19","groups":[{"time":"10:31:00","height":"4.644"},{"time":"22:48:00","height":"4.782"}]},{"date":"2019-06-20","groups":[{"time":"11:06:00","height":"4.507"},{"time":"23:25:00","height":"4.640"}]},{"date":"2019-06-21","groups":[{"time":"11:44:00","height":"4.321"}]},{"date":"2019-06-22","groups":[{"time":"00:04:00","height":"4.450"},{"time":"12:24:00","height":"4.102"}]},{"date":"2019-06-23","groups":[{"time":"00:45:00","height":"4.229"},{"time":"13:05:00","height":"3.866"}]},{"date":"2019-06-24","groups":[{"time":"01:29:00","height":"3.993"},{"time":"13:52:00","height":"3.633"}]},{"date":"2019-06-25","groups":[{"time":"02:20:00","height":"3.769"},{"time":"14:46:00","height":"3.438"}]},{"date":"2019-06-26","groups":[{"time":"03:21:00","height":"3.599"},{"time":"15:53:00","height":"3.339"}]},{"date":"2019-06-27","groups":[{"time":"04:30:00","height":"3.546"},{"time":"17:03:00","height":"3.401"}]},{"date":"2019-06-28","groups":[{"time":"05:33:00","height":"3.651"},{"time":"18:04:00","height":"3.631"}]},{"date":"2019-06-29","groups":[{"time":"06:29:00","height":"3.886"},{"time":"18:56:00","height":"3.962"}]},{"date":"2019-06-30","groups":[{"time":"07:18:00","height":"4.186"},{"time":"19:42:00","height":"4.321"}]},{"date":"2019-07-01","groups":[{"time":"08:04:00","height":"4.491"},{"time":"20:26:00","height":"4.657"}]},{"date":"2019-07-02","groups":[{"time":"08:49:00","height":"4.758"},{"time":"21:09:00","height":"4.932"}]},{"date":"2019-07-03","groups":[{"time":"09:35:00","height":"4.954"},{"time":"21:53:00","height":"5.124"}]},{"date":"2019-07-04","groups":[{"time":"10:19:00","height":"5.058"},{"time":"22:38:00","height":"5.217"}]},{"date":"2019-07-05","groups":[{"time":"11:04:00","height":"5.056"},{"time":"23:25:00","height":"5.203"}]},{"date":"2019-07-06","groups":[{"time":"11:55:00","height":"4.947"}]},{"date":"2019-07-07","groups":[{"time":"00:17:00","height":"5.086"},{"time":"12:48:00","height":"4.746"}]},{"date":"2019-07-08","groups":[{"time":"01:12:00","height":"4.879"},{"time":"13:43:00","height":"4.484"}]},{"date":"2019-07-09","groups":[{"time":"02:09:00","height":"4.616"},{"time":"14:44:00","height":"4.211"}]},{"date":"2019-07-10","groups":[{"time":"03:12:00","height":"4.342"},{"time":"15:50:00","height":"3.990"}]},{"date":"2019-07-11","groups":[{"time":"04:22:00","height":"4.122"},{"time":"16:59:00","height":"3.886"}]},{"date":"2019-07-12","groups":[{"time":"05:27:00","height":"4.016"},{"time":"18:03:00","height":"3.934"}]},{"date":"2019-07-13","groups":[{"time":"06:31:00","height":"4.042"},{"time":"19:03:00","height":"4.103"}]},{"date":"2019-07-14","groups":[{"time":"07:29:00","height":"4.162"},{"time":"19:56:00","height":"4.322"}]},{"date":"2019-07-15","groups":[{"time":"08:19:00","height":"4.312"},{"time":"20:41:00","height":"4.524"}]},{"date":"2019-07-16","groups":[{"time":"09:03:00","height":"4.442"},{"time":"21:21:00","height":"4.672"}]},{"date":"2019-07-17","groups":[{"time":"09:41:00","height":"4.524"},{"time":"21:58:00","height":"4.752"}]},{"date":"2019-07-18","groups":[{"time":"10:16:00","height":"4.551"},{"time":"22:32:00","height":"4.766"}]},{"date":"2019-07-19","groups":[{"time":"10:49:00","height":"4.521"},{"time":"23:05:00","height":"4.718"}]},{"date":"2019-07-20","groups":[{"time":"11:23:00","height":"4.442"},{"time":"23:40:00","height":"4.618"}]},{"date":"2019-07-21","groups":[{"time":"11:57:00","height":"4.317"}]},{"date":"2019-07-22","groups":[{"time":"00:17:00","height":"4.470"},{"time":"12:33:00","height":"4.151"}]},{"date":"2019-07-23","groups":[{"time":"00:55:00","height":"4.277"},{"time":"13:12:00","height":"3.951"}]},{"date":"2019-07-24","groups":[{"time":"01:36:00","height":"4.051"},{"time":"13:55:00","height":"3.737"}]},{"date":"2019-07-25","groups":[{"time":"02:23:00","height":"3.820"},{"time":"14:48:00","height":"3.545"}]},{"date":"2019-07-26","groups":[{"time":"03:23:00","height":"3.630"},{"time":"15:56:00","height":"3.437"}]},{"date":"2019-07-27","groups":[{"time":"04:35:00","height":"3.555"},{"time":"17:09:00","height":"3.499"}]},{"date":"2019-07-28","groups":[{"time":"05:44:00","height":"3.671"},{"time":"18:17:00","height":"3.767"}]},{"date":"2019-07-29","groups":[{"time":"06:47:00","height":"3.963"},{"time":"19:15:00","height":"4.163"}]},{"date":"2019-07-30","groups":[{"time":"07:43:00","height":"4.339"},{"time":"20:07:00","height":"4.593"}]},{"date":"2019-07-31","groups":[{"time":"08:33:00","height":"4.715"},{"time":"20:55:00","height":"4.984"}]},{"date":"2019-08-01","groups":[{"time":"09:22:00","height":"5.029"},{"time":"21:42:00","height":"5.290"}]},{"date":"2019-08-02","groups":[{"time":"10:07:00","height":"5.239"},{"time":"22:27:00","height":"5.480"}]},{"date":"2019-08-03","groups":[{"time":"10:53:00","height":"5.319"},{"time":"23:12:00","height":"5.527"}]},{"date":"2019-08-04","groups":[{"time":"11:40:00","height":"5.254"}]},{"date":"2019-08-05","groups":[{"time":"00:02:00","height":"5.420"},{"time":"12:30:00","height":"5.050"}]},{"date":"2019-08-06","groups":[{"time":"00:51:00","height":"5.166"},{"time":"13:20:00","height":"4.735"}]},{"date":"2019-08-07","groups":[{"time":"01:43:00","height":"4.796"},{"time":"14:13:00","height":"4.357"}]},{"date":"2019-08-08","groups":[{"time":"02:39:00","height":"4.366"},{"time":"15:12:00","height":"3.985"}]},{"date":"2019-08-09","groups":[{"time":"03:43:00","height":"3.958"},{"time":"16:24:00","height":"3.713"}]},{"date":"2019-08-10","groups":[{"time":"04:57:00","height":"3.686"},{"time":"17:37:00","height":"3.650"}]},{"date":"2019-08-11","groups":[{"time":"06:10:00","height":"3.651"},{"time":"18:46:00","height":"3.821"}]},{"date":"2019-08-12","groups":[{"time":"07:17:00","height":"3.831"},{"time":"19:44:00","height":"4.119"}]},{"date":"2019-08-13","groups":[{"time":"08:09:00","height":"4.093"},{"time":"20:30:00","height":"4.413"}]},{"date":"2019-08-14","groups":[{"time":"08:50:00","height":"4.331"},{"time":"21:07:00","height":"4.640"}]},{"date":"2019-08-15","groups":[{"time":"09:27:00","height":"4.505"},{"time":"21:42:00","height":"4.785"}]},{"date":"2019-08-16","groups":[{"time":"09:59:00","height":"4.609"},{"time":"22:13:00","height":"4.856"}]},{"date":"2019-08-17","groups":[{"time":"10:29:00","height":"4.651"},{"time":"22:43:00","height":"4.864"}]},{"date":"2019-08-18","groups":[{"time":"10:57:00","height":"4.635"},{"time":"23:13:00","height":"4.812"}]},{"date":"2019-08-19","groups":[{"time":"11:28:00","height":"4.566"},{"time":"23:45:00","height":"4.700"}]},{"date":"2019-08-20","groups":[{"time":"11:59:00","height":"4.438"}]},{"date":"2019-08-21","groups":[{"time":"00:19:00","height":"4.524"},{"time":"12:33:00","height":"4.255"}]},{"date":"2019-08-22","groups":[{"time":"00:55:00","height":"4.290"},{"time":"13:11:00","height":"4.026"}]},{"date":"2019-08-23","groups":[{"time":"01:36:00","height":"4.015"},{"time":"13:56:00","height":"3.773"}]},{"date":"2019-08-24","groups":[{"time":"02:29:00","height":"3.731"},{"time":"14:57:00","height":"3.539"}]},{"date":"2019-08-25","groups":[{"time":"03:40:00","height":"3.509"},{"time":"16:22:00","height":"3.442"}]},{"date":"2019-08-26","groups":[{"time":"05:08:00","height":"3.502"},{"time":"17:47:00","height":"3.635"}]},{"date":"2019-08-27","groups":[{"time":"06:25:00","height":"3.799"},{"time":"18:56:00","height":"4.085"}]},{"date":"2019-08-28","groups":[{"time":"07:28:00","height":"4.272"},{"time":"19:52:00","height":"4.622"}]},{"date":"2019-08-29","groups":[{"time":"08:21:00","height":"4.767"},{"time":"20:42:00","height":"5.121"}]},{"date":"2019-08-30","groups":[{"time":"09:08:00","height":"5.182"},{"time":"21:27:00","height":"5.508"}]},{"date":"2019-08-31","groups":[{"time":"09:53:00","height":"5.460"},{"time":"22:11:00","height":"5.737"}]},{"date":"2019-09-01","groups":[{"time":"10:36:00","height":"5.570"},{"time":"22:54:00","height":"5.778"}]},{"date":"2019-09-02","groups":[{"time":"11:17:00","height":"5.501"},{"time":"23:39:00","height":"5.623"}]},{"date":"2019-09-03","groups":[{"time":"12:04:00","height":"5.260"}]},{"date":"2019-09-04","groups":[{"time":"00:24:00","height":"5.287"},{"time":"12:49:00","height":"4.883"}]},{"date":"2019-09-05","groups":[{"time":"01:12:00","height":"4.814"},{"time":"13:37:00","height":"4.422"}]},{"date":"2019-09-06","groups":[{"time":"02:02:00","height":"4.271"},{"time":"14:32:00","height":"3.949"}]},{"date":"2019-09-07","groups":[{"time":"03:02:00","height":"3.748"},{"time":"15:43:00","height":"3.564"}]},{"date":"2019-09-08","groups":[{"time":"04:25:00","height":"3.381"},{"time":"17:11:00","height":"3.435"}]},{"date":"2019-09-09","groups":[{"time":"05:53:00","height":"3.354"},{"time":"18:31:00","height":"3.649"}]},{"date":"2019-09-10","groups":[{"time":"07:05:00","height":"3.640"},{"time":"19:29:00","height":"4.032"}]},{"date":"2019-09-11","groups":[{"time":"07:55:00","height":"4.011"},{"time":"20:12:00","height":"4.400"}]},{"date":"2019-09-12","groups":[{"time":"08:32:00","height":"4.334"},{"time":"20:47:00","height":"4.681"}]},{"date":"2019-09-13","groups":[{"time":"09:05:00","height":"4.572"},{"time":"21:19:00","height":"4.866"}]},{"date":"2019-09-14","groups":[{"time":"09:36:00","height":"4.726"},{"time":"21:50:00","height":"4.969"}]},{"date":"2019-09-15","groups":[{"time":"10:05:00","height":"4.811"},{"time":"22:18:00","height":"5.004"}]},{"date":"2019-09-16","groups":[{"time":"10:31:00","height":"4.836"},{"time":"22:45:00","height":"4.977"}]},{"date":"2019-09-17","groups":[{"time":"10:57:00","height":"4.800"},{"time":"23:14:00","height":"4.882"}]},{"date":"2019-09-18","groups":[{"time":"11:27:00","height":"4.696"},{"time":"23:45:00","height":"4.712"}]},{"date":"2019-09-19","groups":[{"time":"11:59:00","height":"4.520"}]},{"date":"2019-09-20","groups":[{"time":"00:20:00","height":"4.469"},{"time":"12:35:00","height":"4.277"}]},{"date":"2019-09-21","groups":[{"time":"00:59:00","height":"4.164"},{"time":"13:18:00","height":"3.982"}]},{"date":"2019-09-22","groups":[{"time":"01:50:00","height":"3.817"},{"time":"14:18:00","height":"3.670"}]},{"date":"2019-09-23","groups":[{"time":"03:04:00","height":"3.504"},{"time":"15:47:00","height":"3.474"}]},{"date":"2019-09-24","groups":[{"time":"04:45:00","height":"3.434"},{"time":"17:25:00","height":"3.635"}]},{"date":"2019-09-25","groups":[{"time":"06:10:00","height":"3.765"},{"time":"18:41:00","height":"4.133"}]},{"date":"2019-09-26","groups":[{"time":"07:14:00","height":"4.314"},{"time":"19:37:00","height":"4.728"}]},{"date":"2019-09-27","groups":[{"time":"08:06:00","height":"4.868"},{"time":"20:26:00","height":"5.261"}]},{"date":"2019-09-28","groups":[{"time":"08:51:00","height":"5.313"},{"time":"21:10:00","height":"5.646"}]},{"date":"2019-09-29","groups":[{"time":"09:34:00","height":"5.595"},{"time":"21:52:00","height":"5.844"}]},{"date":"2019-09-30","groups":[{"time":"10:14:00","height":"5.692"},{"time":"22:33:00","height":"5.836"}]},{"date":"2019-10-01","groups":[{"time":"10:54:00","height":"5.602"},{"time":"23:12:00","height":"5.625"}]},{"date":"2019-10-02","groups":[{"time":"11:34:00","height":"5.340"},{"time":"23:56:00","height":"5.237"}]},{"date":"2019-10-03","groups":[{"time":"12:18:00","height":"4.941"}]},{"date":"2019-10-04","groups":[{"time":"00:41:00","height":"4.726"},{"time":"13:03:00","height":"4.459"}]},{"date":"2019-10-05","groups":[{"time":"01:27:00","height":"4.159"},{"time":"13:54:00","height":"3.960"}]},{"date":"2019-10-06","groups":[{"time":"02:23:00","height":"3.617"},{"time":"15:02:00","height":"3.534"}]},{"date":"2019-10-07","groups":[{"time":"03:46:00","height":"3.222"},{"time":"16:40:00","height":"3.355"}]},{"date":"2019-10-08","groups":[{"time":"05:27:00","height":"3.198"},{"time":"18:05:00","height":"3.560"}]},{"date":"2019-10-09","groups":[{"time":"06:41:00","height":"3.523"},{"time":"19:03:00","height":"3.956"}]},{"date":"2019-10-10","groups":[{"time":"07:30:00","height":"3.937"},{"time":"19:45:00","height":"4.346"}]},{"date":"2019-10-11","groups":[{"time":"08:07:00","height":"4.305"},{"time":"20:21:00","height":"4.656"}]},{"date":"2019-10-12","groups":[{"time":"08:39:00","height":"4.588"},{"time":"20:52:00","height":"4.873"}]},{"date":"2019-10-13","groups":[{"time":"09:08:00","height":"4.788"},{"time":"21:22:00","height":"5.006"}]},{"date":"2019-10-14","groups":[{"time":"09:36:00","height":"4.916"},{"time":"21:50:00","height":"5.069"}]},{"date":"2019-10-15","groups":[{"time":"10:04:00","height":"4.980"},{"time":"22:19:00","height":"5.066"}]},{"date":"2019-10-16","groups":[{"time":"10:31:00","height":"4.976"},{"time":"22:47:00","height":"4.989"}]},{"date":"2019-10-17","groups":[{"time":"10:59:00","height":"4.894"},{"time":"23:18:00","height":"4.829"}]},{"date":"2019-10-18","groups":[{"time":"11:32:00","height":"4.725"},{"time":"23:55:00","height":"4.584"}]},{"date":"2019-10-19","groups":[{"time":"12:10:00","height":"4.476"}]},{"date":"2019-10-20","groups":[{"time":"00:37:00","height":"4.262"},{"time":"12:57:00","height":"4.161"}]},{"date":"2019-10-21","groups":[{"time":"01:31:00","height":"3.894"},{"time":"13:59:00","height":"3.830"}]},{"date":"2019-10-22","groups":[{"time":"02:48:00","height":"3.574"},{"time":"15:30:00","height":"3.632"}]},{"date":"2019-10-23","groups":[{"time":"04:29:00","height":"3.520"},{"time":"17:08:00","height":"3.788"}]},{"date":"2019-10-24","groups":[{"time":"05:53:00","height":"3.852"},{"time":"18:21:00","height":"4.255"}]},{"date":"2019-10-25","groups":[{"time":"06:56:00","height":"4.378"},{"time":"19:17:00","height":"4.798"}]},{"date":"2019-10-26","groups":[{"time":"07:46:00","height":"4.893"},{"time":"20:05:00","height":"5.263"}]},{"date":"2019-10-27","groups":[{"time":"08:31:00","height":"5.294"},{"time":"20:49:00","height":"5.576"}]},{"date":"2019-10-28","groups":[{"time":"08:12:00","height":"5.539"},{"time":"20:31:00","height":"5.709"}]},{"date":"2019-10-29","groups":[{"time":"08:52:00","height":"5.617"},{"time":"21:11:00","height":"5.658"}]},{"date":"2019-10-30","groups":[{"time":"09:31:00","height":"5.531"},{"time":"21:50:00","height":"5.436"}]},{"date":"2019-10-31","groups":[{"time":"10:08:00","height":"5.294"},{"time":"22:30:00","height":"5.071"}]},{"date":"2019-11-01","groups":[{"time":"10:51:00","height":"4.936"},{"time":"23:12:00","height":"4.610"}]},{"date":"2019-11-02","groups":[{"time":"11:35:00","height":"4.505"},{"time":"23:58:00","height":"4.110"}]},{"date":"2019-11-03","groups":[{"time":"12:24:00","height":"4.056"}]},{"date":"2019-11-04","groups":[{"time":"00:51:00","height":"3.634"},{"time":"13:25:00","height":"3.658"}]},{"date":"2019-11-05","groups":[{"time":"02:02:00","height":"3.268"},{"time":"14:50:00","height":"3.429"}]},{"date":"2019-11-06","groups":[{"time":"03:41:00","height":"3.165"},{"time":"16:19:00","height":"3.506"}]},{"date":"2019-11-07","groups":[{"time":"04:58:00","height":"3.393"},{"time":"17:22:00","height":"3.806"}]},{"date":"2019-11-08","groups":[{"time":"05:52:00","height":"3.763"},{"time":"18:09:00","height":"4.157"}]},{"date":"2019-11-09","groups":[{"time":"06:32:00","height":"4.134"},{"time":"18:46:00","height":"4.473"}]},{"date":"2019-11-10","groups":[{"time":"07:06:00","height":"4.454"},{"time":"19:20:00","height":"4.721"}]},{"date":"2019-11-11","groups":[{"time":"07:38:00","height":"4.708"},{"time":"19:52:00","height":"4.899"}]},{"date":"2019-11-12","groups":[{"time":"08:07:00","height":"4.894"},{"time":"20:23:00","height":"5.010"}]},{"date":"2019-11-13","groups":[{"time":"08:38:00","height":"5.013"},{"time":"20:54:00","height":"5.051"}]},{"date":"2019-11-14","groups":[{"time":"09:08:00","height":"5.056"},{"time":"21:27:00","height":"5.013"}]},{"date":"2019-11-15","groups":[{"time":"09:40:00","height":"5.011"},{"time":"22:00:00","height":"4.885"}]},{"date":"2019-11-16","groups":[{"time":"10:16:00","height":"4.872"},{"time":"22:41:00","height":"4.664"}]},{"date":"2019-11-17","groups":[{"time":"10:59:00","height":"4.648"},{"time":"23:29:00","height":"4.368"}]},{"date":"2019-11-18","groups":[{"time":"11:50:00","height":"4.364"}]},{"date":"2019-11-19","groups":[{"time":"00:27:00","height":"4.041"},{"time":"12:55:00","height":"4.083"}]},{"date":"2019-11-20","groups":[{"time":"01:42:00","height":"3.779"},{"time":"14:18:00","height":"3.925"}]},{"date":"2019-11-21","groups":[{"time":"03:10:00","height":"3.726"},{"time":"15:45:00","height":"4.011"}]},{"date":"2019-11-22","groups":[{"time":"04:28:00","height":"3.947"},{"time":"16:55:00","height":"4.319"}]},{"date":"2019-11-23","groups":[{"time":"05:30:00","height":"4.331"},{"time":"17:53:00","height":"4.698"}]},{"date":"2019-11-24","groups":[{"time":"06:23:00","height":"4.731"},{"time":"18:44:00","height":"5.030"}]},{"date":"2019-11-25","groups":[{"time":"07:09:00","height":"5.055"},{"time":"19:30:00","height":"5.250"}]},{"date":"2019-11-26","groups":[{"time":"07:52:00","height":"5.266"},{"time":"20:12:00","height":"5.339"}]},{"date":"2019-11-27","groups":[{"time":"08:33:00","height":"5.352"},{"time":"20:52:00","height":"5.297"}]},{"date":"2019-11-28","groups":[{"time":"09:12:00","height":"5.312"},{"time":"21:32:00","height":"5.134"}]},{"date":"2019-11-29","groups":[{"time":"09:50:00","height":"5.155"},{"time":"22:10:00","height":"4.870"}]},{"date":"2019-11-30","groups":[{"time":"10:30:00","height":"4.899"},{"time":"22:52:00","height":"4.533"}]},{"date":"2019-12-01","groups":[{"time":"11:13:00","height":"4.578"},{"time":"23:35:00","height":"4.162"}]},{"date":"2019-12-02","groups":[{"time":"11:59:00","height":"4.232"}]},{"date":"2019-12-03","groups":[{"time":"00:22:00","height":"3.798"},{"time":"12:50:00","height":"3.902"}]},{"date":"2019-12-04","groups":[{"time":"01:18:00","height":"3.483"},{"time":"13:53:00","height":"3.641"}]},{"date":"2019-12-05","groups":[{"time":"02:30:00","height":"3.282"},{"time":"15:12:00","height":"3.528"}]},{"date":"2019-12-06","groups":[{"time":"03:53:00","height":"3.287"},{"time":"16:23:00","height":"3.617"}]},{"date":"2019-12-07","groups":[{"time":"04:57:00","height":"3.501"},{"time":"17:20:00","height":"3.846"}]},{"date":"2019-12-08","groups":[{"time":"05:47:00","height":"3.816"},{"time":"18:05:00","height":"4.126"}]},{"date":"2019-12-09","groups":[{"time":"06:28:00","height":"4.151"},{"time":"18:45:00","height":"4.401"}]},{"date":"2019-12-10","groups":[{"time":"07:05:00","height":"4.464"},{"time":"19:22:00","height":"4.642"}]},{"date":"2019-12-11","groups":[{"time":"07:40:00","height":"4.730"},{"time":"19:59:00","height":"4.831"}]},{"date":"2019-12-12","groups":[{"time":"08:16:00","height":"4.932"},{"time":"20:35:00","height":"4.954"}]},{"date":"2019-12-13","groups":[{"time":"08:51:00","height":"5.056"},{"time":"21:12:00","height":"4.997"}]},{"date":"2019-12-14","groups":[{"time":"09:29:00","height":"5.091"},{"time":"21:52:00","height":"4.949"}]},{"date":"2019-12-15","groups":[{"time":"10:08:00","height":"5.034"},{"time":"22:37:00","height":"4.808"}]},{"date":"2019-12-16","groups":[{"time":"10:56:00","height":"4.889"},{"time":"23:28:00","height":"4.590"}]},{"date":"2019-12-17","groups":[{"time":"11:50:00","height":"4.682"}]},{"date":"2019-12-18","groups":[{"time":"00:24:00","height":"4.331"},{"time":"12:50:00","height":"4.454"}]},{"date":"2019-12-19","groups":[{"time":"01:29:00","height":"4.092"},{"time":"13:59:00","height":"4.264"}]},{"date":"2019-12-20","groups":[{"time":"02:41:00","height":"3.946"},{"time":"15:14:00","height":"4.179"}]},{"date":"2019-12-21","groups":[{"time":"03:55:00","height":"3.959"},{"time":"16:23:00","height":"4.232"}]},{"date":"2019-12-22","groups":[{"time":"05:00:00","height":"4.129"},{"time":"17:26:00","height":"4.391"}]},{"date":"2019-12-23","groups":[{"time":"05:58:00","height":"4.385"},{"time":"18:23:00","height":"4.586"}]},{"date":"2019-12-24","groups":[{"time":"06:50:00","height":"4.651"},{"time":"19:13:00","height":"4.757"}]},{"date":"2019-12-25","groups":[{"time":"07:37:00","height":"4.869"},{"time":"19:59:00","height":"4.869"}]},{"date":"2019-12-26","groups":[{"time":"08:19:00","height":"5.009"},{"time":"20:40:00","height":"4.903"}]},{"date":"2019-12-27","groups":[{"time":"08:59:00","height":"5.059"},{"time":"21:20:00","height":"4.857"}]},{"date":"2019-12-28","groups":[{"time":"09:37:00","height":"5.015"},{"time":"21:55:00","height":"4.734"}]},{"date":"2019-12-29","groups":[{"time":"10:14:00","height":"4.886"},{"time":"22:34:00","height":"4.546"}]},{"date":"2019-12-30","groups":[{"time":"10:54:00","height":"4.692"},{"time":"23:13:00","height":"4.314"}]},{"date":"2019-12-31","groups":[{"time":"11:34:00","height":"4.455"},{"time":"23:52:00","height":"4.057"}]},{"date":"2020-01-01","groups":[{"time":"12:16:00","height":"4.194"}]},{"date":"2020-01-02","groups":[{"time":"00:36:00","height":"3.792"},{"time":"13:03:00","height":"3.928"}]},{"date":"2020-01-03","groups":[{"time":"01:26:00","height":"3.545"},{"time":"13:58:00","height":"3.690"}]},{"date":"2020-01-04","groups":[{"time":"02:27:00","height":"3.360"},{"time":"15:05:00","height":"3.537"}]},{"date":"2020-01-05","groups":[{"time":"03:41:00","height":"3.314"},{"time":"16:15:00","height":"3.541"}]},{"date":"2020-01-06","groups":[{"time":"04:49:00","height":"3.464"},{"time":"17:16:00","height":"3.714"}]},{"date":"2020-01-07","groups":[{"time":"05:45:00","height":"3.762"},{"time":"18:08:00","height":"3.992"}]},{"date":"2020-01-08","groups":[{"time":"06:32:00","height":"4.124"},{"time":"18:55:00","height":"4.307"}]},{"date":"2020-01-09","groups":[{"time":"07:15:00","height":"4.486"},{"time":"19:38:00","height":"4.609"}]},{"date":"2020-01-10","groups":[{"time":"07:57:00","height":"4.807"},{"time":"20:19:00","height":"4.860"}]},{"date":"2020-01-11","groups":[{"time":"08:39:00","height":"5.060"},{"time":"21:03:00","height":"5.035"}]},{"date":"2020-01-12","groups":[{"time":"09:21:00","height":"5.225"},{"time":"21:44:00","height":"5.112"}]},{"date":"2020-01-13","groups":[{"time":"10:02:00","height":"5.288"},{"time":"22:29:00","height":"5.079"}]},{"date":"2020-01-14","groups":[{"time":"10:51:00","height":"5.238"},{"time":"23:19:00","height":"4.934"}]},{"date":"2020-01-15","groups":[{"time":"11:42:00","height":"5.080"}]},{"date":"2020-01-16","groups":[{"time":"00:11:00","height":"4.697"},{"time":"12:35:00","height":"4.829"}]},{"date":"2020-01-17","groups":[{"time":"01:06:00","height":"4.402"},{"time":"13:32:00","height":"4.522"}]},{"date":"2020-01-18","groups":[{"time":"02:08:00","height":"4.107"},{"time":"14:38:00","height":"4.218"}]},{"date":"2020-01-19","groups":[{"time":"03:18:00","height":"3.889"},{"time":"15:50:00","height":"4.003"}]},{"date":"2020-01-20","groups":[{"time":"04:28:00","height":"3.834"},{"time":"16:59:00","height":"3.954"}]},{"date":"2020-01-21","groups":[{"time":"05:36:00","height":"3.970"},{"time":"18:06:00","height":"4.073"}]},{"date":"2020-01-22","groups":[{"time":"06:37:00","height":"4.232"},{"time":"19:03:00","height":"4.284"}]},{"date":"2020-01-23","groups":[{"time":"07:27:00","height":"4.518"},{"time":"19:50:00","height":"4.492"}]},{"date":"2020-01-24","groups":[{"time":"08:10:00","height":"4.750"},{"time":"20:31:00","height":"4.643"}]},{"date":"2020-01-25","groups":[{"time":"08:50:00","height":"4.896"},{"time":"21:08:00","height":"4.719"}]},{"date":"2020-01-26","groups":[{"time":"09:24:00","height":"4.952"},{"time":"21:41:00","height":"4.718"}]},{"date":"2020-01-27","groups":[{"time":"09:57:00","height":"4.926"},{"time":"22:13:00","height":"4.649"}]},{"date":"2020-01-28","groups":[{"time":"10:31:00","height":"4.829"},{"time":"22:47:00","height":"4.521"}]},{"date":"2020-01-29","groups":[{"time":"11:06:00","height":"4.673"},{"time":"23:21:00","height":"4.342"}]},{"date":"2020-01-30","groups":[{"time":"11:42:00","height":"4.461"},{"time":"23:57:00","height":"4.118"}]},{"date":"2020-01-31","groups":[{"time":"12:18:00","height":"4.202"}]},{"date":"2020-02-01","groups":[{"time":"00:35:00","height":"3.860"},{"time":"13:01:00","height":"3.910"}]},{"date":"2020-02-02","groups":[{"time":"01:20:00","height":"3.593"},{"time":"13:53:00","height":"3.622"}]},{"date":"2020-02-03","groups":[{"time":"02:20:00","height":"3.363"},{"time":"15:01:00","height":"3.407"}]},{"date":"2020-02-04","groups":[{"time":"03:38:00","height":"3.270"},{"time":"16:20:00","height":"3.385"}]},{"date":"2020-02-05","groups":[{"time":"04:57:00","height":"3.432"},{"time":"17:31:00","height":"3.619"}]},{"date":"2020-02-06","groups":[{"time":"06:02:00","height":"3.813"},{"time":"18:30:00","height":"4.014"}]},{"date":"2020-02-07","groups":[{"time":"06:55:00","height":"4.281"},{"time":"19:21:00","height":"4.452"}]},{"date":"2020-02-08","groups":[{"time":"07:42:00","height":"4.743"},{"time":"20:06:00","height":"4.855"}]},{"date":"2020-02-09","groups":[{"time":"08:26:00","height":"5.139"},{"time":"20:50:00","height":"5.168"}]},{"date":"2020-02-10","groups":[{"time":"09:08:00","height":"5.431"},{"time":"21:33:00","height":"5.357"}]},{"date":"2020-02-11","groups":[{"time":"09:51:00","height":"5.586"},{"time":"22:15:00","height":"5.396"}]},{"date":"2020-02-12","groups":[{"time":"10:36:00","height":"5.578"},{"time":"23:02:00","height":"5.274"}]},{"date":"2020-02-13","groups":[{"time":"11:23:00","height":"5.400"},{"time":"23:49:00","height":"5.005"}]},{"date":"2020-02-14","groups":[{"time":"12:11:00","height":"5.066"}]},{"date":"2020-02-15","groups":[{"time":"00:38:00","height":"4.626"},{"time":"13:03:00","height":"4.618"}]},{"date":"2020-02-16","groups":[{"time":"01:32:00","height":"4.193"},{"time":"14:01:00","height":"4.128"}]},{"date":"2020-02-17","groups":[{"time":"02:37:00","height":"3.792"},{"time":"15:14:00","height":"3.709"}]},{"date":"2020-02-18","groups":[{"time":"03:57:00","height":"3.560"},{"time":"16:36:00","height":"3.526"}]},{"date":"2020-02-19","groups":[{"time":"05:17:00","height":"3.628"},{"time":"17:55:00","height":"3.660"}]},{"date":"2020-02-20","groups":[{"time":"06:27:00","height":"3.944"},{"time":"18:56:00","height":"3.977"}]},{"date":"2020-02-21","groups":[{"time":"07:17:00","height":"4.315"},{"time":"19:41:00","height":"4.295"}]},{"date":"2020-02-22","groups":[{"time":"07:58:00","height":"4.620"},{"time":"20:19:00","height":"4.538"}]},{"date":"2020-02-23","groups":[{"time":"08:35:00","height":"4.826"},{"time":"20:51:00","height":"4.691"}]},{"date":"2020-02-24","groups":[{"time":"09:06:00","height":"4.936"},{"time":"21:22:00","height":"4.763"}]},{"date":"2020-02-25","groups":[{"time":"09:37:00","height":"4.965"},{"time":"21:50:00","height":"4.765"}]},{"date":"2020-02-26","groups":[{"time":"10:05:00","height":"4.925"},{"time":"22:18:00","height":"4.704"}]},{"date":"2020-02-27","groups":[{"time":"10:36:00","height":"4.818"},{"time":"22:49:00","height":"4.578"}]},{"date":"2020-02-28","groups":[{"time":"11:07:00","height":"4.640"},{"time":"23:19:00","height":"4.389"}]},{"date":"2020-02-29","groups":[{"time":"11:39:00","height":"4.393"},{"time":"23:52:00","height":"4.142"}]},{"date":"2020-06-01","groups":[{"time":"05:07:00","height":"4.078"},{"time":"17:46:00","height":"4.025"}]},{"date":"2020-06-02","groups":[{"time":"06:11:00","height":"4.358"},{"time":"18:44:00","height":"4.367"}]},{"date":"2020-06-03","groups":[{"time":"07:07:00","height":"4.664"},{"time":"19:36:00","height":"4.702"}]},{"date":"2020-06-04","groups":[{"time":"07:58:00","height":"4.917"},{"time":"20:24:00","height":"4.969"}]},{"date":"2020-06-05","groups":[{"time":"08:46:00","height":"5.075"},{"time":"21:08:00","height":"5.138"}]},{"date":"2020-06-06","groups":[{"time":"09:31:00","height":"5.121"},{"time":"21:52:00","height":"5.192"}]},{"date":"2020-06-07","groups":[{"time":"10:14:00","height":"5.049"},{"time":"22:34:00","height":"5.128"}]},{"date":"2020-06-08","groups":[{"time":"10:56:00","height":"4.866"},{"time":"23:16:00","height":"4.952"}]},{"date":"2020-06-09","groups":[{"time":"11:41:00","height":"4.596"}]},{"date":"2020-06-10","groups":[{"time":"00:02:00","height":"4.692"},{"time":"12:26:00","height":"4.272"}]},{"date":"2020-06-11","groups":[{"time":"00:49:00","height":"4.384"},{"time":"13:14:00","height":"3.938"}]},{"date":"2020-06-12","groups":[{"time":"01:39:00","height":"4.072"},{"time":"14:05:00","height":"3.633"}]},{"date":"2020-06-13","groups":[{"time":"02:34:00","height":"3.797"},{"time":"15:06:00","height":"3.402"}]},{"date":"2020-06-14","groups":[{"time":"03:39:00","height":"3.610"},{"time":"16:17:00","height":"3.302"}]},{"date":"2020-06-15","groups":[{"time":"04:50:00","height":"3.562"},{"time":"17:24:00","height":"3.374"}]},{"date":"2020-06-16","groups":[{"time":"05:50:00","height":"3.658"},{"time":"18:20:00","height":"3.580"}]},{"date":"2020-06-17","groups":[{"time":"06:41:00","height":"3.843"},{"time":"19:07:00","height":"3.847"}]},{"date":"2020-06-18","groups":[{"time":"07:26:00","height":"4.060"},{"time":"19:47:00","height":"4.122"}]},{"date":"2020-06-19","groups":[{"time":"08:06:00","height":"4.269"},{"time":"20:25:00","height":"4.372"}]},{"date":"2020-06-20","groups":[{"time":"08:44:00","height":"4.449"},{"time":"21:01:00","height":"4.578"}]},{"date":"2020-06-21","groups":[{"time":"09:21:00","height":"4.586"},{"time":"21:37:00","height":"4.729"}]},{"date":"2020-06-22","groups":[{"time":"09:58:00","height":"4.671"},{"time":"22:13:00","height":"4.817"}]},{"date":"2020-06-23","groups":[{"time":"10:36:00","height":"4.695"},{"time":"22:52:00","height":"4.835"}]},{"date":"2020-06-24","groups":[{"time":"11:16:00","height":"4.650"},{"time":"23:34:00","height":"4.783"}]},{"date":"2020-06-25","groups":[{"time":"12:04:00","height":"4.536"}]},{"date":"2020-06-26","groups":[{"time":"00:24:00","height":"4.667"},{"time":"12:56:00","height":"4.368"}]},{"date":"2020-06-27","groups":[{"time":"01:18:00","height":"4.510"},{"time":"13:53:00","height":"4.178"}]},{"date":"2020-06-28","groups":[{"time":"02:19:00","height":"4.342"},{"time":"14:57:00","height":"4.014"}]},{"date":"2020-06-29","groups":[{"time":"03:26:00","height":"4.206"},{"time":"16:07:00","height":"3.931"}]},{"date":"2020-06-30","groups":[{"time":"04:38:00","height":"4.151"},{"time":"17:15:00","height":"3.976"}]},{"date":"2020-07-01","groups":[{"time":"05:42:00","height":"4.199"},{"time":"18:17:00","height":"4.142"}]},{"date":"2020-07-02","groups":[{"time":"06:43:00","height":"4.330"},{"time":"19:14:00","height":"4.377"}]},{"date":"2020-07-03","groups":[{"time":"07:40:00","height":"4.494"},{"time":"20:07:00","height":"4.620"}]},{"date":"2020-07-04","groups":[{"time":"08:32:00","height":"4.645"},{"time":"20:56:00","height":"4.820"}]},{"date":"2020-07-05","groups":[{"time":"09:19:00","height":"4.743"},{"time":"21:40:00","height":"4.943"}]},{"date":"2020-07-06","groups":[{"time":"10:03:00","height":"4.767"},{"time":"22:22:00","height":"4.971"}]},{"date":"2020-07-07","groups":[{"time":"10:43:00","height":"4.707"},{"time":"23:01:00","height":"4.904"}]},{"date":"2020-07-08","groups":[{"time":"11:23:00","height":"4.570"},{"time":"23:42:00","height":"4.753"}]},{"date":"2020-07-09","groups":[{"time":"12:04:00","height":"4.375"}]},{"date":"2020-07-10","groups":[{"time":"00:24:00","height":"4.545"},{"time":"12:44:00","height":"4.145"}]},{"date":"2020-07-11","groups":[{"time":"01:05:00","height":"4.302"},{"time":"13:26:00","height":"3.899"}]},{"date":"2020-07-12","groups":[{"time":"01:50:00","height":"4.043"},{"time":"14:10:00","height":"3.657"}]},{"date":"2020-07-13","groups":[{"time":"02:39:00","height":"3.789"},{"time":"15:04:00","height":"3.446"}]},{"date":"2020-07-14","groups":[{"time":"03:37:00","height":"3.579"},{"time":"16:10:00","height":"3.320"}]},{"date":"2020-07-15","groups":[{"time":"04:46:00","height":"3.473"},{"time":"17:20:00","height":"3.350"}]},{"date":"2020-07-16","groups":[{"time":"05:50:00","height":"3.528"},{"time":"18:22:00","height":"3.550"}]},{"date":"2020-07-17","groups":[{"time":"06:47:00","height":"3.723"},{"time":"19:13:00","height":"3.854"}]},{"date":"2020-07-18","groups":[{"time":"07:36:00","height":"3.992"},{"time":"19:59:00","height":"4.188"}]},{"date":"2020-07-19","groups":[{"time":"08:21:00","height":"4.277"},{"time":"20:40:00","height":"4.505"}]},{"date":"2020-07-20","groups":[{"time":"09:03:00","height":"4.539"},{"time":"21:20:00","height":"4.775"}]},{"date":"2020-07-21","groups":[{"time":"09:44:00","height":"4.750"},{"time":"22:01:00","height":"4.980"}]},{"date":"2020-07-22","groups":[{"time":"10:25:00","height":"4.891"},{"time":"22:42:00","height":"5.107"}]},{"date":"2020-07-23","groups":[{"time":"11:06:00","height":"4.943"},{"time":"23:25:00","height":"5.139"}]},{"date":"2020-07-24","groups":[{"time":"11:53:00","height":"4.894"}]},{"date":"2020-07-25","groups":[{"time":"00:13:00","height":"5.067"},{"time":"12:42:00","height":"4.744"}]},{"date":"2020-07-26","groups":[{"time":"01:03:00","height":"4.893"},{"time":"13:33:00","height":"4.513"}]},{"date":"2020-07-27","groups":[{"time":"01:56:00","height":"4.636"},{"time":"14:29:00","height":"4.240"}]},{"date":"2020-07-28","groups":[{"time":"02:56:00","height":"4.335"},{"time":"15:33:00","height":"3.983"}]},{"date":"2020-07-29","groups":[{"time":"04:04:00","height":"4.057"},{"time":"16:46:00","height":"3.831"}]},{"date":"2020-07-30","groups":[{"time":"05:17:00","height":"3.901"},{"time":"17:55:00","height":"3.864"}]},{"date":"2020-07-31","groups":[{"time":"06:27:00","height":"3.932"},{"time":"19:02:00","height":"4.077"}]},{"date":"2020-08-01","groups":[{"time":"07:32:00","height":"4.118"},{"time":"20:00:00","height":"4.378"}]},{"date":"2020-08-02","groups":[{"time":"08:27:00","height":"4.357"},{"time":"20:48:00","height":"4.660"}]},{"date":"2020-08-03","groups":[{"time":"09:12:00","height":"4.559"},{"time":"21:31:00","height":"4.860"}]},{"date":"2020-08-04","groups":[{"time":"09:52:00","height":"4.681"},{"time":"22:08:00","height":"4.957"}]},{"date":"2020-08-05","groups":[{"time":"10:28:00","height":"4.716"},{"time":"22:43:00","height":"4.958"}]},{"date":"2020-08-06","groups":[{"time":"11:01:00","height":"4.671"},{"time":"23:17:00","height":"4.876"}]},{"date":"2020-08-07","groups":[{"time":"11:36:00","height":"4.558"},{"time":"23:53:00","height":"4.727"}]},{"date":"2020-08-08","groups":[{"time":"12:09:00","height":"4.392"}]},{"date":"2020-08-09","groups":[{"time":"00:29:00","height":"4.523"},{"time":"12:44:00","height":"4.181"}]},{"date":"2020-08-10","groups":[{"time":"01:04:00","height":"4.268"},{"time":"13:21:00","height":"3.933"}]},{"date":"2020-08-11","groups":[{"time":"01:44:00","height":"3.974"},{"time":"14:03:00","height":"3.663"}]},{"date":"2020-08-12","groups":[{"time":"02:31:00","height":"3.664"},{"time":"14:56:00","height":"3.408"}]},{"date":"2020-08-13","groups":[{"time":"03:33:00","height":"3.396"},{"time":"16:09:00","height":"3.249"}]},{"date":"2020-08-14","groups":[{"time":"04:53:00","height":"3.283"},{"time":"17:33:00","height":"3.321"}]},{"date":"2020-08-15","groups":[{"time":"06:10:00","height":"3.436"},{"time":"18:42:00","height":"3.646"}]},{"date":"2020-08-16","groups":[{"time":"07:12:00","height":"3.790"},{"time":"19:36:00","height":"4.089"}]},{"date":"2020-08-17","groups":[{"time":"08:02:00","height":"4.215"},{"time":"20:22:00","height":"4.543"}]},{"date":"2020-08-18","groups":[{"time":"08:47:00","height":"4.625"},{"time":"21:04:00","height":"4.947"}]},{"date":"2020-08-19","groups":[{"time":"09:29:00","height":"4.966"},{"time":"21:47:00","height":"5.265"}]},{"date":"2020-08-20","groups":[{"time":"10:10:00","height":"5.204"},{"time":"22:27:00","height":"5.467"}]},{"date":"2020-08-21","groups":[{"time":"10:50:00","height":"5.310"},{"time":"23:08:00","height":"5.526"}]},{"date":"2020-08-22","groups":[{"time":"11:33:00","height":"5.268"},{"time":"23:54:00","height":"5.424"}]},{"date":"2020-08-23","groups":[{"time":"12:19:00","height":"5.076"}]},{"date":"2020-08-24","groups":[{"time":"00:41:00","height":"5.161"},{"time":"13:07:00","height":"4.758"}]},{"date":"2020-08-25","groups":[{"time":"01:30:00","height":"4.765"},{"time":"13:59:00","height":"4.360"}]},{"date":"2020-08-26","groups":[{"time":"02:26:00","height":"4.292"},{"time":"14:59:00","height":"3.952"}]},{"date":"2020-08-27","groups":[{"time":"03:34:00","height":"3.836"},{"time":"16:18:00","height":"3.655"}]},{"date":"2020-08-28","groups":[{"time":"04:58:00","height":"3.561"},{"time":"17:41:00","height":"3.639"}]},{"date":"2020-08-29","groups":[{"time":"06:22:00","height":"3.619"},{"time":"18:57:00","height":"3.923"}]},{"date":"2020-08-30","groups":[{"time":"07:30:00","height":"3.929"},{"time":"19:54:00","height":"4.319"}]},{"date":"2020-08-31","groups":[{"time":"08:20:00","height":"4.280"},{"time":"20:38:00","height":"4.664"}]},{"date":"2020-09-01","groups":[{"time":"09:00:00","height":"4.557"},{"time":"21:16:00","height":"4.896"}]},{"date":"2020-09-02","groups":[{"time":"09:35:00","height":"4.731"},{"time":"21:50:00","height":"5.015"}]},{"date":"2020-09-03","groups":[{"time":"10:06:00","height":"4.810"},{"time":"22:21:00","height":"5.040"}]},{"date":"2020-09-04","groups":[{"time":"10:36:00","height":"4.811"},{"time":"22:50:00","height":"4.990"}]},{"date":"2020-09-05","groups":[{"time":"11:03:00","height":"4.746"},{"time":"23:19:00","height":"4.873"}]},{"date":"2020-09-06","groups":[{"time":"11:33:00","height":"4.620"},{"time":"23:51:00","height":"4.689"}]},{"date":"2020-09-07","groups":[{"time":"12:04:00","height":"4.433"}]},{"date":"2020-09-08","groups":[{"time":"00:22:00","height":"4.438"},{"time":"12:35:00","height":"4.188"}]},{"date":"2020-09-09","groups":[{"time":"00:57:00","height":"4.125"},{"time":"13:11:00","height":"3.895"}]},{"date":"2020-09-10","groups":[{"time":"01:38:00","height":"3.770"},{"time":"13:57:00","height":"3.577"}]},{"date":"2020-09-11","groups":[{"time":"02:33:00","height":"3.415"},{"time":"15:06:00","height":"3.296"}]},{"date":"2020-09-12","groups":[{"time":"03:58:00","height":"3.175"},{"time":"16:46:00","height":"3.235"}]},{"date":"2020-09-13","groups":[{"time":"05:38:00","height":"3.278"},{"time":"18:14:00","height":"3.565"}]},{"date":"2020-09-14","groups":[{"time":"06:50:00","height":"3.720"},{"time":"19:14:00","height":"4.106"}]},{"date":"2020-09-15","groups":[{"time":"07:43:00","height":"4.271"},{"time":"20:02:00","height":"4.672"}]},{"date":"2020-09-16","groups":[{"time":"08:28:00","height":"4.794"},{"time":"20:45:00","height":"5.170"}]},{"date":"2020-09-17","groups":[{"time":"09:09:00","height":"5.216"},{"time":"21:26:00","height":"5.545"}]},{"date":"2020-09-18","groups":[{"time":"09:50:00","height":"5.496"},{"time":"22:06:00","height":"5.760"}]},{"date":"2020-09-19","groups":[{"time":"10:29:00","height":"5.607"},{"time":"22:47:00","height":"5.786"}]},{"date":"2020-09-20","groups":[{"time":"11:09:00","height":"5.536"},{"time":"23:29:00","height":"5.611"}]},{"date":"2020-09-21","groups":[{"time":"11:53:00","height":"5.289"}]},{"date":"2020-09-22","groups":[{"time":"00:16:00","height":"5.247"},{"time":"12:39:00","height":"4.897"}]},{"date":"2020-09-23","groups":[{"time":"01:03:00","height":"4.739"},{"time":"13:29:00","height":"4.413"}]},{"date":"2020-09-24","groups":[{"time":"01:57:00","height":"4.158"},{"time":"14:31:00","height":"3.920"}]},{"date":"2020-09-25","groups":[{"time":"03:08:00","height":"3.623"},{"time":"15:54:00","height":"3.563"}]},{"date":"2020-09-26","groups":[{"time":"04:45:00","height":"3.335"},{"time":"17:30:00","height":"3.562"}]},{"date":"2020-09-27","groups":[{"time":"06:16:00","height":"3.486"},{"time":"18:47:00","height":"3.908"}]},{"date":"2020-09-28","groups":[{"time":"07:20:00","height":"3.887"},{"time":"19:39:00","height":"4.335"}]},{"date":"2020-09-29","groups":[{"time":"08:04:00","height":"4.284"},{"time":"20:19:00","height":"4.683"}]},{"date":"2020-09-30","groups":[{"time":"08:40:00","height":"4.586"},{"time":"20:54:00","height":"4.911"}]},{"date":"2020-10-01","groups":[{"time":"09:12:00","height":"4.778"},{"time":"21:25:00","height":"5.031"}]},{"date":"2020-10-02","groups":[{"time":"09:41:00","height":"4.881"},{"time":"21:54:00","height":"5.067"}]},{"date":"2020-10-03","groups":[{"time":"10:08:00","height":"4.912"},{"time":"22:22:00","height":"5.037"}]},{"date":"2020-10-04","groups":[{"time":"10:34:00","height":"4.882"},{"time":"22:49:00","height":"4.941"}]},{"date":"2020-10-05","groups":[{"time":"10:59:00","height":"4.788"},{"time":"23:16:00","height":"4.775"}]},{"date":"2020-10-06","groups":[{"time":"11:28:00","height":"4.626"},{"time":"23:46:00","height":"4.536"}]},{"date":"2020-10-07","groups":[{"time":"11:59:00","height":"4.395"}]},{"date":"2020-10-08","groups":[{"time":"00:20:00","height":"4.230"},{"time":"12:34:00","height":"4.105"}]},{"date":"2020-10-09","groups":[{"time":"01:00:00","height":"3.875"},{"time":"13:18:00","height":"3.774"}]},{"date":"2020-10-10","groups":[{"time":"01:53:00","height":"3.503"},{"time":"14:25:00","height":"3.456"}]},{"date":"2020-10-11","groups":[{"time":"03:19:00","height":"3.227"},{"time":"16:06:00","height":"3.337"}]},{"date":"2020-10-12","groups":[{"time":"05:06:00","height":"3.306"},{"time":"17:43:00","height":"3.639"}]},{"date":"2020-10-13","groups":[{"time":"06:25:00","height":"3.773"},{"time":"18:47:00","height":"4.201"}]},{"date":"2020-10-14","groups":[{"time":"07:18:00","height":"4.364"},{"time":"19:37:00","height":"4.794"}]},{"date":"2020-10-15","groups":[{"time":"08:03:00","height":"4.917"},{"time":"20:21:00","height":"5.303"}]},{"date":"2020-10-16","groups":[{"time":"08:46:00","height":"5.352"},{"time":"21:03:00","height":"5.664"}]},{"date":"2020-10-17","groups":[{"time":"09:27:00","height":"5.627"},{"time":"21:45:00","height":"5.841"}]},{"date":"2020-10-18","groups":[{"time":"10:06:00","height":"5.722"},{"time":"22:25:00","height":"5.813"}]},{"date":"2020-10-19","groups":[{"time":"10:46:00","height":"5.629"},{"time":"23:06:00","height":"5.581"}]},{"date":"2020-10-20","groups":[{"time":"11:28:00","height":"5.361"},{"time":"23:52:00","height":"5.168"}]},{"date":"2020-10-21","groups":[{"time":"12:16:00","height":"4.951"}]},{"date":"2020-10-22","groups":[{"time":"00:42:00","height":"4.631"},{"time":"13:07:00","height":"4.459"}]},{"date":"2020-10-23","groups":[{"time":"01:37:00","height":"4.052"},{"time":"14:08:00","height":"3.970"}]},{"date":"2020-10-24","groups":[{"time":"02:46:00","height":"3.545"},{"time":"15:31:00","height":"3.621"}]},{"date":"2020-10-25","groups":[{"time":"04:23:00","height":"3.294"},{"time":"17:06:00","height":"3.599"}]},{"date":"2020-10-26","groups":[{"time":"04:52:00","height":"3.442"},{"time":"17:19:00","height":"3.882"}]},{"date":"2020-10-27","groups":[{"time":"05:54:00","height":"3.814"},{"time":"18:11:00","height":"4.250"}]},{"date":"2020-10-28","groups":[{"time":"06:37:00","height":"4.192"},{"time":"18:51:00","height":"4.564"}]},{"date":"2020-10-29","groups":[{"time":"07:12:00","height":"4.494"},{"time":"19:26:00","height":"4.785"}]},{"date":"2020-10-30","groups":[{"time":"07:44:00","height":"4.707"},{"time":"19:57:00","height":"4.917"}]},{"date":"2020-10-31","groups":[{"time":"08:12:00","height":"4.841"},{"time":"20:26:00","height":"4.977"}]},{"date":"2020-11-01","groups":[{"time":"08:40:00","height":"4.911"},{"time":"20:55:00","height":"4.974"}]},{"date":"2020-11-02","groups":[{"time":"09:07:00","height":"4.920"},{"time":"21:22:00","height":"4.907"}]},{"date":"2020-11-03","groups":[{"time":"09:34:00","height":"4.863"},{"time":"21:51:00","height":"4.772"}]},{"date":"2020-11-04","groups":[{"time":"10:02:00","height":"4.735"},{"time":"22:21:00","height":"4.568"}]},{"date":"2020-11-05","groups":[{"time":"10:34:00","height":"4.538"},{"time":"22:57:00","height":"4.300"}]},{"date":"2020-11-06","groups":[{"time":"11:13:00","height":"4.279"},{"time":"23:41:00","height":"3.984"}]},{"date":"2020-11-07","groups":[{"time":"12:00:00","height":"3.982"}]},{"date":"2020-11-08","groups":[{"time":"00:37:00","height":"3.660"},{"time":"13:06:00","height":"3.707"}]},{"date":"2020-11-09","groups":[{"time":"01:57:00","height":"3.433"},{"time":"14:38:00","height":"3.605"}]},{"date":"2020-11-10","groups":[{"time":"03:35:00","height":"3.490"},{"time":"16:08:00","height":"3.825"}]},{"date":"2020-11-11","groups":[{"time":"04:51:00","height":"3.865"},{"time":"17:14:00","height":"4.281"}]},{"date":"2020-11-12","groups":[{"time":"05:48:00","height":"4.376"},{"time":"18:08:00","height":"4.785"}]},{"date":"2020-11-13","groups":[{"time":"06:36:00","height":"4.869"},{"time":"18:56:00","height":"5.218"}]},{"date":"2020-11-14","groups":[{"time":"07:21:00","height":"5.262"},{"time":"19:40:00","height":"5.515"}]},{"date":"2020-11-15","groups":[{"time":"08:03:00","height":"5.513"},{"time":"20:24:00","height":"5.642"}]},{"date":"2020-11-16","groups":[{"time":"08:46:00","height":"5.606"},{"time":"21:06:00","height":"5.592"}]},{"date":"2020-11-17","groups":[{"time":"09:28:00","height":"5.535"},{"time":"21:50:00","height":"5.370"}]},{"date":"2020-11-18","groups":[{"time":"10:10:00","height":"5.311"},{"time":"22:36:00","height":"5.004"}]},{"date":"2020-11-19","groups":[{"time":"10:58:00","height":"4.965"},{"time":"23:25:00","height":"4.545"}]},{"date":"2020-11-20","groups":[{"time":"11:50:00","height":"4.548"}]},{"date":"2020-11-21","groups":[{"time":"00:18:00","height":"4.065"},{"time":"12:48:00","height":"4.131"}]},{"date":"2020-11-22","groups":[{"time":"01:21:00","height":"3.645"},{"time":"13:58:00","height":"3.803"}]},{"date":"2020-11-23","groups":[{"time":"02:39:00","height":"3.388"},{"time":"15:20:00","height":"3.670"}]},{"date":"2020-11-24","groups":[{"time":"04:03:00","height":"3.393"},{"time":"16:32:00","height":"3.767"}]},{"date":"2020-11-25","groups":[{"time":"05:08:00","height":"3.617"},{"time":"17:28:00","height":"3.998"}]},{"date":"2020-11-26","groups":[{"time":"05:57:00","height":"3.920"},{"time":"18:14:00","height":"4.251"}]},{"date":"2020-11-27","groups":[{"time":"06:38:00","height":"4.213"},{"time":"18:53:00","height":"4.470"}]},{"date":"2020-11-28","groups":[{"time":"07:13:00","height":"4.459"},{"time":"19:28:00","height":"4.636"}]},{"date":"2020-11-29","groups":[{"time":"07:45:00","height":"4.647"},{"time":"20:00:00","height":"4.745"}]},{"date":"2020-11-30","groups":[{"time":"08:15:00","height":"4.777"},{"time":"20:31:00","height":"4.795"}]},{"date":"2020-12-01","groups":[{"time":"08:45:00","height":"4.845"},{"time":"21:03:00","height":"4.787"}]},{"date":"2020-12-02","groups":[{"time":"09:16:00","height":"4.850"},{"time":"21:34:00","height":"4.720"}]},{"date":"2020-12-03","groups":[{"time":"09:47:00","height":"4.788"},{"time":"22:07:00","height":"4.591"}]},{"date":"2020-12-04","groups":[{"time":"10:23:00","height":"4.661"},{"time":"22:47:00","height":"4.403"}]},{"date":"2020-12-05","groups":[{"time":"11:05:00","height":"4.477"},{"time":"23:34:00","height":"4.172"}]},{"date":"2020-12-06","groups":[{"time":"11:56:00","height":"4.262"}]},{"date":"2020-12-07","groups":[{"time":"00:30:00","height":"3.934"},{"time":"12:57:00","height":"4.062"}]},{"date":"2020-12-08","groups":[{"time":"01:39:00","height":"3.757"},{"time":"14:11:00","height":"3.957"}]},{"date":"2020-12-09","groups":[{"time":"02:58:00","height":"3.732"},{"time":"15:31:00","height":"4.023"}]},{"date":"2020-12-10","groups":[{"time":"04:12:00","height":"3.911"},{"time":"16:38:00","height":"4.258"}]},{"date":"2020-12-11","groups":[{"time":"05:14:00","height":"4.237"},{"time":"17:38:00","height":"4.574"}]},{"date":"2020-12-12","groups":[{"time":"06:09:00","height":"4.606"},{"time":"18:31:00","height":"4.879"}]},{"date":"2020-12-13","groups":[{"time":"06:59:00","height":"4.940"},{"time":"19:21:00","height":"5.110"}]},{"date":"2020-12-14","groups":[{"time":"07:46:00","height":"5.190"},{"time":"20:09:00","height":"5.235"}]},{"date":"2020-12-15","groups":[{"time":"08:32:00","height":"5.326"},{"time":"20:54:00","height":"5.234"}]},{"date":"2020-12-16","groups":[{"time":"09:16:00","height":"5.338"},{"time":"21:38:00","height":"5.111"}]},{"date":"2020-12-17","groups":[{"time":"09:58:00","height":"5.224"},{"time":"22:23:00","height":"4.878"}]},{"date":"2020-12-18","groups":[{"time":"10:45:00","height":"4.998"},{"time":"23:10:00","height":"4.564"}]},{"date":"2020-12-19","groups":[{"time":"11:33:00","height":"4.697"},{"time":"23:58:00","height":"4.213"}]},{"date":"2020-12-20","groups":[{"time":"12:23:00","height":"4.363"}]},{"date":"2020-12-21","groups":[{"time":"00:49:00","height":"3.872"},{"time":"13:17:00","height":"4.043"}]},{"date":"2020-12-22","groups":[{"time":"01:45:00","height":"3.585"},{"time":"14:19:00","height":"3.787"}]},{"date":"2020-12-23","groups":[{"time":"02:52:00","height":"3.406"},{"time":"15:29:00","height":"3.651"}]},{"date":"2020-12-24","groups":[{"time":"04:05:00","height":"3.392"},{"time":"16:32:00","height":"3.668"}]},{"date":"2020-12-25","groups":[{"time":"05:05:00","height":"3.543"},{"time":"17:28:00","height":"3.810"}]},{"date":"2020-12-26","groups":[{"time":"05:57:00","height":"3.792"},{"time":"18:16:00","height":"4.014"}]},{"date":"2020-12-27","groups":[{"time":"06:40:00","height":"4.070"},{"time":"18:59:00","height":"4.228"}]},{"date":"2020-12-28","groups":[{"time":"07:18:00","height":"4.334"},{"time":"19:36:00","height":"4.419"}]},{"date":"2020-12-29","groups":[{"time":"07:54:00","height":"4.555"},{"time":"20:13:00","height":"4.570"}]},{"date":"2020-12-30","groups":[{"time":"08:29:00","height":"4.724"},{"time":"20:48:00","height":"4.673"}]},{"date":"2020-12-31","groups":[{"time":"09:03:00","height":"4.834"},{"time":"21:23:00","height":"4.724"}]},{"date":"2021-01-01","groups":[{"time":"09:38:00","height":"4.884"},{"time":"21:59:00","height":"4.714"}]},{"date":"2021-01-02","groups":[{"time":"10:16:00","height":"4.868"},{"time":"22:42:00","height":"4.639"}]},{"date":"2021-01-03","groups":[{"time":"11:00:00","height":"4.787"},{"time":"23:29:00","height":"4.500"}]},{"date":"2021-01-04","groups":[{"time":"11:48:00","height":"4.647"}]},{"date":"2021-01-05","groups":[{"time":"00:18:00","height":"4.313"},{"time":"12:42:00","height":"4.468"}]},{"date":"2021-01-06","groups":[{"time":"01:16:00","height":"4.110"},{"time":"13:43:00","height":"4.281"}]},{"date":"2021-01-07","groups":[{"time":"02:21:00","height":"3.943"},{"time":"14:52:00","height":"4.136"}]},{"date":"2021-01-08","groups":[{"time":"03:35:00","height":"3.880"},{"time":"16:04:00","height":"4.094"}]},{"date":"2021-01-09","groups":[{"time":"04:42:00","height":"3.974"},{"time":"17:10:00","height":"4.187"}]},{"date":"2021-01-10","groups":[{"time":"05:46:00","height":"4.207"},{"time":"18:13:00","height":"4.381"}]},{"date":"2021-01-11","groups":[{"time":"06:44:00","height":"4.516"},{"time":"19:11:00","height":"4.614"}]},{"date":"2021-01-12","groups":[{"time":"07:36:00","height":"4.819"},{"time":"20:02:00","height":"4.816"}]},{"date":"2021-01-13","groups":[{"time":"08:24:00","height":"5.053"},{"time":"20:48:00","height":"4.938"}]},{"date":"2021-01-14","groups":[{"time":"09:07:00","height":"5.180"},{"time":"21:30:00","height":"4.954"}]},{"date":"2021-01-15","groups":[{"time":"09:48:00","height":"5.184"},{"time":"22:09:00","height":"4.864"}]},{"date":"2021-01-16","groups":[{"time":"10:29:00","height":"5.071"},{"time":"22:51:00","height":"4.682"}]},{"date":"2021-01-17","groups":[{"time":"11:11:00","height":"4.864"},{"time":"23:31:00","height":"4.435"}]},{"date":"2021-01-18","groups":[{"time":"11:51:00","height":"4.592"}]},{"date":"2021-01-19","groups":[{"time":"00:11:00","height":"4.151"},{"time":"12:33:00","height":"4.283"}]},{"date":"2021-01-20","groups":[{"time":"00:52:00","height":"3.854"},{"time":"13:18:00","height":"3.962"}]},{"date":"2021-01-21","groups":[{"time":"01:40:00","height":"3.567"},{"time":"14:11:00","height":"3.658"}]},{"date":"2021-01-22","groups":[{"time":"02:38:00","height":"3.332"},{"time":"15:18:00","height":"3.431"}]},{"date":"2021-01-23","groups":[{"time":"03:55:00","height":"3.235"},{"time":"16:32:00","height":"3.378"}]},{"date":"2021-01-24","groups":[{"time":"05:09:00","height":"3.359"},{"time":"17:38:00","height":"3.528"}]},{"date":"2021-01-25","groups":[{"time":"06:07:00","height":"3.651"},{"time":"18:31:00","height":"3.802"}]},{"date":"2021-01-26","groups":[{"time":"06:55:00","height":"4.006"},{"time":"19:16:00","height":"4.116"}]},{"date":"2021-01-27","groups":[{"time":"07:36:00","height":"4.355"},{"time":"19:57:00","height":"4.414"}]},{"date":"2021-01-28","groups":[{"time":"08:14:00","height":"4.663"},{"time":"20:35:00","height":"4.670"}]},{"date":"2021-01-29","groups":[{"time":"08:50:00","height":"4.914"},{"time":"21:12:00","height":"4.865"}]},{"date":"2021-01-30","groups":[{"time":"09:27:00","height":"5.093"},{"time":"21:49:00","height":"4.979"}]},{"date":"2021-01-31","groups":[{"time":"10:05:00","height":"5.185"},{"time":"22:29:00","height":"4.994"}]},{"date":"2021-02-01","groups":[{"time":"10:49:00","height":"5.172"},{"time":"23:13:00","height":"4.897"}]},{"date":"2021-02-02","groups":[{"time":"11:33:00","height":"5.043"},{"time":"23:59:00","height":"4.693"}]},{"date":"2021-02-03","groups":[{"time":"12:21:00","height":"4.804"}]},{"date":"2021-02-04","groups":[{"time":"00:48:00","height":"4.406"},{"time":"13:13:00","height":"4.478"}]},{"date":"2021-02-05","groups":[{"time":"01:45:00","height":"4.081"},{"time":"14:15:00","height":"4.116"}]},{"date":"2021-02-06","groups":[{"time":"02:54:00","height":"3.796"},{"time":"15:32:00","height":"3.824"}]},{"date":"2021-02-07","groups":[{"time":"04:14:00","height":"3.684"},{"time":"16:51:00","height":"3.746"}]},{"date":"2021-02-08","groups":[{"time":"05:31:00","height":"3.840"},{"time":"18:06:00","height":"3.931"}]},{"date":"2021-02-09","groups":[{"time":"06:38:00","height":"4.195"},{"time":"19:08:00","height":"4.258"}]},{"date":"2021-02-10","groups":[{"time":"07:32:00","height":"4.592"},{"time":"19:58:00","height":"4.577"}]},{"date":"2021-02-11","groups":[{"time":"08:17:00","height":"4.913"},{"time":"20:39:00","height":"4.805"}]},{"date":"2021-02-12","groups":[{"time":"08:57:00","height":"5.109"},{"time":"21:17:00","height":"4.916"}]},{"date":"2021-02-13","groups":[{"time":"09:33:00","height":"5.175"},{"time":"21:51:00","height":"4.915"}]},{"date":"2021-02-14","groups":[{"time":"10:07:00","height":"5.124"},{"time":"22:24:00","height":"4.816"}]},{"date":"2021-02-15","groups":[{"time":"10:42:00","height":"4.975"},{"time":"22:58:00","height":"4.640"}]},{"date":"2021-02-16","groups":[{"time":"11:17:00","height":"4.750"},{"time":"23:31:00","height":"4.405"}]},{"date":"2021-02-17","groups":[{"time":"11:50:00","height":"4.462"}]},{"date":"2021-02-18","groups":[{"time":"00:04:00","height":"4.122"},{"time":"12:26:00","height":"4.124"}]},{"date":"2021-02-19","groups":[{"time":"00:41:00","height":"3.802"},{"time":"13:07:00","height":"3.751"}]},{"date":"2021-02-20","groups":[{"time":"01:27:00","height":"3.467"},{"time":"14:01:00","height":"3.380"}]},{"date":"2021-02-21","groups":[{"time":"02:31:00","height":"3.173"},{"time":"15:20:00","height":"3.112"}]},{"date":"2021-02-22","groups":[{"time":"04:05:00","height":"3.073"},{"time":"16:54:00","height":"3.141"}]},{"date":"2021-02-23","groups":[{"time":"05:32:00","height":"3.324"},{"time":"18:05:00","height":"3.475"}]},{"date":"2021-02-24","groups":[{"time":"06:30:00","height":"3.769"},{"time":"18:56:00","height":"3.924"}]},{"date":"2021-02-25","groups":[{"time":"07:15:00","height":"4.249"},{"time":"19:38:00","height":"4.376"}]},{"date":"2021-02-26","groups":[{"time":"07:54:00","height":"4.694"},{"time":"20:17:00","height":"4.775"}]},{"date":"2021-02-27","groups":[{"time":"08:33:00","height":"5.070"},{"time":"20:54:00","height":"5.087"}]},{"date":"2021-02-28","groups":[{"time":"09:10:00","height":"5.347"},{"time":"21:32:00","height":"5.282"}]},{"date":"2021-03-01","groups":[{"time":"09:48:00","height":"5.495"},{"time":"22:09:00","height":"5.334"}]},{"date":"2021-03-02","groups":[{"time":"10:28:00","height":"5.488"},{"time":"22:51:00","height":"5.229"}]},{"date":"2021-03-03","groups":[{"time":"11:11:00","height":"5.310"},{"time":"23:35:00","height":"4.972"}]},{"date":"2021-03-04","groups":[{"time":"11:57:00","height":"4.970"}]},{"date":"2021-03-05","groups":[{"time":"00:21:00","height":"4.594"},{"time":"12:46:00","height":"4.504"}]},{"date":"2021-03-06","groups":[{"time":"01:14:00","height":"4.144"},{"time":"13:46:00","height":"3.981"}]},{"date":"2021-03-07","groups":[{"time":"02:24:00","height":"3.714"},{"time":"15:07:00","height":"3.541"}]},{"date":"2021-03-08","groups":[{"time":"03:54:00","height":"3.490"},{"time":"16:40:00","height":"3.419"}]},{"date":"2021-03-09","groups":[{"time":"05:24:00","height":"3.656"},{"time":"18:04:00","height":"3.696"}]},{"date":"2021-03-10","groups":[{"time":"06:32:00","height":"4.084"},{"time":"19:02:00","height":"4.123"}]},{"date":"2021-03-11","groups":[{"time":"07:22:00","height":"4.524"},{"time":"19:46:00","height":"4.498"}]},{"date":"2021-03-12","groups":[{"time":"08:03:00","height":"4.853"},{"time":"20:23:00","height":"4.758"}]},{"date":"2021-03-13","groups":[{"time":"08:38:00","height":"5.046"},{"time":"20:56:00","height":"4.897"}]},{"date":"2021-03-14","groups":[{"time":"09:11:00","height":"5.117"},{"time":"21:26:00","height":"4.934"}]},{"date":"2021-03-15","groups":[{"time":"09:41:00","height":"5.091"},{"time":"21:54:00","height":"4.886"}]},{"date":"2021-03-16","groups":[{"time":"10:10:00","height":"4.981"},{"time":"22:23:00","height":"4.765"}]},{"date":"2021-03-17","groups":[{"time":"10:41:00","height":"4.797"},{"time":"22:53:00","height":"4.575"}]},{"date":"2021-03-18","groups":[{"time":"11:11:00","height":"4.539"},{"time":"23:23:00","height":"4.322"}]},{"date":"2021-03-19","groups":[{"time":"11:44:00","height":"4.214"},{"time":"23:56:00","height":"4.012"}]},{"date":"2021-03-20","groups":[{"time":"12:20:00","height":"3.835"}]},{"date":"2021-03-21","groups":[{"time":"00:35:00","height":"3.659"},{"time":"13:06:00","height":"3.429"}]},{"date":"2021-03-22","groups":[{"time":"01:29:00","height":"3.300"},{"time":"14:17:00","height":"3.072"}]},{"date":"2021-03-23","groups":[{"time":"02:59:00","height":"3.058"},{"time":"16:04:00","height":"2.982"}]},{"date":"2021-03-24","groups":[{"time":"04:48:00","height":"3.202"},{"time":"17:33:00","height":"3.330"}]},{"date":"2021-03-25","groups":[{"time":"05:58:00","height":"3.682"},{"time":"18:28:00","height":"3.866"}]},{"date":"2021-03-26","groups":[{"time":"06:46:00","height":"4.243"},{"time":"19:12:00","height":"4.416"}]},{"date":"2021-03-27","groups":[{"time":"07:28:00","height":"4.772"},{"time":"19:51:00","height":"4.898"}]},{"date":"2021-03-28","groups":[{"time":"08:08:00","height":"5.211"},{"time":"20:30:00","height":"5.266"}]},{"date":"2021-03-29","groups":[{"time":"09:47:00","height":"5.520"},{"time":"22:08:00","height":"5.487"}]},{"date":"2021-03-30","groups":[{"time":"10:26:00","height":"5.665"},{"time":"22:46:00","height":"5.537"}]},{"date":"2021-03-31","groups":[{"time":"11:05:00","height":"5.616"},{"time":"23:27:00","height":"5.404"}]},{"date":"2021-04-01","groups":[{"time":"11:49:00","height":"5.368"}]},{"date":"2021-04-02","groups":[{"time":"00:11:00","height":"5.104"},{"time":"12:35:00","height":"4.945"}]},{"date":"2021-04-03","groups":[{"time":"00:58:00","height":"4.672"},{"time":"13:25:00","height":"4.400"}]},{"date":"2021-04-04","groups":[{"time":"01:53:00","height":"4.170"},{"time":"14:27:00","height":"3.825"}]},{"date":"2021-04-05","groups":[{"time":"03:05:00","height":"3.706"},{"time":"15:51:00","height":"3.380"}]},{"date":"2021-04-06","groups":[{"time":"04:41:00","height":"3.482"},{"time":"17:31:00","height":"3.314"}]},{"date":"2021-04-07","groups":[{"time":"06:09:00","height":"3.665"},{"time":"18:51:00","height":"3.639"}]},{"date":"2021-04-08","groups":[{"time":"07:13:00","height":"4.072"},{"time":"19:44:00","height":"4.064"}]},{"date":"2021-04-09","groups":[{"time":"08:00:00","height":"4.461"},{"time":"20:24:00","height":"4.420"}]},{"date":"2021-04-10","groups":[{"time":"08:39:00","height":"4.740"},{"time":"20:59:00","height":"4.663"}]},{"date":"2021-04-11","groups":[{"time":"09:13:00","height":"4.898"},{"time":"21:30:00","height":"4.804"}]},{"date":"2021-04-12","groups":[{"time":"09:44:00","height":"4.963"},{"time":"21:58:00","height":"4.863"}]},{"date":"2021-04-13","groups":[{"time":"10:13:00","height":"4.954"},{"time":"22:25:00","height":"4.855"}]},{"date":"2021-04-14","groups":[{"time":"10:40:00","height":"4.878"},{"time":"22:52:00","height":"4.781"}]},{"date":"2021-04-15","groups":[{"time":"11:08:00","height":"4.732"},{"time":"23:18:00","height":"4.638"}]},{"date":"2021-04-16","groups":[{"time":"11:38:00","height":"4.513"},{"time":"23:50:00","height":"4.426"}]},{"date":"2021-04-17","groups":[{"time":"12:10:00","height":"4.227"}]},{"date":"2021-04-18","groups":[{"time":"00:22:00","height":"4.153"},{"time":"12:47:00","height":"3.887"}]},{"date":"2021-04-19","groups":[{"time":"01:01:00","height":"3.832"},{"time":"13:33:00","height":"3.521"}]},{"date":"2021-04-20","groups":[{"time":"01:55:00","height":"3.499"},{"time":"14:41:00","height":"3.195"}]},{"date":"2021-04-21","groups":[{"time":"03:18:00","height":"3.258"},{"time":"16:20:00","height":"3.090"}]},{"date":"2021-04-22","groups":[{"time":"05:01:00","height":"3.331"},{"time":"17:51:00","height":"3.381"}]},{"date":"2021-04-23","groups":[{"time":"06:16:00","height":"3.751"},{"time":"18:51:00","height":"3.902"}]},{"date":"2021-04-24","groups":[{"time":"07:11:00","height":"4.294"},{"time":"19:39:00","height":"4.453"}]},{"date":"2021-04-25","groups":[{"time":"07:57:00","height":"4.815"},{"time":"20:22:00","height":"4.936"}]},{"date":"2021-04-26","groups":[{"time":"08:39:00","height":"5.238"},{"time":"21:03:00","height":"5.298"}]},{"date":"2021-04-27","groups":[{"time":"09:21:00","height":"5.515"},{"time":"21:44:00","height":"5.507"}]},{"date":"2021-04-28","groups":[{"time":"10:03:00","height":"5.615"},{"time":"22:24:00","height":"5.544"}]},{"date":"2021-04-29","groups":[{"time":"10:44:00","height":"5.521"},{"time":"23:05:00","height":"5.405"}]},{"date":"2021-04-30","groups":[{"time":"11:28:00","height":"5.238"},{"time":"23:52:00","height":"5.106"}]},{"date":"2021-05-01","groups":[{"time":"12:18:00","height":"4.803"}]},{"date":"2021-05-02","groups":[{"time":"00:43:00","height":"4.692"},{"time":"13:12:00","height":"4.284"}]},{"date":"2021-05-03","groups":[{"time":"01:40:00","height":"4.231"},{"time":"14:15:00","height":"3.775"}]},{"date":"2021-05-04","groups":[{"time":"02:51:00","height":"3.828"},{"time":"15:35:00","height":"3.415"}]},{"date":"2021-05-05","groups":[{"time":"04:18:00","height":"3.632"},{"time":"17:06:00","height":"3.362"}]},{"date":"2021-05-06","groups":[{"time":"05:38:00","height":"3.731"},{"time":"18:18:00","height":"3.599"}]},{"date":"2021-05-07","groups":[{"time":"06:41:00","height":"4.004"},{"time":"19:11:00","height":"3.934"}]},{"date":"2021-05-08","groups":[{"time":"07:28:00","height":"4.287"},{"time":"19:52:00","height":"4.233"}]},{"date":"2021-05-09","groups":[{"time":"08:08:00","height":"4.504"},{"time":"20:28:00","height":"4.458"}]},{"date":"2021-05-10","groups":[{"time":"08:42:00","height":"4.643"},{"time":"20:59:00","height":"4.610"}]},{"date":"2021-05-11","groups":[{"time":"09:14:00","height":"4.717"},{"time":"21:29:00","height":"4.700"}]},{"date":"2021-05-12","groups":[{"time":"09:45:00","height":"4.735"},{"time":"21:58:00","height":"4.733"}]},{"date":"2021-05-13","groups":[{"time":"10:14:00","height":"4.696"},{"time":"22:25:00","height":"4.706"}]},{"date":"2021-05-14","groups":[{"time":"10:42:00","height":"4.597"},{"time":"22:54:00","height":"4.615"}]},{"date":"2021-05-15","groups":[{"time":"11:13:00","height":"4.435"},{"time":"23:25:00","height":"4.461"}]},{"date":"2021-05-16","groups":[{"time":"11:49:00","height":"4.216"}]},{"date":"2021-05-17","groups":[{"time":"00:02:00","height":"4.252"},{"time":"12:29:00","height":"3.955"}]},{"date":"2021-05-18","groups":[{"time":"00:45:00","height":"4.004"},{"time":"13:17:00","height":"3.680"}]},{"date":"2021-05-19","groups":[{"time":"01:40:00","height":"3.757"},{"time":"14:22:00","height":"3.450"}]},{"date":"2021-05-20","groups":[{"time":"02:54:00","height":"3.592"},{"time":"15:45:00","height":"3.380"}]},{"date":"2021-05-21","groups":[{"time":"04:19:00","height":"3.634"},{"time":"17:06:00","height":"3.570"}]},{"date":"2021-05-22","groups":[{"time":"05:33:00","height":"3.916"},{"time":"18:10:00","height":"3.961"}]},{"date":"2021-05-23","groups":[{"time":"06:32:00","height":"4.329"},{"time":"19:03:00","height":"4.413"}]},{"date":"2021-05-24","groups":[{"time":"07:24:00","height":"4.746"},{"time":"19:51:00","height":"4.828"}]},{"date":"2021-05-25","groups":[{"time":"08:12:00","height":"5.084"},{"time":"20:36:00","height":"5.147"}]},{"date":"2021-05-26","groups":[{"time":"08:58:00","height":"5.298"},{"time":"21:21:00","height":"5.339"}]},{"date":"2021-05-27","groups":[{"time":"09:44:00","height":"5.363"},{"time":"22:06:00","height":"5.389"}]},{"date":"2021-05-28","groups":[{"time":"10:29:00","height":"5.271"},{"time":"22:50:00","height":"5.294"}]},{"date":"2021-05-29","groups":[{"time":"11:14:00","height":"5.033"},{"time":"23:38:00","height":"5.067"}]},{"date":"2021-05-30","groups":[{"time":"12:07:00","height":"4.682"}]},{"date":"2021-05-31","groups":[{"time":"00:31:00","height":"4.743"},{"time":"13:01:00","height":"4.277"}]},{"date":"2021-06-01","groups":[{"time":"01:27:00","height":"4.381"},{"time":"14:00:00","height":"3.885"}]},{"date":"2021-06-02","groups":[{"time":"02:30:00","height":"4.049"},{"time":"15:06:00","height":"3.585"}]},{"date":"2021-06-03","groups":[{"time":"03:40:00","height":"3.822"},{"time":"16:22:00","height":"3.453"}]},{"date":"2021-06-04","groups":[{"time":"04:53:00","height":"3.758"},{"time":"17:29:00","height":"3.515"}]},{"date":"2021-06-05","groups":[{"time":"05:54:00","height":"3.840"},{"time":"18:25:00","height":"3.706"}]},{"date":"2021-06-06","groups":[{"time":"06:46:00","height":"3.997"},{"time":"19:12:00","height":"3.939"}]},{"date":"2021-06-07","groups":[{"time":"07:30:00","height":"4.164"},{"time":"19:53:00","height":"4.160"}]},{"date":"2021-06-08","groups":[{"time":"08:10:00","height":"4.309"},{"time":"20:29:00","height":"4.345"}]},{"date":"2021-06-09","groups":[{"time":"08:46:00","height":"4.419"},{"time":"21:02:00","height":"4.485"}]},{"date":"2021-06-10","groups":[{"time":"09:19:00","height":"4.486"},{"time":"21:35:00","height":"4.573"}]},{"date":"2021-06-11","groups":[{"time":"09:52:00","height":"4.506"},{"time":"22:06:00","height":"4.609"}]},{"date":"2021-06-12","groups":[{"time":"10:24:00","height":"4.478"},{"time":"22:38:00","height":"4.591"}]},{"date":"2021-06-13","groups":[{"time":"10:57:00","height":"4.404"},{"time":"23:11:00","height":"4.521"}]},{"date":"2021-06-14","groups":[{"time":"11:36:00","height":"4.285"},{"time":"23:51:00","height":"4.404"}]},{"date":"2021-06-15","groups":[{"time":"12:19:00","height":"4.129"}]},{"date":"2021-06-16","groups":[{"time":"00:36:00","height":"4.255"},{"time":"13:08:00","height":"3.956"}]},{"date":"2021-06-17","groups":[{"time":"01:29:00","height":"4.100"},{"time":"14:05:00","height":"3.801"}]},{"date":"2021-06-18","groups":[{"time":"02:31:00","height":"3.981"},{"time":"15:12:00","height":"3.719"}]},{"date":"2021-06-19","groups":[{"time":"03:41:00","height":"3.950"},{"time":"16:26:00","height":"3.764"}]},{"date":"2021-06-20","groups":[{"time":"04:53:00","height":"4.044"},{"time":"17:31:00","height":"3.957"}]},{"date":"2021-06-21","groups":[{"time":"05:56:00","height":"4.250"},{"time":"18:30:00","height":"4.250"}]},{"date":"2021-06-22","groups":[{"time":"06:55:00","height":"4.507"},{"time":"19:25:00","height":"4.570"}]},{"date":"2021-06-23","groups":[{"time":"07:49:00","height":"4.750"},{"time":"20:16:00","height":"4.859"}]},{"date":"2021-06-24","groups":[{"time":"08:41:00","height":"4.935"},{"time":"21:05:00","height":"5.076"}]},{"date":"2021-06-25","groups":[{"time":"09:31:00","height":"5.030"},{"time":"21:53:00","height":"5.193"}]},{"date":"2021-06-26","groups":[{"time":"10:19:00","height":"5.019"},{"time":"22:39:00","height":"5.194"}]},{"date":"2021-06-27","groups":[{"time":"11:04:00","height":"4.898"},{"time":"23:27:00","height":"5.077"}]},{"date":"2021-06-28","groups":[{"time":"11:54:00","height":"4.679"}]},{"date":"2021-06-29","groups":[{"time":"00:17:00","height":"4.860"},{"time":"12:44:00","height":"4.394"}]},{"date":"2021-06-30","groups":[{"time":"01:07:00","height":"4.576"},{"time":"13:33:00","height":"4.084"}]},{"date":"2021-07-01","groups":[{"time":"01:59:00","height":"4.267"},{"time":"14:25:00","height":"3.791"}]},{"date":"2021-07-02","groups":[{"time":"02:54:00","height":"3.976"},{"time":"15:23:00","height":"3.558"}]},{"date":"2021-07-03","groups":[{"time":"03:54:00","height":"3.749"},{"time":"16:30:00","height":"3.431"}]},{"date":"2021-07-04","groups":[{"time":"04:59:00","height":"3.633"},{"time":"17:32:00","height":"3.449"}]},{"date":"2021-07-05","groups":[{"time":"05:58:00","height":"3.650"},{"time":"18:28:00","height":"3.599"}]},{"date":"2021-07-06","groups":[{"time":"06:52:00","height":"3.771"},{"time":"19:18:00","height":"3.826"}]},{"date":"2021-07-07","groups":[{"time":"07:40:00","height":"3.948"},{"time":"20:01:00","height":"4.071"}]},{"date":"2021-07-08","groups":[{"time":"08:22:00","height":"4.130"},{"time":"20:40:00","height":"4.293"}]},{"date":"2021-07-09","groups":[{"time":"09:00:00","height":"4.288"},{"time":"21:16:00","height":"4.472"}]},{"date":"2021-07-10","groups":[{"time":"09:36:00","height":"4.410"},{"time":"21:51:00","height":"4.603"}]},{"date":"2021-07-11","groups":[{"time":"10:11:00","height":"4.492"},{"time":"22:25:00","height":"4.685"}]},{"date":"2021-07-12","groups":[{"time":"10:46:00","height":"4.531"},{"time":"23:00:00","height":"4.718"}]},{"date":"2021-07-13","groups":[{"time":"11:24:00","height":"4.520"},{"time":"23:41:00","height":"4.697"}]},{"date":"2021-07-14","groups":[{"time":"12:07:00","height":"4.453"}]},{"date":"2021-07-15","groups":[{"time":"00:25:00","height":"4.619"},{"time":"12:52:00","height":"4.331"}]},{"date":"2021-07-16","groups":[{"time":"01:12:00","height":"4.492"},{"time":"13:42:00","height":"4.171"}]},{"date":"2021-07-17","groups":[{"time":"02:05:00","height":"4.330"},{"time":"14:39:00","height":"4.003"}]},{"date":"2021-07-18","groups":[{"time":"03:06:00","height":"4.160"},{"time":"15:45:00","height":"3.875"}]},{"date":"2021-07-19","groups":[{"time":"04:16:00","height":"4.033"},{"time":"16:56:00","height":"3.855"}]},{"date":"2021-07-20","groups":[{"time":"05:26:00","height":"4.017"},{"time":"18:04:00","height":"3.994"}]},{"date":"2021-07-21","groups":[{"time":"06:34:00","height":"4.141"},{"time":"19:08:00","height":"4.265"}]},{"date":"2021-07-22","groups":[{"time":"07:37:00","height":"4.365"},{"time":"20:06:00","height":"4.594"}]},{"date":"2021-07-23","groups":[{"time":"08:34:00","height":"4.616"},{"time":"20:58:00","height":"4.898"}]},{"date":"2021-07-24","groups":[{"time":"09:25:00","height":"4.818"},{"time":"21:46:00","height":"5.114"}]},{"date":"2021-07-25","groups":[{"time":"10:10:00","height":"4.924"},{"time":"22:29:00","height":"5.207"}]},{"date":"2021-07-26","groups":[{"time":"10:52:00","height":"4.914"},{"time":"23:11:00","height":"5.168"}]},{"date":"2021-07-27","groups":[{"time":"11:34:00","height":"4.792"},{"time":"23:54:00","height":"5.008"}]},{"date":"2021-07-28","groups":[{"time":"12:16:00","height":"4.580"}]},{"date":"2021-07-29","groups":[{"time":"00:36:00","height":"4.756"},{"time":"12:57:00","height":"4.309"}]},{"date":"2021-07-30","groups":[{"time":"01:18:00","height":"4.445"},{"time":"13:37:00","height":"4.010"}]},{"date":"2021-07-31","groups":[{"time":"02:01:00","height":"4.105"},{"time":"14:21:00","height":"3.710"}]},{"date":"2021-08-01","groups":[{"time":"02:49:00","height":"3.768"},{"time":"15:14:00","height":"3.439"}]},{"date":"2021-08-02","groups":[{"time":"03:49:00","height":"3.479"},{"time":"16:26:00","height":"3.265"}]},{"date":"2021-08-03","groups":[{"time":"05:04:00","height":"3.327"},{"time":"17:42:00","height":"3.292"}]},{"date":"2021-08-04","groups":[{"time":"06:15:00","height":"3.392"},{"time":"18:48:00","height":"3.526"}]},{"date":"2021-08-05","groups":[{"time":"07:14:00","height":"3.627"},{"time":"19:40:00","height":"3.860"}]},{"date":"2021-08-06","groups":[{"time":"08:02:00","height":"3.928"},{"time":"20:22:00","height":"4.201"}]},{"date":"2021-08-07","groups":[{"time":"08:43:00","height":"4.223"},{"time":"21:00:00","height":"4.502"}]},{"date":"2021-08-08","groups":[{"time":"09:20:00","height":"4.478"},{"time":"21:35:00","height":"4.748"}]},{"date":"2021-08-09","groups":[{"time":"09:56:00","height":"4.683"},{"time":"22:10:00","height":"4.936"}]},{"date":"2021-08-10","groups":[{"time":"10:31:00","height":"4.825"},{"time":"22:45:00","height":"5.054"}]},{"date":"2021-08-11","groups":[{"time":"11:06:00","height":"4.887"},{"time":"23:23:00","height":"5.084"}]},{"date":"2021-08-12","groups":[{"time":"11:47:00","height":"4.851"}]},{"date":"2021-08-13","groups":[{"time":"00:05:00","height":"5.011"},{"time":"12:30:00","height":"4.712"}]},{"date":"2021-08-14","groups":[{"time":"00:49:00","height":"4.830"},{"time":"13:15:00","height":"4.480"}]},{"date":"2021-08-15","groups":[{"time":"01:37:00","height":"4.551"},{"time":"14:06:00","height":"4.185"}]},{"date":"2021-08-16","groups":[{"time":"02:33:00","height":"4.205"},{"time":"15:09:00","height":"3.883"}]},{"date":"2021-08-17","groups":[{"time":"03:44:00","height":"3.869"},{"time":"16:30:00","height":"3.689"}]},{"date":"2021-08-18","groups":[{"time":"05:07:00","height":"3.689"},{"time":"17:51:00","height":"3.749"}]},{"date":"2021-08-19","groups":[{"time":"06:28:00","height":"3.799"},{"time":"19:04:00","height":"4.076"}]},{"date":"2021-08-20","groups":[{"time":"07:38:00","height":"4.130"},{"time":"20:04:00","height":"4.511"}]},{"date":"2021-08-21","groups":[{"time":"08:32:00","height":"4.504"},{"time":"20:53:00","height":"4.899"}]},{"date":"2021-08-22","groups":[{"time":"09:18:00","height":"4.798"},{"time":"21:35:00","height":"5.161"}]},{"date":"2021-08-23","groups":[{"time":"09:57:00","height":"4.966"},{"time":"22:14:00","height":"5.275"}]},{"date":"2021-08-24","groups":[{"time":"10:33:00","height":"5.003"},{"time":"22:50:00","height":"5.249"}]},{"date":"2021-08-25","groups":[{"time":"11:07:00","height":"4.924"},{"time":"23:25:00","height":"5.105"}]},{"date":"2021-08-26","groups":[{"time":"11:42:00","height":"4.751"}]},{"date":"2021-08-27","groups":[{"time":"00:00:00","height":"4.867"},{"time":"12:16:00","height":"4.509"}]},{"date":"2021-08-28","groups":[{"time":"00:35:00","height":"4.562"},{"time":"12:49:00","height":"4.219"}]},{"date":"2021-08-29","groups":[{"time":"01:11:00","height":"4.208"},{"time":"13:25:00","height":"3.894"}]},{"date":"2021-08-30","groups":[{"time":"01:50:00","height":"3.819"},{"time":"14:08:00","height":"3.551"}]},{"date":"2021-08-31","groups":[{"time":"02:41:00","height":"3.426"},{"time":"15:09:00","height":"3.236"}]},{"date":"2021-09-01","groups":[{"time":"03:56:00","height":"3.116"},{"time":"16:45:00","height":"3.091"}]},{"date":"2021-09-02","groups":[{"time":"05:38:00","height":"3.092"},{"time":"18:19:00","height":"3.312"}]},{"date":"2021-09-03","groups":[{"time":"06:53:00","height":"3.406"},{"time":"19:18:00","height":"3.743"}]},{"date":"2021-09-04","groups":[{"time":"07:43:00","height":"3.841"},{"time":"20:00:00","height":"4.205"}]},{"date":"2021-09-05","groups":[{"time":"08:23:00","height":"4.276"},{"time":"20:38:00","height":"4.627"}]},{"date":"2021-09-06","groups":[{"time":"08:59:00","height":"4.659"},{"time":"21:14:00","height":"4.980"}]},{"date":"2021-09-07","groups":[{"time":"09:35:00","height":"4.965"},{"time":"21:50:00","height":"5.246"}]},{"date":"2021-09-08","groups":[{"time":"10:09:00","height":"5.173"},{"time":"22:24:00","height":"5.407"}]},{"date":"2021-09-09","groups":[{"time":"10:45:00","height":"5.261"},{"time":"23:00:00","height":"5.434"}]},{"date":"2021-09-10","groups":[{"time":"11:21:00","height":"5.209"},{"time":"23:41:00","height":"5.309"}]},{"date":"2021-09-11","groups":[{"time":"12:04:00","height":"5.012"}]},{"date":"2021-09-12","groups":[{"time":"00:24:00","height":"5.027"},{"time":"12:48:00","height":"4.689"}]},{"date":"2021-09-13","groups":[{"time":"01:11:00","height":"4.611"},{"time":"13:38:00","height":"4.277"}]},{"date":"2021-09-14","groups":[{"time":"02:07:00","height":"4.112"},{"time":"14:43:00","height":"3.849"}]},{"date":"2021-09-15","groups":[{"time":"03:23:00","height":"3.644"},{"time":"16:14:00","height":"3.571"}]},{"date":"2021-09-16","groups":[{"time":"05:03:00","height":"3.442"},{"time":"17:49:00","height":"3.675"}]},{"date":"2021-09-17","groups":[{"time":"06:33:00","height":"3.673"},{"time":"19:04:00","height":"4.105"}]},{"date":"2021-09-18","groups":[{"time":"07:37:00","height":"4.126"},{"time":"19:58:00","height":"4.593"}]},{"date":"2021-09-19","groups":[{"time":"08:23:00","height":"4.552"},{"time":"20:40:00","height":"4.974"}]},{"date":"2021-09-20","groups":[{"time":"09:02:00","height":"4.854"},{"time":"21:18:00","height":"5.200"}]},{"date":"2021-09-21","groups":[{"time":"09:37:00","height":"5.018"},{"time":"21:52:00","height":"5.281"}]},{"date":"2021-09-22","groups":[{"time":"10:08:00","height":"5.060"},{"time":"22:23:00","height":"5.243"}]},{"date":"2021-09-23","groups":[{"time":"10:38:00","height":"5.004"},{"time":"22:53:00","height":"5.112"}]},{"date":"2021-09-24","groups":[{"time":"11:06:00","height":"4.869"},{"time":"23:23:00","height":"4.901"}]},{"date":"2021-09-25","groups":[{"time":"11:36:00","height":"4.664"},{"time":"23:54:00","height":"4.621"}]},{"date":"2021-09-26","groups":[{"time":"12:06:00","height":"4.399"}]},{"date":"2021-09-27","groups":[{"time":"00:26:00","height":"4.278"},{"time":"12:38:00","height":"4.081"}]},{"date":"2021-09-28","groups":[{"time":"01:02:00","height":"3.884"},{"time":"13:17:00","height":"3.721"}]},{"date":"2021-09-29","groups":[{"time":"01:47:00","height":"3.462"},{"time":"14:10:00","height":"3.352"}]},{"date":"2021-09-30","groups":[{"time":"02:56:00","height":"3.083"},{"time":"15:40:00","height":"3.094"}]},{"date":"2021-10-01","groups":[{"time":"04:51:00","height":"2.968"},{"time":"17:40:00","height":"3.236"}]},{"date":"2021-10-02","groups":[{"time":"06:23:00","height":"3.312"},{"time":"18:46:00","height":"3.708"}]},{"date":"2021-10-03","groups":[{"time":"07:14:00","height":"3.832"},{"time":"19:31:00","height":"4.245"}]},{"date":"2021-10-04","groups":[{"time":"07:55:00","height":"4.361"},{"time":"20:10:00","height":"4.748"}]},{"date":"2021-10-05","groups":[{"time":"08:31:00","height":"4.830"},{"time":"20:47:00","height":"5.170"}]},{"date":"2021-10-06","groups":[{"time":"09:08:00","height":"5.198"},{"time":"21:23:00","height":"5.476"}]},{"date":"2021-10-07","groups":[{"time":"09:45:00","height":"5.435"},{"time":"22:01:00","height":"5.636"}]},{"date":"2021-10-08","groups":[{"time":"10:21:00","height":"5.521"},{"time":"22:38:00","height":"5.627"}]},{"date":"2021-10-09","groups":[{"time":"10:58:00","height":"5.440"},{"time":"23:17:00","height":"5.432"}]},{"date":"2021-10-10","groups":[{"time":"11:40:00","height":"5.194"}]},{"date":"2021-10-11","groups":[{"time":"00:03:00","height":"5.061"},{"time":"12:26:00","height":"4.810"}]},{"date":"2021-10-12","groups":[{"time":"00:54:00","height":"4.555"},{"time":"13:21:00","height":"4.339"}]},{"date":"2021-10-13","groups":[{"time":"01:53:00","height":"3.995"},{"time":"14:31:00","height":"3.881"}]},{"date":"2021-10-14","groups":[{"time":"03:15:00","height":"3.529"},{"time":"16:06:00","height":"3.630"}]},{"date":"2021-10-15","groups":[{"time":"05:00:00","height":"3.411"},{"time":"17:40:00","height":"3.784"}]},{"date":"2021-10-16","groups":[{"time":"06:25:00","height":"3.716"},{"time":"18:49:00","height":"4.203"}]},{"date":"2021-10-17","groups":[{"time":"07:21:00","height":"4.164"},{"time":"19:39:00","height":"4.626"}]},{"date":"2021-10-18","groups":[{"time":"08:03:00","height":"4.551"},{"time":"20:19:00","height":"4.930"}]},{"date":"2021-10-19","groups":[{"time":"08:39:00","height":"4.815"},{"time":"20:54:00","height":"5.096"}]},{"date":"2021-10-20","groups":[{"time":"09:12:00","height":"4.960"},{"time":"21:26:00","height":"5.148"}]},{"date":"2021-10-21","groups":[{"time":"09:41:00","height":"5.011"},{"time":"21:56:00","height":"5.116"}]},{"date":"2021-10-22","groups":[{"time":"10:09:00","height":"4.989"},{"time":"22:24:00","height":"5.015"}]},{"date":"2021-10-23","groups":[{"time":"10:36:00","height":"4.899"},{"time":"22:52:00","height":"4.846"}]},{"date":"2021-10-24","groups":[{"time":"11:03:00","height":"4.742"},{"time":"23:20:00","height":"4.609"}]},{"date":"2021-10-25","groups":[{"time":"11:32:00","height":"4.518"},{"time":"23:53:00","height":"4.306"}]},{"date":"2021-10-26","groups":[{"time":"12:06:00","height":"4.236"}]},{"date":"2021-10-27","groups":[{"time":"00:29:00","height":"3.952"},{"time":"12:44:00","height":"3.908"}]},{"date":"2021-10-28","groups":[{"time":"01:13:00","height":"3.571"},{"time":"13:35:00","height":"3.566"}]},{"date":"2021-10-29","groups":[{"time":"02:18:00","height":"3.226"},{"time":"14:55:00","height":"3.306"}]},{"date":"2021-10-30","groups":[{"time":"03:57:00","height":"3.084"},{"time":"16:43:00","height":"3.345"}]},{"date":"2021-10-31","groups":[{"time":"05:35:00","height":"3.339"},{"time":"18:00:00","height":"3.736"}]},{"date":"2021-11-01","groups":[{"time":"05:34:00","height":"3.836"},{"time":"17:52:00","height":"4.255"}]},{"date":"2021-11-02","groups":[{"time":"06:19:00","height":"4.376"},{"time":"18:36:00","height":"4.767"}]},{"date":"2021-11-03","groups":[{"time":"07:00:00","height":"4.868"},{"time":"19:16:00","height":"5.198"}]},{"date":"2021-11-04","groups":[{"time":"07:40:00","height":"5.254"},{"time":"19:57:00","height":"5.500"}]},{"date":"2021-11-05","groups":[{"time":"08:19:00","height":"5.501"},{"time":"20:37:00","height":"5.641"}]},{"date":"2021-11-06","groups":[{"time":"08:59:00","height":"5.586"},{"time":"21:19:00","height":"5.598"}]},{"date":"2021-11-07","groups":[{"time":"09:39:00","height":"5.505"},{"time":"22:00:00","height":"5.373"}]},{"date":"2021-11-08","groups":[{"time":"10:23:00","height":"5.263"},{"time":"22:50:00","height":"4.988"}]},{"date":"2021-11-09","groups":[{"time":"11:15:00","height":"4.895"},{"time":"23:44:00","height":"4.501"}]},{"date":"2021-11-10","groups":[{"time":"12:13:00","height":"4.463"}]},{"date":"2021-11-11","groups":[{"time":"00:47:00","height":"4.002"},{"time":"13:22:00","height":"4.066"}]},{"date":"2021-11-12","groups":[{"time":"02:05:00","height":"3.621"},{"time":"14:48:00","height":"3.845"}]},{"date":"2021-11-13","groups":[{"time":"03:37:00","height":"3.516"},{"time":"16:12:00","height":"3.904"}]},{"date":"2021-11-14","groups":[{"time":"04:53:00","height":"3.715"},{"time":"17:17:00","height":"4.158"}]},{"date":"2021-11-15","groups":[{"time":"05:50:00","height":"4.043"},{"time":"18:09:00","height":"4.442"}]},{"date":"2021-11-16","groups":[{"time":"06:34:00","height":"4.353"},{"time":"18:50:00","height":"4.663"}]},{"date":"2021-11-17","groups":[{"time":"07:11:00","height":"4.586"},{"time":"19:26:00","height":"4.798"}]},{"date":"2021-11-18","groups":[{"time":"07:44:00","height":"4.740"},{"time":"19:59:00","height":"4.862"}]},{"date":"2021-11-19","groups":[{"time":"08:15:00","height":"4.827"},{"time":"20:30:00","height":"4.867"}]},{"date":"2021-11-20","groups":[{"time":"08:44:00","height":"4.855"},{"time":"21:00:00","height":"4.818"}]},{"date":"2021-11-21","groups":[{"time":"09:13:00","height":"4.823"},{"time":"21:30:00","height":"4.709"}]},{"date":"2021-11-22","groups":[{"time":"09:41:00","height":"4.728"},{"time":"21:59:00","height":"4.540"}]},{"date":"2021-11-23","groups":[{"time":"10:11:00","height":"4.572"},{"time":"22:32:00","height":"4.315"}]},{"date":"2021-11-24","groups":[{"time":"10:46:00","height":"4.361"},{"time":"23:11:00","height":"4.049"}]},{"date":"2021-11-25","groups":[{"time":"11:28:00","height":"4.112"},{"time":"23:57:00","height":"3.765"}]},{"date":"2021-11-26","groups":[{"time":"12:18:00","height":"3.854"}]},{"date":"2021-11-27","groups":[{"time":"00:55:00","height":"3.511"},{"time":"13:25:00","height":"3.655"}]},{"date":"2021-11-28","groups":[{"time":"02:12:00","height":"3.381"},{"time":"14:48:00","height":"3.623"}]},{"date":"2021-11-29","groups":[{"time":"03:38:00","height":"3.485"},{"time":"16:06:00","height":"3.826"}]},{"date":"2021-11-30","groups":[{"time":"04:45:00","height":"3.819"},{"time":"17:07:00","height":"4.199"}]},{"date":"2021-12-01","groups":[{"time":"05:40:00","height":"4.260"},{"time":"17:59:00","height":"4.618"}]},{"date":"2021-12-02","groups":[{"time":"06:28:00","height":"4.701"},{"time":"18:47:00","height":"4.993"}]},{"date":"2021-12-03","groups":[{"time":"07:13:00","height":"5.073"},{"time":"19:33:00","height":"5.267"}]},{"date":"2021-12-04","groups":[{"time":"07:58:00","height":"5.335"},{"time":"20:19:00","height":"5.405"}]},{"date":"2021-12-05","groups":[{"time":"08:43:00","height":"5.462"},{"time":"21:06:00","height":"5.392"}]},{"date":"2021-12-06","groups":[{"time":"09:27:00","height":"5.445"},{"time":"21:52:00","height":"5.227"}]},{"date":"2021-12-07","groups":[{"time":"10:14:00","height":"5.291"},{"time":"22:42:00","height":"4.938"}]},{"date":"2021-12-08","groups":[{"time":"11:07:00","height":"5.026"},{"time":"23:37:00","height":"4.567"}]},{"date":"2021-12-09","groups":[{"time":"12:03:00","height":"4.693"}]},{"date":"2021-12-10","groups":[{"time":"00:35:00","height":"4.178"},{"time":"13:05:00","height":"4.355"}]},{"date":"2021-12-11","groups":[{"time":"01:39:00","height":"3.842"},{"time":"14:12:00","height":"4.081"}]},{"date":"2021-12-12","groups":[{"time":"02:51:00","height":"3.637"},{"time":"15:26:00","height":"3.937"}]},{"date":"2021-12-13","groups":[{"time":"04:04:00","height":"3.614"},{"time":"16:31:00","height":"3.944"}]},{"date":"2021-12-14","groups":[{"time":"05:05:00","height":"3.749"},{"time":"17:27:00","height":"4.054"}]},{"date":"2021-12-15","groups":[{"time":"05:57:00","height":"3.963"},{"time":"18:15:00","height":"4.204"}]},{"date":"2021-12-16","groups":[{"time":"06:40:00","height":"4.188"},{"time":"18:58:00","height":"4.350"}]},{"date":"2021-12-17","groups":[{"time":"07:18:00","height":"4.387"},{"time":"19:35:00","height":"4.471"}]},{"date":"2021-12-18","groups":[{"time":"07:53:00","height":"4.544"},{"time":"20:10:00","height":"4.552"}]},{"date":"2021-12-19","groups":[{"time":"08:26:00","height":"4.650"},{"time":"20:44:00","height":"4.586"}]},{"date":"2021-12-20","groups":[{"time":"08:58:00","height":"4.700"},{"time":"21:16:00","height":"4.571"}]},{"date":"2021-12-21","groups":[{"time":"09:29:00","height":"4.694"},{"time":"21:48:00","height":"4.507"}]},{"date":"2021-12-22","groups":[{"time":"10:00:00","height":"4.637"},{"time":"22:21:00","height":"4.398"}]},{"date":"2021-12-23","groups":[{"time":"10:37:00","height":"4.532"},{"time":"23:02:00","height":"4.251"}]},{"date":"2021-12-24","groups":[{"time":"11:18:00","height":"4.388"},{"time":"23:45:00","height":"4.075"}]},{"date":"2021-12-25","groups":[{"time":"12:04:00","height":"4.222"}]},{"date":"2021-12-26","groups":[{"time":"00:35:00","height":"3.895"},{"time":"12:59:00","height":"4.061"}]},{"date":"2021-12-27","groups":[{"time":"01:33:00","height":"3.747"},{"time":"14:01:00","height":"3.949"}]},{"date":"2021-12-28","groups":[{"time":"02:43:00","height":"3.689"},{"time":"15:14:00","height":"3.936"}]},{"date":"2021-12-29","groups":[{"time":"03:55:00","height":"3.778"},{"time":"16:22:00","height":"4.059"}]},{"date":"2021-12-30","groups":[{"time":"05:00:00","height":"4.021"},{"time":"17:25:00","height":"4.299"}]},{"date":"2021-12-31","groups":[{"time":"05:58:00","height":"4.361"},{"time":"18:24:00","height":"4.587"}]},{"date":"2022-01-01","groups":[{"time":"06:53:00","height":"4.719"},{"time":"19:18:00","height":"4.858"}]},{"date":"2022-01-02","groups":[{"time":"07:44:00","height":"5.038"},{"time":"20:10:00","height":"5.064"}]},{"date":"2022-01-03","groups":[{"time":"08:34:00","height":"5.270"},{"time":"20:59:00","height":"5.166"}]},{"date":"2022-01-04","groups":[{"time":"09:21:00","height":"5.384"},{"time":"21:46:00","height":"5.145"}]},{"date":"2022-01-05","groups":[{"time":"10:06:00","height":"5.365"},{"time":"22:33:00","height":"5.000"}]},{"date":"2022-01-06","groups":[{"time":"10:56:00","height":"5.213"},{"time":"23:22:00","height":"4.750"}]},{"date":"2022-01-07","groups":[{"time":"11:46:00","height":"4.951"}]},{"date":"2022-01-08","groups":[{"time":"00:11:00","height":"4.432"},{"time":"12:36:00","height":"4.618"}]},{"date":"2022-01-09","groups":[{"time":"01:01:00","height":"4.089"},{"time":"13:28:00","height":"4.259"}]},{"date":"2022-01-10","groups":[{"time":"01:55:00","height":"3.769"},{"time":"14:26:00","height":"3.929"}]},{"date":"2022-01-11","groups":[{"time":"02:58:00","height":"3.527"},{"time":"15:32:00","height":"3.687"}]},{"date":"2022-01-12","groups":[{"time":"04:06:00","height":"3.426"},{"time":"16:37:00","height":"3.598"}]},{"date":"2022-01-13","groups":[{"time":"05:11:00","height":"3.506"},{"time":"17:38:00","height":"3.673"}]},{"date":"2022-01-14","groups":[{"time":"06:09:00","height":"3.724"},{"time":"18:31:00","height":"3.857"}]},{"date":"2022-01-15","groups":[{"time":"06:57:00","height":"3.998"},{"time":"19:17:00","height":"4.078"}]},{"date":"2022-01-16","groups":[{"time":"07:37:00","height":"4.262"},{"time":"19:56:00","height":"4.279"}]},{"date":"2022-01-17","groups":[{"time":"08:13:00","height":"4.479"},{"time":"20:32:00","height":"4.436"}]},{"date":"2022-01-18","groups":[{"time":"08:47:00","height":"4.640"},{"time":"21:05:00","height":"4.545"}]},{"date":"2022-01-19","groups":[{"time":"09:19:00","height":"4.745"},{"time":"21:38:00","height":"4.607"}]},{"date":"2022-01-20","groups":[{"time":"09:51:00","height":"4.799"},{"time":"22:10:00","height":"4.619"}]},{"date":"2022-01-21","groups":[{"time":"10:25:00","height":"4.799"},{"time":"22:47:00","height":"4.573"}]},{"date":"2022-01-22","groups":[{"time":"11:04:00","height":"4.738"},{"time":"23:26:00","height":"4.464"}]},{"date":"2022-01-23","groups":[{"time":"11:45:00","height":"4.614"}]},{"date":"2022-01-24","groups":[{"time":"00:10:00","height":"4.297"},{"time":"12:30:00","height":"4.433"}]},{"date":"2022-01-25","groups":[{"time":"00:57:00","height":"4.088"},{"time":"13:22:00","height":"4.210"}]},{"date":"2022-01-26","groups":[{"time":"01:56:00","height":"3.872"},{"time":"14:26:00","height":"3.984"}]},{"date":"2022-01-27","groups":[{"time":"03:09:00","height":"3.717"},{"time":"15:44:00","height":"3.839"}]},{"date":"2022-01-28","groups":[{"time":"04:25:00","height":"3.737"},{"time":"17:00:00","height":"3.887"}]},{"date":"2022-01-29","groups":[{"time":"05:39:00","height":"3.984"},{"time":"18:11:00","height":"4.138"}]},{"date":"2022-01-30","groups":[{"time":"06:43:00","height":"4.382"},{"time":"19:14:00","height":"4.491"}]},{"date":"2022-01-31","groups":[{"time":"07:39:00","height":"4.812"},{"time":"20:06:00","height":"4.830"}]},{"date":"2022-02-01","groups":[{"time":"08:28:00","height":"5.170"},{"time":"20:53:00","height":"5.069"}]},{"date":"2022-02-02","groups":[{"time":"09:13:00","height":"5.395"},{"time":"21:36:00","height":"5.169"}]},{"date":"2022-02-03","groups":[{"time":"09:54:00","height":"5.458"},{"time":"22:16:00","height":"5.121"}]},{"date":"2022-02-04","groups":[{"time":"10:37:00","height":"5.358"},{"time":"22:58:00","height":"4.940"}]},{"date":"2022-02-05","groups":[{"time":"11:19:00","height":"5.118"},{"time":"23:38:00","height":"4.656"}]},{"date":"2022-02-06","groups":[{"time":"12:00:00","height":"4.774"}]},{"date":"2022-02-07","groups":[{"time":"00:17:00","height":"4.309"},{"time":"12:40:00","height":"4.368"}]},{"date":"2022-02-08","groups":[{"time":"00:59:00","height":"3.934"},{"time":"13:25:00","height":"3.939"}]},{"date":"2022-02-09","groups":[{"time":"01:45:00","height":"3.565"},{"time":"14:19:00","height":"3.534"}]},{"date":"2022-02-10","groups":[{"time":"02:48:00","height":"3.256"},{"time":"15:35:00","height":"3.236"}]},{"date":"2022-02-11","groups":[{"time":"04:16:00","height":"3.134"},{"time":"16:57:00","height":"3.198"}]},{"date":"2022-02-12","groups":[{"time":"05:37:00","height":"3.316"},{"time":"18:09:00","height":"3.431"}]},{"date":"2022-02-13","groups":[{"time":"06:37:00","height":"3.676"},{"time":"19:00:00","height":"3.776"}]},{"date":"2022-02-14","groups":[{"time":"07:20:00","height":"4.060"},{"time":"19:40:00","height":"4.115"}]},{"date":"2022-02-15","groups":[{"time":"07:56:00","height":"4.397"},{"time":"20:15:00","height":"4.406"}]},{"date":"2022-02-16","groups":[{"time":"08:30:00","height":"4.670"},{"time":"20:49:00","height":"4.640"}]},{"date":"2022-02-17","groups":[{"time":"09:02:00","height":"4.881"},{"time":"21:20:00","height":"4.813"}]},{"date":"2022-02-18","groups":[{"time":"09:34:00","height":"5.027"},{"time":"21:52:00","height":"4.914"}]},{"date":"2022-02-19","groups":[{"time":"10:06:00","height":"5.095"},{"time":"22:26:00","height":"4.924"}]},{"date":"2022-02-20","groups":[{"time":"10:42:00","height":"5.066"},{"time":"23:03:00","height":"4.829"}]},{"date":"2022-02-21","groups":[{"time":"11:21:00","height":"4.927"},{"time":"23:43:00","height":"4.629"}]},{"date":"2022-02-22","groups":[{"time":"12:02:00","height":"4.675"}]},{"date":"2022-02-23","groups":[{"time":"00:26:00","height":"4.337"},{"time":"12:50:00","height":"4.325"}]},{"date":"2022-02-24","groups":[{"time":"01:19:00","height":"3.983"},{"time":"13:51:00","height":"3.915"}]},{"date":"2022-02-25","groups":[{"time":"02:31:00","height":"3.644"},{"time":"15:14:00","height":"3.571"}]},{"date":"2022-02-26","groups":[{"time":"04:04:00","height":"3.509"},{"time":"16:48:00","height":"3.530"}]},{"date":"2022-02-27","groups":[{"time":"05:30:00","height":"3.752"},{"time":"18:11:00","height":"3.859"}]},{"date":"2022-02-28","groups":[{"time":"06:40:00","height":"4.244"},{"time":"19:12:00","height":"4.336"}]},{"date":"2022-03-01","groups":[{"time":"07:33:00","height":"4.758"},{"time":"19:59:00","height":"4.764"}]},{"date":"2022-03-02","groups":[{"time":"08:18:00","height":"5.158"},{"time":"20:40:00","height":"5.058"}]},{"date":"2022-03-03","groups":[{"time":"08:58:00","height":"5.392"},{"time":"21:18:00","height":"5.194"}]},{"date":"2022-03-04","groups":[{"time":"09:35:00","height":"5.454"},{"time":"21:53:00","height":"5.180"}]},{"date":"2022-03-05","groups":[{"time":"10:09:00","height":"5.357"},{"time":"22:27:00","height":"5.035"}]},{"date":"2022-03-06","groups":[{"time":"10:46:00","height":"5.128"},{"time":"23:02:00","height":"4.787"}]},{"date":"2022-03-07","groups":[{"time":"11:21:00","height":"4.798"},{"time":"23:34:00","height":"4.465"}]},{"date":"2022-03-08","groups":[{"time":"11:56:00","height":"4.401"}]},{"date":"2022-03-09","groups":[{"time":"00:09:00","height":"4.096"},{"time":"12:33:00","height":"3.959"}]},{"date":"2022-03-10","groups":[{"time":"00:47:00","height":"3.696"},{"time":"13:17:00","height":"3.499"}]},{"date":"2022-03-11","groups":[{"time":"01:38:00","height":"3.294"},{"time":"14:21:00","height":"3.079"}]},{"date":"2022-03-12","groups":[{"time":"03:02:00","height":"2.989"},{"time":"16:09:00","height":"2.892"}]},{"date":"2022-03-13","groups":[{"time":"04:59:00","height":"3.061"},{"time":"17:41:00","height":"3.146"}]},{"date":"2022-03-14","groups":[{"time":"06:10:00","height":"3.467"},{"time":"18:37:00","height":"3.586"}]},{"date":"2022-03-15","groups":[{"time":"06:54:00","height":"3.933"},{"time":"19:15:00","height":"4.035"}]},{"date":"2022-03-16","groups":[{"time":"07:31:00","height":"4.362"},{"time":"19:50:00","height":"4.435"}]},{"date":"2022-03-17","groups":[{"time":"08:04:00","height":"4.726"},{"time":"20:22:00","height":"4.766"}]},{"date":"2022-03-18","groups":[{"time":"08:37:00","height":"5.016"},{"time":"20:55:00","height":"5.018"}]},{"date":"2022-03-19","groups":[{"time":"09:09:00","height":"5.221"},{"time":"21:28:00","height":"5.169"}]},{"date":"2022-03-20","groups":[{"time":"09:42:00","height":"5.317"},{"time":"22:00:00","height":"5.198"}]},{"date":"2022-03-21","groups":[{"time":"10:17:00","height":"5.276"},{"time":"22:38:00","height":"5.085"}]},{"date":"2022-03-22","groups":[{"time":"10:57:00","height":"5.084"},{"time":"23:18:00","height":"4.836"}]},{"date":"2022-03-23","groups":[{"time":"11:39:00","height":"4.744"}]},{"date":"2022-03-24","groups":[{"time":"00:02:00","height":"4.470"},{"time":"12:28:00","height":"4.283"}]},{"date":"2022-03-25","groups":[{"time":"00:56:00","height":"4.027"},{"time":"13:31:00","height":"3.770"}]},{"date":"2022-03-26","groups":[{"time":"02:13:00","height":"3.612"},{"time":"15:04:00","height":"3.379"}]},{"date":"2022-03-27","groups":[{"time":"03:55:00","height":"3.472"},{"time":"16:47:00","height":"3.407"}]},{"date":"2022-03-28","groups":[{"time":"06:25:00","height":"3.774"},{"time":"19:06:00","height":"3.829"}]},{"date":"2022-03-29","groups":[{"time":"07:30:00","height":"4.289"},{"time":"20:00:00","height":"4.329"}]},{"date":"2022-03-30","groups":[{"time":"08:18:00","height":"4.763"},{"time":"20:43:00","height":"4.733"}]},{"date":"2022-03-31","groups":[{"time":"08:59:00","height":"5.094"},{"time":"21:19:00","height":"4.993"}]},{"date":"2022-04-01","groups":[{"time":"09:36:00","height":"5.262"},{"time":"21:54:00","height":"5.110"}]},{"date":"2022-04-02","groups":[{"time":"10:10:00","height":"5.285"},{"time":"22:25:00","height":"5.105"}]},{"date":"2022-04-03","groups":[{"time":"10:41:00","height":"5.188"},{"time":"22:54:00","height":"4.997"}]},{"date":"2022-04-04","groups":[{"time":"11:11:00","height":"4.990"},{"time":"23:25:00","height":"4.800"}]},{"date":"2022-04-05","groups":[{"time":"11:44:00","height":"4.708"},{"time":"23:56:00","height":"4.531"}]},{"date":"2022-04-06","groups":[{"time":"12:17:00","height":"4.358"}]},{"date":"2022-04-07","groups":[{"time":"00:29:00","height":"4.203"},{"time":"12:51:00","height":"3.955"}]},{"date":"2022-04-08","groups":[{"time":"01:04:00","height":"3.831"},{"time":"13:33:00","height":"3.520"}]},{"date":"2022-04-09","groups":[{"time":"01:51:00","height":"3.435"},{"time":"14:31:00","height":"3.101"}]},{"date":"2022-04-10","groups":[{"time":"03:04:00","height":"3.091"},{"time":"16:10:00","height":"2.847"}]},{"date":"2022-04-11","groups":[{"time":"05:02:00","height":"3.027"},{"time":"17:58:00","height":"3.031"}]},{"date":"2022-04-12","groups":[{"time":"06:25:00","height":"3.376"},{"time":"18:57:00","height":"3.482"}]},{"date":"2022-04-13","groups":[{"time":"07:15:00","height":"3.852"},{"time":"19:40:00","height":"3.978"}]},{"date":"2022-04-14","groups":[{"time":"07:55:00","height":"4.324"},{"time":"20:16:00","height":"4.441"}]},{"date":"2022-04-15","groups":[{"time":"08:31:00","height":"4.741"},{"time":"20:51:00","height":"4.833"}]},{"date":"2022-04-16","groups":[{"time":"09:05:00","height":"5.076"},{"time":"21:26:00","height":"5.127"}]},{"date":"2022-04-17","groups":[{"time":"09:42:00","height":"5.302"},{"time":"22:02:00","height":"5.299"}]},{"date":"2022-04-18","groups":[{"time":"10:18:00","height":"5.390"},{"time":"22:38:00","height":"5.326"}]},{"date":"2022-04-19","groups":[{"time":"10:55:00","height":"5.316"},{"time":"23:15:00","height":"5.198"}]},{"date":"2022-04-20","groups":[{"time":"11:38:00","height":"5.071"},{"time":"23:59:00","height":"4.921"}]},{"date":"2022-04-21","groups":[{"time":"12:25:00","height":"4.677"}]},{"date":"2022-04-22","groups":[{"time":"00:49:00","height":"4.531"},{"time":"13:20:00","height":"4.187"}]},{"date":"2022-04-23","groups":[{"time":"01:50:00","height":"4.092"},{"time":"14:30:00","height":"3.702"}]},{"date":"2022-04-24","groups":[{"time":"03:11:00","height":"3.735"},{"time":"16:02:00","height":"3.411"}]},{"date":"2022-04-25","groups":[{"time":"04:47:00","height":"3.663"},{"time":"17:35:00","height":"3.504"}]},{"date":"2022-04-26","groups":[{"time":"06:07:00","height":"3.928"},{"time":"18:45:00","height":"3.874"}]},{"date":"2022-04-27","groups":[{"time":"07:07:00","height":"4.320"},{"time":"19:36:00","height":"4.278"}]},{"date":"2022-04-28","groups":[{"time":"07:54:00","height":"4.658"},{"time":"20:17:00","height":"4.593"}]},{"date":"2022-04-29","groups":[{"time":"08:33:00","height":"4.875"},{"time":"20:53:00","height":"4.793"}]},{"date":"2022-04-30","groups":[{"time":"09:09:00","height":"4.972"},{"time":"21:26:00","height":"4.890"}]},{"date":"2022-05-01","groups":[{"time":"09:42:00","height":"4.975"},{"time":"21:57:00","height":"4.903"}]},{"date":"2022-05-02","groups":[{"time":"10:13:00","height":"4.901"},{"time":"22:26:00","height":"4.842"}]},{"date":"2022-05-03","groups":[{"time":"10:43:00","height":"4.757"},{"time":"22:54:00","height":"4.710"}]},{"date":"2022-05-04","groups":[{"time":"11:13:00","height":"4.544"},{"time":"23:26:00","height":"4.510"}]},{"date":"2022-05-05","groups":[{"time":"11:47:00","height":"4.269"},{"time":"23:59:00","height":"4.252"}]},{"date":"2022-05-06","groups":[{"time":"12:23:00","height":"3.946"}]},{"date":"2022-05-07","groups":[{"time":"00:37:00","height":"3.950"},{"time":"13:05:00","height":"3.596"}]},{"date":"2022-05-08","groups":[{"time":"01:24:00","height":"3.630"},{"time":"14:01:00","height":"3.265"}]},{"date":"2022-05-09","groups":[{"time":"02:29:00","height":"3.352"},{"time":"15:20:00","height":"3.054"}]},{"date":"2022-05-10","groups":[{"time":"03:58:00","height":"3.248"},{"time":"16:55:00","height":"3.121"}]},{"date":"2022-05-11","groups":[{"time":"05:24:00","height":"3.440"},{"time":"18:04:00","height":"3.468"}]},{"date":"2022-05-12","groups":[{"time":"06:24:00","height":"3.829"},{"time":"18:54:00","height":"3.925"}]},{"date":"2022-05-13","groups":[{"time":"07:11:00","height":"4.269"},{"time":"19:36:00","height":"4.386"}]},{"date":"2022-05-14","groups":[{"time":"07:53:00","height":"4.680"},{"time":"20:16:00","height":"4.788"}]},{"date":"2022-05-15","groups":[{"time":"08:33:00","height":"5.011"},{"time":"20:56:00","height":"5.092"}]},{"date":"2022-05-16","groups":[{"time":"09:15:00","height":"5.226"},{"time":"21:36:00","height":"5.273"}]},{"date":"2022-05-17","groups":[{"time":"09:57:00","height":"5.297"},{"time":"22:18:00","height":"5.311"}]},{"date":"2022-05-18","groups":[{"time":"10:39:00","height":"5.211"},{"time":"23:00:00","height":"5.204"}]},{"date":"2022-05-19","groups":[{"time":"11:26:00","height":"4.973"},{"time":"23:50:00","height":"4.967"}]},{"date":"2022-05-20","groups":[{"time":"12:19:00","height":"4.616"}]},{"date":"2022-05-21","groups":[{"time":"00:46:00","height":"4.641"},{"time":"13:18:00","height":"4.208"}]},{"date":"2022-05-22","groups":[{"time":"01:49:00","height":"4.296"},{"time":"14:27:00","height":"3.840"}]},{"date":"2022-05-23","groups":[{"time":"03:02:00","height":"4.027"},{"time":"15:46:00","height":"3.622"}]},{"date":"2022-05-24","groups":[{"time":"04:24:00","height":"3.928"},{"time":"17:05:00","height":"3.636"}]},{"date":"2022-05-25","groups":[{"time":"05:34:00","height":"4.017"},{"time":"18:09:00","height":"3.832"}]},{"date":"2022-05-26","groups":[{"time":"06:32:00","height":"4.201"},{"time":"19:02:00","height":"4.086"}]},{"date":"2022-05-27","groups":[{"time":"07:21:00","height":"4.381"},{"time":"19:45:00","height":"4.311"}]},{"date":"2022-05-28","groups":[{"time":"08:03:00","height":"4.510"},{"time":"20:24:00","height":"4.478"}]},{"date":"2022-05-29","groups":[{"time":"08:41:00","height":"4.582"},{"time":"20:59:00","height":"4.586"}]},{"date":"2022-05-30","groups":[{"time":"09:16:00","height":"4.606"},{"time":"21:32:00","height":"4.640"}]},{"date":"2022-05-31","groups":[{"time":"09:50:00","height":"4.584"},{"time":"22:04:00","height":"4.639"}]},{"date":"2022-06-01","groups":[{"time":"10:22:00","height":"4.512"},{"time":"22:34:00","height":"4.580"}]},{"date":"2022-06-02","groups":[{"time":"10:53:00","height":"4.388"},{"time":"23:05:00","height":"4.467"}]},{"date":"2022-06-03","groups":[{"time":"11:27:00","height":"4.215"},{"time":"23:41:00","height":"4.305"}]},{"date":"2022-06-04","groups":[{"time":"12:06:00","height":"4.004"}]},{"date":"2022-06-05","groups":[{"time":"00:21:00","height":"4.107"},{"time":"12:48:00","height":"3.774"}]},{"date":"2022-06-06","groups":[{"time":"01:07:00","height":"3.895"},{"time":"13:39:00","height":"3.557"}]},{"date":"2022-06-07","groups":[{"time":"02:03:00","height":"3.708"},{"time":"14:41:00","height":"3.406"}]},{"date":"2022-06-08","groups":[{"time":"03:09:00","height":"3.607"},{"time":"15:53:00","height":"3.390"}]},{"date":"2022-06-09","groups":[{"time":"04:24:00","height":"3.654"},{"time":"17:05:00","height":"3.555"}]},{"date":"2022-06-10","groups":[{"time":"05:28:00","height":"3.863"},{"time":"18:04:00","height":"3.871"}]},{"date":"2022-06-11","groups":[{"time":"06:25:00","height":"4.176"},{"time":"18:56:00","height":"4.249"}]},{"date":"2022-06-12","groups":[{"time":"07:16:00","height":"4.510"},{"time":"19:44:00","height":"4.617"}]},{"date":"2022-06-13","groups":[{"time":"08:06:00","height":"4.802"},{"time":"20:31:00","height":"4.923"}]},{"date":"2022-06-14","groups":[{"time":"08:54:00","height":"5.008"},{"time":"21:18:00","height":"5.136"}]},{"date":"2022-06-15","groups":[{"time":"09:42:00","height":"5.103"},{"time":"22:05:00","height":"5.236"}]},{"date":"2022-06-16","groups":[{"time":"10:30:00","height":"5.077"},{"time":"22:52:00","height":"5.218"}]},{"date":"2022-06-17","groups":[{"time":"11:19:00","height":"4.933"},{"time":"23:44:00","height":"5.088"}]},{"date":"2022-06-18","groups":[{"time":"12:15:00","height":"4.694"}]},{"date":"2022-06-19","groups":[{"time":"00:41:00","height":"4.869"},{"time":"13:11:00","height":"4.397"}]},{"date":"2022-06-20","groups":[{"time":"01:38:00","height":"4.598"},{"time":"14:09:00","height":"4.095"}]},{"date":"2022-06-21","groups":[{"time":"02:39:00","height":"4.323"},{"time":"15:12:00","height":"3.843"}]},{"date":"2022-06-22","groups":[{"time":"03:45:00","height":"4.094"},{"time":"16:20:00","height":"3.694"}]},{"date":"2022-06-23","groups":[{"time":"04:51:00","height":"3.956"},{"time":"17:23:00","height":"3.679"}]},{"date":"2022-06-24","groups":[{"time":"05:50:00","height":"3.924"},{"time":"18:21:00","height":"3.777"}]},{"date":"2022-06-25","groups":[{"time":"06:44:00","height":"3.975"},{"time":"19:12:00","height":"3.941"}]},{"date":"2022-06-26","groups":[{"time":"07:34:00","height":"4.072"},{"time":"19:58:00","height":"4.122"}]},{"date":"2022-06-27","groups":[{"time":"08:17:00","height":"4.181"},{"time":"20:37:00","height":"4.286"}]},{"date":"2022-06-28","groups":[{"time":"08:56:00","height":"4.277"},{"time":"21:13:00","height":"4.413"}]},{"date":"2022-06-29","groups":[{"time":"09:33:00","height":"4.340"},{"time":"21:48:00","height":"4.492"}]},{"date":"2022-06-30","groups":[{"time":"10:06:00","height":"4.363"},{"time":"22:21:00","height":"4.523"}]},{"date":"2022-07-01","groups":[{"time":"10:39:00","height":"4.346"},{"time":"22:53:00","height":"4.509"}]},{"date":"2022-07-02","groups":[{"time":"11:13:00","height":"4.288"},{"time":"23:27:00","height":"4.452"}]},{"date":"2022-07-03","groups":[{"time":"11:51:00","height":"4.195"}]},{"date":"2022-07-04","groups":[{"time":"00:06:00","height":"4.357"},{"time":"12:31:00","height":"4.071"}]},{"date":"2022-07-05","groups":[{"time":"00:48:00","height":"4.232"},{"time":"13:14:00","height":"3.928"}]},{"date":"2022-07-06","groups":[{"time":"01:34:00","height":"4.092"},{"time":"14:04:00","height":"3.788"}]},{"date":"2022-07-07","groups":[{"time":"02:28:00","height":"3.961"},{"time":"15:02:00","height":"3.685"}]},{"date":"2022-07-08","groups":[{"time":"03:30:00","height":"3.874"},{"time":"16:11:00","height":"3.666"}]},{"date":"2022-07-09","groups":[{"time":"04:40:00","height":"3.873"},{"time":"17:19:00","height":"3.780"}]},{"date":"2022-07-10","groups":[{"time":"05:46:00","height":"3.995"},{"time":"18:22:00","height":"4.032"}]},{"date":"2022-07-11","groups":[{"time":"06:49:00","height":"4.225"},{"time":"19:20:00","height":"4.368"}]},{"date":"2022-07-12","groups":[{"time":"07:47:00","height":"4.502"},{"time":"20:15:00","height":"4.717"}]},{"date":"2022-07-13","groups":[{"time":"08:43:00","height":"4.766"},{"time":"21:07:00","height":"5.024"}]},{"date":"2022-07-14","groups":[{"time":"09:35:00","height":"4.966"},{"time":"21:57:00","height":"5.243"}]},{"date":"2022-07-15","groups":[{"time":"10:23:00","height":"5.064"},{"time":"22:44:00","height":"5.342"}]},{"date":"2022-07-16","groups":[{"time":"11:10:00","height":"5.040"},{"time":"23:33:00","height":"5.306"}]},{"date":"2022-07-17","groups":[{"time":"12:00:00","height":"4.894"}]},{"date":"2022-07-18","groups":[{"time":"00:23:00","height":"5.135"},{"time":"12:49:00","height":"4.647"}]},{"date":"2022-07-19","groups":[{"time":"01:13:00","height":"4.854"},{"time":"13:38:00","height":"4.335"}]},{"date":"2022-07-20","groups":[{"time":"02:03:00","height":"4.503"},{"time":"14:29:00","height":"4.003"}]},{"date":"2022-07-21","groups":[{"time":"02:57:00","height":"4.130"},{"time":"15:25:00","height":"3.701"}]},{"date":"2022-07-22","groups":[{"time":"03:57:00","height":"3.797"},{"time":"16:31:00","height":"3.492"}]},{"date":"2022-07-23","groups":[{"time":"05:03:00","height":"3.581"},{"time":"17:38:00","height":"3.447"}]},{"date":"2022-07-24","groups":[{"time":"06:08:00","height":"3.540"},{"time":"18:41:00","height":"3.582"}]},{"date":"2022-07-25","groups":[{"time":"07:09:00","height":"3.665"},{"time":"19:37:00","height":"3.831"}]},{"date":"2022-07-26","groups":[{"time":"08:00:00","height":"3.877"},{"time":"20:21:00","height":"4.101"}]},{"date":"2022-07-27","groups":[{"time":"08:43:00","height":"4.095"},{"time":"21:00:00","height":"4.335"}]},{"date":"2022-07-28","groups":[{"time":"09:19:00","height":"4.275"},{"time":"21:35:00","height":"4.512"}]},{"date":"2022-07-29","groups":[{"time":"09:53:00","height":"4.404"},{"time":"22:06:00","height":"4.630"}]},{"date":"2022-07-30","groups":[{"time":"10:25:00","height":"4.487"},{"time":"22:38:00","height":"4.701"}]},{"date":"2022-07-31","groups":[{"time":"10:56:00","height":"4.526"},{"time":"23:09:00","height":"4.723"}]},{"date":"2022-08-01","groups":[{"time":"11:30:00","height":"4.513"},{"time":"23:45:00","height":"4.689"}]},{"date":"2022-08-02","groups":[{"time":"12:07:00","height":"4.442"}]},{"date":"2022-08-03","groups":[{"time":"00:22:00","height":"4.593"},{"time":"12:45:00","height":"4.311"}]},{"date":"2022-08-04","groups":[{"time":"01:03:00","height":"4.439"},{"time":"13:27:00","height":"4.130"}]},{"date":"2022-08-05","groups":[{"time":"01:49:00","height":"4.232"},{"time":"14:18:00","height":"3.920"}]},{"date":"2022-08-06","groups":[{"time":"02:44:00","height":"3.995"},{"time":"15:22:00","height":"3.724"}]},{"date":"2022-08-07","groups":[{"time":"03:56:00","height":"3.784"},{"time":"16:42:00","height":"3.643"}]},{"date":"2022-08-08","groups":[{"time":"05:18:00","height":"3.724"},{"time":"18:00:00","height":"3.797"}]},{"date":"2022-08-09","groups":[{"time":"06:34:00","height":"3.911"},{"time":"19:10:00","height":"4.170"}]},{"date":"2022-08-10","groups":[{"time":"07:42:00","height":"4.272"},{"time":"20:10:00","height":"4.633"}]},{"date":"2022-08-11","groups":[{"time":"08:39:00","height":"4.669"},{"time":"21:02:00","height":"5.062"}]},{"date":"2022-08-12","groups":[{"time":"09:29:00","height":"4.992"},{"time":"21:49:00","height":"5.373"}]},{"date":"2022-08-13","groups":[{"time":"10:13:00","height":"5.181"},{"time":"22:32:00","height":"5.523"}]},{"date":"2022-08-14","groups":[{"time":"10:54:00","height":"5.214"},{"time":"23:13:00","height":"5.496"}]},{"date":"2022-08-15","groups":[{"time":"11:36:00","height":"5.094"},{"time":"23:57:00","height":"5.303"}]},{"date":"2022-08-16","groups":[{"time":"12:18:00","height":"4.844"}]},{"date":"2022-08-17","groups":[{"time":"00:39:00","height":"4.973"},{"time":"12:58:00","height":"4.503"}]},{"date":"2022-08-18","groups":[{"time":"01:21:00","height":"4.552"},{"time":"13:39:00","height":"4.116"}]},{"date":"2022-08-19","groups":[{"time":"02:04:00","height":"4.092"},{"time":"14:25:00","height":"3.722"}]},{"date":"2022-08-20","groups":[{"time":"02:55:00","height":"3.641"},{"time":"15:23:00","height":"3.371"}]},{"date":"2022-08-21","groups":[{"time":"04:05:00","height":"3.279"},{"time":"16:49:00","height":"3.178"}]},{"date":"2022-08-22","groups":[{"time":"05:33:00","height":"3.160"},{"time":"18:16:00","height":"3.302"}]},{"date":"2022-08-23","groups":[{"time":"06:51:00","height":"3.359"},{"time":"19:21:00","height":"3.652"}]},{"date":"2022-08-24","groups":[{"time":"07:45:00","height":"3.708"},{"time":"20:06:00","height":"4.042"}]},{"date":"2022-08-25","groups":[{"time":"08:27:00","height":"4.058"},{"time":"20:43:00","height":"4.380"}]},{"date":"2022-08-26","groups":[{"time":"09:02:00","height":"4.350"},{"time":"21:15:00","height":"4.643"}]},{"date":"2022-08-27","groups":[{"time":"09:34:00","height":"4.575"},{"time":"21:47:00","height":"4.835"}]},{"date":"2022-08-28","groups":[{"time":"10:04:00","height":"4.736"},{"time":"22:17:00","height":"4.964"}]},{"date":"2022-08-29","groups":[{"time":"10:34:00","height":"4.836"},{"time":"22:46:00","height":"5.027"}]},{"date":"2022-08-30","groups":[{"time":"11:04:00","height":"4.862"},{"time":"23:18:00","height":"5.009"}]},{"date":"2022-08-31","groups":[{"time":"11:38:00","height":"4.797"},{"time":"23:54:00","height":"4.895"}]},{"date":"2022-09-01","groups":[{"time":"12:15:00","height":"4.635"}]},{"date":"2022-09-02","groups":[{"time":"00:32:00","height":"4.679"},{"time":"12:55:00","height":"4.384"}]},{"date":"2022-09-03","groups":[{"time":"01:15:00","height":"4.366"},{"time":"13:42:00","height":"4.062"}]},{"date":"2022-09-04","groups":[{"time":"02:09:00","height":"3.979"},{"time":"14:46:00","height":"3.719"}]},{"date":"2022-09-05","groups":[{"time":"03:26:00","height":"3.603"},{"time":"16:19:00","height":"3.513"}]},{"date":"2022-09-06","groups":[{"time":"05:06:00","height":"3.470"},{"time":"17:53:00","height":"3.682"}]},{"date":"2022-09-07","groups":[{"time":"06:36:00","height":"3.751"},{"time":"19:09:00","height":"4.171"}]},{"date":"2022-09-08","groups":[{"time":"07:42:00","height":"4.253"},{"time":"20:05:00","height":"4.731"}]},{"date":"2022-09-09","groups":[{"time":"08:32:00","height":"4.741"},{"time":"20:51:00","height":"5.197"}]},{"date":"2022-09-10","groups":[{"time":"09:16:00","height":"5.100"},{"time":"21:33:00","height":"5.495"}]},{"date":"2022-09-11","groups":[{"time":"09:55:00","height":"5.293"},{"time":"22:12:00","height":"5.605"}]},{"date":"2022-09-12","groups":[{"time":"10:31:00","height":"5.319"},{"time":"22:48:00","height":"5.535"}]},{"date":"2022-09-13","groups":[{"time":"11:05:00","height":"5.195"},{"time":"23:24:00","height":"5.308"}]},{"date":"2022-09-14","groups":[{"time":"11:41:00","height":"4.948"}]},{"date":"2022-09-15","groups":[{"time":"00:02:00","height":"4.959"},{"time":"12:17:00","height":"4.611"}]},{"date":"2022-09-16","groups":[{"time":"00:37:00","height":"4.527"},{"time":"12:51:00","height":"4.219"}]},{"date":"2022-09-17","groups":[{"time":"01:15:00","height":"4.052"},{"time":"13:30:00","height":"3.801"}]},{"date":"2022-09-18","groups":[{"time":"01:59:00","height":"3.566"},{"time":"14:21:00","height":"3.386"}]},{"date":"2022-09-19","groups":[{"time":"03:02:00","height":"3.127"},{"time":"15:46:00","height":"3.073"}]},{"date":"2022-09-20","groups":[{"time":"04:55:00","height":"2.926"},{"time":"17:47:00","height":"3.149"}]},{"date":"2022-09-21","groups":[{"time":"06:29:00","height":"3.185"},{"time":"18:57:00","height":"3.562"}]},{"date":"2022-09-22","groups":[{"time":"07:24:00","height":"3.629"},{"time":"19:41:00","height":"4.024"}]},{"date":"2022-09-23","groups":[{"time":"08:02:00","height":"4.069"},{"time":"20:16:00","height":"4.434"}]},{"date":"2022-09-24","groups":[{"time":"08:35:00","height":"4.448"},{"time":"20:48:00","height":"4.765"}]},{"date":"2022-09-25","groups":[{"time":"09:06:00","height":"4.751"},{"time":"21:19:00","height":"5.016"}]},{"date":"2022-09-26","groups":[{"time":"09:36:00","height":"4.977"},{"time":"21:50:00","height":"5.188"}]},{"date":"2022-09-27","groups":[{"time":"10:07:00","height":"5.116"},{"time":"22:21:00","height":"5.269"}]},{"date":"2022-09-28","groups":[{"time":"10:38:00","height":"5.154"},{"time":"22:53:00","height":"5.239"}]},{"date":"2022-09-29","groups":[{"time":"11:10:00","height":"5.072"},{"time":"23:27:00","height":"5.078"}]},{"date":"2022-09-30","groups":[{"time":"11:47:00","height":"4.865"}]},{"date":"2022-10-01","groups":[{"time":"00:08:00","height":"4.782"},{"time":"12:30:00","height":"4.543"}]},{"date":"2022-10-02","groups":[{"time":"00:54:00","height":"4.367"},{"time":"13:21:00","height":"4.138"}]},{"date":"2022-10-03","groups":[{"time":"01:52:00","height":"3.880"},{"time":"14:32:00","height":"3.728"}]},{"date":"2022-10-04","groups":[{"time":"03:20:00","height":"3.463"},{"time":"16:16:00","height":"3.538"}]},{"date":"2022-10-05","groups":[{"time":"05:09:00","height":"3.420"},{"time":"17:52:00","height":"3.800"}]},{"date":"2022-10-06","groups":[{"time":"06:35:00","height":"3.822"},{"time":"19:00:00","height":"4.331"}]},{"date":"2022-10-07","groups":[{"time":"07:32:00","height":"4.356"},{"time":"19:51:00","height":"4.855"}]},{"date":"2022-10-08","groups":[{"time":"08:17:00","height":"4.812"},{"time":"20:34:00","height":"5.240"}]},{"date":"2022-10-09","groups":[{"time":"08:56:00","height":"5.119"},{"time":"21:12:00","height":"5.448"}]},{"date":"2022-10-10","groups":[{"time":"09:32:00","height":"5.268"},{"time":"21:48:00","height":"5.488"}]},{"date":"2022-10-11","groups":[{"time":"10:05:00","height":"5.276"},{"time":"22:22:00","height":"5.385"}]},{"date":"2022-10-12","groups":[{"time":"10:36:00","height":"5.165"},{"time":"22:53:00","height":"5.165"}]},{"date":"2022-10-13","groups":[{"time":"11:06:00","height":"4.953"},{"time":"23:25:00","height":"4.850"}]},{"date":"2022-10-14","groups":[{"time":"11:39:00","height":"4.661"},{"time":"23:59:00","height":"4.465"}]},{"date":"2022-10-15","groups":[{"time":"12:12:00","height":"4.310"}]},{"date":"2022-10-16","groups":[{"time":"00:35:00","height":"4.035"},{"time":"12:49:00","height":"3.922"}]},{"date":"2022-10-17","groups":[{"time":"01:17:00","height":"3.585"},{"time":"13:37:00","height":"3.521"}]},{"date":"2022-10-18","groups":[{"time":"02:17:00","height":"3.160"},{"time":"14:52:00","height":"3.182"}]},{"date":"2022-10-19","groups":[{"time":"03:58:00","height":"2.911"},{"time":"16:56:00","height":"3.142"}]},{"date":"2022-10-20","groups":[{"time":"05:49:00","height":"3.107"},{"time":"18:15:00","height":"3.495"}]},{"date":"2022-10-21","groups":[{"time":"06:46:00","height":"3.546"},{"time":"19:03:00","height":"3.951"}]},{"date":"2022-10-22","groups":[{"time":"07:27:00","height":"4.018"},{"time":"19:41:00","height":"4.390"}]},{"date":"2022-10-23","groups":[{"time":"08:01:00","height":"4.452"},{"time":"20:15:00","height":"4.769"}]},{"date":"2022-10-24","groups":[{"time":"08:33:00","height":"4.818"},{"time":"20:47:00","height":"5.070"}]},{"date":"2022-10-25","groups":[{"time":"09:06:00","height":"5.096"},{"time":"21:20:00","height":"5.276"}]},{"date":"2022-10-26","groups":[{"time":"09:40:00","height":"5.270"},{"time":"21:55:00","height":"5.367"}]},{"date":"2022-10-27","groups":[{"time":"10:14:00","height":"5.318"},{"time":"22:31:00","height":"5.318"}]},{"date":"2022-10-28","groups":[{"time":"10:50:00","height":"5.228"},{"time":"23:08:00","height":"5.120"}]},{"date":"2022-10-29","groups":[{"time":"11:30:00","height":"5.001"},{"time":"23:54:00","height":"4.778"}]},{"date":"2022-10-30","groups":[{"time":"12:19:00","height":"4.658"}]},{"date":"2022-10-31","groups":[{"time":"00:47:00","height":"4.332"},{"time":"12:17:00","height":"4.253"}]},{"date":"2022-11-01","groups":[{"time":"00:53:00","height":"3.867"},{"time":"13:34:00","height":"3.900"}]},{"date":"2022-11-02","groups":[{"time":"02:22:00","height":"3.548"},{"time":"15:11:00","height":"3.791"}]},{"date":"2022-11-03","groups":[{"time":"04:01:00","height":"3.581"},{"time":"16:35:00","height":"4.021"}]},{"date":"2022-11-04","groups":[{"time":"05:15:00","height":"3.928"},{"time":"17:39:00","height":"4.420"}]},{"date":"2022-11-05","groups":[{"time":"06:10:00","height":"4.351"},{"time":"18:28:00","height":"4.792"}]},{"date":"2022-11-06","groups":[{"time":"06:53:00","height":"4.704"},{"time":"19:10:00","height":"5.044"}]},{"date":"2022-11-07","groups":[{"time":"07:31:00","height":"4.938"},{"time":"19:48:00","height":"5.163"}]},{"date":"2022-11-08","groups":[{"time":"08:06:00","height":"5.054"},{"time":"20:23:00","height":"5.167"}]},{"date":"2022-11-09","groups":[{"time":"08:39:00","height":"5.073"},{"time":"20:56:00","height":"5.080"}]},{"date":"2022-11-10","groups":[{"time":"09:10:00","height":"5.007"},{"time":"21:27:00","height":"4.916"}]},{"date":"2022-11-11","groups":[{"time":"09:40:00","height":"4.863"},{"time":"21:58:00","height":"4.682"}]},{"date":"2022-11-12","groups":[{"time":"10:11:00","height":"4.648"},{"time":"22:32:00","height":"4.389"}]},{"date":"2022-11-13","groups":[{"time":"10:46:00","height":"4.379"},{"time":"23:10:00","height":"4.053"}]},{"date":"2022-11-14","groups":[{"time":"11:24:00","height":"4.071"},{"time":"23:52:00","height":"3.698"}]},{"date":"2022-11-15","groups":[{"time":"12:11:00","height":"3.749"}]},{"date":"2022-11-16","groups":[{"time":"00:47:00","height":"3.361"},{"time":"13:14:00","height":"3.465"}]},{"date":"2022-11-17","groups":[{"time":"02:01:00","height":"3.129"},{"time":"14:40:00","height":"3.335"}]},{"date":"2022-11-18","groups":[{"time":"03:38:00","height":"3.150"},{"time":"16:09:00","height":"3.478"}]},{"date":"2022-11-19","groups":[{"time":"04:50:00","height":"3.447"},{"time":"17:09:00","height":"3.818"}]},{"date":"2022-11-20","groups":[{"time":"05:39:00","height":"3.865"},{"time":"17:55:00","height":"4.218"}]},{"date":"2022-11-21","groups":[{"time":"06:20:00","height":"4.303"},{"time":"18:35:00","height":"4.605"}]},{"date":"2022-11-22","groups":[{"time":"06:59:00","height":"4.702"},{"time":"19:15:00","height":"4.934"}]},{"date":"2022-11-23","groups":[{"time":"07:37:00","height":"5.023"},{"time":"19:54:00","height":"5.168"}]},{"date":"2022-11-24","groups":[{"time":"08:16:00","height":"5.238"},{"time":"20:35:00","height":"5.279"}]},{"date":"2022-11-25","groups":[{"time":"08:56:00","height":"5.327"},{"time":"21:16:00","height":"5.252"}]},{"date":"2022-11-26","groups":[{"time":"09:38:00","height":"5.281"},{"time":"21:59:00","height":"5.081"}]},{"date":"2022-11-27","groups":[{"time":"10:23:00","height":"5.109"},{"time":"22:51:00","height":"4.791"}]},{"date":"2022-11-28","groups":[{"time":"11:18:00","height":"4.841"},{"time":"23:49:00","height":"4.429"}]},{"date":"2022-11-29","groups":[{"time":"12:18:00","height":"4.531"}]},{"date":"2022-11-30","groups":[{"time":"00:54:00","height":"4.073"},{"time":"13:28:00","height":"4.259"}]},{"date":"2022-12-01","groups":[{"time":"02:08:00","height":"3.818"},{"time":"14:46:00","height":"4.112"}]},{"date":"2022-12-02","groups":[{"time":"03:30:00","height":"3.756"},{"time":"16:02:00","height":"4.137"}]},{"date":"2022-12-03","groups":[{"time":"04:38:00","height":"3.890"},{"time":"17:04:00","height":"4.285"}]},{"date":"2022-12-04","groups":[{"time":"05:36:00","height":"4.126"},{"time":"17:57:00","height":"4.462"}]},{"date":"2022-12-05","groups":[{"time":"06:25:00","height":"4.367"},{"time":"18:44:00","height":"4.605"}]},{"date":"2022-12-06","groups":[{"time":"07:06:00","height":"4.560"},{"time":"19:25:00","height":"4.693"}]},{"date":"2022-12-07","groups":[{"time":"07:44:00","height":"4.693"},{"time":"20:03:00","height":"4.727"}]},{"date":"2022-12-08","groups":[{"time":"08:19:00","height":"4.765"},{"time":"20:37:00","height":"4.712"}]},{"date":"2022-12-09","groups":[{"time":"08:52:00","height":"4.776"},{"time":"21:11:00","height":"4.646"}]},{"date":"2022-12-10","groups":[{"time":"09:24:00","height":"4.727"},{"time":"21:43:00","height":"4.528"}]},{"date":"2022-12-11","groups":[{"time":"09:56:00","height":"4.620"},{"time":"22:16:00","height":"4.360"}]},{"date":"2022-12-12","groups":[{"time":"10:31:00","height":"4.464"},{"time":"22:54:00","height":"4.154"}]},{"date":"2022-12-13","groups":[{"time":"11:09:00","height":"4.271"},{"time":"23:35:00","height":"3.924"}]},{"date":"2022-12-14","groups":[{"time":"11:52:00","height":"4.055"}]},{"date":"2022-12-15","groups":[{"time":"00:21:00","height":"3.691"},{"time":"12:42:00","height":"3.843"}]},{"date":"2022-12-16","groups":[{"time":"01:16:00","height":"3.493"},{"time":"13:42:00","height":"3.678"}]},{"date":"2022-12-17","groups":[{"time":"02:22:00","height":"3.389"},{"time":"14:52:00","height":"3.624"}]},{"date":"2022-12-18","groups":[{"time":"03:37:00","height":"3.446"},{"time":"16:03:00","height":"3.728"}]},{"date":"2022-12-19","groups":[{"time":"04:40:00","height":"3.680"},{"time":"17:03:00","height":"3.975"}]},{"date":"2022-12-20","groups":[{"time":"05:36:00","height":"4.030"},{"time":"17:57:00","height":"4.297"}]},{"date":"2022-12-21","groups":[{"time":"06:25:00","height":"4.416"},{"time":"18:46:00","height":"4.621"}]},{"date":"2022-12-22","groups":[{"time":"07:12:00","height":"4.776"},{"time":"19:34:00","height":"4.895"}]},{"date":"2022-12-23","groups":[{"time":"07:58:00","height":"5.067"},{"time":"20:21:00","height":"5.080"}]},{"date":"2022-12-24","groups":[{"time":"08:45:00","height":"5.260"},{"time":"21:09:00","height":"5.155"}]},{"date":"2022-12-25","groups":[{"time":"09:31:00","height":"5.340"},{"time":"21:56:00","height":"5.109"}]},{"date":"2022-12-26","groups":[{"time":"10:19:00","height":"5.302"},{"time":"22:49:00","height":"4.951"}]},{"date":"2022-12-27","groups":[{"time":"11:13:00","height":"5.154"},{"time":"23:43:00","height":"4.703"}]},{"date":"2022-12-28","groups":[{"time":"12:09:00","height":"4.917"}]},{"date":"2022-12-29","groups":[{"time":"00:38:00","height":"4.402"},{"time":"13:07:00","height":"4.627"}]},{"date":"2022-12-30","groups":[{"time":"01:38:00","height":"4.101"},{"time":"14:09:00","height":"4.332"}]},{"date":"2022-12-31","groups":[{"time":"02:43:00","height":"3.856"},{"time":"15:16:00","height":"4.092"}]},{"date":"2023-01-01","groups":[{"time":"03:50:00","height":"3.728"},{"time":"16:21:00","height":"3.959"}]},{"date":"2023-01-02","groups":[{"time":"04:54:00","height":"3.748"},{"time":"17:22:00","height":"3.950"}]},{"date":"2023-01-03","groups":[{"time":"05:53:00","height":"3.891"},{"time":"18:17:00","height":"4.041"}]},{"date":"2023-01-04","groups":[{"time":"06:44:00","height":"4.098"},{"time":"19:06:00","height":"4.179"}]},{"date":"2023-01-05","groups":[{"time":"07:29:00","height":"4.308"},{"time":"19:48:00","height":"4.317"}]},{"date":"2023-01-06","groups":[{"time":"08:07:00","height":"4.481"},{"time":"20:26:00","height":"4.424"}]},{"date":"2023-01-07","groups":[{"time":"08:42:00","height":"4.600"},{"time":"21:01:00","height":"4.484"}]},{"date":"2023-01-08","groups":[{"time":"09:15:00","height":"4.660"},{"time":"21:34:00","height":"4.492"}]},{"date":"2023-01-09","groups":[{"time":"09:46:00","height":"4.666"},{"time":"22:05:00","height":"4.452"}]},{"date":"2023-01-10","groups":[{"time":"10:18:00","height":"4.621"},{"time":"22:39:00","height":"4.367"}]},{"date":"2023-01-11","groups":[{"time":"10:54:00","height":"4.532"},{"time":"23:16:00","height":"4.241"}]},{"date":"2023-01-12","groups":[{"time":"11:31:00","height":"4.398"},{"time":"23:54:00","height":"4.079"}]},{"date":"2023-01-13","groups":[{"time":"12:11:00","height":"4.227"}]},{"date":"2023-01-14","groups":[{"time":"00:36:00","height":"3.894"},{"time":"12:56:00","height":"4.036"}]},{"date":"2023-01-15","groups":[{"time":"01:26:00","height":"3.711"},{"time":"13:51:00","height":"3.852"}]},{"date":"2023-01-16","groups":[{"time":"02:27:00","height":"3.572"},{"time":"14:58:00","height":"3.722"}]},{"date":"2023-01-17","groups":[{"time":"03:42:00","height":"3.550"},{"time":"16:12:00","height":"3.726"}]},{"date":"2023-01-18","groups":[{"time":"04:53:00","height":"3.721"},{"time":"17:23:00","height":"3.914"}]},{"date":"2023-01-19","groups":[{"time":"05:58:00","height":"4.064"},{"time":"18:27:00","height":"4.239"}]},{"date":"2023-01-20","groups":[{"time":"06:56:00","height":"4.490"},{"time":"19:24:00","height":"4.606"}]},{"date":"2023-01-21","groups":[{"time":"07:48:00","height":"4.911"},{"time":"20:16:00","height":"4.936"}]},{"date":"2023-01-22","groups":[{"time":"08:38:00","height":"5.260"},{"time":"21:04:00","height":"5.167"}]},{"date":"2023-01-23","groups":[{"time":"09:24:00","height":"5.487"},{"time":"21:50:00","height":"5.263"}]},{"date":"2023-01-24","groups":[{"time":"10:10:00","height":"5.562"},{"time":"22:36:00","height":"5.207"}]},{"date":"2023-01-25","groups":[{"time":"10:58:00","height":"5.471"},{"time":"23:23:00","height":"5.008"}]},{"date":"2023-01-26","groups":[{"time":"11:47:00","height":"5.222"}]},{"date":"2023-01-27","groups":[{"time":"00:10:00","height":"4.695"},{"time":"12:35:00","height":"4.850"}]},{"date":"2023-01-28","groups":[{"time":"00:57:00","height":"4.312"},{"time":"13:25:00","height":"4.405"}]},{"date":"2023-01-29","groups":[{"time":"01:49:00","height":"3.914"},{"time":"14:22:00","height":"3.954"}]},{"date":"2023-01-30","groups":[{"time":"02:51:00","height":"3.567"},{"time":"15:30:00","height":"3.587"}]},{"date":"2023-01-31","groups":[{"time":"04:06:00","height":"3.372"},{"time":"16:43:00","height":"3.423"}]},{"date":"2023-02-01","groups":[{"time":"05:23:00","height":"3.432"},{"time":"17:56:00","height":"3.519"}]},{"date":"2023-02-02","groups":[{"time":"06:28:00","height":"3.701"},{"time":"18:54:00","height":"3.777"}]},{"date":"2023-02-03","groups":[{"time":"07:17:00","height":"4.032"},{"time":"19:38:00","height":"4.062"}]},{"date":"2023-02-04","groups":[{"time":"07:56:00","height":"4.327"},{"time":"20:15:00","height":"4.301"}]},{"date":"2023-02-05","groups":[{"time":"08:31:00","height":"4.550"},{"time":"20:49:00","height":"4.475"}]},{"date":"2023-02-06","groups":[{"time":"09:02:00","height":"4.701"},{"time":"21:19:00","height":"4.585"}]},{"date":"2023-02-07","groups":[{"time":"09:31:00","height":"4.789"},{"time":"21:47:00","height":"4.639"}]},{"date":"2023-02-08","groups":[{"time":"10:00:00","height":"4.822"},{"time":"22:17:00","height":"4.638"}]},{"date":"2023-02-09","groups":[{"time":"10:31:00","height":"4.794"},{"time":"22:50:00","height":"4.573"}]},{"date":"2023-02-10","groups":[{"time":"11:04:00","height":"4.701"},{"time":"23:23:00","height":"4.442"}]},{"date":"2023-02-11","groups":[{"time":"11:38:00","height":"4.538"},{"time":"23:59:00","height":"4.248"}]},{"date":"2023-02-12","groups":[{"time":"12:17:00","height":"4.310"}]},{"date":"2023-02-13","groups":[{"time":"00:40:00","height":"4.001"},{"time":"13:03:00","height":"4.026"}]},{"date":"2023-02-14","groups":[{"time":"01:33:00","height":"3.723"},{"time":"14:05:00","height":"3.714"}]},{"date":"2023-02-15","groups":[{"time":"02:47:00","height":"3.485"},{"time":"15:31:00","height":"3.491"}]},{"date":"2023-02-16","groups":[{"time":"04:20:00","height":"3.472"},{"time":"17:01:00","height":"3.570"}]},{"date":"2023-02-17","groups":[{"time":"05:41:00","height":"3.805"},{"time":"18:18:00","height":"3.961"}]},{"date":"2023-02-18","groups":[{"time":"06:47:00","height":"4.339"},{"time":"19:18:00","height":"4.469"}]},{"date":"2023-02-19","groups":[{"time":"07:41:00","height":"4.892"},{"time":"20:08:00","height":"4.932"}]},{"date":"2023-02-20","groups":[{"time":"08:29:00","height":"5.345"},{"time":"20:53:00","height":"5.262"}]},{"date":"2023-02-21","groups":[{"time":"09:12:00","height":"5.633"},{"time":"21:34:00","height":"5.419"}]},{"date":"2023-02-22","groups":[{"time":"09:53:00","height":"5.725"},{"time":"22:13:00","height":"5.392"}]},{"date":"2023-02-23","groups":[{"time":"10:34:00","height":"5.613"},{"time":"22:55:00","height":"5.195"}]},{"date":"2023-02-24","groups":[{"time":"11:17:00","height":"5.316"},{"time":"23:35:00","height":"4.860"}]},{"date":"2023-02-25","groups":[{"time":"11:58:00","height":"4.879"}]},{"date":"2023-02-26","groups":[{"time":"00:15:00","height":"4.434"},{"time":"12:40:00","height":"4.356"}]},{"date":"2023-02-27","groups":[{"time":"00:57:00","height":"3.965"},{"time":"13:27:00","height":"3.810"}]},{"date":"2023-02-28","groups":[{"time":"01:48:00","height":"3.504"},{"time":"14:28:00","height":"3.314"}]},{"date":"2023-03-01","groups":[{"time":"03:07:00","height":"3.142"},{"time":"16:02:00","height":"3.026"}]},{"date":"2023-03-02","groups":[{"time":"04:51:00","height":"3.112"},{"time":"17:37:00","height":"3.155"}]},{"date":"2023-03-03","groups":[{"time":"06:11:00","height":"3.448"},{"time":"18:39:00","height":"3.537"}]},{"date":"2023-03-04","groups":[{"time":"07:00:00","height":"3.877"},{"time":"19:21:00","height":"3.937"}]},{"date":"2023-03-05","groups":[{"time":"07:37:00","height":"4.257"},{"time":"19:55:00","height":"4.272"}]},{"date":"2023-03-06","groups":[{"time":"08:09:00","height":"4.550"},{"time":"20:26:00","height":"4.526"}]},{"date":"2023-03-07","groups":[{"time":"08:39:00","height":"4.759"},{"time":"20:55:00","height":"4.706"}]},{"date":"2023-03-08","groups":[{"time":"09:07:00","height":"4.899"},{"time":"21:23:00","height":"4.823"}]},{"date":"2023-03-09","groups":[{"time":"09:36:00","height":"4.976"},{"time":"21:51:00","height":"4.871"}]},{"date":"2023-03-10","groups":[{"time":"10:03:00","height":"4.981"},{"time":"22:19:00","height":"4.838"}]},{"date":"2023-03-11","groups":[{"time":"10:34:00","height":"4.898"},{"time":"22:52:00","height":"4.713"}]},{"date":"2023-03-12","groups":[{"time":"11:08:00","height":"4.719"},{"time":"23:28:00","height":"4.495"}]},{"date":"2023-03-13","groups":[{"time":"11:46:00","height":"4.441"}]},{"date":"2023-03-14","groups":[{"time":"00:08:00","height":"4.191"},{"time":"12:31:00","height":"4.069"}]},{"date":"2023-03-15","groups":[{"time":"00:59:00","height":"3.820"},{"time":"13:32:00","height":"3.639"}]},{"date":"2023-03-16","groups":[{"time":"02:17:00","height":"3.465"},{"time":"15:09:00","height":"3.314"}]},{"date":"2023-03-17","groups":[{"time":"04:04:00","height":"3.392"},{"time":"16:53:00","height":"3.416"}]},{"date":"2023-03-18","groups":[{"time":"05:33:00","height":"3.780"},{"time":"18:12:00","height":"3.911"}]},{"date":"2023-03-19","groups":[{"time":"06:38:00","height":"4.382"},{"time":"19:08:00","height":"4.487"}]},{"date":"2023-03-20","groups":[{"time":"07:28:00","height":"4.954"},{"time":"19:53:00","height":"4.969"}]},{"date":"2023-03-21","groups":[{"time":"08:11:00","height":"5.383"},{"time":"20:34:00","height":"5.290"}]},{"date":"2023-03-22","groups":[{"time":"08:52:00","height":"5.621"},{"time":"21:12:00","height":"5.430"}]},{"date":"2023-03-23","groups":[{"time":"09:30:00","height":"5.658"},{"time":"21:47:00","height":"5.395"}]},{"date":"2023-03-24","groups":[{"time":"10:06:00","height":"5.505"},{"time":"22:23:00","height":"5.201"}]},{"date":"2023-03-25","groups":[{"time":"10:44:00","height":"5.188"},{"time":"22:59:00","height":"4.879"}]},{"date":"2023-03-26","groups":[{"time":"11:22:00","height":"4.749"},{"time":"23:36:00","height":"4.469"}]},{"date":"2023-03-27","groups":[{"time":"13:00:00","height":"4.239"}]},{"date":"2023-03-28","groups":[{"time":"01:14:00","height":"4.010"},{"time":"13:42:00","height":"3.705"}]},{"date":"2023-03-29","groups":[{"time":"02:00:00","height":"3.539"},{"time":"14:39:00","height":"3.200"}]},{"date":"2023-03-30","groups":[{"time":"03:10:00","height":"3.125"},{"time":"16:15:00","height":"2.861"}]},{"date":"2023-03-31","groups":[{"time":"05:10:00","height":"3.000"},{"time":"18:05:00","height":"2.976"}]},{"date":"2023-04-01","groups":[{"time":"06:37:00","height":"3.316"},{"time":"19:10:00","height":"3.389"}]},{"date":"2023-04-02","groups":[{"time":"07:28:00","height":"3.757"},{"time":"19:51:00","height":"3.831"}]},{"date":"2023-04-03","groups":[{"time":"08:05:00","height":"4.165"},{"time":"20:25:00","height":"4.216"}]},{"date":"2023-04-04","groups":[{"time":"08:38:00","height":"4.495"},{"time":"20:56:00","height":"4.526"}]},{"date":"2023-04-05","groups":[{"time":"09:08:00","height":"4.746"},{"time":"21:25:00","height":"4.762"}]},{"date":"2023-04-06","groups":[{"time":"09:38:00","height":"4.925"},{"time":"21:54:00","height":"4.926"}]},{"date":"2023-04-07","groups":[{"time":"10:07:00","height":"5.033"},{"time":"22:23:00","height":"5.008"}]},{"date":"2023-04-08","groups":[{"time":"10:37:00","height":"5.053"},{"time":"22:53:00","height":"4.991"}]},{"date":"2023-04-09","groups":[{"time":"11:08:00","height":"4.966"},{"time":"23:26:00","height":"4.862"}]},{"date":"2023-04-10","groups":[{"time":"11:45:00","height":"4.757"}]},{"date":"2023-04-11","groups":[{"time":"00:05:00","height":"4.620"},{"time":"12:26:00","height":"4.431"}]},{"date":"2023-04-12","groups":[{"time":"00:49:00","height":"4.279"},{"time":"13:17:00","height":"4.009"}]},{"date":"2023-04-13","groups":[{"time":"01:48:00","height":"3.882"},{"time":"14:27:00","height":"3.569"}]},{"date":"2023-04-14","groups":[{"time":"03:12:00","height":"3.556"},{"time":"16:07:00","height":"3.322"}]},{"date":"2023-04-15","groups":[{"time":"04:57:00","height":"3.563"},{"time":"17:46:00","height":"3.514"}]},{"date":"2023-04-16","groups":[{"time":"06:19:00","height":"3.957"},{"time":"18:57:00","height":"3.998"}]},{"date":"2023-04-17","groups":[{"time":"07:18:00","height":"4.479"},{"time":"19:48:00","height":"4.501"}]},{"date":"2023-04-18","groups":[{"time":"08:06:00","height":"4.933"},{"time":"20:31:00","height":"4.896"}]},{"date":"2023-04-19","groups":[{"time":"08:48:00","height":"5.238"},{"time":"21:10:00","height":"5.143"}]},{"date":"2023-04-20","groups":[{"time":"09:28:00","height":"5.375"},{"time":"21:46:00","height":"5.242"}]},{"date":"2023-04-21","groups":[{"time":"10:04:00","height":"5.353"},{"time":"22:21:00","height":"5.204"}]},{"date":"2023-04-22","groups":[{"time":"10:38:00","height":"5.190"},{"time":"22:54:00","height":"5.042"}]},{"date":"2023-04-23","groups":[{"time":"11:13:00","height":"4.909"},{"time":"23:27:00","height":"4.777"}]},{"date":"2023-04-24","groups":[{"time":"11:50:00","height":"4.538"}]},{"date":"2023-04-25","groups":[{"time":"00:04:00","height":"4.434"},{"time":"12:29:00","height":"4.112"}]},{"date":"2023-04-26","groups":[{"time":"00:43:00","height":"4.046"},{"time":"13:11:00","height":"3.667"}]},{"date":"2023-04-27","groups":[{"time":"01:28:00","height":"3.644"},{"time":"14:04:00","height":"3.246"}]},{"date":"2023-04-28","groups":[{"time":"02:32:00","height":"3.285"},{"time":"15:25:00","height":"2.945"}]},{"date":"2023-04-29","groups":[{"time":"04:11:00","height":"3.110"},{"time":"17:11:00","height":"2.963"}]},{"date":"2023-04-30","groups":[{"time":"05:42:00","height":"3.281"},{"time":"18:20:00","height":"3.280"}]},{"date":"2023-05-01","groups":[{"time":"06:40:00","height":"3.635"},{"time":"19:07:00","height":"3.686"}]},{"date":"2023-05-02","groups":[{"time":"07:22:00","height":"4.011"},{"time":"19:44:00","height":"4.082"}]},{"date":"2023-05-03","groups":[{"time":"07:58:00","height":"4.351"},{"time":"20:18:00","height":"4.429"}]},{"date":"2023-05-04","groups":[{"time":"08:31:00","height":"4.633"},{"time":"20:50:00","height":"4.712"}]},{"date":"2023-05-05","groups":[{"time":"09:04:00","height":"4.847"},{"time":"21:23:00","height":"4.918"}]},{"date":"2023-05-06","groups":[{"time":"09:39:00","height":"4.980"},{"time":"21:57:00","height":"5.030"}]},{"date":"2023-05-07","groups":[{"time":"10:13:00","height":"5.012"},{"time":"22:32:00","height":"5.033"}]},{"date":"2023-05-08","groups":[{"time":"10:50:00","height":"4.924"},{"time":"23:09:00","height":"4.916"}]},{"date":"2023-05-09","groups":[{"time":"11:31:00","height":"4.711"},{"time":"23:54:00","height":"4.689"}]},{"date":"2023-05-10","groups":[{"time":"12:21:00","height":"4.392"}]},{"date":"2023-05-11","groups":[{"time":"00:47:00","height":"4.383"},{"time":"13:20:00","height":"4.019"}]},{"date":"2023-05-12","groups":[{"time":"01:53:00","height":"4.067"},{"time":"14:33:00","height":"3.693"}]},{"date":"2023-05-13","groups":[{"time":"03:14:00","height":"3.862"},{"time":"16:02:00","height":"3.562"}]},{"date":"2023-05-14","groups":[{"time":"04:42:00","height":"3.892"},{"time":"17:23:00","height":"3.711"}]},{"date":"2023-05-15","groups":[{"time":"05:52:00","height":"4.139"},{"time":"18:27:00","height":"4.036"}]},{"date":"2023-05-16","groups":[{"time":"06:50:00","height":"4.455"},{"time":"19:19:00","height":"4.379"}]},{"date":"2023-05-17","groups":[{"time":"07:39:00","height":"4.722"},{"time":"20:03:00","height":"4.652"}]},{"date":"2023-05-18","groups":[{"time":"08:22:00","height":"4.887"},{"time":"20:44:00","height":"4.827"}]},{"date":"2023-05-19","groups":[{"time":"09:03:00","height":"4.946"},{"time":"21:20:00","height":"4.906"}]},{"date":"2023-05-20","groups":[{"time":"09:40:00","height":"4.909"},{"time":"21:56:00","height":"4.893"}]},{"date":"2023-05-21","groups":[{"time":"10:16:00","height":"4.791"},{"time":"22:30:00","height":"4.796"}]},{"date":"2023-05-22","groups":[{"time":"10:51:00","height":"4.600"},{"time":"23:04:00","height":"4.622"}]},{"date":"2023-05-23","groups":[{"time":"11:27:00","height":"4.347"},{"time":"23:41:00","height":"4.388"}]},{"date":"2023-05-24","groups":[{"time":"12:07:00","height":"4.054"}]},{"date":"2023-05-25","groups":[{"time":"00:22:00","height":"4.117"},{"time":"12:49:00","height":"3.744"}]},{"date":"2023-05-26","groups":[{"time":"01:07:00","height":"3.835"},{"time":"13:39:00","height":"3.450"}]},{"date":"2023-05-27","groups":[{"time":"02:02:00","height":"3.576"},{"time":"14:41:00","height":"3.220"}]},{"date":"2023-05-28","groups":[{"time":"03:10:00","height":"3.401"},{"time":"15:58:00","height":"3.136"}]},{"date":"2023-05-29","groups":[{"time":"04:30:00","height":"3.390"},{"time":"17:13:00","height":"3.261"}]},{"date":"2023-05-30","groups":[{"time":"05:36:00","height":"3.560"},{"time":"18:09:00","height":"3.544"}]},{"date":"2023-05-31","groups":[{"time":"06:27:00","height":"3.836"},{"time":"18:56:00","height":"3.894"}]},{"date":"2023-06-01","groups":[{"time":"07:12:00","height":"4.143"},{"time":"19:36:00","height":"4.247"}]},{"date":"2023-06-02","groups":[{"time":"07:53:00","height":"4.435"},{"time":"20:15:00","height":"4.564"}]},{"date":"2023-06-03","groups":[{"time":"08:33:00","height":"4.677"},{"time":"20:55:00","height":"4.813"}]},{"date":"2023-06-04","groups":[{"time":"09:15:00","height":"4.843"},{"time":"21:35:00","height":"4.974"}]},{"date":"2023-06-05","groups":[{"time":"09:57:00","height":"4.912"},{"time":"22:18:00","height":"5.034"}]},{"date":"2023-06-06","groups":[{"time":"10:40:00","height":"4.873"},{"time":"23:01:00","height":"4.989"}]},{"date":"2023-06-07","groups":[{"time":"11:28:00","height":"4.730"},{"time":"23:53:00","height":"4.853"}]},{"date":"2023-06-08","groups":[{"time":"12:23:00","height":"4.506"}]},{"date":"2023-06-09","groups":[{"time":"00:50:00","height":"4.655"},{"time":"13:23:00","height":"4.246"}]},{"date":"2023-06-10","groups":[{"time":"01:52:00","height":"4.440"},{"time":"14:27:00","height":"4.008"}]},{"date":"2023-06-11","groups":[{"time":"03:00:00","height":"4.259"},{"time":"15:38:00","height":"3.856"}]},{"date":"2023-06-12","groups":[{"time":"04:12:00","height":"4.161"},{"time":"16:50:00","height":"3.834"}]},{"date":"2023-06-13","groups":[{"time":"05:18:00","height":"4.162"},{"time":"17:51:00","height":"3.934"}]},{"date":"2023-06-14","groups":[{"time":"06:16:00","height":"4.231"},{"time":"18:46:00","height":"4.102"}]},{"date":"2023-06-15","groups":[{"time":"07:10:00","height":"4.325"},{"time":"19:36:00","height":"4.280"}]},{"date":"2023-06-16","groups":[{"time":"07:59:00","height":"4.409"},{"time":"20:21:00","height":"4.434"}]},{"date":"2023-06-17","groups":[{"time":"08:42:00","height":"4.466"},{"time":"21:02:00","height":"4.543"}]},{"date":"2023-06-18","groups":[{"time":"09:23:00","height":"4.487"},{"time":"21:40:00","height":"4.598"}]},{"date":"2023-06-19","groups":[{"time":"10:00:00","height":"4.463"},{"time":"22:16:00","height":"4.592"}]},{"date":"2023-06-20","groups":[{"time":"10:36:00","height":"4.395"},{"time":"22:50:00","height":"4.531"}]},{"date":"2023-06-21","groups":[{"time":"11:11:00","height":"4.281"},{"time":"23:26:00","height":"4.422"}]},{"date":"2023-06-22","groups":[{"time":"11:50:00","height":"4.130"}]},{"date":"2023-06-23","groups":[{"time":"00:05:00","height":"4.277"},{"time":"12:29:00","height":"3.952"}]},{"date":"2023-06-24","groups":[{"time":"00:46:00","height":"4.106"},{"time":"13:12:00","height":"3.762"}]},{"date":"2023-06-25","groups":[{"time":"01:30:00","height":"3.922"},{"time":"13:59:00","height":"3.579"}]},{"date":"2023-06-26","groups":[{"time":"02:20:00","height":"3.748"},{"time":"14:54:00","height":"3.437"}]},{"date":"2023-06-27","groups":[{"time":"03:19:00","height":"3.621"},{"time":"15:58:00","height":"3.385"}]},{"date":"2023-06-28","groups":[{"time":"04:25:00","height":"3.588"},{"time":"17:04:00","height":"3.469"}]},{"date":"2023-06-29","groups":[{"time":"05:28:00","height":"3.684"},{"time":"18:03:00","height":"3.695"}]},{"date":"2023-06-30","groups":[{"time":"06:25:00","height":"3.897"},{"time":"18:57:00","height":"4.012"}]},{"date":"2023-07-01","groups":[{"time":"07:19:00","height":"4.173"},{"time":"19:47:00","height":"4.358"}]},{"date":"2023-07-02","groups":[{"time":"08:10:00","height":"4.456"},{"time":"20:35:00","height":"4.680"}]},{"date":"2023-07-03","groups":[{"time":"08:59:00","height":"4.699"},{"time":"21:22:00","height":"4.942"}]},{"date":"2023-07-04","groups":[{"time":"09:48:00","height":"4.872"},{"time":"22:09:00","height":"5.122"}]},{"date":"2023-07-05","groups":[{"time":"10:35:00","height":"4.952"},{"time":"22:56:00","height":"5.204"}]},{"date":"2023-07-06","groups":[{"time":"11:24:00","height":"4.929"},{"time":"23:47:00","height":"5.179"}]},{"date":"2023-07-07","groups":[{"time":"12:16:00","height":"4.802"}]},{"date":"2023-07-08","groups":[{"time":"00:42:00","height":"5.048"},{"time":"13:09:00","height":"4.590"}]},{"date":"2023-07-09","groups":[{"time":"01:36:00","height":"4.824"},{"time":"14:04:00","height":"4.327"}]},{"date":"2023-07-10","groups":[{"time":"02:32:00","height":"4.540"},{"time":"15:01:00","height":"4.053"}]},{"date":"2023-07-11","groups":[{"time":"03:33:00","height":"4.239"},{"time":"16:06:00","height":"3.827"}]},{"date":"2023-07-12","groups":[{"time":"04:39:00","height":"3.987"},{"time":"17:11:00","height":"3.711"}]},{"date":"2023-07-13","groups":[{"time":"05:42:00","height":"3.848"},{"time":"18:15:00","height":"3.743"}]},{"date":"2023-07-14","groups":[{"time":"06:44:00","height":"3.847"},{"time":"19:15:00","height":"3.899"}]},{"date":"2023-07-15","groups":[{"time":"07:42:00","height":"3.956"},{"time":"20:07:00","height":"4.113"}]},{"date":"2023-07-16","groups":[{"time":"08:31:00","height":"4.109"},{"time":"20:50:00","height":"4.316"}]},{"date":"2023-07-17","groups":[{"time":"09:12:00","height":"4.250"},{"time":"21:29:00","height":"4.470"}]},{"date":"2023-07-18","groups":[{"time":"09:50:00","height":"4.349"},{"time":"22:05:00","height":"4.564"}]},{"date":"2023-07-19","groups":[{"time":"10:23:00","height":"4.395"},{"time":"22:37:00","height":"4.599"}]},{"date":"2023-07-20","groups":[{"time":"10:55:00","height":"4.393"},{"time":"23:08:00","height":"4.585"}]},{"date":"2023-07-21","groups":[{"time":"11:28:00","height":"4.346"},{"time":"23:42:00","height":"4.525"}]},{"date":"2023-07-22","groups":[{"time":"12:03:00","height":"4.254"}]},{"date":"2023-07-23","groups":[{"time":"00:18:00","height":"4.417"},{"time":"12:38:00","height":"4.119"}]},{"date":"2023-07-24","groups":[{"time":"00:55:00","height":"4.262"},{"time":"13:16:00","height":"3.948"}]},{"date":"2023-07-25","groups":[{"time":"01:35:00","height":"4.069"},{"time":"14:00:00","height":"3.758"}]},{"date":"2023-07-26","groups":[{"time":"02:21:00","height":"3.860"},{"time":"14:53:00","height":"3.581"}]},{"date":"2023-07-27","groups":[{"time":"03:20:00","height":"3.668"},{"time":"16:01:00","height":"3.471"}]},{"date":"2023-07-28","groups":[{"time":"04:33:00","height":"3.563"},{"time":"17:16:00","height":"3.523"}]},{"date":"2023-07-29","groups":[{"time":"05:48:00","height":"3.641"},{"time":"18:26:00","height":"3.789"}]},{"date":"2023-07-30","groups":[{"time":"06:57:00","height":"3.917"},{"time":"19:28:00","height":"4.198"}]},{"date":"2023-07-31","groups":[{"time":"07:57:00","height":"4.298"},{"time":"20:23:00","height":"4.648"}]},{"date":"2023-08-01","groups":[{"time":"08:50:00","height":"4.683"},{"time":"21:13:00","height":"5.055"}]},{"date":"2023-08-02","groups":[{"time":"09:40:00","height":"4.997"},{"time":"22:00:00","height":"5.364"}]},{"date":"2023-08-03","groups":[{"time":"10:25:00","height":"5.191"},{"time":"22:45:00","height":"5.534"}]},{"date":"2023-08-04","groups":[{"time":"11:09:00","height":"5.238"},{"time":"23:31:00","height":"5.540"}]},{"date":"2023-08-05","groups":[{"time":"11:56:00","height":"5.131"}]},{"date":"2023-08-06","groups":[{"time":"00:20:00","height":"5.373"},{"time":"12:43:00","height":"4.885"}]},{"date":"2023-08-07","groups":[{"time":"01:08:00","height":"5.052"},{"time":"13:30:00","height":"4.536"}]},{"date":"2023-08-08","groups":[{"time":"01:56:00","height":"4.620"},{"time":"14:19:00","height":"4.134"}]},{"date":"2023-08-09","groups":[{"time":"02:49:00","height":"4.139"},{"time":"15:17:00","height":"3.741"}]},{"date":"2023-08-10","groups":[{"time":"03:52:00","height":"3.696"},{"time":"16:30:00","height":"3.454"}]},{"date":"2023-08-11","groups":[{"time":"05:09:00","height":"3.419"},{"time":"17:50:00","height":"3.408"}]},{"date":"2023-08-12","groups":[{"time":"06:27:00","height":"3.427"},{"time":"19:04:00","height":"3.633"}]},{"date":"2023-08-13","groups":[{"time":"07:34:00","height":"3.669"},{"time":"19:59:00","height":"3.973"}]},{"date":"2023-08-14","groups":[{"time":"08:22:00","height":"3.974"},{"time":"20:40:00","height":"4.290"}]},{"date":"2023-08-15","groups":[{"time":"09:01:00","height":"4.239"},{"time":"21:16:00","height":"4.530"}]},{"date":"2023-08-16","groups":[{"time":"09:35:00","height":"4.432"},{"time":"21:48:00","height":"4.688"}]},{"date":"2023-08-17","groups":[{"time":"10:05:00","height":"4.553"},{"time":"22:17:00","height":"4.776"}]},{"date":"2023-08-18","groups":[{"time":"10:34:00","height":"4.613"},{"time":"22:45:00","height":"4.807"}]},{"date":"2023-08-19","groups":[{"time":"11:01:00","height":"4.619"},{"time":"23:14:00","height":"4.782"}]},{"date":"2023-08-20","groups":[{"time":"11:31:00","height":"4.566"},{"time":"23:45:00","height":"4.693"}]},{"date":"2023-08-21","groups":[{"time":"12:03:00","height":"4.448"}]},{"date":"2023-08-22","groups":[{"time":"00:18:00","height":"4.534"},{"time":"12:36:00","height":"4.266"}]},{"date":"2023-08-23","groups":[{"time":"00:52:00","height":"4.309"},{"time":"13:14:00","height":"4.030"}]},{"date":"2023-08-24","groups":[{"time":"01:34:00","height":"4.027"},{"time":"14:01:00","height":"3.756"}]},{"date":"2023-08-25","groups":[{"time":"02:28:00","height":"3.707"},{"time":"15:07:00","height":"3.490"}]},{"date":"2023-08-26","groups":[{"time":"03:46:00","height":"3.431"},{"time":"16:42:00","height":"3.394"}]},{"date":"2023-08-27","groups":[{"time":"05:24:00","height":"3.417"},{"time":"18:10:00","height":"3.660"}]},{"date":"2023-08-28","groups":[{"time":"06:47:00","height":"3.774"},{"time":"19:19:00","height":"4.189"}]},{"date":"2023-08-29","groups":[{"time":"07:50:00","height":"4.303"},{"time":"20:14:00","height":"4.772"}]},{"date":"2023-08-30","groups":[{"time":"08:41:00","height":"4.815"},{"time":"21:02:00","height":"5.276"}]},{"date":"2023-08-31","groups":[{"time":"09:27:00","height":"5.209"},{"time":"21:46:00","height":"5.627"}]},{"date":"2023-09-01","groups":[{"time":"10:08:00","height":"5.436"},{"time":"22:27:00","height":"5.787"}]},{"date":"2023-09-02","groups":[{"time":"10:48:00","height":"5.479"},{"time":"23:07:00","height":"5.739"}]},{"date":"2023-09-03","groups":[{"time":"11:28:00","height":"5.340"},{"time":"23:51:00","height":"5.489"}]},{"date":"2023-09-04","groups":[{"time":"12:10:00","height":"5.043"}]},{"date":"2023-09-05","groups":[{"time":"00:33:00","height":"5.070"},{"time":"12:51:00","height":"4.629"}]},{"date":"2023-09-06","groups":[{"time":"01:16:00","height":"4.539"},{"time":"13:35:00","height":"4.150"}]},{"date":"2023-09-07","groups":[{"time":"02:04:00","height":"3.963"},{"time":"14:27:00","height":"3.666"}]},{"date":"2023-09-08","groups":[{"time":"03:05:00","height":"3.424"},{"time":"15:43:00","height":"3.271"}]},{"date":"2023-09-09","groups":[{"time":"04:38:00","height":"3.085"},{"time":"17:29:00","height":"3.197"}]},{"date":"2023-09-10","groups":[{"time":"06:16:00","height":"3.177"},{"time":"18:52:00","height":"3.522"}]},{"date":"2023-09-11","groups":[{"time":"07:23:00","height":"3.561"},{"time":"19:44:00","height":"3.959"}]},{"date":"2023-09-12","groups":[{"time":"08:05:00","height":"3.973"},{"time":"20:21:00","height":"4.344"}]},{"date":"2023-09-13","groups":[{"time":"08:40:00","height":"4.316"},{"time":"20:53:00","height":"4.632"}]},{"date":"2023-09-14","groups":[{"time":"09:10:00","height":"4.566"},{"time":"21:23:00","height":"4.825"}]},{"date":"2023-09-15","groups":[{"time":"09:39:00","height":"4.733"},{"time":"21:51:00","height":"4.940"}]},{"date":"2023-09-16","groups":[{"time":"10:06:00","height":"4.831"},{"time":"22:18:00","height":"4.991"}]},{"date":"2023-09-17","groups":[{"time":"10:33:00","height":"4.865"},{"time":"22:45:00","height":"4.975"}]},{"date":"2023-09-18","groups":[{"time":"10:59:00","height":"4.828"},{"time":"23:12:00","height":"4.884"}]},{"date":"2023-09-19","groups":[{"time":"11:29:00","height":"4.710"},{"time":"23:44:00","height":"4.707"}]},{"date":"2023-09-20","groups":[{"time":"12:03:00","height":"4.507"}]},{"date":"2023-09-21","groups":[{"time":"00:19:00","height":"4.443"},{"time":"12:39:00","height":"4.226"}]},{"date":"2023-09-22","groups":[{"time":"01:00:00","height":"4.093"},{"time":"13:26:00","height":"3.878"}]},{"date":"2023-09-23","groups":[{"time":"01:56:00","height":"3.682"},{"time":"14:36:00","height":"3.525"}]},{"date":"2023-09-24","groups":[{"time":"03:24:00","height":"3.329"},{"time":"16:26:00","height":"3.393"}]},{"date":"2023-09-25","groups":[{"time":"05:18:00","height":"3.356"},{"time":"18:02:00","height":"3.736"}]},{"date":"2023-09-26","groups":[{"time":"06:42:00","height":"3.832"},{"time":"19:09:00","height":"4.344"}]},{"date":"2023-09-27","groups":[{"time":"07:40:00","height":"4.434"},{"time":"20:00:00","height":"4.953"}]},{"date":"2023-09-28","groups":[{"time":"08:26:00","height":"4.962"},{"time":"20:44:00","height":"5.431"}]},{"date":"2023-09-29","groups":[{"time":"09:06:00","height":"5.336"},{"time":"21:24:00","height":"5.722"}]},{"date":"2023-09-30","groups":[{"time":"09:46:00","height":"5.529"},{"time":"22:04:00","height":"5.806"}]},{"date":"2023-10-01","groups":[{"time":"10:22:00","height":"5.537"},{"time":"22:41:00","height":"5.685"}]},{"date":"2023-10-02","groups":[{"time":"10:58:00","height":"5.374"},{"time":"23:19:00","height":"5.380"}]},{"date":"2023-10-03","groups":[{"time":"11:37:00","height":"5.063"},{"time":"23:59:00","height":"4.931"}]},{"date":"2023-10-04","groups":[{"time":"12:16:00","height":"4.644"}]},{"date":"2023-10-05","groups":[{"time":"00:41:00","height":"4.391"},{"time":"12:57:00","height":"4.163"}]},{"date":"2023-10-06","groups":[{"time":"01:25:00","height":"3.824"},{"time":"13:46:00","height":"3.674"}]},{"date":"2023-10-07","groups":[{"time":"02:23:00","height":"3.298"},{"time":"14:58:00","height":"3.258"}]},{"date":"2023-10-08","groups":[{"time":"04:01:00","height":"2.960"},{"time":"16:58:00","height":"3.154"}]},{"date":"2023-10-09","groups":[{"time":"05:51:00","height":"3.082"},{"time":"18:23:00","height":"3.475"}]},{"date":"2023-10-10","groups":[{"time":"06:55:00","height":"3.496"},{"time":"19:13:00","height":"3.913"}]},{"date":"2023-10-11","groups":[{"time":"07:36:00","height":"3.936"},{"time":"19:50:00","height":"4.312"}]},{"date":"2023-10-12","groups":[{"time":"08:10:00","height":"4.313"},{"time":"20:23:00","height":"4.624"}]},{"date":"2023-10-13","groups":[{"time":"08:40:00","height":"4.606"},{"time":"20:52:00","height":"4.845"}]},{"date":"2023-10-14","groups":[{"time":"09:08:00","height":"4.816"},{"time":"21:20:00","height":"4.988"}]},{"date":"2023-10-15","groups":[{"time":"09:36:00","height":"4.954"},{"time":"21:49:00","height":"5.060"}]},{"date":"2023-10-16","groups":[{"time":"10:05:00","height":"5.017"},{"time":"22:18:00","height":"5.056"}]},{"date":"2023-10-17","groups":[{"time":"10:33:00","height":"4.996"},{"time":"22:47:00","height":"4.964"}]},{"date":"2023-10-18","groups":[{"time":"11:03:00","height":"4.878"},{"time":"23:19:00","height":"4.770"}]},{"date":"2023-10-19","groups":[{"time":"11:39:00","height":"4.661"},{"time":"23:58:00","height":"4.474"}]},{"date":"2023-10-20","groups":[{"time":"12:21:00","height":"4.353"}]},{"date":"2023-10-21","groups":[{"time":"00:45:00","height":"4.090"},{"time":"13:14:00","height":"3.987"}]},{"date":"2023-10-22","groups":[{"time":"01:49:00","height":"3.672"},{"time":"14:33:00","height":"3.661"}]},{"date":"2023-10-23","groups":[{"time":"03:24:00","height":"3.392"},{"time":"16:19:00","height":"3.615"}]},{"date":"2023-10-24","groups":[{"time":"05:10:00","height":"3.515"},{"time":"17:46:00","height":"3.970"}]},{"date":"2023-10-25","groups":[{"time":"06:25:00","height":"3.979"},{"time":"18:48:00","height":"4.501"}]},{"date":"2023-10-26","groups":[{"time":"07:18:00","height":"4.507"},{"time":"19:38:00","height":"4.996"}]},{"date":"2023-10-27","groups":[{"time":"08:03:00","height":"4.949"},{"time":"20:21:00","height":"5.352"}]},{"date":"2023-10-28","groups":[{"time":"08:44:00","height":"5.247"},{"time":"21:02:00","height":"5.536"}]},{"date":"2023-10-29","groups":[{"time":"09:21:00","height":"5.390"},{"time":"21:40:00","height":"5.546"}]},{"date":"2023-10-30","groups":[{"time":"08:58:00","height":"5.384"},{"time":"21:18:00","height":"5.398"}]},{"date":"2023-10-31","groups":[{"time":"09:34:00","height":"5.239"},{"time":"21:54:00","height":"5.112"}]},{"date":"2023-11-01","groups":[{"time":"10:08:00","height":"4.973"},{"time":"22:31:00","height":"4.721"}]},{"date":"2023-11-02","groups":[{"time":"10:47:00","height":"4.616"},{"time":"23:13:00","height":"4.267"}]},{"date":"2023-11-03","groups":[{"time":"11:30:00","height":"4.209"},{"time":"23:58:00","height":"3.799"}]},{"date":"2023-11-04","groups":[{"time":"12:17:00","height":"3.795"}]},{"date":"2023-11-05","groups":[{"time":"00:53:00","height":"3.371"},{"time":"13:22:00","height":"3.440"}]},{"date":"2023-11-06","groups":[{"time":"02:13:00","height":"3.075"},{"time":"14:59:00","height":"3.275"}]},{"date":"2023-11-07","groups":[{"time":"03:56:00","height":"3.084"},{"time":"16:28:00","height":"3.431"}]},{"date":"2023-11-08","groups":[{"time":"05:06:00","height":"3.380"},{"time":"17:25:00","height":"3.761"}]},{"date":"2023-11-09","groups":[{"time":"05:54:00","height":"3.766"},{"time":"18:09:00","height":"4.113"}]},{"date":"2023-11-10","groups":[{"time":"06:31:00","height":"4.141"},{"time":"18:44:00","height":"4.426"}]},{"date":"2023-11-11","groups":[{"time":"07:04:00","height":"4.467"},{"time":"19:17:00","height":"4.678"}]},{"date":"2023-11-12","groups":[{"time":"07:35:00","height":"4.730"},{"time":"19:49:00","height":"4.863"}]},{"date":"2023-11-13","groups":[{"time":"08:07:00","height":"4.922"},{"time":"20:21:00","height":"4.977"}]},{"date":"2023-11-14","groups":[{"time":"08:39:00","height":"5.032"},{"time":"20:55:00","height":"5.007"}]},{"date":"2023-11-15","groups":[{"time":"09:12:00","height":"5.048"},{"time":"21:29:00","height":"4.939"}]},{"date":"2023-11-16","groups":[{"time":"09:48:00","height":"4.963"},{"time":"22:07:00","height":"4.767"}]},{"date":"2023-11-17","groups":[{"time":"10:28:00","height":"4.778"},{"time":"22:53:00","height":"4.498"}]},{"date":"2023-11-18","groups":[{"time":"11:19:00","height":"4.515"},{"time":"23:48:00","height":"4.167"}]},{"date":"2023-11-19","groups":[{"time":"12:20:00","height":"4.226"}]},{"date":"2023-11-20","groups":[{"time":"00:56:00","height":"3.851"},{"time":"13:35:00","height":"4.008"}]},{"date":"2023-11-21","groups":[{"time":"02:19:00","height":"3.674"},{"time":"15:01:00","height":"3.979"}]},{"date":"2023-11-22","groups":[{"time":"03:46:00","height":"3.744"},{"time":"16:17:00","height":"4.170"}]},{"date":"2023-11-23","groups":[{"time":"04:53:00","height":"4.026"},{"time":"17:18:00","height":"4.476"}]},{"date":"2023-11-24","groups":[{"time":"05:49:00","height":"4.376"},{"time":"18:11:00","height":"4.770"}]},{"date":"2023-11-25","groups":[{"time":"06:37:00","height":"4.689"},{"time":"18:58:00","height":"4.982"}]},{"date":"2023-11-26","groups":[{"time":"07:20:00","height":"4.916"},{"time":"19:40:00","height":"5.084"}]},{"date":"2023-11-27","groups":[{"time":"08:01:00","height":"5.043"},{"time":"20:20:00","height":"5.082"}]},{"date":"2023-11-28","groups":[{"time":"08:39:00","height":"5.068"},{"time":"21:00:00","height":"4.983"}]},{"date":"2023-11-29","groups":[{"time":"09:16:00","height":"4.995"},{"time":"21:37:00","height":"4.798"}]},{"date":"2023-11-30","groups":[{"time":"09:52:00","height":"4.832"},{"time":"22:14:00","height":"4.543"}]},{"date":"2023-12-01","groups":[{"time":"10:30:00","height":"4.597"},{"time":"22:55:00","height":"4.242"}]},{"date":"2023-12-02","groups":[{"time":"11:12:00","height":"4.321"},{"time":"23:38:00","height":"3.925"}]},{"date":"2023-12-03","groups":[{"time":"11:57:00","height":"4.032"}]},{"date":"2023-12-04","groups":[{"time":"00:27:00","height":"3.623"},{"time":"12:49:00","height":"3.763"}]},{"date":"2023-12-05","groups":[{"time":"01:25:00","height":"3.374"},{"time":"13:53:00","height":"3.558"}]},{"date":"2023-12-06","groups":[{"time":"02:35:00","height":"3.238"},{"time":"15:09:00","height":"3.482"}]},{"date":"2023-12-07","groups":[{"time":"03:53:00","height":"3.286"},{"time":"16:19:00","height":"3.577"}]},{"date":"2023-12-08","groups":[{"time":"04:54:00","height":"3.507"},{"time":"17:13:00","height":"3.795"}]},{"date":"2023-12-09","groups":[{"time":"05:42:00","height":"3.818"},{"time":"17:59:00","height":"4.064"}]},{"date":"2023-12-10","groups":[{"time":"06:25:00","height":"4.154"},{"time":"18:41:00","height":"4.338"}]},{"date":"2023-12-11","groups":[{"time":"07:03:00","height":"4.471"},{"time":"19:20:00","height":"4.582"}]},{"date":"2023-12-12","groups":[{"time":"07:41:00","height":"4.739"},{"time":"20:00:00","height":"4.771"}]},{"date":"2023-12-13","groups":[{"time":"08:20:00","height":"4.936"},{"time":"20:40:00","height":"4.885"}]},{"date":"2023-12-14","groups":[{"time":"09:00:00","height":"5.048"},{"time":"21:22:00","height":"4.909"}]},{"date":"2023-12-15","groups":[{"time":"09:41:00","height":"5.066"},{"time":"22:04:00","height":"4.839"}]},{"date":"2023-12-16","groups":[{"time":"10:28:00","height":"4.996"},{"time":"22:55:00","height":"4.682"}]},{"date":"2023-12-17","groups":[{"time":"11:21:00","height":"4.850"},{"time":"23:50:00","height":"4.463"}]},{"date":"2023-12-18","groups":[{"time":"12:18:00","height":"4.657"}]},{"date":"2023-12-19","groups":[{"time":"00:50:00","height":"4.224"},{"time":"13:21:00","height":"4.456"}]},{"date":"2023-12-20","groups":[{"time":"01:55:00","height":"4.017"},{"time":"14:30:00","height":"4.291"}]},{"date":"2023-12-21","groups":[{"time":"03:06:00","height":"3.900"},{"time":"15:41:00","height":"4.207"}]},{"date":"2023-12-22","groups":[{"time":"04:15:00","height":"3.913"},{"time":"16:43:00","height":"4.218"}]},{"date":"2023-12-23","groups":[{"time":"05:16:00","height":"4.045"},{"time":"17:42:00","height":"4.301"}]},{"date":"2023-12-24","groups":[{"time":"06:12:00","height":"4.243"},{"time":"18:37:00","height":"4.419"}]},{"date":"2023-12-25","groups":[{"time":"07:02:00","height":"4.453"},{"time":"19:26:00","height":"4.530"}]},{"date":"2023-12-26","groups":[{"time":"07:47:00","height":"4.628"},{"time":"20:10:00","height":"4.605"}]},{"date":"2023-12-27","groups":[{"time":"08:29:00","height":"4.744"},{"time":"20:50:00","height":"4.631"}]},{"date":"2023-12-28","groups":[{"time":"09:06:00","height":"4.786"},{"time":"21:27:00","height":"4.595"}]},{"date":"2023-12-29","groups":[{"time":"09:42:00","height":"4.754"},{"time":"22:02:00","height":"4.501"}]},{"date":"2023-12-30","groups":[{"time":"10:17:00","height":"4.658"},{"time":"22:40:00","height":"4.357"}]},{"date":"2023-12-31","groups":[{"time":"10:55:00","height":"4.514"},{"time":"23:18:00","height":"4.177"}]},{"date":"2024-01-01","groups":[{"time":"11:34:00","height":"4.334"},{"time":"23:57:00","height":"3.971"}]},{"date":"2024-01-02","groups":[{"time":"12:14:00","height":"4.126"}]},{"date":"2024-01-03","groups":[{"time":"00:39:00","height":"3.753"},{"time":"12:59:00","height":"3.904"}]},{"date":"2024-01-04","groups":[{"time":"01:27:00","height":"3.543"},{"time":"13:51:00","height":"3.691"}]},{"date":"2024-01-05","groups":[{"time":"02:25:00","height":"3.384"},{"time":"14:53:00","height":"3.538"}]},{"date":"2024-01-06","groups":[{"time":"03:36:00","height":"3.340"},{"time":"16:03:00","height":"3.511"}]},{"date":"2024-01-07","groups":[{"time":"04:43:00","height":"3.473"},{"time":"17:09:00","height":"3.651"}]},{"date":"2024-01-08","groups":[{"time":"05:43:00","height":"3.761"},{"time":"18:06:00","height":"3.919"}]},{"date":"2024-01-09","groups":[{"time":"06:35:00","height":"4.129"},{"time":"18:58:00","height":"4.243"}]},{"date":"2024-01-10","groups":[{"time":"07:22:00","height":"4.509"},{"time":"19:46:00","height":"4.561"}]},{"date":"2024-01-11","groups":[{"time":"08:08:00","height":"4.851"},{"time":"20:31:00","height":"4.828"}]},{"date":"2024-01-12","groups":[{"time":"08:52:00","height":"5.122"},{"time":"21:16:00","height":"5.010"}]},{"date":"2024-01-13","groups":[{"time":"09:37:00","height":"5.298"},{"time":"22:00:00","height":"5.083"}]},{"date":"2024-01-14","groups":[{"time":"10:21:00","height":"5.358"},{"time":"22:49:00","height":"5.035"}]},{"date":"2024-01-15","groups":[{"time":"11:12:00","height":"5.291"},{"time":"23:38:00","height":"4.869"}]},{"date":"2024-01-16","groups":[{"time":"12:03:00","height":"5.098"}]},{"date":"2024-01-17","groups":[{"time":"00:28:00","height":"4.605"},{"time":"12:55:00","height":"4.798"}]},{"date":"2024-01-18","groups":[{"time":"01:21:00","height":"4.282"},{"time":"13:52:00","height":"4.432"}]},{"date":"2024-01-19","groups":[{"time":"02:21:00","height":"3.956"},{"time":"14:57:00","height":"4.070"}]},{"date":"2024-01-20","groups":[{"time":"03:31:00","height":"3.707"},{"time":"16:06:00","height":"3.806"}]},{"date":"2024-01-21","groups":[{"time":"04:42:00","height":"3.633"},{"time":"17:18:00","height":"3.738"}]},{"date":"2024-01-22","groups":[{"time":"05:54:00","height":"3.774"},{"time":"18:25:00","height":"3.869"}]},{"date":"2024-01-23","groups":[{"time":"06:54:00","height":"4.052"},{"time":"19:20:00","height":"4.099"}]},{"date":"2024-01-24","groups":[{"time":"07:42:00","height":"4.344"},{"time":"20:04:00","height":"4.322"}]},{"date":"2024-01-25","groups":[{"time":"08:22:00","height":"4.575"},{"time":"20:42:00","height":"4.486"}]},{"date":"2024-01-26","groups":[{"time":"08:58:00","height":"4.723"},{"time":"21:16:00","height":"4.578"}]},{"date":"2024-01-27","groups":[{"time":"09:30:00","height":"4.790"},{"time":"21:47:00","height":"4.601"}]},{"date":"2024-01-28","groups":[{"time":"10:00:00","height":"4.789"},{"time":"22:18:00","height":"4.561"}]},{"date":"2024-01-29","groups":[{"time":"10:32:00","height":"4.729"},{"time":"22:51:00","height":"4.466"}]},{"date":"2024-01-30","groups":[{"time":"11:05:00","height":"4.612"},{"time":"23:23:00","height":"4.317"}]},{"date":"2024-01-31","groups":[{"time":"11:37:00","height":"4.435"},{"time":"23:57:00","height":"4.115"}]},{"date":"2024-02-01","groups":[{"time":"12:13:00","height":"4.201"}]},{"date":"2024-02-02","groups":[{"time":"00:34:00","height":"3.873"},{"time":"12:52:00","height":"3.925"}]},{"date":"2024-02-03","groups":[{"time":"01:17:00","height":"3.612"},{"time":"13:42:00","height":"3.632"}]},{"date":"2024-02-04","groups":[{"time":"02:18:00","height":"3.372"},{"time":"14:51:00","height":"3.383"}]},{"date":"2024-02-05","groups":[{"time":"03:40:00","height":"3.261"},{"time":"16:17:00","height":"3.319"}]},{"date":"2024-02-06","groups":[{"time":"05:04:00","height":"3.432"},{"time":"17:38:00","height":"3.558"}]},{"date":"2024-02-07","groups":[{"time":"06:13:00","height":"3.856"},{"time":"18:43:00","height":"3.997"}]},{"date":"2024-02-08","groups":[{"time":"07:09:00","height":"4.378"},{"time":"19:35:00","height":"4.482"}]},{"date":"2024-02-09","groups":[{"time":"07:57:00","height":"4.886"},{"time":"20:21:00","height":"4.913"}]},{"date":"2024-02-10","groups":[{"time":"08:42:00","height":"5.306"},{"time":"21:06:00","height":"5.226"}]},{"date":"2024-02-11","groups":[{"time":"09:24:00","height":"5.590"},{"time":"21:47:00","height":"5.387"}]},{"date":"2024-02-12","groups":[{"time":"10:06:00","height":"5.702"},{"time":"22:29:00","height":"5.375"}]},{"date":"2024-02-13","groups":[{"time":"10:52:00","height":"5.622"},{"time":"23:15:00","height":"5.191"}]},{"date":"2024-02-14","groups":[{"time":"11:37:00","height":"5.351"},{"time":"23:58:00","height":"4.860"}]},{"date":"2024-02-15","groups":[{"time":"12:24:00","height":"4.920"}]},{"date":"2024-02-16","groups":[{"time":"00:44:00","height":"4.426"},{"time":"13:13:00","height":"4.387"}]},{"date":"2024-02-17","groups":[{"time":"01:35:00","height":"3.949"},{"time":"14:11:00","height":"3.832"}]},{"date":"2024-02-18","groups":[{"time":"02:43:00","height":"3.514"},{"time":"15:30:00","height":"3.391"}]},{"date":"2024-02-19","groups":[{"time":"04:12:00","height":"3.289"},{"time":"16:59:00","height":"3.269"}]},{"date":"2024-02-20","groups":[{"time":"05:42:00","height":"3.450"},{"time":"18:20:00","height":"3.520"}]},{"date":"2024-02-21","groups":[{"time":"06:47:00","height":"3.843"},{"time":"19:13:00","height":"3.897"}]},{"date":"2024-02-22","groups":[{"time":"07:31:00","height":"4.235"},{"time":"19:52:00","height":"4.236"}]},{"date":"2024-02-23","groups":[{"time":"08:08:00","height":"4.538"},{"time":"20:26:00","height":"4.486"}]},{"date":"2024-02-24","groups":[{"time":"08:41:00","height":"4.738"},{"time":"20:57:00","height":"4.645"}]},{"date":"2024-02-25","groups":[{"time":"09:10:00","height":"4.850"},{"time":"21:25:00","height":"4.727"}]},{"date":"2024-02-26","groups":[{"time":"09:38:00","height":"4.892"},{"time":"21:52:00","height":"4.743"}]},{"date":"2024-02-27","groups":[{"time":"10:04:00","height":"4.870"},{"time":"22:18:00","height":"4.694"}]},{"date":"2024-02-28","groups":[{"time":"10:32:00","height":"4.782"},{"time":"22:47:00","height":"4.577"}]},{"date":"2024-02-29","groups":[{"time":"11:02:00","height":"4.618"},{"time":"23:18:00","height":"4.389"}]},{"date":"2024-03-01","groups":[{"time":"11:33:00","height":"4.382"},{"time":"23:50:00","height":"4.138"}]},{"date":"2024-03-02","groups":[{"time":"12:08:00","height":"4.080"}]},{"date":"2024-03-03","groups":[{"time":"00:28:00","height":"3.833"},{"time":"12:51:00","height":"3.721"}]},{"date":"2024-03-04","groups":[{"time":"01:21:00","height":"3.494"},{"time":"13:56:00","height":"3.347"}]},{"date":"2024-03-05","groups":[{"time":"02:46:00","height":"3.220"},{"time":"15:39:00","height":"3.140"}]},{"date":"2024-03-06","groups":[{"time":"04:34:00","height":"3.293"},{"time":"17:19:00","height":"3.388"}]},{"date":"2024-03-07","groups":[{"time":"05:56:00","height":"3.781"},{"time":"18:29:00","height":"3.944"}]},{"date":"2024-03-08","groups":[{"time":"06:53:00","height":"4.410"},{"time":"19:20:00","height":"4.540"}]},{"date":"2024-03-09","groups":[{"time":"07:40:00","height":"5.005"},{"time":"20:05:00","height":"5.047"}]},{"date":"2024-03-10","groups":[{"time":"08:24:00","height":"5.473"},{"time":"20:47:00","height":"5.399"}]},{"date":"2024-03-11","groups":[{"time":"09:05:00","height":"5.760"},{"time":"21:26:00","height":"5.566"}]},{"date":"2024-03-12","groups":[{"time":"09:45:00","height":"5.835"},{"time":"22:04:00","height":"5.537"}]},{"date":"2024-03-13","groups":[{"time":"10:25:00","height":"5.689"},{"time":"22:45:00","height":"5.319"}]},{"date":"2024-03-14","groups":[{"time":"11:08:00","height":"5.336"},{"time":"23:26:00","height":"4.943"}]},{"date":"2024-03-15","groups":[{"time":"11:51:00","height":"4.823"}]},{"date":"2024-03-16","groups":[{"time":"00:09:00","height":"4.457"},{"time":"12:38:00","height":"4.217"}]},{"date":"2024-03-17","groups":[{"time":"00:56:00","height":"3.920"},{"time":"13:33:00","height":"3.601"}]},{"date":"2024-03-18","groups":[{"time":"02:01:00","height":"3.413"},{"time":"14:54:00","height":"3.113"}]},{"date":"2024-03-19","groups":[{"time":"03:45:00","height":"3.131"},{"time":"16:42:00","height":"3.025"}]},{"date":"2024-03-20","groups":[{"time":"05:25:00","height":"3.321"},{"time":"18:04:00","height":"3.367"}]},{"date":"2024-03-21","groups":[{"time":"06:28:00","height":"3.755"},{"time":"18:53:00","height":"3.809"}]},{"date":"2024-03-22","groups":[{"time":"07:09:00","height":"4.169"},{"time":"19:29:00","height":"4.190"}]},{"date":"2024-03-23","groups":[{"time":"07:43:00","height":"4.486"},{"time":"20:01:00","height":"4.473"}]},{"date":"2024-03-24","groups":[{"time":"08:14:00","height":"4.701"},{"time":"20:30:00","height":"4.665"}]},{"date":"2024-03-25","groups":[{"time":"08:42:00","height":"4.831"},{"time":"20:57:00","height":"4.780"}]},{"date":"2024-03-26","groups":[{"time":"09:09:00","height":"4.892"},{"time":"21:23:00","height":"4.830"}]},{"date":"2024-03-27","groups":[{"time":"09:35:00","height":"4.889"},{"time":"21:49:00","height":"4.812"}]},{"date":"2024-03-28","groups":[{"time":"10:00:00","height":"4.817"},{"time":"22:15:00","height":"4.719"}]},{"date":"2024-03-29","groups":[{"time":"10:29:00","height":"4.666"},{"time":"22:45:00","height":"4.546"}]},{"date":"2024-03-30","groups":[{"time":"11:02:00","height":"4.433"},{"time":"23:19:00","height":"4.296"}]},{"date":"2024-03-31","groups":[{"time":"11:38:00","height":"4.122"},{"time":"23:59:00","height":"3.975"}]},{"date":"2024-04-01","groups":[{"time":"13:24:00","height":"3.741"}]},{"date":"2024-04-02","groups":[{"time":"01:54:00","height":"3.609"},{"time":"14:33:00","height":"3.346"}]},{"date":"2024-04-03","groups":[{"time":"03:23:00","height":"3.321"},{"time":"16:22:00","height":"3.159"}]},{"date":"2024-04-04","groups":[{"time":"05:13:00","height":"3.411"},{"time":"18:01:00","height":"3.455"}]},{"date":"2024-04-05","groups":[{"time":"06:33:00","height":"3.909"},{"time":"19:08:00","height":"4.028"}]},{"date":"2024-04-06","groups":[{"time":"07:29:00","height":"4.522"},{"time":"19:58:00","height":"4.609"}]},{"date":"2024-04-07","groups":[{"time":"08:17:00","height":"5.071"},{"time":"20:42:00","height":"5.079"}]},{"date":"2024-04-08","groups":[{"time":"09:00:00","height":"5.469"},{"time":"21:22:00","height":"5.388"}]},{"date":"2024-04-09","groups":[{"time":"09:41:00","height":"5.676"},{"time":"22:01:00","height":"5.518"}]},{"date":"2024-04-10","groups":[{"time":"10:21:00","height":"5.677"},{"time":"22:38:00","height":"5.465"}]},{"date":"2024-04-11","groups":[{"time":"10:59:00","height":"5.477"},{"time":"23:16:00","height":"5.242"}]},{"date":"2024-04-12","groups":[{"time":"11:41:00","height":"5.100"},{"time":"23:57:00","height":"4.876"}]},{"date":"2024-04-13","groups":[{"time":"12:24:00","height":"4.595"}]},{"date":"2024-04-14","groups":[{"time":"00:41:00","height":"4.413"},{"time":"13:10:00","height":"4.029"}]},{"date":"2024-04-15","groups":[{"time":"01:29:00","height":"3.912"},{"time":"14:05:00","height":"3.480"}]},{"date":"2024-04-16","groups":[{"time":"02:33:00","height":"3.450"},{"time":"15:24:00","height":"3.064"}]},{"date":"2024-04-17","groups":[{"time":"04:11:00","height":"3.187"},{"time":"17:08:00","height":"2.992"}]},{"date":"2024-04-18","groups":[{"time":"05:45:00","height":"3.311"},{"time":"18:26:00","height":"3.285"}]},{"date":"2024-04-19","groups":[{"time":"06:48:00","height":"3.662"},{"time":"19:16:00","height":"3.687"}]},{"date":"2024-04-20","groups":[{"time":"07:32:00","height":"4.027"},{"time":"19:54:00","height":"4.056"}]},{"date":"2024-04-21","groups":[{"time":"08:08:00","height":"4.328"},{"time":"20:27:00","height":"4.351"}]},{"date":"2024-04-22","groups":[{"time":"08:40:00","height":"4.547"},{"time":"20:56:00","height":"4.569"}]},{"date":"2024-04-23","groups":[{"time":"09:09:00","height":"4.693"},{"time":"21:25:00","height":"4.718"}]},{"date":"2024-04-24","groups":[{"time":"09:38:00","height":"4.774"},{"time":"21:53:00","height":"4.802"}]},{"date":"2024-04-25","groups":[{"time":"10:06:00","height":"4.794"},{"time":"22:22:00","height":"4.817"}]},{"date":"2024-04-26","groups":[{"time":"10:35:00","height":"4.743"},{"time":"22:50:00","height":"4.752"}]},{"date":"2024-04-27","groups":[{"time":"11:05:00","height":"4.613"},{"time":"23:23:00","height":"4.603"}]},{"date":"2024-04-28","groups":[{"time":"11:41:00","height":"4.399"}]},{"date":"2024-04-29","groups":[{"time":"00:02:00","height":"4.373"},{"time":"12:24:00","height":"4.108"}]},{"date":"2024-04-30","groups":[{"time":"00:49:00","height":"4.082"},{"time":"13:18:00","height":"3.768"}]},{"date":"2024-05-01","groups":[{"time":"01:52:00","height":"3.779"},{"time":"14:33:00","height":"3.469"}]},{"date":"2024-05-02","groups":[{"time":"03:19:00","height":"3.604"},{"time":"16:11:00","height":"3.397"}]},{"date":"2024-05-03","groups":[{"time":"04:52:00","height":"3.726"},{"time":"17:35:00","height":"3.660"}]},{"date":"2024-05-04","groups":[{"time":"06:04:00","height":"4.110"},{"time":"18:38:00","height":"4.108"}]},{"date":"2024-05-05","groups":[{"time":"07:00:00","height":"4.566"},{"time":"19:29:00","height":"4.560"}]},{"date":"2024-05-06","groups":[{"time":"07:49:00","height":"4.959"},{"time":"20:14:00","height":"4.922"}]},{"date":"2024-05-07","groups":[{"time":"08:34:00","height":"5.222"},{"time":"20:56:00","height":"5.157"}]},{"date":"2024-05-08","groups":[{"time":"09:17:00","height":"5.331"},{"time":"21:36:00","height":"5.252"}]},{"date":"2024-05-09","groups":[{"time":"09:58:00","height":"5.283"},{"time":"22:16:00","height":"5.205"}]},{"date":"2024-05-10","groups":[{"time":"10:38:00","height":"5.090"},{"time":"22:54:00","height":"5.026"}]},{"date":"2024-05-11","groups":[{"time":"11:18:00","height":"4.775"},{"time":"23:36:00","height":"4.735"}]},{"date":"2024-05-12","groups":[{"time":"12:04:00","height":"4.376"}]},{"date":"2024-05-13","groups":[{"time":"00:21:00","height":"4.372"},{"time":"12:51:00","height":"3.946"}]},{"date":"2024-05-14","groups":[{"time":"01:11:00","height":"3.986"},{"time":"13:44:00","height":"3.543"}]},{"date":"2024-05-15","groups":[{"time":"02:09:00","height":"3.638"},{"time":"14:51:00","height":"3.235"}]},{"date":"2024-05-16","groups":[{"time":"03:24:00","height":"3.407"},{"time":"16:14:00","height":"3.117"}]},{"date":"2024-05-17","groups":[{"time":"04:48:00","height":"3.386"},{"time":"17:28:00","height":"3.242"}]},{"date":"2024-05-18","groups":[{"time":"05:52:00","height":"3.557"},{"time":"18:25:00","height":"3.514"}]},{"date":"2024-05-19","groups":[{"time":"06:42:00","height":"3.810"},{"time":"19:08:00","height":"3.824"}]},{"date":"2024-05-20","groups":[{"time":"07:24:00","height":"4.062"},{"time":"19:45:00","height":"4.115"}]},{"date":"2024-05-21","groups":[{"time":"08:00:00","height":"4.281"},{"time":"20:20:00","height":"4.363"}]},{"date":"2024-05-22","groups":[{"time":"08:34:00","height":"4.452"},{"time":"20:53:00","height":"4.557"}]},{"date":"2024-05-23","groups":[{"time":"09:08:00","height":"4.573"},{"time":"21:25:00","height":"4.692"}]},{"date":"2024-05-24","groups":[{"time":"09:42:00","height":"4.636"},{"time":"21:59:00","height":"4.758"}]},{"date":"2024-05-25","groups":[{"time":"10:16:00","height":"4.635"},{"time":"22:34:00","height":"4.748"}]},{"date":"2024-05-26","groups":[{"time":"10:53:00","height":"4.560"},{"time":"23:11:00","height":"4.661"}]},{"date":"2024-05-27","groups":[{"time":"11:34:00","height":"4.410"},{"time":"23:58:00","height":"4.506"}]},{"date":"2024-05-28","groups":[{"time":"12:25:00","height":"4.201"}]},{"date":"2024-05-29","groups":[{"time":"00:52:00","height":"4.312"},{"time":"13:24:00","height":"3.973"}]},{"date":"2024-05-30","groups":[{"time":"01:55:00","height":"4.131"},{"time":"14:32:00","height":"3.791"}]},{"date":"2024-05-31","groups":[{"time":"03:08:00","height":"4.028"},{"time":"15:48:00","height":"3.734"}]},{"date":"2024-06-01","groups":[{"time":"04:25:00","height":"4.060"},{"time":"17:02:00","height":"3.842"}]},{"date":"2024-06-02","groups":[{"time":"05:30:00","height":"4.218"},{"time":"18:03:00","height":"4.074"}]},{"date":"2024-06-03","groups":[{"time":"06:28:00","height":"4.433"},{"time":"18:58:00","height":"4.346"}]},{"date":"2024-06-04","groups":[{"time":"07:22:00","height":"4.632"},{"time":"19:47:00","height":"4.592"}]},{"date":"2024-06-05","groups":[{"time":"08:11:00","height":"4.773"},{"time":"20:34:00","height":"4.777"}]},{"date":"2024-06-06","groups":[{"time":"08:58:00","height":"4.838"},{"time":"21:18:00","height":"4.880"}]},{"date":"2024-06-07","groups":[{"time":"09:42:00","height":"4.818"},{"time":"22:00:00","height":"4.891"}]},{"date":"2024-06-08","groups":[{"time":"10:24:00","height":"4.713"},{"time":"22:40:00","height":"4.807"}]},{"date":"2024-06-09","groups":[{"time":"11:04:00","height":"4.534"},{"time":"23:21:00","height":"4.643"}]},{"date":"2024-06-10","groups":[{"time":"11:49:00","height":"4.298"}]},{"date":"2024-06-11","groups":[{"time":"00:06:00","height":"4.420"},{"time":"12:33:00","height":"4.033"}]},{"date":"2024-06-12","groups":[{"time":"00:51:00","height":"4.171"},{"time":"13:20:00","height":"3.769"}]},{"date":"2024-06-13","groups":[{"time":"01:39:00","height":"3.924"},{"time":"14:09:00","height":"3.535"}]},{"date":"2024-06-14","groups":[{"time":"02:33:00","height":"3.707"},{"time":"15:08:00","height":"3.360"}]},{"date":"2024-06-15","groups":[{"time":"03:34:00","height":"3.553"},{"time":"16:15:00","height":"3.290"}]},{"date":"2024-06-16","groups":[{"time":"04:42:00","height":"3.504"},{"time":"17:19:00","height":"3.361"}]},{"date":"2024-06-17","groups":[{"time":"05:41:00","height":"3.575"},{"time":"18:14:00","height":"3.553"}]},{"date":"2024-06-18","groups":[{"time":"06:34:00","height":"3.737"},{"time":"19:01:00","height":"3.812"}]},{"date":"2024-06-19","groups":[{"time":"07:20:00","height":"3.944"},{"time":"19:44:00","height":"4.091"}]},{"date":"2024-06-20","groups":[{"time":"08:02:00","height":"4.158"},{"time":"20:24:00","height":"4.352"}]},{"date":"2024-06-21","groups":[{"time":"08:43:00","height":"4.353"},{"time":"21:03:00","height":"4.572"}]},{"date":"2024-06-22","groups":[{"time":"09:24:00","height":"4.509"},{"time":"21:44:00","height":"4.736"}]},{"date":"2024-06-23","groups":[{"time":"10:05:00","height":"4.611"},{"time":"22:24:00","height":"4.835"}]},{"date":"2024-06-24","groups":[{"time":"10:47:00","height":"4.648"},{"time":"23:07:00","height":"4.866"}]},{"date":"2024-06-25","groups":[{"time":"11:32:00","height":"4.612"},{"time":"23:56:00","height":"4.826"}]},{"date":"2024-06-26","groups":[{"time":"12:23:00","height":"4.507"}]},{"date":"2024-06-27","groups":[{"time":"00:49:00","height":"4.723"},{"time":"13:17:00","height":"4.348"}]},{"date":"2024-06-28","groups":[{"time":"01:44:00","height":"4.573"},{"time":"14:15:00","height":"4.166"}]},{"date":"2024-06-29","groups":[{"time":"02:45:00","height":"4.399"},{"time":"15:17:00","height":"3.997"}]},{"date":"2024-06-30","groups":[{"time":"03:50:00","height":"4.233"},{"time":"16:25:00","height":"3.890"}]},{"date":"2024-07-01","groups":[{"time":"04:57:00","height":"4.122"},{"time":"17:29:00","height":"3.891"}]},{"date":"2024-07-02","groups":[{"time":"05:59:00","height":"4.097"},{"time":"18:31:00","height":"4.005"}]},{"date":"2024-07-03","groups":[{"time":"07:00:00","height":"4.158"},{"time":"19:29:00","height":"4.196"}]},{"date":"2024-07-04","groups":[{"time":"07:58:00","height":"4.277"},{"time":"20:22:00","height":"4.410"}]},{"date":"2024-07-05","groups":[{"time":"08:48:00","height":"4.404"},{"time":"21:09:00","height":"4.590"}]},{"date":"2024-07-06","groups":[{"time":"09:34:00","height":"4.495"},{"time":"21:51:00","height":"4.702"}]},{"date":"2024-07-07","groups":[{"time":"10:15:00","height":"4.527"},{"time":"22:31:00","height":"4.732"}]},{"date":"2024-07-08","groups":[{"time":"10:53:00","height":"4.491"},{"time":"23:07:00","height":"4.684"}]},{"date":"2024-07-09","groups":[{"time":"11:30:00","height":"4.394"},{"time":"23:46:00","height":"4.575"}]},{"date":"2024-07-10","groups":[{"time":"12:08:00","height":"4.250"}]},{"date":"2024-07-11","groups":[{"time":"00:24:00","height":"4.419"},{"time":"12:46:00","height":"4.072"}]},{"date":"2024-07-12","groups":[{"time":"01:02:00","height":"4.227"},{"time":"13:25:00","height":"3.871"}]},{"date":"2024-07-13","groups":[{"time":"01:43:00","height":"4.007"},{"time":"14:08:00","height":"3.657"}]},{"date":"2024-07-14","groups":[{"time":"02:29:00","height":"3.771"},{"time":"14:59:00","height":"3.457"}]},{"date":"2024-07-15","groups":[{"time":"03:23:00","height":"3.552"},{"time":"16:01:00","height":"3.322"}]},{"date":"2024-07-16","groups":[{"time":"04:30:00","height":"3.410"},{"time":"17:11:00","height":"3.327"}]},{"date":"2024-07-17","groups":[{"time":"05:38:00","height":"3.422"},{"time":"18:17:00","height":"3.515"}]},{"date":"2024-07-18","groups":[{"time":"06:42:00","height":"3.608"},{"time":"19:14:00","height":"3.834"}]},{"date":"2024-07-19","groups":[{"time":"07:38:00","height":"3.901"},{"time":"20:03:00","height":"4.203"}]},{"date":"2024-07-20","groups":[{"time":"08:27:00","height":"4.228"},{"time":"20:48:00","height":"4.563"}]},{"date":"2024-07-21","groups":[{"time":"09:12:00","height":"4.535"},{"time":"21:32:00","height":"4.874"}]},{"date":"2024-07-22","groups":[{"time":"09:55:00","height":"4.783"},{"time":"22:15:00","height":"5.112"}]},{"date":"2024-07-23","groups":[{"time":"10:38:00","height":"4.943"},{"time":"22:57:00","height":"5.252"}]},{"date":"2024-07-24","groups":[{"time":"11:21:00","height":"4.993"},{"time":"23:44:00","height":"5.274"}]},{"date":"2024-07-25","groups":[{"time":"12:09:00","height":"4.922"}]},{"date":"2024-07-26","groups":[{"time":"00:33:00","height":"5.163"},{"time":"12:57:00","height":"4.734"}]},{"date":"2024-07-27","groups":[{"time":"01:22:00","height":"4.925"},{"time":"13:47:00","height":"4.455"}]},{"date":"2024-07-28","groups":[{"time":"02:15:00","height":"4.585"},{"time":"14:41:00","height":"4.126"}]},{"date":"2024-07-29","groups":[{"time":"03:13:00","height":"4.195"},{"time":"15:45:00","height":"3.815"}]},{"date":"2024-07-30","groups":[{"time":"04:24:00","height":"3.845"},{"time":"16:59:00","height":"3.627"}]},{"date":"2024-07-31","groups":[{"time":"05:37:00","height":"3.661"},{"time":"18:15:00","height":"3.668"}]},{"date":"2024-08-01","groups":[{"time":"06:52:00","height":"3.722"},{"time":"19:25:00","height":"3.922"}]},{"date":"2024-08-02","groups":[{"time":"07:55:00","height":"3.960"},{"time":"20:19:00","height":"4.251"}]},{"date":"2024-08-03","groups":[{"time":"08:45:00","height":"4.228"},{"time":"21:03:00","height":"4.534"}]},{"date":"2024-08-04","groups":[{"time":"09:26:00","height":"4.441"},{"time":"21:42:00","height":"4.723"}]},{"date":"2024-08-05","groups":[{"time":"10:02:00","height":"4.569"},{"time":"22:16:00","height":"4.815"}]},{"date":"2024-08-06","groups":[{"time":"10:34:00","height":"4.617"},{"time":"22:47:00","height":"4.826"}]},{"date":"2024-08-07","groups":[{"time":"11:04:00","height":"4.594"},{"time":"23:18:00","height":"4.771"}]},{"date":"2024-08-08","groups":[{"time":"11:37:00","height":"4.512"},{"time":"23:51:00","height":"4.657"}]},{"date":"2024-08-09","groups":[{"time":"12:08:00","height":"4.373"}]},{"date":"2024-08-10","groups":[{"time":"00:22:00","height":"4.483"},{"time":"12:41:00","height":"4.181"}]},{"date":"2024-08-11","groups":[{"time":"00:56:00","height":"4.248"},{"time":"13:15:00","height":"3.940"}]},{"date":"2024-08-12","groups":[{"time":"01:33:00","height":"3.960"},{"time":"13:55:00","height":"3.667"}]},{"date":"2024-08-13","groups":[{"time":"02:17:00","height":"3.641"},{"time":"14:49:00","height":"3.396"}]},{"date":"2024-08-14","groups":[{"time":"03:19:00","height":"3.341"},{"time":"16:06:00","height":"3.216"}]},{"date":"2024-08-15","groups":[{"time":"04:46:00","height":"3.188"},{"time":"17:38:00","height":"3.300"}]},{"date":"2024-08-16","groups":[{"time":"06:14:00","height":"3.355"},{"time":"18:52:00","height":"3.684"}]},{"date":"2024-08-17","groups":[{"time":"07:21:00","height":"3.776"},{"time":"19:47:00","height":"4.198"}]},{"date":"2024-08-18","groups":[{"time":"08:14:00","height":"4.270"},{"time":"20:34:00","height":"4.712"}]},{"date":"2024-08-19","groups":[{"time":"08:59:00","height":"4.727"},{"time":"21:18:00","height":"5.154"}]},{"date":"2024-08-20","groups":[{"time":"09:41:00","height":"5.086"},{"time":"21:59:00","height":"5.479"}]},{"date":"2024-08-21","groups":[{"time":"10:22:00","height":"5.309"},{"time":"22:40:00","height":"5.650"}]},{"date":"2024-08-22","groups":[{"time":"11:01:00","height":"5.370"},{"time":"23:21:00","height":"5.640"}]},{"date":"2024-08-23","groups":[{"time":"11:44:00","height":"5.261"}]},{"date":"2024-08-24","groups":[{"time":"00:07:00","height":"5.438"},{"time":"12:28:00","height":"4.994"}]},{"date":"2024-08-25","groups":[{"time":"00:52:00","height":"5.062"},{"time":"13:13:00","height":"4.602"}]},{"date":"2024-08-26","groups":[{"time":"01:41:00","height":"4.556"},{"time":"14:03:00","height":"4.139"}]},{"date":"2024-08-27","groups":[{"time":"02:38:00","height":"3.995"},{"time":"15:07:00","height":"3.680"}]},{"date":"2024-08-28","groups":[{"time":"03:51:00","height":"3.499"},{"time":"16:37:00","height":"3.386"}]},{"date":"2024-08-29","groups":[{"time":"05:26:00","height":"3.291"},{"time":"18:11:00","height":"3.477"}]},{"date":"2024-08-30","groups":[{"time":"06:54:00","height":"3.500"},{"time":"19:23:00","height":"3.870"}]},{"date":"2024-08-31","groups":[{"time":"07:51:00","height":"3.896"},{"time":"20:12:00","height":"4.292"}]},{"date":"2024-09-01","groups":[{"time":"08:33:00","height":"4.264"},{"time":"20:49:00","height":"4.618"}]},{"date":"2024-09-02","groups":[{"time":"09:09:00","height":"4.533"},{"time":"21:23:00","height":"4.824"}]},{"date":"2024-09-03","groups":[{"time":"09:40:00","height":"4.699"},{"time":"21:53:00","height":"4.928"}]},{"date":"2024-09-04","groups":[{"time":"10:09:00","height":"4.778"},{"time":"22:22:00","height":"4.955"}]},{"date":"2024-09-05","groups":[{"time":"10:36:00","height":"4.787"},{"time":"22:48:00","height":"4.918"}]},{"date":"2024-09-06","groups":[{"time":"11:02:00","height":"4.734"},{"time":"23:14:00","height":"4.818"}]},{"date":"2024-09-07","groups":[{"time":"11:30:00","height":"4.614"},{"time":"23:43:00","height":"4.645"}]},{"date":"2024-09-08","groups":[{"time":"11:59:00","height":"4.425"}]},{"date":"2024-09-09","groups":[{"time":"00:13:00","height":"4.399"},{"time":"12:31:00","height":"4.172"}]},{"date":"2024-09-10","groups":[{"time":"00:46:00","height":"4.087"},{"time":"13:07:00","height":"3.864"}]},{"date":"2024-09-11","groups":[{"time":"01:27:00","height":"3.721"},{"time":"13:55:00","height":"3.523"}]},{"date":"2024-09-12","groups":[{"time":"02:26:00","height":"3.337"},{"time":"15:13:00","height":"3.230"}]},{"date":"2024-09-13","groups":[{"time":"04:04:00","height":"3.086"},{"time":"17:07:00","height":"3.250"}]},{"date":"2024-09-14","groups":[{"time":"05:54:00","height":"3.281"},{"time":"18:32:00","height":"3.710"}]},{"date":"2024-09-15","groups":[{"time":"07:06:00","height":"3.825"},{"time":"19:28:00","height":"4.332"}]},{"date":"2024-09-16","groups":[{"time":"07:56:00","height":"4.429"},{"time":"20:15:00","height":"4.932"}]},{"date":"2024-09-17","groups":[{"time":"08:39:00","height":"4.958"},{"time":"20:57:00","height":"5.419"}]},{"date":"2024-09-18","groups":[{"time":"09:19:00","height":"5.348"},{"time":"21:37:00","height":"5.741"}]},{"date":"2024-09-19","groups":[{"time":"09:59:00","height":"5.564"},{"time":"22:18:00","height":"5.865"}]},{"date":"2024-09-20","groups":[{"time":"10:37:00","height":"5.592"},{"time":"22:56:00","height":"5.774"}]},{"date":"2024-09-21","groups":[{"time":"11:15:00","height":"5.430"},{"time":"23:39:00","height":"5.472"}]},{"date":"2024-09-22","groups":[{"time":"11:58:00","height":"5.099"}]},{"date":"2024-09-23","groups":[{"time":"00:24:00","height":"4.991"},{"time":"12:43:00","height":"4.640"}]},{"date":"2024-09-24","groups":[{"time":"01:12:00","height":"4.395"},{"time":"13:33:00","height":"4.111"}]},{"date":"2024-09-25","groups":[{"time":"02:08:00","height":"3.772"},{"time":"14:38:00","height":"3.601"}]},{"date":"2024-09-26","groups":[{"time":"03:28:00","height":"3.263"},{"time":"16:20:00","height":"3.304"}]},{"date":"2024-09-27","groups":[{"time":"05:18:00","height":"3.138"},{"time":"18:02:00","height":"3.472"}]},{"date":"2024-09-28","groups":[{"time":"06:43:00","height":"3.465"},{"time":"19:07:00","height":"3.906"}]},{"date":"2024-09-29","groups":[{"time":"07:33:00","height":"3.912"},{"time":"19:50:00","height":"4.326"}]},{"date":"2024-09-30","groups":[{"time":"08:11:00","height":"4.300"},{"time":"20:25:00","height":"4.642"}]},{"date":"2024-10-01","groups":[{"time":"08:43:00","height":"4.583"},{"time":"20:56:00","height":"4.843"}]},{"date":"2024-10-02","groups":[{"time":"09:12:00","height":"4.765"},{"time":"21:25:00","height":"4.950"}]},{"date":"2024-10-03","groups":[{"time":"09:40:00","height":"4.865"},{"time":"21:52:00","height":"4.986"}]},{"date":"2024-10-04","groups":[{"time":"10:06:00","height":"4.898"},{"time":"22:18:00","height":"4.959"}]},{"date":"2024-10-05","groups":[{"time":"10:32:00","height":"4.866"},{"time":"22:43:00","height":"4.865"}]},{"date":"2024-10-06","groups":[{"time":"10:57:00","height":"4.763"},{"time":"23:09:00","height":"4.699"}]},{"date":"2024-10-07","groups":[{"time":"11:25:00","height":"4.585"},{"time":"23:40:00","height":"4.456"}]},{"date":"2024-10-08","groups":[{"time":"11:57:00","height":"4.335"}]},{"date":"2024-10-09","groups":[{"time":"00:15:00","height":"4.144"},{"time":"12:36:00","height":"4.022"}]},{"date":"2024-10-10","groups":[{"time":"00:58:00","height":"3.773"},{"time":"13:27:00","height":"3.670"}]},{"date":"2024-10-11","groups":[{"time":"02:01:00","height":"3.388"},{"time":"14:49:00","height":"3.377"}]},{"date":"2024-10-12","groups":[{"time":"03:43:00","height":"3.167"},{"time":"16:43:00","height":"3.418"}]},{"date":"2024-10-13","groups":[{"time":"05:32:00","height":"3.405"},{"time":"18:06:00","height":"3.881"}]},{"date":"2024-10-14","groups":[{"time":"06:41:00","height":"3.961"},{"time":"19:02:00","height":"4.488"}]},{"date":"2024-10-15","groups":[{"time":"07:30:00","height":"4.553"},{"time":"19:49:00","height":"5.055"}]},{"date":"2024-10-16","groups":[{"time":"08:14:00","height":"5.056"},{"time":"20:31:00","height":"5.488"}]},{"date":"2024-10-17","groups":[{"time":"08:54:00","height":"5.409"},{"time":"21:13:00","height":"5.741"}]},{"date":"2024-10-18","groups":[{"time":"09:35:00","height":"5.590"},{"time":"21:54:00","height":"5.791"}]},{"date":"2024-10-19","groups":[{"time":"10:13:00","height":"5.588"},{"time":"22:34:00","height":"5.635"}]},{"date":"2024-10-20","groups":[{"time":"10:51:00","height":"5.410"},{"time":"23:14:00","height":"5.292"}]},{"date":"2024-10-21","groups":[{"time":"11:33:00","height":"5.075"}]},{"date":"2024-10-22","groups":[{"time":"00:00:00","height":"4.803"},{"time":"12:19:00","height":"4.628"}]},{"date":"2024-10-23","groups":[{"time":"00:50:00","height":"4.235"},{"time":"13:12:00","height":"4.130"}]},{"date":"2024-10-24","groups":[{"time":"01:48:00","height":"3.678"},{"time":"14:18:00","height":"3.673"}]},{"date":"2024-10-25","groups":[{"time":"03:07:00","height":"3.258"},{"time":"15:52:00","height":"3.414"}]},{"date":"2024-10-26","groups":[{"time":"04:49:00","height":"3.167"},{"time":"17:26:00","height":"3.518"}]},{"date":"2024-10-27","groups":[{"time":"06:07:00","height":"3.433"},{"time":"18:30:00","height":"3.846"}]},{"date":"2024-10-28","groups":[{"time":"05:59:00","height":"3.820"},{"time":"18:15:00","height":"4.196"}]},{"date":"2024-10-29","groups":[{"time":"06:38:00","height":"4.181"},{"time":"18:52:00","height":"4.482"}]},{"date":"2024-10-30","groups":[{"time":"07:11:00","height":"4.468"},{"time":"19:24:00","height":"4.684"}]},{"date":"2024-10-31","groups":[{"time":"07:41:00","height":"4.676"},{"time":"19:54:00","height":"4.810"}]},{"date":"2024-11-01","groups":[{"time":"08:09:00","height":"4.811"},{"time":"20:22:00","height":"4.869"}]},{"date":"2024-11-02","groups":[{"time":"08:37:00","height":"4.880"},{"time":"20:50:00","height":"4.865"}]},{"date":"2024-11-03","groups":[{"time":"09:06:00","height":"4.882"},{"time":"21:19:00","height":"4.798"}]},{"date":"2024-11-04","groups":[{"time":"09:34:00","height":"4.812"},{"time":"21:48:00","height":"4.660"}]},{"date":"2024-11-05","groups":[{"time":"10:04:00","height":"4.667"},{"time":"22:20:00","height":"4.453"}]},{"date":"2024-11-06","groups":[{"time":"10:40:00","height":"4.451"},{"time":"23:00:00","height":"4.181"}]},{"date":"2024-11-07","groups":[{"time":"11:24:00","height":"4.179"},{"time":"23:50:00","height":"3.865"}]},{"date":"2024-11-08","groups":[{"time":"12:22:00","height":"3.893"}]},{"date":"2024-11-09","groups":[{"time":"00:59:00","height":"3.571"},{"time":"13:42:00","height":"3.696"}]},{"date":"2024-11-10","groups":[{"time":"02:28:00","height":"3.445"},{"time":"15:15:00","height":"3.749"}]},{"date":"2024-11-11","groups":[{"time":"03:59:00","height":"3.627"},{"time":"16:31:00","height":"4.076"}]},{"date":"2024-11-12","groups":[{"time":"05:06:00","height":"4.040"},{"time":"17:30:00","height":"4.523"}]},{"date":"2024-11-13","groups":[{"time":"05:59:00","height":"4.504"},{"time":"18:20:00","height":"4.946"}]},{"date":"2024-11-14","groups":[{"time":"06:46:00","height":"4.911"},{"time":"19:07:00","height":"5.261"}]},{"date":"2024-11-15","groups":[{"time":"07:30:00","height":"5.203"},{"time":"19:51:00","height":"5.428"}]},{"date":"2024-11-16","groups":[{"time":"08:12:00","height":"5.360"},{"time":"20:34:00","height":"5.439"}]},{"date":"2024-11-17","groups":[{"time":"08:53:00","height":"5.373"},{"time":"21:17:00","height":"5.295"}]},{"date":"2024-11-18","groups":[{"time":"09:35:00","height":"5.244"},{"time":"21:59:00","height":"5.014"}]},{"date":"2024-11-19","groups":[{"time":"10:17:00","height":"4.988"},{"time":"22:45:00","height":"4.633"}]},{"date":"2024-11-20","groups":[{"time":"11:06:00","height":"4.643"},{"time":"23:36:00","height":"4.204"}]},{"date":"2024-11-21","groups":[{"time":"11:57:00","height":"4.261"}]},{"date":"2024-11-22","groups":[{"time":"00:30:00","height":"3.791"},{"time":"12:55:00","height":"3.905"}]},{"date":"2024-11-23","groups":[{"time":"01:34:00","height":"3.463"},{"time":"14:06:00","height":"3.649"}]},{"date":"2024-11-24","groups":[{"time":"02:51:00","height":"3.301"},{"time":"15:27:00","height":"3.572"}]},{"date":"2024-11-25","groups":[{"time":"04:07:00","height":"3.363"},{"time":"16:33:00","height":"3.683"}]},{"date":"2024-11-26","groups":[{"time":"05:07:00","height":"3.588"},{"time":"17:26:00","height":"3.893"}]},{"date":"2024-11-27","groups":[{"time":"05:54:00","height":"3.875"},{"time":"18:10:00","height":"4.122"}]},{"date":"2024-11-28","groups":[{"time":"06:33:00","height":"4.156"},{"time":"18:48:00","height":"4.329"}]},{"date":"2024-11-29","groups":[{"time":"07:08:00","height":"4.402"},{"time":"19:23:00","height":"4.493"}]},{"date":"2024-11-30","groups":[{"time":"07:42:00","height":"4.596"},{"time":"19:57:00","height":"4.607"}]},{"date":"2024-12-01","groups":[{"time":"08:14:00","height":"4.731"},{"time":"20:29:00","height":"4.667"}]},{"date":"2024-12-02","groups":[{"time":"08:47:00","height":"4.803"},{"time":"21:03:00","height":"4.672"}]},{"date":"2024-12-03","groups":[{"time":"09:20:00","height":"4.809"},{"time":"21:37:00","height":"4.618"}]},{"date":"2024-12-04","groups":[{"time":"09:54:00","height":"4.749"},{"time":"22:14:00","height":"4.503"}]},{"date":"2024-12-05","groups":[{"time":"10:37:00","height":"4.628"},{"time":"23:00:00","height":"4.333"}]},{"date":"2024-12-06","groups":[{"time":"11:25:00","height":"4.462"},{"time":"23:52:00","height":"4.128"}]},{"date":"2024-12-07","groups":[{"time":"12:22:00","height":"4.283"}]},{"date":"2024-12-08","groups":[{"time":"00:53:00","height":"3.933"},{"time":"13:28:00","height":"4.142"}]},{"date":"2024-12-09","groups":[{"time":"02:04:00","height":"3.810"},{"time":"14:40:00","height":"4.095"}]},{"date":"2024-12-10","groups":[{"time":"03:19:00","height":"3.821"},{"time":"15:52:00","height":"4.172"}]},{"date":"2024-12-11","groups":[{"time":"04:27:00","height":"3.983"},{"time":"16:55:00","height":"4.352"}]},{"date":"2024-12-12","groups":[{"time":"05:26:00","height":"4.245"},{"time":"17:53:00","height":"4.571"}]},{"date":"2024-12-13","groups":[{"time":"06:21:00","height":"4.533"},{"time":"18:45:00","height":"4.771"}]},{"date":"2024-12-14","groups":[{"time":"07:11:00","height":"4.792"},{"time":"19:36:00","height":"4.914"}]},{"date":"2024-12-15","groups":[{"time":"07:58:00","height":"4.980"},{"time":"20:23:00","height":"4.973"}]},{"date":"2024-12-16","groups":[{"time":"08:43:00","height":"5.076"},{"time":"21:08:00","height":"4.940"}]},{"date":"2024-12-17","groups":[{"time":"09:26:00","height":"5.065"},{"time":"21:51:00","height":"4.813"}]},{"date":"2024-12-18","groups":[{"time":"10:08:00","height":"4.949"},{"time":"22:34:00","height":"4.604"}]},{"date":"2024-12-19","groups":[{"time":"10:53:00","height":"4.747"},{"time":"23:20:00","height":"4.340"}]},{"date":"2024-12-20","groups":[{"time":"11:38:00","height":"4.490"}]},{"date":"2024-12-21","groups":[{"time":"00:04:00","height":"4.056"},{"time":"12:25:00","height":"4.212"}]},{"date":"2024-12-22","groups":[{"time":"00:52:00","height":"3.781"},{"time":"13:14:00","height":"3.943"}]},{"date":"2024-12-23","groups":[{"time":"01:44:00","height":"3.544"},{"time":"14:10:00","height":"3.712"}]},{"date":"2024-12-24","groups":[{"time":"02:47:00","height":"3.383"},{"time":"15:16:00","height":"3.562"}]},{"date":"2024-12-25","groups":[{"time":"03:56:00","height":"3.354"},{"time":"16:22:00","height":"3.542"}]},{"date":"2024-12-26","groups":[{"time":"04:58:00","height":"3.479"},{"time":"17:21:00","height":"3.651"}]},{"date":"2024-12-27","groups":[{"time":"05:51:00","height":"3.716"},{"time":"18:12:00","height":"3.844"}]},{"date":"2024-12-28","groups":[{"time":"06:37:00","height":"4.001"},{"time":"18:56:00","height":"4.069"}]},{"date":"2024-12-29","groups":[{"time":"07:18:00","height":"4.285"},{"time":"19:36:00","height":"4.288"}]},{"date":"2024-12-30","groups":[{"time":"07:57:00","height":"4.535"},{"time":"20:15:00","height":"4.478"}]},{"date":"2024-12-31","groups":[{"time":"08:35:00","height":"4.737"},{"time":"20:53:00","height":"4.624"}]},{"date":"2025-01-01","groups":[{"time":"09:12:00","height":"4.881"},{"time":"21:32:00","height":"4.714"}]},{"date":"2025-01-02","groups":[{"time":"09:50:00","height":"4.960"},{"time":"22:11:00","height":"4.736"}]},{"date":"2025-01-03","groups":[{"time":"10:33:00","height":"4.967"},{"time":"22:56:00","height":"4.679"}]},{"date":"2025-01-04","groups":[{"time":"11:20:00","height":"4.898"},{"time":"23:45:00","height":"4.546"}]},{"date":"2025-01-05","groups":[{"time":"12:10:00","height":"4.754"}]},{"date":"2025-01-06","groups":[{"time":"00:36:00","height":"4.352"},{"time":"13:04:00","height":"4.551"}]},{"date":"2025-01-07","groups":[{"time":"01:31:00","height":"4.127"},{"time":"14:04:00","height":"4.317"}]},{"date":"2025-01-08","groups":[{"time":"02:35:00","height":"3.921"},{"time":"15:12:00","height":"4.106"}]},{"date":"2025-01-09","groups":[{"time":"03:48:00","height":"3.807"},{"time":"16:22:00","height":"3.995"}]},{"date":"2025-01-10","groups":[{"time":"04:57:00","height":"3.855"},{"time":"17:31:00","height":"4.035"}]},{"date":"2025-01-11","groups":[{"time":"06:04:00","height":"4.067"},{"time":"18:35:00","height":"4.210"}]},{"date":"2025-01-12","groups":[{"time":"07:03:00","height":"4.371"},{"time":"19:31:00","height":"4.440"}]},{"date":"2025-01-13","groups":[{"time":"07:54:00","height":"4.668"},{"time":"20:19:00","height":"4.641"}]},{"date":"2025-01-14","groups":[{"time":"08:39:00","height":"4.888"},{"time":"21:03:00","height":"4.761"}]},{"date":"2025-01-15","groups":[{"time":"09:20:00","height":"4.999"},{"time":"21:40:00","height":"4.783"}]},{"date":"2025-01-16","groups":[{"time":"09:56:00","height":"4.997"},{"time":"22:17:00","height":"4.712"}]},{"date":"2025-01-17","groups":[{"time":"10:34:00","height":"4.898"},{"time":"22:55:00","height":"4.564"}]},{"date":"2025-01-18","groups":[{"time":"11:11:00","height":"4.723"},{"time":"23:32:00","height":"4.360"}]},{"date":"2025-01-19","groups":[{"time":"11:48:00","height":"4.494"}]},{"date":"2025-01-20","groups":[{"time":"00:08:00","height":"4.117"},{"time":"12:25:00","height":"4.223"}]},{"date":"2025-01-21","groups":[{"time":"00:46:00","height":"3.847"},{"time":"13:05:00","height":"3.918"}]},{"date":"2025-01-22","groups":[{"time":"01:30:00","height":"3.565"},{"time":"13:54:00","height":"3.603"}]},{"date":"2025-01-23","groups":[{"time":"02:27:00","height":"3.312"},{"time":"14:58:00","height":"3.333"}]},{"date":"2025-01-24","groups":[{"time":"03:45:00","height":"3.178"},{"time":"16:18:00","height":"3.221"}]},{"date":"2025-01-25","groups":[{"time":"05:04:00","height":"3.286"},{"time":"17:34:00","height":"3.364"}]},{"date":"2025-01-26","groups":[{"time":"06:09:00","height":"3.606"},{"time":"18:34:00","height":"3.683"}]},{"date":"2025-01-27","groups":[{"time":"06:59:00","height":"4.013"},{"time":"19:21:00","height":"4.060"}]},{"date":"2025-01-28","groups":[{"time":"07:42:00","height":"4.421"},{"time":"20:03:00","height":"4.426"}]},{"date":"2025-01-29","groups":[{"time":"08:22:00","height":"4.788"},{"time":"20:43:00","height":"4.740"}]},{"date":"2025-01-30","groups":[{"time":"09:01:00","height":"5.086"},{"time":"21:21:00","height":"4.973"}]},{"date":"2025-01-31","groups":[{"time":"09:39:00","height":"5.292"},{"time":"21:59:00","height":"5.098"}]},{"date":"2025-02-01","groups":[{"time":"10:18:00","height":"5.379"},{"time":"22:41:00","height":"5.093"}]},{"date":"2025-02-02","groups":[{"time":"11:03:00","height":"5.325"},{"time":"23:24:00","height":"4.952"}]},{"date":"2025-02-03","groups":[{"time":"11:48:00","height":"5.123"}]},{"date":"2025-02-04","groups":[{"time":"00:09:00","height":"4.687"},{"time":"12:36:00","height":"4.786"}]},{"date":"2025-02-05","groups":[{"time":"00:57:00","height":"4.330"},{"time":"13:28:00","height":"4.352"}]},{"date":"2025-02-06","groups":[{"time":"01:54:00","height":"3.932"},{"time":"14:34:00","height":"3.895"}]},{"date":"2025-02-07","groups":[{"time":"03:09:00","height":"3.592"},{"time":"15:55:00","height":"3.565"}]},{"date":"2025-02-08","groups":[{"time":"04:37:00","height":"3.493"},{"time":"17:21:00","height":"3.550"}]},{"date":"2025-02-09","groups":[{"time":"06:00:00","height":"3.736"},{"time":"18:36:00","height":"3.840"}]},{"date":"2025-02-10","groups":[{"time":"07:03:00","height":"4.160"},{"time":"19:31:00","height":"4.219"}]},{"date":"2025-02-11","groups":[{"time":"07:50:00","height":"4.559"},{"time":"20:13:00","height":"4.538"}]},{"date":"2025-02-12","groups":[{"time":"08:31:00","height":"4.846"},{"time":"20:50:00","height":"4.746"}]},{"date":"2025-02-13","groups":[{"time":"09:06:00","height":"5.003"},{"time":"21:23:00","height":"4.841"}]},{"date":"2025-02-14","groups":[{"time":"09:38:00","height":"5.045"},{"time":"21:54:00","height":"4.839"}]},{"date":"2025-02-15","groups":[{"time":"10:07:00","height":"4.994"},{"time":"22:24:00","height":"4.755"}]},{"date":"2025-02-16","groups":[{"time":"10:39:00","height":"4.866"},{"time":"22:55:00","height":"4.602"}]},{"date":"2025-02-17","groups":[{"time":"11:09:00","height":"4.669"},{"time":"23:25:00","height":"4.385"}]},{"date":"2025-02-18","groups":[{"time":"11:41:00","height":"4.404"},{"time":"23:57:00","height":"4.110"}]},{"date":"2025-02-19","groups":[{"time":"12:13:00","height":"4.076"}]},{"date":"2025-02-20","groups":[{"time":"00:31:00","height":"3.788"},{"time":"12:51:00","height":"3.697"}]},{"date":"2025-02-21","groups":[{"time":"01:16:00","height":"3.437"},{"time":"13:43:00","height":"3.302"}]},{"date":"2025-02-22","groups":[{"time":"02:24:00","height":"3.119"},{"time":"15:06:00","height":"2.995"}]},{"date":"2025-02-23","groups":[{"time":"04:08:00","height":"3.028"},{"time":"16:56:00","height":"3.038"}]},{"date":"2025-02-24","groups":[{"time":"05:40:00","height":"3.354"},{"time":"18:12:00","height":"3.458"}]},{"date":"2025-02-25","groups":[{"time":"06:38:00","height":"3.880"},{"time":"19:03:00","height":"3.990"}]},{"date":"2025-02-26","groups":[{"time":"07:22:00","height":"4.430"},{"time":"19:45:00","height":"4.504"}]},{"date":"2025-02-27","groups":[{"time":"08:03:00","height":"4.925"},{"time":"20:23:00","height":"4.937"}]},{"date":"2025-02-28","groups":[{"time":"08:41:00","height":"5.321"},{"time":"21:02:00","height":"5.249"}]},{"date":"2025-03-01","groups":[{"time":"09:20:00","height":"5.581"},{"time":"21:38:00","height":"5.409"}]},{"date":"2025-03-02","groups":[{"time":"09:57:00","height":"5.669"},{"time":"22:16:00","height":"5.397"}]},{"date":"2025-03-03","groups":[{"time":"10:39:00","height":"5.564"},{"time":"22:58:00","height":"5.209"}]},{"date":"2025-03-04","groups":[{"time":"11:22:00","height":"5.263"},{"time":"23:41:00","height":"4.866"}]},{"date":"2025-03-05","groups":[{"time":"12:08:00","height":"4.795"}]},{"date":"2025-03-06","groups":[{"time":"00:27:00","height":"4.406"},{"time":"12:59:00","height":"4.218"}]},{"date":"2025-03-07","groups":[{"time":"01:22:00","height":"3.890"},{"time":"14:05:00","height":"3.630"}]},{"date":"2025-03-08","groups":[{"time":"02:40:00","height":"3.436"},{"time":"15:40:00","height":"3.235"}]},{"date":"2025-03-09","groups":[{"time":"04:27:00","height":"3.316"},{"time":"17:20:00","height":"3.311"}]},{"date":"2025-03-10","groups":[{"time":"05:57:00","height":"3.653"},{"time":"18:31:00","height":"3.731"}]},{"date":"2025-03-11","groups":[{"time":"06:53:00","height":"4.134"},{"time":"19:18:00","height":"4.175"}]},{"date":"2025-03-12","groups":[{"time":"07:35:00","height":"4.537"},{"time":"19:55:00","height":"4.519"}]},{"date":"2025-03-13","groups":[{"time":"08:10:00","height":"4.807"},{"time":"20:28:00","height":"4.740"}]},{"date":"2025-03-14","groups":[{"time":"08:43:00","height":"4.951"},{"time":"20:58:00","height":"4.855"}]},{"date":"2025-03-15","groups":[{"time":"09:11:00","height":"4.998"},{"time":"21:26:00","height":"4.884"}]},{"date":"2025-03-16","groups":[{"time":"09:38:00","height":"4.969"},{"time":"21:52:00","height":"4.840"}]},{"date":"2025-03-17","groups":[{"time":"10:04:00","height":"4.871"},{"time":"22:18:00","height":"4.724"}]},{"date":"2025-03-18","groups":[{"time":"10:32:00","height":"4.699"},{"time":"22:47:00","height":"4.536"}]},{"date":"2025-03-19","groups":[{"time":"11:02:00","height":"4.451"},{"time":"23:17:00","height":"4.279"}]},{"date":"2025-03-20","groups":[{"time":"11:32:00","height":"4.133"},{"time":"23:49:00","height":"3.960"}]},{"date":"2025-03-21","groups":[{"time":"12:08:00","height":"3.757"}]},{"date":"2025-03-22","groups":[{"time":"00:29:00","height":"3.597"},{"time":"12:55:00","height":"3.346"}]},{"date":"2025-03-23","groups":[{"time":"01:32:00","height":"3.231"},{"time":"14:15:00","height":"2.988"}]},{"date":"2025-03-24","groups":[{"time":"03:18:00","height":"3.046"},{"time":"16:17:00","height":"2.975"}]},{"date":"2025-03-25","groups":[{"time":"05:04:00","height":"3.334"},{"time":"17:42:00","height":"3.434"}]},{"date":"2025-03-26","groups":[{"time":"06:07:00","height":"3.902"},{"time":"18:35:00","height":"4.033"}]},{"date":"2025-03-27","groups":[{"time":"06:53:00","height":"4.505"},{"time":"19:17:00","height":"4.603"}]},{"date":"2025-03-28","groups":[{"time":"07:35:00","height":"5.039"},{"time":"19:58:00","height":"5.069"}]},{"date":"2025-03-29","groups":[{"time":"08:16:00","height":"5.445"},{"time":"20:36:00","height":"5.389"}]},{"date":"2025-03-30","groups":[{"time":"08:55:00","height":"5.680"},{"time":"21:14:00","height":"5.536"}]},{"date":"2025-03-31","groups":[{"time":"10:34:00","height":"5.715"},{"time":"22:52:00","height":"5.495"}]},{"date":"2025-04-01","groups":[{"time":"11:14:00","height":"5.538"},{"time":"23:32:00","height":"5.271"}]},{"date":"2025-04-02","groups":[{"time":"11:58:00","height":"5.162"}]},{"date":"2025-04-03","groups":[{"time":"00:17:00","height":"4.889"},{"time":"12:46:00","height":"4.632"}]},{"date":"2025-04-04","groups":[{"time":"01:05:00","height":"4.396"},{"time":"13:39:00","height":"4.026"}]},{"date":"2025-04-05","groups":[{"time":"02:04:00","height":"3.868"},{"time":"14:49:00","height":"3.460"}]},{"date":"2025-04-06","groups":[{"time":"03:27:00","height":"3.442"},{"time":"16:29:00","height":"3.147"}]},{"date":"2025-04-07","groups":[{"time":"05:12:00","height":"3.371"},{"time":"18:03:00","height":"3.292"}]},{"date":"2025-04-08","groups":[{"time":"06:34:00","height":"3.684"},{"time":"19:08:00","height":"3.699"}]},{"date":"2025-04-09","groups":[{"time":"07:27:00","height":"4.092"},{"time":"19:52:00","height":"4.104"}]},{"date":"2025-04-10","groups":[{"time":"08:07:00","height":"4.428"},{"time":"20:28:00","height":"4.419"}]},{"date":"2025-04-11","groups":[{"time":"08:42:00","height":"4.651"},{"time":"20:59:00","height":"4.629"}]},{"date":"2025-04-12","groups":[{"time":"09:13:00","height":"4.776"},{"time":"21:28:00","height":"4.754"}]},{"date":"2025-04-13","groups":[{"time":"09:41:00","height":"4.827"},{"time":"21:56:00","height":"4.808"}]},{"date":"2025-04-14","groups":[{"time":"10:08:00","height":"4.817"},{"time":"22:22:00","height":"4.798"}]},{"date":"2025-04-15","groups":[{"time":"10:35:00","height":"4.744"},{"time":"22:48:00","height":"4.718"}]},{"date":"2025-04-16","groups":[{"time":"11:01:00","height":"4.602"},{"time":"23:15:00","height":"4.567"}]},{"date":"2025-04-17","groups":[{"time":"11:31:00","height":"4.389"},{"time":"23:47:00","height":"4.347"}]},{"date":"2025-04-18","groups":[{"time":"12:04:00","height":"4.112"}]},{"date":"2025-04-19","groups":[{"time":"00:22:00","height":"4.067"},{"time":"12:44:00","height":"3.784"}]},{"date":"2025-04-20","groups":[{"time":"01:08:00","height":"3.747"},{"time":"13:36:00","height":"3.436"}]},{"date":"2025-04-21","groups":[{"time":"02:12:00","height":"3.441"},{"time":"14:55:00","height":"3.158"}]},{"date":"2025-04-22","groups":[{"time":"03:47:00","height":"3.308"},{"time":"16:40:00","height":"3.175"}]},{"date":"2025-04-23","groups":[{"time":"05:22:00","height":"3.539"},{"time":"18:01:00","height":"3.563"}]},{"date":"2025-04-24","groups":[{"time":"06:27:00","height":"4.024"},{"time":"18:57:00","height":"4.099"}]},{"date":"2025-04-25","groups":[{"time":"07:18:00","height":"4.558"},{"time":"19:44:00","height":"4.617"}]},{"date":"2025-04-26","groups":[{"time":"08:04:00","height":"5.024"},{"time":"20:28:00","height":"5.036"}]},{"date":"2025-04-27","groups":[{"time":"08:47:00","height":"5.358"},{"time":"21:09:00","height":"5.317"}]},{"date":"2025-04-28","groups":[{"time":"09:30:00","height":"5.524"},{"time":"21:50:00","height":"5.437"}]},{"date":"2025-04-29","groups":[{"time":"10:12:00","height":"5.502"},{"time":"22:31:00","height":"5.388"}]},{"date":"2025-04-30","groups":[{"time":"10:54:00","height":"5.293"},{"time":"23:12:00","height":"5.174"}]},{"date":"2025-05-01","groups":[{"time":"11:41:00","height":"4.924"}]},{"date":"2025-05-02","groups":[{"time":"00:00:00","height":"4.827"},{"time":"12:32:00","height":"4.447"}]},{"date":"2025-05-03","groups":[{"time":"00:54:00","height":"4.398"},{"time":"13:28:00","height":"3.940"}]},{"date":"2025-05-04","groups":[{"time":"01:54:00","height":"3.964"},{"time":"14:36:00","height":"3.507"}]},{"date":"2025-05-05","groups":[{"time":"03:10:00","height":"3.633"},{"time":"16:01:00","height":"3.277"}]},{"date":"2025-05-06","groups":[{"time":"04:39:00","height":"3.537"},{"time":"17:22:00","height":"3.342"}]},{"date":"2025-05-07","groups":[{"time":"05:50:00","height":"3.686"},{"time":"18:25:00","height":"3.607"}]},{"date":"2025-05-08","groups":[{"time":"06:45:00","height":"3.938"},{"time":"19:12:00","height":"3.916"}]},{"date":"2025-05-09","groups":[{"time":"07:28:00","height":"4.178"},{"time":"19:51:00","height":"4.187"}]},{"date":"2025-05-10","groups":[{"time":"08:06:00","height":"4.364"},{"time":"20:25:00","height":"4.396"}]},{"date":"2025-05-11","groups":[{"time":"08:39:00","height":"4.489"},{"time":"20:56:00","height":"4.544"}]},{"date":"2025-05-12","groups":[{"time":"09:10:00","height":"4.560"},{"time":"21:26:00","height":"4.633"}]},{"date":"2025-05-13","groups":[{"time":"09:41:00","height":"4.579"},{"time":"21:56:00","height":"4.664"}]},{"date":"2025-05-14","groups":[{"time":"10:10:00","height":"4.545"},{"time":"22:25:00","height":"4.633"}]},{"date":"2025-05-15","groups":[{"time":"10:40:00","height":"4.454"},{"time":"22:55:00","height":"4.539"}]},{"date":"2025-05-16","groups":[{"time":"11:11:00","height":"4.308"},{"time":"23:30:00","height":"4.387"}]},{"date":"2025-05-17","groups":[{"time":"11:50:00","height":"4.112"}]},{"date":"2025-05-18","groups":[{"time":"00:11:00","height":"4.187"},{"time":"12:35:00","height":"3.882"}]},{"date":"2025-05-19","groups":[{"time":"01:01:00","height":"3.967"},{"time":"13:31:00","height":"3.652"}]},{"date":"2025-05-20","groups":[{"time":"02:05:00","height":"3.780"},{"time":"14:42:00","height":"3.496"}]},{"date":"2025-05-21","groups":[{"time":"03:22:00","height":"3.718"},{"time":"16:04:00","height":"3.513"}]},{"date":"2025-05-22","groups":[{"time":"04:41:00","height":"3.849"},{"time":"17:18:00","height":"3.742"}]},{"date":"2025-05-23","groups":[{"time":"05:46:00","height":"4.144"},{"time":"18:18:00","height":"4.103"}]},{"date":"2025-05-24","groups":[{"time":"06:42:00","height":"4.498"},{"time":"19:11:00","height":"4.485"}]},{"date":"2025-05-25","groups":[{"time":"07:33:00","height":"4.818"},{"time":"19:59:00","height":"4.816"}]},{"date":"2025-05-26","groups":[{"time":"08:22:00","height":"5.047"},{"time":"20:45:00","height":"5.053"}]},{"date":"2025-05-27","groups":[{"time":"09:09:00","height":"5.157"},{"time":"21:30:00","height":"5.174"}]},{"date":"2025-05-28","groups":[{"time":"09:56:00","height":"5.136"},{"time":"22:16:00","height":"5.169"}]},{"date":"2025-05-29","groups":[{"time":"10:42:00","height":"4.987"},{"time":"23:00:00","height":"5.040"}]},{"date":"2025-05-30","groups":[{"time":"11:30:00","height":"4.727"},{"time":"23:51:00","height":"4.805"}]},{"date":"2025-05-31","groups":[{"time":"12:22:00","height":"4.396"}]},{"date":"2025-06-01","groups":[{"time":"00:44:00","height":"4.504"},{"time":"13:15:00","height":"4.044"}]},{"date":"2025-06-02","groups":[{"time":"01:39:00","height":"4.185"},{"time":"14:13:00","height":"3.728"}]},{"date":"2025-06-03","groups":[{"time":"02:39:00","height":"3.904"},{"time":"15:17:00","height":"3.501"}]},{"date":"2025-06-04","groups":[{"time":"03:46:00","height":"3.714"},{"time":"16:27:00","height":"3.413"}]},{"date":"2025-06-05","groups":[{"time":"04:53:00","height":"3.653"},{"time":"17:28:00","height":"3.477"}]},{"date":"2025-06-06","groups":[{"time":"05:52:00","height":"3.710"},{"time":"18:22:00","height":"3.647"}]},{"date":"2025-06-07","groups":[{"time":"06:42:00","height":"3.837"},{"time":"19:09:00","height":"3.863"}]},{"date":"2025-06-08","groups":[{"time":"07:27:00","height":"3.989"},{"time":"19:49:00","height":"4.081"}]},{"date":"2025-06-09","groups":[{"time":"08:06:00","height":"4.134"},{"time":"20:27:00","height":"4.274"}]},{"date":"2025-06-10","groups":[{"time":"08:44:00","height":"4.253"},{"time":"21:02:00","height":"4.424"}]},{"date":"2025-06-11","groups":[{"time":"09:19:00","height":"4.335"},{"time":"21:36:00","height":"4.524"}]},{"date":"2025-06-12","groups":[{"time":"09:53:00","height":"4.379"},{"time":"22:09:00","height":"4.575"}]},{"date":"2025-06-13","groups":[{"time":"10:27:00","height":"4.383"},{"time":"22:44:00","height":"4.576"}]},{"date":"2025-06-14","groups":[{"time":"11:03:00","height":"4.346"},{"time":"23:23:00","height":"4.531"}]},{"date":"2025-06-15","groups":[{"time":"11:44:00","height":"4.267"}]},{"date":"2025-06-16","groups":[{"time":"00:07:00","height":"4.445"},{"time":"12:31:00","height":"4.153"}]},{"date":"2025-06-17","groups":[{"time":"00:57:00","height":"4.332"},{"time":"13:23:00","height":"4.019"}]},{"date":"2025-06-18","groups":[{"time":"01:52:00","height":"4.214"},{"time":"14:21:00","height":"3.896"}]},{"date":"2025-06-19","groups":[{"time":"02:54:00","height":"4.121"},{"time":"15:26:00","height":"3.824"}]},{"date":"2025-06-20","groups":[{"time":"04:01:00","height":"4.085"},{"time":"16:37:00","height":"3.846"}]},{"date":"2025-06-21","groups":[{"time":"05:08:00","height":"4.129"},{"time":"17:40:00","height":"3.981"}]},{"date":"2025-06-22","groups":[{"time":"06:10:00","height":"4.254"},{"time":"18:41:00","height":"4.206"}]},{"date":"2025-06-23","groups":[{"time":"07:09:00","height":"4.425"},{"time":"19:37:00","height":"4.467"}]},{"date":"2025-06-24","groups":[{"time":"08:05:00","height":"4.601"},{"time":"20:31:00","height":"4.714"}]},{"date":"2025-06-25","groups":[{"time":"08:59:00","height":"4.743"},{"time":"21:20:00","height":"4.905"}]},{"date":"2025-06-26","groups":[{"time":"09:49:00","height":"4.817"},{"time":"22:08:00","height":"5.005"}]},{"date":"2025-06-27","groups":[{"time":"10:35:00","height":"4.803"},{"time":"22:53:00","height":"4.998"}]},{"date":"2025-06-28","groups":[{"time":"11:18:00","height":"4.694"},{"time":"23:39:00","height":"4.884"}]},{"date":"2025-06-29","groups":[{"time":"12:06:00","height":"4.505"}]},{"date":"2025-06-30","groups":[{"time":"00:25:00","height":"4.684"},{"time":"12:51:00","height":"4.262"}]},{"date":"2025-07-01","groups":[{"time":"01:11:00","height":"4.428"},{"time":"13:36:00","height":"3.998"}]},{"date":"2025-07-02","groups":[{"time":"01:56:00","height":"4.148"},{"time":"14:23:00","height":"3.742"}]},{"date":"2025-07-03","groups":[{"time":"02:46:00","height":"3.873"},{"time":"15:17:00","height":"3.522"}]},{"date":"2025-07-04","groups":[{"time":"03:43:00","height":"3.635"},{"time":"16:20:00","height":"3.381"}]},{"date":"2025-07-05","groups":[{"time":"04:48:00","height":"3.484"},{"time":"17:24:00","height":"3.373"}]},{"date":"2025-07-06","groups":[{"time":"05:50:00","height":"3.468"},{"time":"18:25:00","height":"3.512"}]},{"date":"2025-07-07","groups":[{"time":"06:48:00","height":"3.582"},{"time":"19:17:00","height":"3.750"}]},{"date":"2025-07-08","groups":[{"time":"07:39:00","height":"3.777"},{"time":"20:03:00","height":"4.021"}]},{"date":"2025-07-09","groups":[{"time":"08:23:00","height":"3.994"},{"time":"20:44:00","height":"4.278"}]},{"date":"2025-07-10","groups":[{"time":"09:03:00","height":"4.199"},{"time":"21:21:00","height":"4.496"}]},{"date":"2025-07-11","groups":[{"time":"09:40:00","height":"4.374"},{"time":"21:58:00","height":"4.669"}]},{"date":"2025-07-12","groups":[{"time":"10:17:00","height":"4.509"},{"time":"22:35:00","height":"4.792"}]},{"date":"2025-07-13","groups":[{"time":"10:54:00","height":"4.595"},{"time":"23:12:00","height":"4.857"}]},{"date":"2025-07-14","groups":[{"time":"11:33:00","height":"4.614"},{"time":"23:55:00","height":"4.852"}]},{"date":"2025-07-15","groups":[{"time":"12:18:00","height":"4.558"}]},{"date":"2025-07-16","groups":[{"time":"00:41:00","height":"4.769"},{"time":"13:03:00","height":"4.427"}]},{"date":"2025-07-17","groups":[{"time":"01:29:00","height":"4.610"},{"time":"13:53:00","height":"4.236"}]},{"date":"2025-07-18","groups":[{"time":"02:22:00","height":"4.389"},{"time":"14:49:00","height":"4.016"}]},{"date":"2025-07-19","groups":[{"time":"03:23:00","height":"4.139"},{"time":"15:57:00","height":"3.823"}]},{"date":"2025-07-20","groups":[{"time":"04:35:00","height":"3.931"},{"time":"17:10:00","height":"3.751"}]},{"date":"2025-07-21","groups":[{"time":"05:47:00","height":"3.867"},{"time":"18:23:00","height":"3.876"}]},{"date":"2025-07-22","groups":[{"time":"06:58:00","height":"3.992"},{"time":"19:30:00","height":"4.168"}]},{"date":"2025-07-23","groups":[{"time":"08:02:00","height":"4.247"},{"time":"20:28:00","height":"4.519"}]},{"date":"2025-07-24","groups":[{"time":"08:56:00","height":"4.521"},{"time":"21:17:00","height":"4.822"}]},{"date":"2025-07-25","groups":[{"time":"09:42:00","height":"4.725"},{"time":"22:00:00","height":"5.015"}]},{"date":"2025-07-26","groups":[{"time":"10:23:00","height":"4.822"},{"time":"22:39:00","height":"5.079"}]},{"date":"2025-07-27","groups":[{"time":"11:01:00","height":"4.807"},{"time":"23:17:00","height":"5.021"}]},{"date":"2025-07-28","groups":[{"time":"11:39:00","height":"4.692"},{"time":"23:56:00","height":"4.861"}]},{"date":"2025-07-29","groups":[{"time":"12:17:00","height":"4.503"}]},{"date":"2025-07-30","groups":[{"time":"00:33:00","height":"4.629"},{"time":"12:52:00","height":"4.260"}]},{"date":"2025-07-31","groups":[{"time":"01:10:00","height":"4.343"},{"time":"13:30:00","height":"3.982"}]},{"date":"2025-08-01","groups":[{"time":"01:48:00","height":"4.020"},{"time":"14:12:00","height":"3.686"}]},{"date":"2025-08-02","groups":[{"time":"02:32:00","height":"3.676"},{"time":"15:02:00","height":"3.399"}]},{"date":"2025-08-03","groups":[{"time":"03:30:00","height":"3.354"},{"time":"16:14:00","height":"3.193"}]},{"date":"2025-08-04","groups":[{"time":"04:50:00","height":"3.153"},{"time":"17:40:00","height":"3.210"}]},{"date":"2025-08-05","groups":[{"time":"06:14:00","height":"3.219"},{"time":"18:52:00","height":"3.484"}]},{"date":"2025-08-06","groups":[{"time":"07:19:00","height":"3.510"},{"time":"19:44:00","height":"3.875"}]},{"date":"2025-08-07","groups":[{"time":"08:07:00","height":"3.879"},{"time":"20:27:00","height":"4.274"}]},{"date":"2025-08-08","groups":[{"time":"08:47:00","height":"4.242"},{"time":"21:04:00","height":"4.632"}]},{"date":"2025-08-09","groups":[{"time":"09:25:00","height":"4.560"},{"time":"21:42:00","height":"4.928"}]},{"date":"2025-08-10","groups":[{"time":"10:01:00","height":"4.812"},{"time":"22:18:00","height":"5.147"}]},{"date":"2025-08-11","groups":[{"time":"10:37:00","height":"4.976"},{"time":"22:54:00","height":"5.269"}]},{"date":"2025-08-12","groups":[{"time":"11:13:00","height":"5.029"},{"time":"23:34:00","height":"5.268"}]},{"date":"2025-08-13","groups":[{"time":"11:54:00","height":"4.955"}]},{"date":"2025-08-14","groups":[{"time":"00:17:00","height":"5.128"},{"time":"12:37:00","height":"4.756"}]},{"date":"2025-08-15","groups":[{"time":"01:01:00","height":"4.850"},{"time":"13:22:00","height":"4.450"}]},{"date":"2025-08-16","groups":[{"time":"01:51:00","height":"4.458"},{"time":"14:15:00","height":"4.075"}]},{"date":"2025-08-17","groups":[{"time":"02:51:00","height":"4.005"},{"time":"15:22:00","height":"3.706"}]},{"date":"2025-08-18","groups":[{"time":"04:10:00","height":"3.612"},{"time":"16:53:00","height":"3.510"}]},{"date":"2025-08-19","groups":[{"time":"05:40:00","height":"3.499"},{"time":"18:23:00","height":"3.676"}]},{"date":"2025-08-20","groups":[{"time":"07:03:00","height":"3.751"},{"time":"19:33:00","height":"4.106"}]},{"date":"2025-08-21","groups":[{"time":"08:04:00","height":"4.165"},{"time":"20:25:00","height":"4.560"}]},{"date":"2025-08-22","groups":[{"time":"08:50:00","height":"4.540"},{"time":"21:07:00","height":"4.904"}]},{"date":"2025-08-23","groups":[{"time":"09:30:00","height":"4.798"},{"time":"21:45:00","height":"5.101"}]},{"date":"2025-08-24","groups":[{"time":"10:05:00","height":"4.925"},{"time":"22:19:00","height":"5.160"}]},{"date":"2025-08-25","groups":[{"time":"10:37:00","height":"4.936"},{"time":"22:50:00","height":"5.106"}]},{"date":"2025-08-26","groups":[{"time":"11:06:00","height":"4.853"},{"time":"23:20:00","height":"4.962"}]},{"date":"2025-08-27","groups":[{"time":"11:38:00","height":"4.692"},{"time":"23:53:00","height":"4.744"}]},{"date":"2025-08-28","groups":[{"time":"12:09:00","height":"4.469"}]},{"date":"2025-08-29","groups":[{"time":"00:23:00","height":"4.464"},{"time":"12:41:00","height":"4.188"}]},{"date":"2025-08-30","groups":[{"time":"00:56:00","height":"4.123"},{"time":"13:15:00","height":"3.860"}]},{"date":"2025-08-31","groups":[{"time":"01:34:00","height":"3.732"},{"time":"13:59:00","height":"3.500"}]},{"date":"2025-09-01","groups":[{"time":"02:22:00","height":"3.321"},{"time":"15:02:00","height":"3.166"}]},{"date":"2025-09-02","groups":[{"time":"03:41:00","height":"2.983"},{"time":"16:50:00","height":"3.041"}]},{"date":"2025-09-03","groups":[{"time":"05:41:00","height":"2.987"},{"time":"18:26:00","height":"3.347"}]},{"date":"2025-09-04","groups":[{"time":"06:58:00","height":"3.391"},{"time":"19:22:00","height":"3.852"}]},{"date":"2025-09-05","groups":[{"time":"07:46:00","height":"3.902"},{"time":"20:04:00","height":"4.373"}]},{"date":"2025-09-06","groups":[{"time":"08:25:00","height":"4.396"},{"time":"20:42:00","height":"4.842"}]},{"date":"2025-09-07","groups":[{"time":"09:02:00","height":"4.819"},{"time":"21:18:00","height":"5.221"}]},{"date":"2025-09-08","groups":[{"time":"09:38:00","height":"5.138"},{"time":"21:55:00","height":"5.482"}]},{"date":"2025-09-09","groups":[{"time":"10:13:00","height":"5.327"},{"time":"22:31:00","height":"5.598"}]},{"date":"2025-09-10","groups":[{"time":"10:49:00","height":"5.363"},{"time":"23:08:00","height":"5.542"}]},{"date":"2025-09-11","groups":[{"time":"11:27:00","height":"5.236"},{"time":"23:51:00","height":"5.302"}]},{"date":"2025-09-12","groups":[{"time":"12:09:00","height":"4.954"}]},{"date":"2025-09-13","groups":[{"time":"00:35:00","height":"4.893"},{"time":"12:55:00","height":"4.545"}]},{"date":"2025-09-14","groups":[{"time":"01:26:00","height":"4.360"},{"time":"13:49:00","height":"4.060"}]},{"date":"2025-09-15","groups":[{"time":"02:29:00","height":"3.787"},{"time":"15:04:00","height":"3.606"}]},{"date":"2025-09-16","groups":[{"time":"04:00:00","height":"3.357"},{"time":"16:50:00","height":"3.430"}]},{"date":"2025-09-17","groups":[{"time":"05:45:00","height":"3.365"},{"time":"18:25:00","height":"3.728"}]},{"date":"2025-09-18","groups":[{"time":"07:03:00","height":"3.772"},{"time":"19:27:00","height":"4.226"}]},{"date":"2025-09-19","groups":[{"time":"07:54:00","height":"4.244"},{"time":"20:12:00","height":"4.664"}]},{"date":"2025-09-20","groups":[{"time":"08:33:00","height":"4.618"},{"time":"20:48:00","height":"4.958"}]},{"date":"2025-09-21","groups":[{"time":"09:07:00","height":"4.857"},{"time":"21:22:00","height":"5.106"}]},{"date":"2025-09-22","groups":[{"time":"09:39:00","height":"4.973"},{"time":"21:52:00","height":"5.138"}]},{"date":"2025-09-23","groups":[{"time":"10:07:00","height":"4.992"},{"time":"22:21:00","height":"5.085"}]},{"date":"2025-09-24","groups":[{"time":"10:35:00","height":"4.934"},{"time":"22:47:00","height":"4.960"}]},{"date":"2025-09-25","groups":[{"time":"11:01:00","height":"4.805"},{"time":"23:14:00","height":"4.766"}]},{"date":"2025-09-26","groups":[{"time":"11:29:00","height":"4.606"},{"time":"23:43:00","height":"4.502"}]},{"date":"2025-09-27","groups":[{"time":"11:59:00","height":"4.341"}]},{"date":"2025-09-28","groups":[{"time":"00:15:00","height":"4.172"},{"time":"12:33:00","height":"4.017"}]},{"date":"2025-09-29","groups":[{"time":"00:49:00","height":"3.786"},{"time":"13:13:00","height":"3.650"}]},{"date":"2025-09-30","groups":[{"time":"01:36:00","height":"3.369"},{"time":"14:13:00","height":"3.286"}]},{"date":"2025-10-01","groups":[{"time":"02:53:00","height":"3.006"},{"time":"15:59:00","height":"3.096"}]},{"date":"2025-10-02","groups":[{"time":"04:59:00","height":"2.971"},{"time":"17:49:00","height":"3.367"}]},{"date":"2025-10-03","groups":[{"time":"06:25:00","height":"3.406"},{"time":"18:48:00","height":"3.904"}]},{"date":"2025-10-04","groups":[{"time":"07:15:00","height":"3.978"},{"time":"19:32:00","height":"4.477"}]},{"date":"2025-10-05","groups":[{"time":"07:56:00","height":"4.532"},{"time":"20:12:00","height":"4.991"}]},{"date":"2025-10-06","groups":[{"time":"08:33:00","height":"4.998"},{"time":"20:50:00","height":"5.394"}]},{"date":"2025-10-07","groups":[{"time":"09:10:00","height":"5.334"},{"time":"21:28:00","height":"5.644"}]},{"date":"2025-10-08","groups":[{"time":"09:48:00","height":"5.516"},{"time":"22:07:00","height":"5.716"}]},{"date":"2025-10-09","groups":[{"time":"10:25:00","height":"5.525"},{"time":"22:46:00","height":"5.592"}]},{"date":"2025-10-10","groups":[{"time":"11:03:00","height":"5.358"},{"time":"23:28:00","height":"5.274"}]},{"date":"2025-10-11","groups":[{"time":"11:47:00","height":"5.031"}]},{"date":"2025-10-12","groups":[{"time":"00:17:00","height":"4.795"},{"time":"12:37:00","height":"4.582"}]},{"date":"2025-10-13","groups":[{"time":"01:12:00","height":"4.224"},{"time":"13:37:00","height":"4.085"}]},{"date":"2025-10-14","groups":[{"time":"02:20:00","height":"3.674"},{"time":"14:58:00","height":"3.672"}]},{"date":"2025-10-15","groups":[{"time":"03:54:00","height":"3.342"},{"time":"16:43:00","height":"3.574"}]},{"date":"2025-10-16","groups":[{"time":"05:34:00","height":"3.437"},{"time":"18:06:00","height":"3.858"}]},{"date":"2025-10-17","groups":[{"time":"06:42:00","height":"3.825"},{"time":"19:03:00","height":"4.266"}]},{"date":"2025-10-18","groups":[{"time":"07:29:00","height":"4.237"},{"time":"19:46:00","height":"4.608"}]},{"date":"2025-10-19","groups":[{"time":"08:07:00","height":"4.560"},{"time":"20:22:00","height":"4.831"}]},{"date":"2025-10-20","groups":[{"time":"08:40:00","height":"4.771"},{"time":"20:54:00","height":"4.943"}]},{"date":"2025-10-21","groups":[{"time":"09:10:00","height":"4.888"},{"time":"21:23:00","height":"4.973"}]},{"date":"2025-10-22","groups":[{"time":"09:39:00","height":"4.930"},{"time":"21:51:00","height":"4.940"}]},{"date":"2025-10-23","groups":[{"time":"10:06:00","height":"4.907"},{"time":"22:19:00","height":"4.847"}]},{"date":"2025-10-24","groups":[{"time":"10:33:00","height":"4.818"},{"time":"22:46:00","height":"4.690"}]},{"date":"2025-10-25","groups":[{"time":"11:00:00","height":"4.659"},{"time":"23:14:00","height":"4.466"}]},{"date":"2025-10-26","groups":[{"time":"11:30:00","height":"4.434"},{"time":"23:47:00","height":"4.182"}]},{"date":"2025-10-27","groups":[{"time":"11:06:00","height":"4.155"},{"time":"23:25:00","height":"3.853"}]},{"date":"2025-10-28","groups":[{"time":"11:49:00","height":"3.838"}]},{"date":"2025-10-29","groups":[{"time":"00:14:00","height":"3.506"},{"time":"12:50:00","height":"3.533"}]},{"date":"2025-10-30","groups":[{"time":"01:28:00","height":"3.221"},{"time":"14:20:00","height":"3.377"}]},{"date":"2025-10-31","groups":[{"time":"03:10:00","height":"3.186"},{"time":"15:56:00","height":"3.547"}]},{"date":"2025-11-01","groups":[{"time":"04:37:00","height":"3.511"},{"time":"17:03:00","height":"3.982"}]},{"date":"2025-11-02","groups":[{"time":"05:34:00","height":"4.016"},{"time":"17:54:00","height":"4.494"}]},{"date":"2025-11-03","groups":[{"time":"06:20:00","height":"4.534"},{"time":"18:39:00","height":"4.966"}]},{"date":"2025-11-04","groups":[{"time":"07:02:00","height":"4.979"},{"time":"19:22:00","height":"5.329"}]},{"date":"2025-11-05","groups":[{"time":"07:44:00","height":"5.303"},{"time":"20:04:00","height":"5.541"}]},{"date":"2025-11-06","groups":[{"time":"08:25:00","height":"5.476"},{"time":"20:47:00","height":"5.576"}]},{"date":"2025-11-07","groups":[{"time":"09:06:00","height":"5.489"},{"time":"21:30:00","height":"5.432"}]},{"date":"2025-11-08","groups":[{"time":"09:48:00","height":"5.340"},{"time":"22:15:00","height":"5.125"}]},{"date":"2025-11-09","groups":[{"time":"10:36:00","height":"5.051"},{"time":"23:08:00","height":"4.696"}]},{"date":"2025-11-10","groups":[{"time":"11:30:00","height":"4.667"}]},{"date":"2025-11-11","groups":[{"time":"00:05:00","height":"4.219"},{"time":"12:31:00","height":"4.259"}]},{"date":"2025-11-12","groups":[{"time":"01:12:00","height":"3.790"},{"time":"13:44:00","height":"3.929"}]},{"date":"2025-11-13","groups":[{"time":"02:31:00","height":"3.526"},{"time":"15:10:00","height":"3.789"}]},{"date":"2025-11-14","groups":[{"time":"03:55:00","height":"3.524"},{"time":"16:24:00","height":"3.879"}]},{"date":"2025-11-15","groups":[{"time":"05:00:00","height":"3.737"},{"time":"17:23:00","height":"4.091"}]},{"date":"2025-11-16","groups":[{"time":"05:52:00","height":"4.025"},{"time":"18:10:00","height":"4.313"}]},{"date":"2025-11-17","groups":[{"time":"06:33:00","height":"4.291"},{"time":"18:49:00","height":"4.486"}]},{"date":"2025-11-18","groups":[{"time":"07:09:00","height":"4.500"},{"time":"19:25:00","height":"4.604"}]},{"date":"2025-11-19","groups":[{"time":"07:42:00","height":"4.650"},{"time":"19:57:00","height":"4.669"}]},{"date":"2025-11-20","groups":[{"time":"08:13:00","height":"4.741"},{"time":"20:28:00","height":"4.684"}]},{"date":"2025-11-21","groups":[{"time":"08:44:00","height":"4.774"},{"time":"20:58:00","height":"4.647"}]},{"date":"2025-11-22","groups":[{"time":"09:13:00","height":"4.745"},{"time":"21:28:00","height":"4.556"}]},{"date":"2025-11-23","groups":[{"time":"09:43:00","height":"4.655"},{"time":"21:58:00","height":"4.413"}]},{"date":"2025-11-24","groups":[{"time":"10:16:00","height":"4.511"},{"time":"22:34:00","height":"4.225"}]},{"date":"2025-11-25","groups":[{"time":"10:55:00","height":"4.321"},{"time":"23:16:00","height":"4.004"}]},{"date":"2025-11-26","groups":[{"time":"11:41:00","height":"4.107"}]},{"date":"2025-11-27","groups":[{"time":"00:05:00","height":"3.777"},{"time":"12:37:00","height":"3.907"}]},{"date":"2025-11-28","groups":[{"time":"01:08:00","height":"3.591"},{"time":"13:46:00","height":"3.788"}]},{"date":"2025-11-29","groups":[{"time":"02:24:00","height":"3.529"},{"time":"15:04:00","height":"3.826"}]},{"date":"2025-11-30","groups":[{"time":"03:43:00","height":"3.660"},{"time":"16:14:00","height":"4.040"}]},{"date":"2025-12-01","groups":[{"time":"04:47:00","height":"3.965"},{"time":"17:13:00","height":"4.365"}]},{"date":"2025-12-02","groups":[{"time":"05:42:00","height":"4.349"},{"time":"18:07:00","height":"4.708"}]},{"date":"2025-12-03","groups":[{"time":"06:33:00","height":"4.724"},{"time":"18:57:00","height":"4.997"}]},{"date":"2025-12-04","groups":[{"time":"07:21:00","height":"5.032"},{"time":"19:46:00","height":"5.188"}]},{"date":"2025-12-05","groups":[{"time":"08:08:00","height":"5.240"},{"time":"20:34:00","height":"5.257"}]},{"date":"2025-12-06","groups":[{"time":"08:54:00","height":"5.325"},{"time":"21:22:00","height":"5.196"}]},{"date":"2025-12-07","groups":[{"time":"09:40:00","height":"5.283"},{"time":"22:08:00","height":"5.013"}]},{"date":"2025-12-08","groups":[{"time":"10:29:00","height":"5.120"},{"time":"23:00:00","height":"4.734"}]},{"date":"2025-12-09","groups":[{"time":"11:22:00","height":"4.862"},{"time":"23:54:00","height":"4.399"}]},{"date":"2025-12-10","groups":[{"time":"12:17:00","height":"4.551"}]},{"date":"2025-12-11","groups":[{"time":"00:49:00","height":"4.061"},{"time":"13:15:00","height":"4.236"}]},{"date":"2025-12-12","groups":[{"time":"01:49:00","height":"3.775"},{"time":"14:18:00","height":"3.972"}]},{"date":"2025-12-13","groups":[{"time":"02:56:00","height":"3.594"},{"time":"15:27:00","height":"3.811"}]},{"date":"2025-12-14","groups":[{"time":"04:03:00","height":"3.560"},{"time":"16:28:00","height":"3.777"}]},{"date":"2025-12-15","groups":[{"time":"05:02:00","height":"3.666"},{"time":"17:25:00","height":"3.853"}]},{"date":"2025-12-16","groups":[{"time":"05:54:00","height":"3.862"},{"time":"18:14:00","height":"3.992"}]},{"date":"2025-12-17","groups":[{"time":"06:39:00","height":"4.089"},{"time":"18:58:00","height":"4.149"}]},{"date":"2025-12-18","groups":[{"time":"07:18:00","height":"4.305"},{"time":"19:36:00","height":"4.291"}]},{"date":"2025-12-19","groups":[{"time":"07:55:00","height":"4.483"},{"time":"20:12:00","height":"4.398"}]},{"date":"2025-12-20","groups":[{"time":"08:29:00","height":"4.608"},{"time":"20:46:00","height":"4.463"}]},{"date":"2025-12-21","groups":[{"time":"09:02:00","height":"4.680"},{"time":"21:19:00","height":"4.486"}]},{"date":"2025-12-22","groups":[{"time":"09:35:00","height":"4.700"},{"time":"21:52:00","height":"4.468"}]},{"date":"2025-12-23","groups":[{"time":"10:09:00","height":"4.673"},{"time":"22:28:00","height":"4.410"}]},{"date":"2025-12-24","groups":[{"time":"10:49:00","height":"4.602"},{"time":"23:09:00","height":"4.310"}]},{"date":"2025-12-25","groups":[{"time":"11:32:00","height":"4.490"},{"time":"23:54:00","height":"4.173"}]},{"date":"2025-12-26","groups":[{"time":"12:20:00","height":"4.350"}]},{"date":"2025-12-27","groups":[{"time":"00:43:00","height":"4.016"},{"time":"13:14:00","height":"4.201"}]},{"date":"2025-12-28","groups":[{"time":"01:42:00","height":"3.871"},{"time":"14:17:00","height":"4.075"}]},{"date":"2025-12-29","groups":[{"time":"02:50:00","height":"3.785"},{"time":"15:28:00","height":"4.018"}]},{"date":"2025-12-30","groups":[{"time":"04:03:00","height":"3.821"},{"time":"16:36:00","height":"4.078"}]},{"date":"2025-12-31","groups":[{"time":"05:09:00","height":"4.011"},{"time":"17:41:00","height":"4.259"}]},{"date":"2026-01-01","groups":[{"time":"06:12:00","height":"4.315"},{"time":"18:42:00","height":"4.510"}]},{"date":"2026-01-02","groups":[{"time":"07:09:00","height":"4.660"},{"time":"19:38:00","height":"4.767"}]},{"date":"2026-01-03","groups":[{"time":"08:02:00","height":"4.973"},{"time":"20:29:00","height":"4.966"}]},{"date":"2026-01-04","groups":[{"time":"08:50:00","height":"5.198"},{"time":"21:17:00","height":"5.063"}]},{"date":"2026-01-05","groups":[{"time":"09:36:00","height":"5.297"},{"time":"22:00:00","height":"5.038"}]},{"date":"2026-01-06","groups":[{"time":"10:19:00","height":"5.257"},{"time":"22:46:00","height":"4.893"}]},{"date":"2026-01-07","groups":[{"time":"11:06:00","height":"5.087"},{"time":"23:31:00","height":"4.652"}]},{"date":"2026-01-08","groups":[{"time":"11:51:00","height":"4.816"}]},{"date":"2026-01-09","groups":[{"time":"00:15:00","height":"4.350"},{"time":"12:36:00","height":"4.480"}]},{"date":"2026-01-10","groups":[{"time":"01:00:00","height":"4.024"},{"time":"13:21:00","height":"4.120"}]},{"date":"2026-01-11","groups":[{"time":"01:48:00","height":"3.711"},{"time":"14:13:00","height":"3.773"}]},{"date":"2026-01-12","groups":[{"time":"02:48:00","height":"3.451"},{"time":"15:18:00","height":"3.496"}]},{"date":"2026-01-13","groups":[{"time":"03:59:00","height":"3.322"},{"time":"16:30:00","height":"3.377"}]},{"date":"2026-01-14","groups":[{"time":"05:09:00","height":"3.398"},{"time":"17:38:00","height":"3.461"}]},{"date":"2026-01-15","groups":[{"time":"06:12:00","height":"3.645"},{"time":"18:36:00","height":"3.687"}]},{"date":"2026-01-16","groups":[{"time":"07:00:00","height":"3.961"},{"time":"19:21:00","height":"3.955"}]},{"date":"2026-01-17","groups":[{"time":"07:41:00","height":"4.265"},{"time":"20:00:00","height":"4.205"}]},{"date":"2026-01-18","groups":[{"time":"08:17:00","height":"4.521"},{"time":"20:35:00","height":"4.413"}]},{"date":"2026-01-19","groups":[{"time":"08:51:00","height":"4.720"},{"time":"21:08:00","height":"4.574"}]},{"date":"2026-01-20","groups":[{"time":"09:24:00","height":"4.865"},{"time":"21:40:00","height":"4.686"}]},{"date":"2026-01-21","groups":[{"time":"09:57:00","height":"4.952"},{"time":"22:14:00","height":"4.735"}]},{"date":"2026-01-22","groups":[{"time":"10:34:00","height":"4.968"},{"time":"22:53:00","height":"4.705"}]},{"date":"2026-01-23","groups":[{"time":"11:13:00","height":"4.900"},{"time":"23:33:00","height":"4.589"}]},{"date":"2026-01-24","groups":[{"time":"11:56:00","height":"4.743"}]},{"date":"2026-01-25","groups":[{"time":"00:15:00","height":"4.391"},{"time":"12:41:00","height":"4.502"}]},{"date":"2026-01-26","groups":[{"time":"01:04:00","height":"4.131"},{"time":"13:35:00","height":"4.197"}]},{"date":"2026-01-27","groups":[{"time":"02:04:00","height":"3.846"},{"time":"14:44:00","height":"3.883"}]},{"date":"2026-01-28","groups":[{"time":"03:22:00","height":"3.632"},{"time":"16:06:00","height":"3.698"}]},{"date":"2026-01-29","groups":[{"time":"04:46:00","height":"3.652"},{"time":"17:27:00","height":"3.788"}]},{"date":"2026-01-30","groups":[{"time":"06:04:00","height":"3.960"},{"time":"18:40:00","height":"4.117"}]},{"date":"2026-01-31","groups":[{"time":"07:07:00","height":"4.420"},{"time":"19:37:00","height":"4.520"}]},{"date":"2026-02-01","groups":[{"time":"07:59:00","height":"4.861"},{"time":"20:25:00","height":"4.858"}]},{"date":"2026-02-02","groups":[{"time":"08:44:00","height":"5.185"},{"time":"21:06:00","height":"5.067"}]},{"date":"2026-02-03","groups":[{"time":"09:24:00","height":"5.351"},{"time":"21:45:00","height":"5.127"}]},{"date":"2026-02-04","groups":[{"time":"10:01:00","height":"5.354"},{"time":"22:21:00","height":"5.049"}]},{"date":"2026-02-05","groups":[{"time":"10:40:00","height":"5.212"},{"time":"22:59:00","height":"4.855"}]},{"date":"2026-02-06","groups":[{"time":"11:17:00","height":"4.954"},{"time":"23:35:00","height":"4.576"}]},{"date":"2026-02-07","groups":[{"time":"11:52:00","height":"4.614"}]},{"date":"2026-02-08","groups":[{"time":"00:11:00","height":"4.242"},{"time":"12:28:00","height":"4.223"}]},{"date":"2026-02-09","groups":[{"time":"00:48:00","height":"3.875"},{"time":"13:08:00","height":"3.802"}]},{"date":"2026-02-10","groups":[{"time":"01:33:00","height":"3.499"},{"time":"13:59:00","height":"3.380"}]},{"date":"2026-02-11","groups":[{"time":"02:37:00","height":"3.165"},{"time":"15:17:00","height":"3.044"}]},{"date":"2026-02-12","groups":[{"time":"04:17:00","height":"3.041"},{"time":"17:01:00","height":"3.020"}]},{"date":"2026-02-13","groups":[{"time":"05:44:00","height":"3.286"},{"time":"18:16:00","height":"3.331"}]},{"date":"2026-02-14","groups":[{"time":"06:42:00","height":"3.707"},{"time":"19:05:00","height":"3.741"}]},{"date":"2026-02-15","groups":[{"time":"07:23:00","height":"4.138"},{"time":"19:43:00","height":"4.136"}]},{"date":"2026-02-16","groups":[{"time":"07:58:00","height":"4.519"},{"time":"20:17:00","height":"4.480"}]},{"date":"2026-02-17","groups":[{"time":"08:32:00","height":"4.834"},{"time":"20:50:00","height":"4.760"}]},{"date":"2026-02-18","groups":[{"time":"09:05:00","height":"5.078"},{"time":"21:22:00","height":"4.964"}]},{"date":"2026-02-19","groups":[{"time":"09:38:00","height":"5.236"},{"time":"21:54:00","height":"5.069"}]},{"date":"2026-02-20","groups":[{"time":"10:11:00","height":"5.285"},{"time":"22:29:00","height":"5.054"}]},{"date":"2026-02-21","groups":[{"time":"10:50:00","height":"5.201"},{"time":"23:07:00","height":"4.909"}]},{"date":"2026-02-22","groups":[{"time":"11:30:00","height":"4.975"},{"time":"23:47:00","height":"4.640"}]},{"date":"2026-02-23","groups":[{"time":"12:13:00","height":"4.614"}]},{"date":"2026-02-24","groups":[{"time":"00:33:00","height":"4.267"},{"time":"13:05:00","height":"4.148"}]},{"date":"2026-02-25","groups":[{"time":"01:30:00","height":"3.835"},{"time":"14:14:00","height":"3.659"}]},{"date":"2026-02-26","groups":[{"time":"02:54:00","height":"3.467"},{"time":"15:52:00","height":"3.364"}]},{"date":"2026-02-27","groups":[{"time":"04:38:00","height":"3.445"},{"time":"17:29:00","height":"3.521"}]},{"date":"2026-02-28","groups":[{"time":"06:04:00","height":"3.853"},{"time":"18:41:00","height":"3.990"}]},{"date":"2026-03-01","groups":[{"time":"07:03:00","height":"4.399"},{"time":"19:31:00","height":"4.478"}]},{"date":"2026-03-02","groups":[{"time":"07:48:00","height":"4.862"},{"time":"20:12:00","height":"4.849"}]},{"date":"2026-03-03","groups":[{"time":"08:29:00","height":"5.168"},{"time":"20:49:00","height":"5.069"}]},{"date":"2026-03-04","groups":[{"time":"09:05:00","height":"5.307"},{"time":"21:22:00","height":"5.143"}]},{"date":"2026-03-05","groups":[{"time":"09:37:00","height":"5.298"},{"time":"21:53:00","height":"5.091"}]},{"date":"2026-03-06","groups":[{"time":"10:08:00","height":"5.166"},{"time":"22:24:00","height":"4.935"}]},{"date":"2026-03-07","groups":[{"time":"10:40:00","height":"4.934"},{"time":"22:56:00","height":"4.693"}]},{"date":"2026-03-08","groups":[{"time":"11:11:00","height":"4.624"},{"time":"23:26:00","height":"4.384"}]},{"date":"2026-03-09","groups":[{"time":"11:43:00","height":"4.251"}]},{"date":"2026-03-10","groups":[{"time":"00:00:00","height":"4.022"},{"time":"12:17:00","height":"3.826"}]},{"date":"2026-03-11","groups":[{"time":"00:38:00","height":"3.620"},{"time":"13:01:00","height":"3.370"}]},{"date":"2026-03-12","groups":[{"time":"01:32:00","height":"3.212"},{"time":"14:08:00","height":"2.945"}]},{"date":"2026-03-13","groups":[{"time":"03:09:00","height":"2.930"},{"time":"16:13:00","height":"2.787"}]},{"date":"2026-03-14","groups":[{"time":"05:08:00","height":"3.097"},{"time":"17:47:00","height":"3.131"}]},{"date":"2026-03-15","groups":[{"time":"06:11:00","height":"3.563"},{"time":"18:36:00","height":"3.629"}]},{"date":"2026-03-16","groups":[{"time":"06:53:00","height":"4.069"},{"time":"19:15:00","height":"4.124"}]},{"date":"2026-03-17","groups":[{"time":"07:30:00","height":"4.534"},{"time":"19:48:00","height":"4.563"}]},{"date":"2026-03-18","groups":[{"time":"08:03:00","height":"4.927"},{"time":"20:21:00","height":"4.919"}]},{"date":"2026-03-19","groups":[{"time":"08:38:00","height":"5.228"},{"time":"20:55:00","height":"5.171"}]},{"date":"2026-03-20","groups":[{"time":"09:12:00","height":"5.411"},{"time":"21:29:00","height":"5.292"}]},{"date":"2026-03-21","groups":[{"time":"09:47:00","height":"5.445"},{"time":"22:03:00","height":"5.263"}]},{"date":"2026-03-22","groups":[{"time":"10:25:00","height":"5.311"},{"time":"22:42:00","height":"5.077"}]},{"date":"2026-03-23","groups":[{"time":"11:07:00","height":"5.004"},{"time":"23:24:00","height":"4.746"}]},{"date":"2026-03-24","groups":[{"time":"11:54:00","height":"4.547"}]},{"date":"2026-03-25","groups":[{"time":"00:13:00","height":"4.303"},{"time":"12:50:00","height":"3.999"}]},{"date":"2026-03-26","groups":[{"time":"01:16:00","height":"3.816"},{"time":"14:07:00","height":"3.484"}]},{"date":"2026-03-27","groups":[{"time":"02:49:00","height":"3.456"},{"time":"15:51:00","height":"3.267"}]},{"date":"2026-03-28","groups":[{"time":"04:35:00","height":"3.514"},{"time":"17:24:00","height":"3.531"}]},{"date":"2026-03-29","groups":[{"time":"05:53:00","height":"3.944"},{"time":"18:26:00","height":"4.012"}]},{"date":"2026-03-30","groups":[{"time":"07:46:00","height":"4.426"},{"time":"20:11:00","height":"4.454"}]},{"date":"2026-03-31","groups":[{"time":"08:28:00","height":"4.796"},{"time":"20:49:00","height":"4.772"}]},{"date":"2026-04-01","groups":[{"time":"09:04:00","height":"5.014"},{"time":"21:23:00","height":"4.952"}]},{"date":"2026-04-02","groups":[{"time":"09:38:00","height":"5.097"},{"time":"21:54:00","height":"5.018"}]},{"date":"2026-04-03","groups":[{"time":"10:08:00","height":"5.074"},{"time":"22:23:00","height":"4.990"}]},{"date":"2026-04-04","groups":[{"time":"10:38:00","height":"4.966"},{"time":"22:52:00","height":"4.879"}]},{"date":"2026-04-05","groups":[{"time":"11:05:00","height":"4.780"},{"time":"23:19:00","height":"4.689"}]},{"date":"2026-04-06","groups":[{"time":"11:36:00","height":"4.522"},{"time":"23:51:00","height":"4.430"}]},{"date":"2026-04-07","groups":[{"time":"12:07:00","height":"4.199"}]},{"date":"2026-04-08","groups":[{"time":"00:24:00","height":"4.111"},{"time":"12:42:00","height":"3.823"}]},{"date":"2026-04-09","groups":[{"time":"01:02:00","height":"3.747"},{"time":"13:24:00","height":"3.415"}]},{"date":"2026-04-10","groups":[{"time":"01:53:00","height":"3.371"},{"time":"14:27:00","height":"3.034"}]},{"date":"2026-04-11","groups":[{"time":"03:17:00","height":"3.088"},{"time":"16:12:00","height":"2.851"}]},{"date":"2026-04-12","groups":[{"time":"05:09:00","height":"3.137"},{"time":"17:55:00","height":"3.104"}]},{"date":"2026-04-13","groups":[{"time":"06:22:00","height":"3.534"},{"time":"18:52:00","height":"3.589"}]},{"date":"2026-04-14","groups":[{"time":"07:11:00","height":"4.032"},{"time":"19:35:00","height":"4.108"}]},{"date":"2026-04-15","groups":[{"time":"07:51:00","height":"4.517"},{"time":"20:13:00","height":"4.581"}]},{"date":"2026-04-16","groups":[{"time":"08:30:00","height":"4.932"},{"time":"20:49:00","height":"4.964"}]},{"date":"2026-04-17","groups":[{"time":"09:07:00","height":"5.240"},{"time":"21:27:00","height":"5.227"}]},{"date":"2026-04-18","groups":[{"time":"09:47:00","height":"5.408"},{"time":"22:05:00","height":"5.347"}]},{"date":"2026-04-19","groups":[{"time":"10:25:00","height":"5.410"},{"time":"22:42:00","height":"5.306"}]},{"date":"2026-04-20","groups":[{"time":"11:05:00","height":"5.233"},{"time":"23:24:00","height":"5.106"}]},{"date":"2026-04-21","groups":[{"time":"11:53:00","height":"4.891"}]},{"date":"2026-04-22","groups":[{"time":"00:12:00","height":"4.770"},{"time":"12:46:00","height":"4.430"}]},{"date":"2026-04-23","groups":[{"time":"01:08:00","height":"4.348"},{"time":"13:48:00","height":"3.933"}]},{"date":"2026-04-24","groups":[{"time":"02:17:00","height":"3.933"},{"time":"15:06:00","height":"3.536"}]},{"date":"2026-04-25","groups":[{"time":"03:44:00","height":"3.679"},{"time":"16:39:00","height":"3.417"}]},{"date":"2026-04-26","groups":[{"time":"05:14:00","height":"3.731"},{"time":"17:57:00","height":"3.625"}]},{"date":"2026-04-27","groups":[{"time":"06:23:00","height":"4.012"},{"time":"18:56:00","height":"3.978"}]},{"date":"2026-04-28","groups":[{"time":"07:15:00","height":"4.325"},{"time":"19:41:00","height":"4.307"}]},{"date":"2026-04-29","groups":[{"time":"07:59:00","height":"4.561"},{"time":"20:19:00","height":"4.549"}]},{"date":"2026-04-30","groups":[{"time":"08:35:00","height":"4.698"},{"time":"20:53:00","height":"4.700"}]},{"date":"2026-05-01","groups":[{"time":"09:09:00","height":"4.752"},{"time":"21:25:00","height":"4.774"}]},{"date":"2026-05-02","groups":[{"time":"09:40:00","height":"4.743"},{"time":"21:55:00","height":"4.781"}]},{"date":"2026-05-03","groups":[{"time":"10:10:00","height":"4.678"},{"time":"22:24:00","height":"4.724"}]},{"date":"2026-05-04","groups":[{"time":"10:39:00","height":"4.553"},{"time":"22:54:00","height":"4.599"}]},{"date":"2026-05-05","groups":[{"time":"11:09:00","height":"4.367"},{"time":"23:25:00","height":"4.412"}]},{"date":"2026-05-06","groups":[{"time":"11:43:00","height":"4.127"}]},{"date":"2026-05-07","groups":[{"time":"00:02:00","height":"4.173"},{"time":"12:21:00","height":"3.847"}]},{"date":"2026-05-08","groups":[{"time":"00:43:00","height":"3.899"},{"time":"13:05:00","height":"3.551"}]},{"date":"2026-05-09","groups":[{"time":"01:35:00","height":"3.626"},{"time":"14:05:00","height":"3.288"}]},{"date":"2026-05-10","groups":[{"time":"02:44:00","height":"3.426"},{"time":"15:24:00","height":"3.160"}]},{"date":"2026-05-11","groups":[{"time":"04:09:00","height":"3.417"},{"time":"16:50:00","height":"3.280"}]},{"date":"2026-05-12","groups":[{"time":"05:22:00","height":"3.649"},{"time":"17:56:00","height":"3.627"}]},{"date":"2026-05-13","groups":[{"time":"06:21:00","height":"4.030"},{"time":"18:48:00","height":"4.067"}]},{"date":"2026-05-14","groups":[{"time":"07:10:00","height":"4.444"},{"time":"19:34:00","height":"4.499"}]},{"date":"2026-05-15","groups":[{"time":"07:55:00","height":"4.812"},{"time":"20:17:00","height":"4.862"}]},{"date":"2026-05-16","groups":[{"time":"08:39:00","height":"5.083"},{"time":"21:01:00","height":"5.119"}]},{"date":"2026-05-17","groups":[{"time":"09:24:00","height":"5.226"},{"time":"21:44:00","height":"5.248"}]},{"date":"2026-05-18","groups":[{"time":"10:08:00","height":"5.223"},{"time":"22:28:00","height":"5.238"}]},{"date":"2026-05-19","groups":[{"time":"10:54:00","height":"5.073"},{"time":"23:14:00","height":"5.095"}]},{"date":"2026-05-20","groups":[{"time":"11:46:00","height":"4.798"}]},{"date":"2026-05-21","groups":[{"time":"00:08:00","height":"4.844"},{"time":"12:43:00","height":"4.445"}]},{"date":"2026-05-22","groups":[{"time":"01:07:00","height":"4.532"},{"time":"13:43:00","height":"4.081"}]},{"date":"2026-05-23","groups":[{"time":"02:10:00","height":"4.224"},{"time":"14:51:00","height":"3.786"}]},{"date":"2026-05-24","groups":[{"time":"03:22:00","height":"3.995"},{"time":"16:05:00","height":"3.636"}]},{"date":"2026-05-25","groups":[{"time":"04:37:00","height":"3.905"},{"time":"17:14:00","height":"3.665"}]},{"date":"2026-05-26","groups":[{"time":"05:40:00","height":"3.949"},{"time":"18:13:00","height":"3.822"}]},{"date":"2026-05-27","groups":[{"time":"06:36:00","height":"4.062"},{"time":"19:03:00","height":"4.025"}]},{"date":"2026-05-28","groups":[{"time":"07:23:00","height":"4.185"},{"time":"19:46:00","height":"4.215"}]},{"date":"2026-05-29","groups":[{"time":"08:04:00","height":"4.287"},{"time":"20:25:00","height":"4.371"}]},{"date":"2026-05-30","groups":[{"time":"08:42:00","height":"4.360"},{"time":"21:00:00","height":"4.483"}]},{"date":"2026-05-31","groups":[{"time":"09:17:00","height":"4.399"},{"time":"21:33:00","height":"4.547"}]},{"date":"2026-06-01","groups":[{"time":"09:50:00","height":"4.399"},{"time":"22:06:00","height":"4.558"}]},{"date":"2026-06-02","groups":[{"time":"10:22:00","height":"4.356"},{"time":"22:38:00","height":"4.517"}]},{"date":"2026-06-03","groups":[{"time":"10:54:00","height":"4.269"},{"time":"23:10:00","height":"4.428"}]},{"date":"2026-06-04","groups":[{"time":"11:29:00","height":"4.144"},{"time":"23:49:00","height":"4.299"}]},{"date":"2026-06-05","groups":[{"time":"12:08:00","height":"3.991"}]},{"date":"2026-06-06","groups":[{"time":"00:31:00","height":"4.142"},{"time":"12:52:00","height":"3.823"}]},{"date":"2026-06-07","groups":[{"time":"01:18:00","height":"3.979"},{"time":"13:43:00","height":"3.667"}]},{"date":"2026-06-08","groups":[{"time":"02:15:00","height":"3.845"},{"time":"14:44:00","height":"3.563"}]},{"date":"2026-06-09","groups":[{"time":"03:19:00","height":"3.784"},{"time":"15:53:00","height":"3.563"}]},{"date":"2026-06-10","groups":[{"time":"04:29:00","height":"3.837"},{"time":"17:03:00","height":"3.705"}]},{"date":"2026-06-11","groups":[{"time":"05:32:00","height":"4.013"},{"time":"18:03:00","height":"3.972"}]},{"date":"2026-06-12","groups":[{"time":"06:30:00","height":"4.271"},{"time":"18:59:00","height":"4.302"}]},{"date":"2026-06-13","groups":[{"time":"07:26:00","height":"4.547"},{"time":"19:51:00","height":"4.629"}]},{"date":"2026-06-14","groups":[{"time":"08:18:00","height":"4.787"},{"time":"20:42:00","height":"4.906"}]},{"date":"2026-06-15","groups":[{"time":"09:09:00","height":"4.956"},{"time":"21:31:00","height":"5.100"}]},{"date":"2026-06-16","groups":[{"time":"10:00:00","height":"5.028"},{"time":"22:20:00","height":"5.191"}]},{"date":"2026-06-17","groups":[{"time":"10:48:00","height":"4.993"},{"time":"23:08:00","height":"5.168"}]},{"date":"2026-06-18","groups":[{"time":"11:39:00","height":"4.852"}]},{"date":"2026-06-19","groups":[{"time":"00:02:00","height":"5.034"},{"time":"12:32:00","height":"4.626"}]},{"date":"2026-06-20","groups":[{"time":"00:55:00","height":"4.810"},{"time":"13:25:00","height":"4.345"}]},{"date":"2026-06-21","groups":[{"time":"01:49:00","height":"4.525"},{"time":"14:19:00","height":"4.055"}]},{"date":"2026-06-22","groups":[{"time":"02:45:00","height":"4.224"},{"time":"15:19:00","height":"3.802"}]},{"date":"2026-06-23","groups":[{"time":"03:46:00","height":"3.955"},{"time":"16:23:00","height":"3.633"}]},{"date":"2026-06-24","groups":[{"time":"04:50:00","height":"3.768"},{"time":"17:23:00","height":"3.588"}]},{"date":"2026-06-25","groups":[{"time":"05:49:00","height":"3.698"},{"time":"18:22:00","height":"3.670"}]},{"date":"2026-06-26","groups":[{"time":"06:45:00","height":"3.741"},{"time":"19:14:00","height":"3.841"}]},{"date":"2026-06-27","groups":[{"time":"07:37:00","height":"3.860"},{"time":"20:00:00","height":"4.046"}]},{"date":"2026-06-28","groups":[{"time":"08:21:00","height":"4.006"},{"time":"20:41:00","height":"4.239"}]},{"date":"2026-06-29","groups":[{"time":"09:01:00","height":"4.140"},{"time":"21:18:00","height":"4.393"}]},{"date":"2026-06-30","groups":[{"time":"09:36:00","height":"4.241"},{"time":"21:52:00","height":"4.499"}]},{"date":"2026-07-01","groups":[{"time":"10:10:00","height":"4.305"},{"time":"22:25:00","height":"4.558"}]},{"date":"2026-07-02","groups":[{"time":"10:42:00","height":"4.333"},{"time":"22:58:00","height":"4.574"}]},{"date":"2026-07-03","groups":[{"time":"11:15:00","height":"4.327"},{"time":"23:34:00","height":"4.549"}]},{"date":"2026-07-04","groups":[{"time":"11:54:00","height":"4.281"}]},{"date":"2026-07-05","groups":[{"time":"00:15:00","height":"4.480"},{"time":"12:33:00","height":"4.193"}]},{"date":"2026-07-06","groups":[{"time":"00:57:00","height":"4.372"},{"time":"13:17:00","height":"4.071"}]},{"date":"2026-07-07","groups":[{"time":"01:42:00","height":"4.233"},{"time":"14:06:00","height":"3.930"}]},{"date":"2026-07-08","groups":[{"time":"02:36:00","height":"4.082"},{"time":"15:05:00","height":"3.799"}]},{"date":"2026-07-09","groups":[{"time":"03:39:00","height":"3.948"},{"time":"16:14:00","height":"3.729"}]},{"date":"2026-07-10","groups":[{"time":"04:51:00","height":"3.892"},{"time":"17:25:00","height":"3.796"}]},{"date":"2026-07-11","groups":[{"time":"06:01:00","height":"3.976"},{"time":"18:34:00","height":"4.029"}]},{"date":"2026-07-12","groups":[{"time":"07:07:00","height":"4.198"},{"time":"19:37:00","height":"4.374"}]},{"date":"2026-07-13","groups":[{"time":"08:08:00","height":"4.492"},{"time":"20:33:00","height":"4.744"}]},{"date":"2026-07-14","groups":[{"time":"09:03:00","height":"4.776"},{"time":"21:25:00","height":"5.063"}]},{"date":"2026-07-15","groups":[{"time":"09:53:00","height":"4.984"},{"time":"22:13:00","height":"5.272"}]},{"date":"2026-07-16","groups":[{"time":"10:39:00","height":"5.072"},{"time":"22:57:00","height":"5.339"}]},{"date":"2026-07-17","groups":[{"time":"11:24:00","height":"5.026"},{"time":"23:44:00","height":"5.256"}]},{"date":"2026-07-18","groups":[{"time":"12:10:00","height":"4.855"}]},{"date":"2026-07-19","groups":[{"time":"00:30:00","height":"5.035"},{"time":"12:55:00","height":"4.588"}]},{"date":"2026-07-20","groups":[{"time":"01:14:00","height":"4.713"},{"time":"13:38:00","height":"4.261"}]},{"date":"2026-07-21","groups":[{"time":"02:00:00","height":"4.328"},{"time":"14:25:00","height":"3.916"}]},{"date":"2026-07-22","groups":[{"time":"02:48:00","height":"3.930"},{"time":"15:18:00","height":"3.597"}]},{"date":"2026-07-23","groups":[{"time":"03:46:00","height":"3.571"},{"time":"16:26:00","height":"3.370"}]},{"date":"2026-07-24","groups":[{"time":"04:58:00","height":"3.337"},{"time":"17:39:00","height":"3.334"}]},{"date":"2026-07-25","groups":[{"time":"06:11:00","height":"3.324"},{"time":"18:48:00","height":"3.518"}]},{"date":"2026-07-26","groups":[{"time":"07:16:00","height":"3.514"},{"time":"19:44:00","height":"3.823"}]},{"date":"2026-07-27","groups":[{"time":"08:07:00","height":"3.790"},{"time":"20:27:00","height":"4.137"}]},{"date":"2026-07-28","groups":[{"time":"08:47:00","height":"4.056"},{"time":"21:03:00","height":"4.404"}]},{"date":"2026-07-29","groups":[{"time":"09:22:00","height":"4.277"},{"time":"21:37:00","height":"4.609"}]},{"date":"2026-07-30","groups":[{"time":"09:54:00","height":"4.448"},{"time":"22:09:00","height":"4.756"}]},{"date":"2026-07-31","groups":[{"time":"10:25:00","height":"4.573"},{"time":"22:41:00","height":"4.851"}]},{"date":"2026-08-01","groups":[{"time":"10:56:00","height":"4.645"},{"time":"23:13:00","height":"4.885"}]},{"date":"2026-08-02","groups":[{"time":"11:30:00","height":"4.651"},{"time":"23:50:00","height":"4.846"}]},{"date":"2026-08-03","groups":[{"time":"12:07:00","height":"4.578"}]},{"date":"2026-08-04","groups":[{"time":"00:29:00","height":"4.723"},{"time":"12:46:00","height":"4.424"}]},{"date":"2026-08-05","groups":[{"time":"01:10:00","height":"4.517"},{"time":"13:29:00","height":"4.201"}]},{"date":"2026-08-06","groups":[{"time":"01:59:00","height":"4.237"},{"time":"14:22:00","height":"3.929"}]},{"date":"2026-08-07","groups":[{"time":"02:59:00","height":"3.916"},{"time":"15:33:00","height":"3.672"}]},{"date":"2026-08-08","groups":[{"time":"04:20:00","height":"3.657"},{"time":"17:02:00","height":"3.585"}]},{"date":"2026-08-09","groups":[{"time":"05:47:00","height":"3.651"},{"time":"18:25:00","height":"3.818"}]},{"date":"2026-08-10","groups":[{"time":"07:05:00","height":"3.947"},{"time":"19:35:00","height":"4.276"}]},{"date":"2026-08-11","groups":[{"time":"08:08:00","height":"4.385"},{"time":"20:31:00","height":"4.772"}]},{"date":"2026-08-12","groups":[{"time":"08:58:00","height":"4.794"},{"time":"21:18:00","height":"5.171"}]},{"date":"2026-08-13","groups":[{"time":"09:43:00","height":"5.080"},{"time":"22:00:00","height":"5.412"}]},{"date":"2026-08-14","groups":[{"time":"10:22:00","height":"5.210"},{"time":"22:39:00","height":"5.477"}]},{"date":"2026-08-15","groups":[{"time":"11:00:00","height":"5.184"},{"time":"23:17:00","height":"5.371"}]},{"date":"2026-08-16","groups":[{"time":"11:39:00","height":"5.019"},{"time":"23:56:00","height":"5.122"}]},{"date":"2026-08-17","groups":[{"time":"12:17:00","height":"4.745"}]},{"date":"2026-08-18","groups":[{"time":"00:34:00","height":"4.766"},{"time":"12:54:00","height":"4.399"}]},{"date":"2026-08-19","groups":[{"time":"01:11:00","height":"4.346"},{"time":"13:31:00","height":"4.013"}]},{"date":"2026-08-20","groups":[{"time":"01:51:00","height":"3.893"},{"time":"14:15:00","height":"3.616"}]},{"date":"2026-08-21","groups":[{"time":"02:40:00","height":"3.444"},{"time":"15:17:00","height":"3.259"}]},{"date":"2026-08-22","groups":[{"time":"03:53:00","height":"3.074"},{"time":"16:54:00","height":"3.089"}]},{"date":"2026-08-23","groups":[{"time":"05:40:00","height":"3.001"},{"time":"18:26:00","height":"3.301"}]},{"date":"2026-08-24","groups":[{"time":"07:00:00","height":"3.296"},{"time":"19:26:00","height":"3.715"}]},{"date":"2026-08-25","groups":[{"time":"07:50:00","height":"3.705"},{"time":"20:07:00","height":"4.139"}]},{"date":"2026-08-26","groups":[{"time":"08:28:00","height":"4.092"},{"time":"20:43:00","height":"4.502"}]},{"date":"2026-08-27","groups":[{"time":"09:01:00","height":"4.419"},{"time":"21:15:00","height":"4.789"}]},{"date":"2026-08-28","groups":[{"time":"09:32:00","height":"4.677"},{"time":"21:46:00","height":"5.003"}]},{"date":"2026-08-29","groups":[{"time":"10:02:00","height":"4.868"},{"time":"22:17:00","height":"5.143"}]},{"date":"2026-08-30","groups":[{"time":"10:32:00","height":"4.979"},{"time":"22:49:00","height":"5.194"}]},{"date":"2026-08-31","groups":[{"time":"11:03:00","height":"4.992"},{"time":"23:23:00","height":"5.136"}]},{"date":"2026-09-01","groups":[{"time":"11:39:00","height":"4.890"}]},{"date":"2026-09-02","groups":[{"time":"00:00:00","height":"4.953"},{"time":"12:17:00","height":"4.673"}]},{"date":"2026-09-03","groups":[{"time":"00:42:00","height":"4.645"},{"time":"13:00:00","height":"4.353"}]},{"date":"2026-09-04","groups":[{"time":"01:29:00","height":"4.229"},{"time":"13:53:00","height":"3.959"}]},{"date":"2026-09-05","groups":[{"time":"02:33:00","height":"3.762"},{"time":"15:10:00","height":"3.584"}]},{"date":"2026-09-06","groups":[{"time":"04:07:00","height":"3.420"},{"time":"16:56:00","height":"3.481"}]},{"date":"2026-09-07","groups":[{"time":"05:49:00","height":"3.495"},{"time":"18:27:00","height":"3.834"}]},{"date":"2026-09-08","groups":[{"time":"07:07:00","height":"3.945"},{"time":"19:32:00","height":"4.394"}]},{"date":"2026-09-09","groups":[{"time":"08:01:00","height":"4.469"},{"time":"20:21:00","height":"4.907"}]},{"date":"2026-09-10","groups":[{"time":"08:46:00","height":"4.893"},{"time":"21:03:00","height":"5.268"}]},{"date":"2026-09-11","groups":[{"time":"09:24:00","height":"5.160"},{"time":"21:40:00","height":"5.447"}]},{"date":"2026-09-12","groups":[{"time":"10:00:00","height":"5.267"},{"time":"22:15:00","height":"5.456"}]},{"date":"2026-09-13","groups":[{"time":"10:33:00","height":"5.230"},{"time":"22:48:00","height":"5.320"}]},{"date":"2026-09-14","groups":[{"time":"11:04:00","height":"5.073"},{"time":"23:19:00","height":"5.067"}]},{"date":"2026-09-15","groups":[{"time":"11:37:00","height":"4.817"},{"time":"23:53:00","height":"4.725"}]},{"date":"2026-09-16","groups":[{"time":"12:10:00","height":"4.488"}]},{"date":"2026-09-17","groups":[{"time":"00:26:00","height":"4.321"},{"time":"12:45:00","height":"4.111"}]},{"date":"2026-09-18","groups":[{"time":"01:02:00","height":"3.878"},{"time":"13:24:00","height":"3.701"}]},{"date":"2026-09-19","groups":[{"time":"01:47:00","height":"3.416"},{"time":"14:20:00","height":"3.297"}]},{"date":"2026-09-20","groups":[{"time":"02:54:00","height":"2.995"},{"time":"15:58:00","height":"3.031"}]},{"date":"2026-09-21","groups":[{"time":"05:02:00","height":"2.850"},{"time":"17:54:00","height":"3.210"}]},{"date":"2026-09-22","groups":[{"time":"06:33:00","height":"3.190"},{"time":"18:56:00","height":"3.661"}]},{"date":"2026-09-23","groups":[{"time":"07:21:00","height":"3.668"},{"time":"19:37:00","height":"4.140"}]},{"date":"2026-09-24","groups":[{"time":"07:58:00","height":"4.134"},{"time":"20:12:00","height":"4.567"}]},{"date":"2026-09-25","groups":[{"time":"08:31:00","height":"4.540"},{"time":"20:45:00","height":"4.917"}]},{"date":"2026-09-26","groups":[{"time":"09:02:00","height":"4.867"},{"time":"21:17:00","height":"5.180"}]},{"date":"2026-09-27","groups":[{"time":"09:34:00","height":"5.103"},{"time":"21:50:00","height":"5.344"}]},{"date":"2026-09-28","groups":[{"time":"10:06:00","height":"5.231"},{"time":"22:23:00","height":"5.387"}]},{"date":"2026-09-29","groups":[{"time":"10:38:00","height":"5.232"},{"time":"22:57:00","height":"5.287"}]},{"date":"2026-09-30","groups":[{"time":"11:13:00","height":"5.093"},{"time":"23:38:00","height":"5.032"}]},{"date":"2026-10-01","groups":[{"time":"11:55:00","height":"4.818"}]},{"date":"2026-10-02","groups":[{"time":"00:22:00","height":"4.636"},{"time":"12:42:00","height":"4.429"}]},{"date":"2026-10-03","groups":[{"time":"01:16:00","height":"4.140"},{"time":"13:42:00","height":"3.984"}]},{"date":"2026-10-04","groups":[{"time":"02:29:00","height":"3.649"},{"time":"15:09:00","height":"3.626"}]},{"date":"2026-10-05","groups":[{"time":"04:11:00","height":"3.392"},{"time":"16:57:00","height":"3.627"}]},{"date":"2026-10-06","groups":[{"time":"05:48:00","height":"3.591"},{"time":"18:20:00","height":"4.024"}]},{"date":"2026-10-07","groups":[{"time":"06:56:00","height":"4.063"},{"time":"19:17:00","height":"4.525"}]},{"date":"2026-10-08","groups":[{"time":"07:44:00","height":"4.533"},{"time":"20:01:00","height":"4.932"}]},{"date":"2026-10-09","groups":[{"time":"08:24:00","height":"4.886"},{"time":"20:41:00","height":"5.183"}]},{"date":"2026-10-10","groups":[{"time":"09:00:00","height":"5.094"},{"time":"21:16:00","height":"5.279"}]},{"date":"2026-10-11","groups":[{"time":"09:34:00","height":"5.171"},{"time":"21:49:00","height":"5.249"}]},{"date":"2026-10-12","groups":[{"time":"10:05:00","height":"5.140"},{"time":"22:20:00","height":"5.120"}]},{"date":"2026-10-13","groups":[{"time":"10:35:00","height":"5.017"},{"time":"22:49:00","height":"4.907"}]},{"date":"2026-10-14","groups":[{"time":"11:03:00","height":"4.812"},{"time":"23:18:00","height":"4.623"}]},{"date":"2026-10-15","groups":[{"time":"11:36:00","height":"4.536"},{"time":"23:52:00","height":"4.280"}]},{"date":"2026-10-16","groups":[{"time":"12:10:00","height":"4.207"}]},{"date":"2026-10-17","groups":[{"time":"00:28:00","height":"3.895"},{"time":"12:49:00","height":"3.843"}]},{"date":"2026-10-18","groups":[{"time":"01:11:00","height":"3.489"},{"time":"13:42:00","height":"3.476"}]},{"date":"2026-10-19","groups":[{"time":"02:14:00","height":"3.116"},{"time":"15:05:00","height":"3.207"}]},{"date":"2026-10-20","groups":[{"time":"03:57:00","height":"2.935"},{"time":"16:57:00","height":"3.253"}]},{"date":"2026-10-21","groups":[{"time":"05:41:00","height":"3.164"},{"time":"18:08:00","height":"3.618"}]},{"date":"2026-10-22","groups":[{"time":"06:37:00","height":"3.612"},{"time":"18:55:00","height":"4.073"}]},{"date":"2026-10-23","groups":[{"time":"07:18:00","height":"4.095"},{"time":"19:33:00","height":"4.518"}]},{"date":"2026-10-24","groups":[{"time":"07:54:00","height":"4.543"},{"time":"20:10:00","height":"4.904"}]},{"date":"2026-10-25","groups":[{"time":"08:29:00","height":"4.916"},{"time":"20:47:00","height":"5.198"}]},{"date":"2026-10-26","groups":[{"time":"08:04:00","height":"5.187"},{"time":"20:23:00","height":"5.375"}]},{"date":"2026-10-27","groups":[{"time":"08:41:00","height":"5.333"},{"time":"21:02:00","height":"5.409"}]},{"date":"2026-10-28","groups":[{"time":"09:19:00","height":"5.337"},{"time":"21:40:00","height":"5.286"}]},{"date":"2026-10-29","groups":[{"time":"09:57:00","height":"5.194"},{"time":"22:24:00","height":"5.009"}]},{"date":"2026-10-30","groups":[{"time":"10:44:00","height":"4.919"},{"time":"23:17:00","height":"4.610"}]},{"date":"2026-10-31","groups":[{"time":"11:38:00","height":"4.551"}]},{"date":"2026-11-01","groups":[{"time":"00:16:00","height":"4.159"},{"time":"12:46:00","height":"4.170"}]},{"date":"2026-11-02","groups":[{"time":"01:31:00","height":"3.770"},{"time":"14:08:00","height":"3.909"}]},{"date":"2026-11-03","groups":[{"time":"03:00:00","height":"3.602"},{"time":"15:39:00","height":"3.907"}]},{"date":"2026-11-04","groups":[{"time":"04:23:00","height":"3.743"},{"time":"16:52:00","height":"4.146"}]},{"date":"2026-11-05","groups":[{"time":"05:26:00","height":"4.068"},{"time":"17:48:00","height":"4.456"}]},{"date":"2026-11-06","groups":[{"time":"06:16:00","height":"4.408"},{"time":"18:35:00","height":"4.709"}]},{"date":"2026-11-07","groups":[{"time":"06:58:00","height":"4.673"},{"time":"19:15:00","height":"4.862"}]},{"date":"2026-11-08","groups":[{"time":"07:34:00","height":"4.842"},{"time":"19:50:00","height":"4.920"}]},{"date":"2026-11-09","groups":[{"time":"08:08:00","height":"4.925"},{"time":"20:24:00","height":"4.903"}]},{"date":"2026-11-10","groups":[{"time":"08:40:00","height":"4.933"},{"time":"20:56:00","height":"4.826"}]},{"date":"2026-11-11","groups":[{"time":"09:11:00","height":"4.872"},{"time":"21:26:00","height":"4.690"}]},{"date":"2026-11-12","groups":[{"time":"09:41:00","height":"4.744"},{"time":"21:56:00","height":"4.497"}]},{"date":"2026-11-13","groups":[{"time":"10:13:00","height":"4.555"},{"time":"22:30:00","height":"4.254"}]},{"date":"2026-11-14","groups":[{"time":"10:50:00","height":"4.318"},{"time":"23:08:00","height":"3.976"}]},{"date":"2026-11-15","groups":[{"time":"11:31:00","height":"4.048"},{"time":"23:51:00","height":"3.682"}]},{"date":"2026-11-16","groups":[{"time":"12:20:00","height":"3.776"}]},{"date":"2026-11-17","groups":[{"time":"00:47:00","height":"3.412"},{"time":"13:25:00","height":"3.557"}]},{"date":"2026-11-18","groups":[{"time":"01:59:00","height":"3.243"},{"time":"14:44:00","height":"3.487"}]},{"date":"2026-11-19","groups":[{"time":"03:25:00","height":"3.282"},{"time":"16:01:00","height":"3.637"}]},{"date":"2026-11-20","groups":[{"time":"04:36:00","height":"3.557"},{"time":"17:00:00","height":"3.955"}]},{"date":"2026-11-21","groups":[{"time":"05:28:00","height":"3.958"},{"time":"17:50:00","height":"4.338"}]},{"date":"2026-11-22","groups":[{"time":"06:14:00","height":"4.385"},{"time":"18:34:00","height":"4.708"}]},{"date":"2026-11-23","groups":[{"time":"06:57:00","height":"4.772"},{"time":"19:18:00","height":"5.011"}]},{"date":"2026-11-24","groups":[{"time":"07:39:00","height":"5.075"},{"time":"20:02:00","height":"5.208"}]},{"date":"2026-11-25","groups":[{"time":"08:22:00","height":"5.266"},{"time":"20:47:00","height":"5.277"}]},{"date":"2026-11-26","groups":[{"time":"09:06:00","height":"5.331"},{"time":"21:32:00","height":"5.209"}]},{"date":"2026-11-27","groups":[{"time":"09:51:00","height":"5.266"},{"time":"22:19:00","height":"5.014"}]},{"date":"2026-11-28","groups":[{"time":"10:42:00","height":"5.087"},{"time":"23:16:00","height":"4.724"}]},{"date":"2026-11-29","groups":[{"time":"11:39:00","height":"4.827"}]},{"date":"2026-11-30","groups":[{"time":"00:14:00","height":"4.390"},{"time":"12:40:00","height":"4.536"}]},{"date":"2026-12-01","groups":[{"time":"01:18:00","height":"4.079"},{"time":"13:47:00","height":"4.278"}]},{"date":"2026-12-02","groups":[{"time":"02:28:00","height":"3.863"},{"time":"15:01:00","height":"4.115"}]},{"date":"2026-12-03","groups":[{"time":"03:42:00","height":"3.802"},{"time":"16:10:00","height":"4.080"}]},{"date":"2026-12-04","groups":[{"time":"04:45:00","height":"3.892"},{"time":"17:09:00","height":"4.145"}]},{"date":"2026-12-05","groups":[{"time":"05:41:00","height":"4.071"},{"time":"18:02:00","height":"4.256"}]},{"date":"2026-12-06","groups":[{"time":"06:28:00","height":"4.273"},{"time":"18:48:00","height":"4.367"}]},{"date":"2026-12-07","groups":[{"time":"07:11:00","height":"4.454"},{"time":"19:30:00","height":"4.457"}]},{"date":"2026-12-08","groups":[{"time":"07:48:00","height":"4.592"},{"time":"20:06:00","height":"4.515"}]},{"date":"2026-12-09","groups":[{"time":"08:24:00","height":"4.680"},{"time":"20:41:00","height":"4.533"}]},{"date":"2026-12-10","groups":[{"time":"08:57:00","height":"4.711"},{"time":"21:14:00","height":"4.505"}]},{"date":"2026-12-11","groups":[{"time":"09:29:00","height":"4.686"},{"time":"21:45:00","height":"4.432"}]},{"date":"2026-12-12","groups":[{"time":"10:01:00","height":"4.609"},{"time":"22:18:00","height":"4.317"}]},{"date":"2026-12-13","groups":[{"time":"10:37:00","height":"4.489"},{"time":"22:55:00","height":"4.169"}]},{"date":"2026-12-14","groups":[{"time":"11:17:00","height":"4.333"},{"time":"23:35:00","height":"3.994"}]},{"date":"2026-12-15","groups":[{"time":"11:59:00","height":"4.152"}]},{"date":"2026-12-16","groups":[{"time":"00:21:00","height":"3.811"},{"time":"12:49:00","height":"3.972"}]},{"date":"2026-12-17","groups":[{"time":"01:13:00","height":"3.647"},{"time":"13:46:00","height":"3.827"}]},{"date":"2026-12-18","groups":[{"time":"02:17:00","height":"3.549"},{"time":"14:53:00","height":"3.769"}]},{"date":"2026-12-19","groups":[{"time":"03:29:00","height":"3.577"},{"time":"16:02:00","height":"3.844"}]},{"date":"2026-12-20","groups":[{"time":"04:36:00","height":"3.769"},{"time":"17:05:00","height":"4.057"}]},{"date":"2026-12-21","groups":[{"time":"05:36:00","height":"4.091"},{"time":"18:03:00","height":"4.355"}]},{"date":"2026-12-22","groups":[{"time":"06:30:00","height":"4.467"},{"time":"18:58:00","height":"4.667"}]},{"date":"2026-12-23","groups":[{"time":"07:22:00","height":"4.829"},{"time":"19:49:00","height":"4.937"}]},{"date":"2026-12-24","groups":[{"time":"08:11:00","height":"5.128"},{"time":"20:39:00","height":"5.123"}]},{"date":"2026-12-25","groups":[{"time":"09:00:00","height":"5.328"},{"time":"21:27:00","height":"5.197"}]},{"date":"2026-12-26","groups":[{"time":"09:47:00","height":"5.410"},{"time":"22:14:00","height":"5.150"}]},{"date":"2026-12-27","groups":[{"time":"10:37:00","height":"5.357"},{"time":"23:06:00","height":"4.981"}]},{"date":"2026-12-28","groups":[{"time":"11:29:00","height":"5.177"},{"time":"23:58:00","height":"4.716"}]},{"date":"2026-12-29","groups":[{"time":"12:21:00","height":"4.894"}]},{"date":"2026-12-30","groups":[{"time":"00:50:00","height":"4.395"},{"time":"13:14:00","height":"4.546"}]},{"date":"2026-12-31","groups":[{"time":"01:44:00","height":"4.065"},{"time":"14:12:00","height":"4.186"}]}],"pdfs":[{"name":"September 2014","date":"2014-09-01","filename":"2014\/09.pdf","htmlfilename":"2014\/09.html","url":"2014\/09"},{"name":"October 2014","date":"2014-10-01","filename":"2014\/10.pdf","htmlfilename":"2014\/10.html","url":"2014\/10"},{"name":"November 2014","date":"2014-11-01","filename":"2014\/11.pdf","htmlfilename":"2014\/11.html","url":"2014\/11"},{"name":"December 2014","date":"2014-12-01","filename":"2014\/12.pdf","htmlfilename":"2014\/12.html","url":"2014\/12"},{"name":"January 2015","date":"2015-01-01","filename":"2015\/01.pdf","htmlfilename":"2015\/01.html","url":"2015\/01"},{"name":"February 2015","date":"2015-02-01","filename":"2015\/02.pdf","htmlfilename":"2015\/02.html","url":"2015\/02"},{"name":"March 2015","date":"2015-03-01","filename":"2015\/03.pdf","htmlfilename":"2015\/03.html","url":"2015\/03"},{"name":"April 2015","date":"2015-04-01","filename":"2015\/04.pdf","htmlfilename":"2015\/04.html","url":"2015\/04"},{"name":"May 2015","date":"2015-05-01","filename":"2015\/05.pdf","htmlfilename":"2015\/05.html","url":"2015\/05"},{"name":"June 2015","date":"2015-06-01","filename":"2015\/06.pdf","htmlfilename":"2015\/06.html","url":"2015\/06"},{"name":"July 2015","date":"2015-07-01","filename":"2015\/07.pdf","htmlfilename":"2015\/07.html","url":"2015\/07"},{"name":"August 2015","date":"2015-08-01","filename":"2015\/08.pdf","htmlfilename":"2015\/08.html","url":"2015\/08"},{"name":"September 2015","date":"2015-09-01","filename":"2015\/09.pdf","htmlfilename":"2015\/09.html","url":"2015\/09"},{"name":"October 2015","date":"2015-10-01","filename":"2015\/10.pdf","htmlfilename":"2015\/10.html","url":"2015\/10"},{"name":"November 2015","date":"2015-11-01","filename":"2015\/11.pdf","htmlfilename":"2015\/11.html","url":"2015\/11"},{"name":"December 2015","date":"2015-12-01","filename":"2015\/12.pdf","htmlfilename":"2015\/12.html","url":"2015\/12"},{"name":"January 2016","date":"2016-01-01","filename":"2016\/01.pdf","htmlfilename":"2016\/01.html","url":"2016\/01"},{"name":"February 2016","date":"2016-02-01","filename":"2016\/02.pdf","htmlfilename":"2016\/02.html","url":"2016\/02"},{"name":"March 2016","date":"2016-03-01","filename":"2016\/03.pdf","htmlfilename":"2016\/03.html","url":"2016\/03"},{"name":"April 2016","date":"2016-04-01","filename":"2016\/04.pdf","htmlfilename":"2016\/04.html","url":"2016\/04"},{"name":"May 2016","date":"2016-05-01","filename":"2016\/05.pdf","htmlfilename":"2016\/05.html","url":"2016\/05"},{"name":"June 2016","date":"2016-06-01","filename":"2016\/06.pdf","htmlfilename":"2016\/06.html","url":"2016\/06"},{"name":"July 2016","date":"2016-07-01","filename":"2016\/07.pdf","htmlfilename":"2016\/07.html","url":"2016\/07"},{"name":"August 2016","date":"2016-08-01","filename":"2016\/08.pdf","htmlfilename":"2016\/08.html","url":"2016\/08"},{"name":"January 2017","date":"2017-01-01","filename":"2017\/01.pdf","htmlfilename":"2017\/01.html","url":"2017\/01"},{"name":"February 2017","date":"2017-02-01","filename":"2017\/02.pdf","htmlfilename":"2017\/02.html","url":"2017\/02"},{"name":"March 2017","date":"2017-03-01","filename":"2017\/03.pdf","htmlfilename":"2017\/03.html","url":"2017\/03"},{"name":"April 2017","date":"2017-04-01","filename":"2017\/04.pdf","htmlfilename":"2017\/04.html","url":"2017\/04"},{"name":"May 2017","date":"2017-05-01","filename":"2017\/05.pdf","htmlfilename":"2017\/05.html","url":"2017\/05"},{"name":"June 2017","date":"2017-06-01","filename":"2017\/06.pdf","htmlfilename":"2017\/06.html","url":"2017\/06"},{"name":"July 2017","date":"2017-07-01","filename":"2017\/07.pdf","htmlfilename":"2017\/07.html","url":"2017\/07"},{"name":"August 2017","date":"2017-08-01","filename":"2017\/08.pdf","htmlfilename":"2017\/08.html","url":"2017\/08"},{"name":"September 2017","date":"2017-09-01","filename":"2017\/09.pdf","htmlfilename":"2017\/09.html","url":"2017\/09"},{"name":"October 2017","date":"2017-10-01","filename":"2017\/10.pdf","htmlfilename":"2017\/10.html","url":"2017\/10"},{"name":"November 2017","date":"2017-11-01","filename":"2017\/11.pdf","htmlfilename":"2017\/11.html","url":"2017\/11"},{"name":"December 2017","date":"2017-12-01","filename":"2017\/12.pdf","htmlfilename":"2017\/12.html","url":"2017\/12"},{"name":"January 2018","date":"2018-01-01","filename":"2018\/01.pdf","htmlfilename":"2018\/01.html","url":"2018\/01"},{"name":"February 2018","date":"2018-02-01","filename":"2018\/02.pdf","htmlfilename":"2018\/02.html","url":"2018\/02"},{"name":"March 2018","date":"2018-03-01","filename":"2018\/03.pdf","htmlfilename":"2018\/03.html","url":"2018\/03"},{"name":"April 2018","date":"2018-04-01","filename":"2018\/04.pdf","htmlfilename":"2018\/04.html","url":"2018\/04"},{"name":"May 2018","date":"2018-05-01","filename":"2018\/05.pdf","htmlfilename":"2018\/05.html","url":"2018\/05"},{"name":"June 2018","date":"2018-06-01","filename":"2018\/06.pdf","htmlfilename":"2018\/06.html","url":"2018\/06"},{"name":"July 2018","date":"2018-07-01","filename":"2018\/07.pdf","htmlfilename":"2018\/07.html","url":"2018\/07"},{"name":"August 2018","date":"2018-08-01","filename":"2018\/08.pdf","htmlfilename":"2018\/08.html","url":"2018\/08"},{"name":"September 2018","date":"2018-09-01","filename":"2018\/09.pdf","htmlfilename":"2018\/09.html","url":"2018\/09"},{"name":"October 2018","date":"2018-10-01","filename":"2018\/10.pdf","htmlfilename":"2018\/10.html","url":"2018\/10"},{"name":"November 2018","date":"2018-11-01","filename":"2018\/11.pdf","htmlfilename":"2018\/11.html","url":"2018\/11"},{"name":"December 2018","date":"2018-12-01","filename":"2018\/12.pdf","htmlfilename":"2018\/12.html","url":"2018\/12"},{"name":"March 2019","date":"2019-03-01","filename":"2019\/03.pdf","htmlfilename":"2019\/03.html","url":"2019\/03"},{"name":"April 2019","date":"2019-04-01","filename":"2019\/04.pdf","htmlfilename":"2019\/04.html","url":"2019\/04"},{"name":"May 2019","date":"2019-05-01","filename":"2019\/05.pdf","htmlfilename":"2019\/05.html","url":"2019\/05"},{"name":"June 2019","date":"2019-06-01","filename":"2019\/06.pdf","htmlfilename":"2019\/06.html","url":"2019\/06"},{"name":"July 2019","date":"2019-07-01","filename":"2019\/07.pdf","htmlfilename":"2019\/07.html","url":"2019\/07"},{"name":"August 2019","date":"2019-08-01","filename":"2019\/08.pdf","htmlfilename":"2019\/08.html","url":"2019\/08"},{"name":"September 2019","date":"2019-09-01","filename":"2019\/09.pdf","htmlfilename":"2019\/09.html","url":"2019\/09"},{"name":"October 2019","date":"2019-10-01","filename":"2019\/10.pdf","htmlfilename":"2019\/10.html","url":"2019\/10"},{"name":"November 2019","date":"2019-11-01","filename":"2019\/11.pdf","htmlfilename":"2019\/11.html","url":"2019\/11"},{"name":"December 2019","date":"2019-12-01","filename":"2019\/12.pdf","htmlfilename":"2019\/12.html","url":"2019\/12"},{"name":"January 2020","date":"2020-01-01","filename":"2020\/01.pdf","htmlfilename":"2020\/01.html","url":"2020\/01"},{"name":"February 2020","date":"2020-02-01","filename":"2020\/02.pdf","htmlfilename":"2020\/02.html","url":"2020\/02"},{"name":"June 2020","date":"2020-06-01","filename":"2020\/06.pdf","htmlfilename":"2020\/06.html","url":"2020\/06"},{"name":"July 2020","date":"2020-07-01","filename":"2020\/07.pdf","htmlfilename":"2020\/07.html","url":"2020\/07"},{"name":"August 2020","date":"2020-08-01","filename":"2020\/08.pdf","htmlfilename":"2020\/08.html","url":"2020\/08"},{"name":"September 2020","date":"2020-09-01","filename":"2020\/09.pdf","htmlfilename":"2020\/09.html","url":"2020\/09"},{"name":"October 2020","date":"2020-10-01","filename":"2020\/10.pdf","htmlfilename":"2020\/10.html","url":"2020\/10"},{"name":"November 2020","date":"2020-11-01","filename":"2020\/11.pdf","htmlfilename":"2020\/11.html","url":"2020\/11"},{"name":"December 2020","date":"2020-12-01","filename":"2020\/12.pdf","htmlfilename":"2020\/12.html","url":"2020\/12"},{"name":"January 2021","date":"2021-01-01","filename":"2021\/01.pdf","htmlfilename":"2021\/01.html","url":"2021\/01"},{"name":"February 2021","date":"2021-02-01","filename":"2021\/02.pdf","htmlfilename":"2021\/02.html","url":"2021\/02"},{"name":"March 2021","date":"2021-03-01","filename":"2021\/03.pdf","htmlfilename":"2021\/03.html","url":"2021\/03"},{"name":"April 2021","date":"2021-04-01","filename":"2021\/04.pdf","htmlfilename":"2021\/04.html","url":"2021\/04"},{"name":"May 2021","date":"2021-05-01","filename":"2021\/05.pdf","htmlfilename":"2021\/05.html","url":"2021\/05"},{"name":"June 2021","date":"2021-06-01","filename":"2021\/06.pdf","htmlfilename":"2021\/06.html","url":"2021\/06"},{"name":"July 2021","date":"2021-07-01","filename":"2021\/07.pdf","htmlfilename":"2021\/07.html","url":"2021\/07"},{"name":"August 2021","date":"2021-08-01","filename":"2021\/08.pdf","htmlfilename":"2021\/08.html","url":"2021\/08"},{"name":"September 2021","date":"2021-09-01","filename":"2021\/09.pdf","htmlfilename":"2021\/09.html","url":"2021\/09"},{"name":"October 2021","date":"2021-10-01","filename":"2021\/10.pdf","htmlfilename":"2021\/10.html","url":"2021\/10"},{"name":"November 2021","date":"2021-11-01","filename":"2021\/11.pdf","htmlfilename":"2021\/11.html","url":"2021\/11"},{"name":"December 2021","date":"2021-12-01","filename":"2021\/12.pdf","htmlfilename":"2021\/12.html","url":"2021\/12"},{"name":"January 2022","date":"2022-01-01","filename":"2022\/01.pdf","htmlfilename":"2022\/01.html","url":"2022\/01"},{"name":"February 2022","date":"2022-02-01","filename":"2022\/02.pdf","htmlfilename":"2022\/02.html","url":"2022\/02"},{"name":"March 2022","date":"2022-03-01","filename":"2022\/03.pdf","htmlfilename":"2022\/03.html","url":"2022\/03"},{"name":"April 2022","date":"2022-04-01","filename":"2022\/04.pdf","htmlfilename":"2022\/04.html","url":"2022\/04"},{"name":"May 2022","date":"2022-05-01","filename":"2022\/05.pdf","htmlfilename":"2022\/05.html","url":"2022\/05"},{"name":"June 2022","date":"2022-06-01","filename":"2022\/06.pdf","htmlfilename":"2022\/06.html","url":"2022\/06"},{"name":"July 2022","date":"2022-07-01","filename":"2022\/07.pdf","htmlfilename":"2022\/07.html","url":"2022\/07"},{"name":"August 2022","date":"2022-08-01","filename":"2022\/08.pdf","htmlfilename":"2022\/08.html","url":"2022\/08"},{"name":"September 2022","date":"2022-09-01","filename":"2022\/09.pdf","htmlfilename":"2022\/09.html","url":"2022\/09"},{"name":"October 2022","date":"2022-10-01","filename":"2022\/10.pdf","htmlfilename":"2022\/10.html","url":"2022\/10"},{"name":"November 2022","date":"2022-11-01","filename":"2022\/11.pdf","htmlfilename":"2022\/11.html","url":"2022\/11"},{"name":"December 2022","date":"2022-12-01","filename":"2022\/12.pdf","htmlfilename":"2022\/12.html","url":"2022\/12"},{"name":"January 2023","date":"2023-01-01","filename":"2023\/01.pdf","htmlfilename":"2023\/01.html","url":"2023\/01"},{"name":"February 2023","date":"2023-02-01","filename":"2023\/02.pdf","htmlfilename":"2023\/02.html","url":"2023\/02"},{"name":"March 2023","date":"2023-03-01","filename":"2023\/03.pdf","htmlfilename":"2023\/03.html","url":"2023\/03"},{"name":"April 2023","date":"2023-04-01","filename":"2023\/04.pdf","htmlfilename":"2023\/04.html","url":"2023\/04"},{"name":"May 2023","date":"2023-05-01","filename":"2023\/05.pdf","htmlfilename":"2023\/05.html","url":"2023\/05"},{"name":"June 2023","date":"2023-06-01","filename":"2023\/06.pdf","htmlfilename":"2023\/06.html","url":"2023\/06"},{"name":"July 2023","date":"2023-07-01","filename":"2023\/07.pdf","htmlfilename":"2023\/07.html","url":"2023\/07"},{"name":"August 2023","date":"2023-08-01","filename":"2023\/08.pdf","htmlfilename":"2023\/08.html","url":"2023\/08"},{"name":"September 2023","date":"2023-09-01","filename":"2023\/09.pdf","htmlfilename":"2023\/09.html","url":"2023\/09"},{"name":"October 2023","date":"2023-10-01","filename":"2023\/10.pdf","htmlfilename":"2023\/10.html","url":"2023\/10"},{"name":"November 2023","date":"2023-11-01","filename":"2023\/11.pdf","htmlfilename":"2023\/11.html","url":"2023\/11"},{"name":"December 2023","date":"2023-12-01","filename":"2023\/12.pdf","htmlfilename":"2023\/12.html","url":"2023\/12"},{"name":"January 2024","date":"2024-01-01","filename":"2024\/01.pdf","htmlfilename":"2024\/01.html","url":"2024\/01"},{"name":"February 2024","date":"2024-02-01","filename":"2024\/02.pdf","htmlfilename":"2024\/02.html","url":"2024\/02"},{"name":"March 2024","date":"2024-03-01","filename":"2024\/03.pdf","htmlfilename":"2024\/03.html","url":"2024\/03"},{"name":"April 2024","date":"2024-04-01","filename":"2024\/04.pdf","htmlfilename":"2024\/04.html","url":"2024\/04"},{"name":"May 2024","date":"2024-05-01","filename":"2024\/05.pdf","htmlfilename":"2024\/05.html","url":"2024\/05"},{"name":"June 2024","date":"2024-06-01","filename":"2024\/06.pdf","htmlfilename":"2024\/06.html","url":"2024\/06"},{"name":"July 2024","date":"2024-07-01","filename":"2024\/07.pdf","htmlfilename":"2024\/07.html","url":"2024\/07"},{"name":"August 2024","date":"2024-08-01","filename":"2024\/08.pdf","htmlfilename":"2024\/08.html","url":"2024\/08"},{"name":"September 2024","date":"2024-09-01","filename":"2024\/09.pdf","htmlfilename":"2024\/09.html","url":"2024\/09"},{"name":"October 2024","date":"2024-10-01","filename":"2024\/10.pdf","htmlfilename":"2024\/10.html","url":"2024\/10"},{"name":"November 2024","date":"2024-11-01","filename":"2024\/11.pdf","htmlfilename":"2024\/11.html","url":"2024\/11"},{"name":"December 2024","date":"2024-12-01","filename":"2024\/12.pdf","htmlfilename":"2024\/12.html","url":"2024\/12"},{"name":"January 2025","date":"2025-01-01","filename":"2025\/01.pdf","htmlfilename":"2025\/01.html","url":"2025\/01"},{"name":"February 2025","date":"2025-02-01","filename":"2025\/02.pdf","htmlfilename":"2025\/02.html","url":"2025\/02"},{"name":"March 2025","date":"2025-03-01","filename":"2025\/03.pdf","htmlfilename":"2025\/03.html","url":"2025\/03"},{"name":"April 2025","date":"2025-04-01","filename":"2025\/04.pdf","htmlfilename":"2025\/04.html","url":"2025\/04"},{"name":"May 2025","date":"2025-05-01","filename":"2025\/05.pdf","htmlfilename":"2025\/05.html","url":"2025\/05"},{"name":"June 2025","date":"2025-06-01","filename":"2025\/06.pdf","htmlfilename":"2025\/06.html","url":"2025\/06"},{"name":"July 2025","date":"2025-07-01","filename":"2025\/07.pdf","htmlfilename":"2025\/07.html","url":"2025\/07"},{"name":"August 2025","date":"2025-08-01","filename":"2025\/08.pdf","htmlfilename":"2025\/08.html","url":"2025\/08"},{"name":"September 2025","date":"2025-09-01","filename":"2025\/09.pdf","htmlfilename":"2025\/09.html","url":"2025\/09"},{"name":"October 2025","date":"2025-10-01","filename":"2025\/10.pdf","htmlfilename":"2025\/10.html","url":"2025\/10"},{"name":"November 2025","date":"2025-11-01","filename":"2025\/11.pdf","htmlfilename":"2025\/11.html","url":"2025\/11"},{"name":"December 2025","date":"2025-12-01","filename":"2025\/12.pdf","htmlfilename":"2025\/12.html","url":"2025\/12"},{"name":"January 2026","date":"2026-01-01","filename":"2026\/01.pdf","htmlfilename":"2026\/01.html","url":"2026\/01"},{"name":"February 2026","date":"2026-02-01","filename":"2026\/02.pdf","htmlfilename":"2026\/02.html","url":"2026\/02"},{"name":"March 2026","date":"2026-03-01","filename":"2026\/03.pdf","htmlfilename":"2026\/03.html","url":"2026\/03"},{"name":"April 2026","date":"2026-04-01","filename":"2026\/04.pdf","htmlfilename":"2026\/04.html","url":"2026\/04"},{"name":"May 2026","date":"2026-05-01","filename":"2026\/05.pdf","htmlfilename":"2026\/05.html","url":"2026\/05"},{"name":"June 2026","date":"2026-06-01","filename":"2026\/06.pdf","htmlfilename":"2026\/06.html","url":"2026\/06"},{"name":"July 2026","date":"2026-07-01","filename":"2026\/07.pdf","htmlfilename":"2026\/07.html","url":"2026\/07"},{"name":"August 2026","date":"2026-08-01","filename":"2026\/08.pdf","htmlfilename":"2026\/08.html","url":"2026\/08"},{"name":"September 2026","date":"2026-09-01","filename":"2026\/09.pdf","htmlfilename":"2026\/09.html","url":"2026\/09"},{"name":"October 2026","date":"2026-10-01","filename":"2026\/10.pdf","htmlfilename":"2026\/10.html","url":"2026\/10"},{"name":"November 2026","date":"2026-11-01","filename":"2026\/11.pdf","htmlfilename":"2026\/11.html","url":"2026\/11"},{"name":"December 2026","date":"2026-12-01","filename":"2026\/12.pdf","htmlfilename":"2026\/12.html","url":"2026\/12"}]}
\ No newline at end of file
+{"schedule":[{"date":"2014-09-01","groups":[{"time":"13:07:00","height":"4.2"}],"sunrise":"06:26","sunset":"20:06"},{"date":"2014-09-02","groups":[{"time":"01:29:00","height":"4.1"},{"time":"14:00:00","height":"3.9"}],"sunrise":"06:28","sunset":"20:03"},{"date":"2014-09-03","groups":[{"time":"02:30:00","height":"3.8"},{"time":"15:14:00","height":"3.7"}],"sunrise":"06:30","sunset":"20:01"},{"date":"2014-09-04","groups":[{"time":"03:56:00","height":"3.6"},{"time":"16:48:00","height":"3.7"}],"sunrise":"06:31","sunset":"19:59"},{"date":"2014-09-05","groups":[{"time":"05:27:00","height":"3.7"},{"time":"18:08:00","height":"4.0"}],"sunrise":"06:33","sunset":"19:56"},{"date":"2014-09-06","groups":[{"time":"06:41:00","height":"4.1"},{"time":"19:12:00","height":"4.5"}],"sunrise":"06:35","sunset":"19:54"},{"date":"2014-09-07","groups":[{"time":"07:41:00","height":"4.6"},{"time":"20:04:00","height":"5.1"}],"sunrise":"06:36","sunset":"19:52"},{"date":"2014-09-08","groups":[{"time":"08:31:00","height":"5.1"},{"time":"20:52:00","height":"5.5"}],"sunrise":"06:38","sunset":"19:49"},{"date":"2014-09-09","groups":[{"time":"09:16:00","height":"5.4"},{"time":"21:35:00","height":"5.8"}],"sunrise":"06:40","sunset":"19:47"},{"date":"2014-09-10","groups":[{"time":"09:58:00","height":"5.6"},{"time":"22:18:00","height":"5.8"}],"sunrise":"06:42","sunset":"19:44"},{"date":"2014-09-11","groups":[{"time":"10:38:00","height":"5.6"},{"time":"22:58:00","height":"5.7"}],"sunrise":"06:43","sunset":"19:42"},{"date":"2014-09-12","groups":[{"time":"11:18:00","height":"5.4"},{"time":"23:41:00","height":"5.4"}],"sunrise":"06:45","sunset":"19:40"},{"date":"2014-09-13","groups":[{"time":"12:02:00","height":"5.1"}],"sunrise":"06:47","sunset":"19:37"},{"date":"2014-09-14","groups":[{"time":"00:25:00","height":"5.0"},{"time":"12:45:00","height":"4.7"}],"sunrise":"06:48","sunset":"19:35"},{"date":"2014-09-15","groups":[{"time":"01:11:00","height":"4.5"},{"time":"13:30:00","height":"4.2"}],"sunrise":"06:50","sunset":"19:32"},{"date":"2014-09-16","groups":[{"time":"02:01:00","height":"3.9"},{"time":"14:26:00","height":"3.7"}],"sunrise":"06:52","sunset":"19:30"},{"date":"2014-09-17","groups":[{"time":"03:05:00","height":"3.5"},{"time":"15:44:00","height":"3.4"}],"sunrise":"06:53","sunset":"19:28"},{"date":"2014-09-18","groups":[{"time":"04:35:00","height":"3.2"},{"time":"17:18:00","height":"3.4"}],"sunrise":"06:55","sunset":"19:25"},{"date":"2014-09-19","groups":[{"time":"05:58:00","height":"3.4"},{"time":"18:31:00","height":"3.7"}],"sunrise":"06:57","sunset":"19:23"},{"date":"2014-09-20","groups":[{"time":"07:00:00","height":"3.7"},{"time":"19:23:00","height":"4.1"}],"sunrise":"06:58","sunset":"19:20"},{"date":"2014-09-21","groups":[{"time":"07:44:00","height":"4.1"},{"time":"20:01:00","height":"4.4"}],"sunrise":"07:00","sunset":"19:18"},{"date":"2014-09-22","groups":[{"time":"08:20:00","height":"4.4"},{"time":"20:35:00","height":"4.7"}],"sunrise":"07:02","sunset":"19:16"},{"date":"2014-09-23","groups":[{"time":"08:53:00","height":"4.7"},{"time":"21:06:00","height":"4.9"}],"sunrise":"07:04","sunset":"19:13"},{"date":"2014-09-24","groups":[{"time":"09:23:00","height":"4.9"},{"time":"21:36:00","height":"5.0"}],"sunrise":"07:05","sunset":"19:11"},{"date":"2014-09-25","groups":[{"time":"09:52:00","height":"5.0"},{"time":"22:05:00","height":"5.1"}],"sunrise":"07:07","sunset":"19:08"},{"date":"2014-09-26","groups":[{"time":"10:21:00","height":"5.0"},{"time":"22:34:00","height":"5.1"}],"sunrise":"07:09","sunset":"19:06"},{"date":"2014-09-27","groups":[{"time":"10:50:00","height":"5.0"},{"time":"23:04:00","height":"5.0"}],"sunrise":"07:10","sunset":"19:04"},{"date":"2014-09-28","groups":[{"time":"11:23:00","height":"4.9"},{"time":"23:39:00","height":"4.8"}],"sunrise":"07:12","sunset":"19:01"},{"date":"2014-09-29","groups":[{"time":"12:00:00","height":"4.7"}],"sunrise":"07:14","sunset":"18:59"},{"date":"2014-09-30","groups":[{"time":"00:20:00","height":"4.5"},{"time":"12:44:00","height":"4.4"}],"sunrise":"07:16","sunset":"18:56"},{"date":"2014-10-01","groups":[{"time":"01:08:00","height":"4.2"},{"time":"13:39:00","height":"4.1"}],"sunrise":"07:17","sunset":"18:54"},{"date":"2014-10-02","groups":[{"time":"02:12:00","height":"3.8"},{"time":"14:55:00","height":"3.8"}],"sunrise":"07:19","sunset":"18:52"},{"date":"2014-10-03","groups":[{"time":"03:38:00","height":"3.6"},{"time":"16:30:00","height":"3.8"}],"sunrise":"07:21","sunset":"18:49"},{"date":"2014-10-04","groups":[{"time":"05:13:00","height":"3.7"},{"time":"17:52:00","height":"4.1"}],"sunrise":"07:23","sunset":"18:47"},{"date":"2014-10-05","groups":[{"time":"06:27:00","height":"4.1"},{"time":"18:55:00","height":"4.6"}],"sunrise":"07:24","sunset":"18:45"},{"date":"2014-10-06","groups":[{"time":"07:25:00","height":"4.7"},{"time":"19:47:00","height":"5.1"}],"sunrise":"07:26","sunset":"18:42"},{"date":"2014-10-07","groups":[{"time":"08:13:00","height":"5.1"},{"time":"20:34:00","height":"5.5"}],"sunrise":"07:28","sunset":"18:40"},{"date":"2014-10-08","groups":[{"time":"08:57:00","height":"5.4"},{"time":"21:17:00","height":"5.7"}],"sunrise":"07:30","sunset":"18:38"},{"date":"2014-10-09","groups":[{"time":"09:37:00","height":"5.6"},{"time":"21:58:00","height":"5.7"}],"sunrise":"07:31","sunset":"18:35"},{"date":"2014-10-10","groups":[{"time":"10:16:00","height":"5.6"},{"time":"22:37:00","height":"5.6"}],"sunrise":"07:33","sunset":"18:33"},{"date":"2014-10-11","groups":[{"time":"10:54:00","height":"5.4"},{"time":"23:14:00","height":"5.3"}],"sunrise":"07:35","sunset":"18:31"},{"date":"2014-10-12","groups":[{"time":"11:32:00","height":"5.1"},{"time":"23:56:00","height":"4.9"}],"sunrise":"07:37","sunset":"18:28"},{"date":"2014-10-13","groups":[{"time":"12:15:00","height":"4.7"}],"sunrise":"07:39","sunset":"18:26"},{"date":"2014-10-14","groups":[{"time":"00:39:00","height":"4.4"},{"time":"12:58:00","height":"4.3"}],"sunrise":"07:40","sunset":"18:24"},{"date":"2014-10-15","groups":[{"time":"01:25:00","height":"3.9"},{"time":"13:48:00","height":"3.8"}],"sunrise":"07:42","sunset":"18:21"},{"date":"2014-10-16","groups":[{"time":"02:22:00","height":"3.5"},{"time":"14:54:00","height":"3.5"}],"sunrise":"07:44","sunset":"18:19"},{"date":"2014-10-17","groups":[{"time":"03:43:00","height":"3.2"},{"time":"16:29:00","height":"3.4"}],"sunrise":"07:46","sunset":"18:17"},{"date":"2014-10-18","groups":[{"time":"05:16:00","height":"3.3"},{"time":"17:49:00","height":"3.6"}],"sunrise":"07:48","sunset":"18:15"},{"date":"2014-10-19","groups":[{"time":"06:22:00","height":"3.6"},{"time":"18:45:00","height":"3.9"}],"sunrise":"07:49","sunset":"18:13"},{"date":"2014-10-20","groups":[{"time":"07:11:00","height":"4.0"},{"time":"19:28:00","height":"4.3"}],"sunrise":"07:51","sunset":"18:10"},{"date":"2014-10-21","groups":[{"time":"07:48:00","height":"4.3"},{"time":"20:03:00","height":"4.6"}],"sunrise":"07:53","sunset":"18:08"},{"date":"2014-10-22","groups":[{"time":"08:22:00","height":"4.7"},{"time":"20:36:00","height":"4.8"}],"sunrise":"07:55","sunset":"18:06"},{"date":"2014-10-23","groups":[{"time":"08:54:00","height":"4.9"},{"time":"21:08:00","height":"5.0"}],"sunrise":"07:57","sunset":"18:04"},{"date":"2014-10-24","groups":[{"time":"09:25:00","height":"5.1"},{"time":"21:39:00","height":"5.1"}],"sunrise":"07:59","sunset":"18:02"},{"date":"2014-10-25","groups":[{"time":"09:57:00","height":"5.2"},{"time":"22:11:00","height":"5.1"}],"sunrise":"08:00","sunset":"18:00"},{"date":"2014-10-26","groups":[{"time":"10:29:00","height":"5.2"},{"time":"22:45:00","height":"5.1"}],"sunrise":"08:02","sunset":"17:58"},{"date":"2014-10-27","groups":[{"time":"10:03:00","height":"5.1"},{"time":"22:23:00","height":"4.9"}],"sunrise":"07:04","sunset":"16:56"},{"date":"2014-10-28","groups":[{"time":"10:44:00","height":"4.9"},{"time":"23:07:00","height":"4.7"}],"sunrise":"07:06","sunset":"16:54"},{"date":"2014-10-29","groups":[{"time":"11:33:00","height":"4.6"},{"time":"23:59:00","height":"4.3"}],"sunrise":"07:08","sunset":"16:52"},{"date":"2014-10-30","groups":[{"time":"12:31:00","height":"4.3"}],"sunrise":"07:10","sunset":"16:50"},{"date":"2014-10-31","groups":[{"time":"01:05:00","height":"4.0"},{"time":"13:45:00","height":"4.0"}],"sunrise":"07:12","sunset":"16:48"},{"date":"2014-11-01","groups":[{"time":"02:27:00","height":"3.8"},{"time":"15:13:00","height":"4.0"}],"sunrise":"07:13","sunset":"16:46"},{"date":"2014-11-02","groups":[{"time":"03:55:00","height":"3.8"},{"time":"16:30:00","height":"4.2"}],"sunrise":"07:15","sunset":"16:44"},{"date":"2014-11-03","groups":[{"time":"05:06:00","height":"4.2"},{"time":"17:34:00","height":"4.6"}],"sunrise":"07:17","sunset":"16:42"},{"date":"2014-11-04","groups":[{"time":"06:04:00","height":"4.6"},{"time":"18:28:00","height":"5.0"}],"sunrise":"07:19","sunset":"16:40"},{"date":"2014-11-05","groups":[{"time":"06:54:00","height":"5.0"},{"time":"19:15:00","height":"5.2"}],"sunrise":"07:21","sunset":"16:38"},{"date":"2014-11-06","groups":[{"time":"07:37:00","height":"5.2"},{"time":"19:58:00","height":"5.4"}],"sunrise":"07:23","sunset":"16:37"},{"date":"2014-11-07","groups":[{"time":"08:18:00","height":"5.4"},{"time":"20:38:00","height":"5.4"}],"sunrise":"07:25","sunset":"16:35"},{"date":"2014-11-08","groups":[{"time":"08:56:00","height":"5.4"},{"time":"21:17:00","height":"5.3"}],"sunrise":"07:26","sunset":"16:33"},{"date":"2014-11-09","groups":[{"time":"09:33:00","height":"5.3"},{"time":"21:54:00","height":"5.1"}],"sunrise":"07:28","sunset":"16:31"},{"date":"2014-11-10","groups":[{"time":"10:09:00","height":"5.0"},{"time":"22:32:00","height":"4.8"}],"sunrise":"07:30","sunset":"16:30"},{"date":"2014-11-11","groups":[{"time":"10:49:00","height":"4.7"},{"time":"23:13:00","height":"4.4"}],"sunrise":"07:32","sunset":"16:28"},{"date":"2014-11-12","groups":[{"time":"11:30:00","height":"4.4"},{"time":"23:56:00","height":"4.1"}],"sunrise":"07:34","sunset":"16:26"},{"date":"2014-11-13","groups":[{"time":"12:15:00","height":"4.1"}],"sunrise":"07:36","sunset":"16:25"},{"date":"2014-11-14","groups":[{"time":"00:46:00","height":"3.7"},{"time":"13:09:00","height":"3.7"}],"sunrise":"07:38","sunset":"16:23"},{"date":"2014-11-15","groups":[{"time":"01:47:00","height":"3.4"},{"time":"14:20:00","height":"3.5"}],"sunrise":"07:39","sunset":"16:22"},{"date":"2014-11-16","groups":[{"time":"03:10:00","height":"3.3"},{"time":"15:47:00","height":"3.5"}],"sunrise":"07:41","sunset":"16:20"},{"date":"2014-11-17","groups":[{"time":"04:28:00","height":"3.4"},{"time":"16:53:00","height":"3.7"}],"sunrise":"07:43","sunset":"16:19"},{"date":"2014-11-18","groups":[{"time":"05:25:00","height":"3.7"},{"time":"17:44:00","height":"4.0"}],"sunrise":"07:45","sunset":"16:18"},{"date":"2014-11-19","groups":[{"time":"06:10:00","height":"4.1"},{"time":"18:27:00","height":"4.3"}],"sunrise":"07:46","sunset":"16:16"},{"date":"2014-11-20","groups":[{"time":"06:48:00","height":"4.5"},{"time":"19:04:00","height":"4.6"}],"sunrise":"07:48","sunset":"16:15"},{"date":"2014-11-21","groups":[{"time":"07:24:00","height":"4.8"},{"time":"19:40:00","height":"4.9"}],"sunrise":"07:50","sunset":"16:14"},{"date":"2014-11-22","groups":[{"time":"08:00:00","height":"5.0"},{"time":"20:16:00","height":"5.1"}],"sunrise":"07:52","sunset":"16:13"},{"date":"2014-11-23","groups":[{"time":"08:36:00","height":"5.2"},{"time":"20:53:00","height":"5.2"}],"sunrise":"07:53","sunset":"16:11"},{"date":"2014-11-24","groups":[{"time":"09:13:00","height":"5.3"},{"time":"21:32:00","height":"5.2"}],"sunrise":"07:55","sunset":"16:10"},{"date":"2014-11-25","groups":[{"time":"09:52:00","height":"5.2"},{"time":"22:13:00","height":"5.0"}],"sunrise":"07:57","sunset":"16:09"},{"date":"2014-11-26","groups":[{"time":"10:37:00","height":"5.1"},{"time":"23:02:00","height":"4.8"}],"sunrise":"07:58","sunset":"16:08"},{"date":"2014-11-27","groups":[{"time":"11:29:00","height":"4.9"},{"time":"23:56:00","height":"4.5"}],"sunrise":"08:00","sunset":"16:07"},{"date":"2014-11-28","groups":[{"time":"12:26:00","height":"4.6"}],"sunrise":"08:01","sunset":"16:06"},{"date":"2014-11-29","groups":[{"time":"00:59:00","height":"4.2"},{"time":"13:33:00","height":"4.4"}],"sunrise":"08:03","sunset":"16:06"},{"date":"2014-11-30","groups":[{"time":"02:09:00","height":"4.0"},{"time":"14:48:00","height":"4.2"}],"sunrise":"08:04","sunset":"16:05"},{"date":"2014-12-01","groups":[{"time":"03:29:00","height":"4.0"},{"time":"16:03:00","height":"4.2"}],"sunrise":"08:06","sunset":"16:04"},{"date":"2014-12-02","groups":[{"time":"04:38:00","height":"4.1"},{"time":"17:08:00","height":"4.4"}],"sunrise":"08:07","sunset":"16:03"},{"date":"2014-12-03","groups":[{"time":"05:40:00","height":"4.4"},{"time":"18:05:00","height":"4.6"}],"sunrise":"08:09","sunset":"16:03"},{"date":"2014-12-04","groups":[{"time":"06:33:00","height":"4.6"},{"time":"18:57:00","height":"4.8"}],"sunrise":"08:10","sunset":"16:02"},{"date":"2014-12-05","groups":[{"time":"07:20:00","height":"4.9"},{"time":"19:42:00","height":"5.0"}],"sunrise":"08:12","sunset":"16:02"},{"date":"2014-12-06","groups":[{"time":"08:03:00","height":"5.0"},{"time":"20:22:00","height":"5.0"}],"sunrise":"08:13","sunset":"16:01"},{"date":"2014-12-07","groups":[{"time":"08:41:00","height":"5.1"},{"time":"21:01:00","height":"5.0"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2014-12-08","groups":[{"time":"09:18:00","height":"5.1"},{"time":"21:38:00","height":"4.9"}],"sunrise":"08:15","sunset":"16:00"},{"date":"2014-12-09","groups":[{"time":"09:53:00","height":"5.0"},{"time":"22:12:00","height":"4.7"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2014-12-10","groups":[{"time":"10:28:00","height":"4.8"},{"time":"22:51:00","height":"4.5"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2014-12-11","groups":[{"time":"11:07:00","height":"4.6"},{"time":"23:30:00","height":"4.3"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2014-12-12","groups":[{"time":"11:46:00","height":"4.3"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2014-12-13","groups":[{"time":"00:12:00","height":"4.0"},{"time":"12:30:00","height":"4.1"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2014-12-14","groups":[{"time":"01:00:00","height":"3.7"},{"time":"13:22:00","height":"3.8"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2014-12-15","groups":[{"time":"01:58:00","height":"3.5"},{"time":"14:26:00","height":"3.6"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2014-12-16","groups":[{"time":"03:11:00","height":"3.4"},{"time":"15:42:00","height":"3.6"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2014-12-17","groups":[{"time":"04:23:00","height":"3.5"},{"time":"16:49:00","height":"3.7"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2014-12-18","groups":[{"time":"05:23:00","height":"3.8"},{"time":"17:43:00","height":"4.0"}],"sunrise":"08:25","sunset":"16:00"},{"date":"2014-12-19","groups":[{"time":"06:12:00","height":"4.2"},{"time":"18:30:00","height":"4.3"}],"sunrise":"08:25","sunset":"16:01"},{"date":"2014-12-20","groups":[{"time":"06:56:00","height":"4.6"},{"time":"19:15:00","height":"4.7"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2014-12-21","groups":[{"time":"07:37:00","height":"4.9"},{"time":"19:57:00","height":"5.0"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2014-12-22","groups":[{"time":"08:19:00","height":"5.2"},{"time":"20:40:00","height":"5.2"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2014-12-23","groups":[{"time":"09:01:00","height":"5.4"},{"time":"21:22:00","height":"5.3"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2014-12-24","groups":[{"time":"09:43:00","height":"5.4"},{"time":"22:06:00","height":"5.2"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2014-12-25","groups":[{"time":"10:29:00","height":"5.4"},{"time":"22:55:00","height":"5.1"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2014-12-26","groups":[{"time":"11:21:00","height":"5.2"},{"time":"23:47:00","height":"4.9"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2014-12-27","groups":[{"time":"12:15:00","height":"5.0"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2014-12-28","groups":[{"time":"00:42:00","height":"4.6"},{"time":"13:13:00","height":"4.7"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2014-12-29","groups":[{"time":"01:43:00","height":"4.2"},{"time":"14:18:00","height":"4.4"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2014-12-30","groups":[{"time":"02:52:00","height":"4.0"},{"time":"15:30:00","height":"4.2"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2014-12-31","groups":[{"time":"04:06:00","height":"3.9"},{"time":"16:38:00","height":"4.1"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2015-01-01","groups":[{"time":"05:13:00","height":"4.0"},{"time":"17:43:00","height":"4.2"}],"sunrise":"08:29","sunset":"16:10"},{"date":"2015-01-02","groups":[{"time":"06:15:00","height":"4.2"},{"time":"18:41:00","height":"4.4"}],"sunrise":"08:29","sunset":"16:11"},{"date":"2015-01-03","groups":[{"time":"07:06:00","height":"4.5"},{"time":"19:29:00","height":"4.6"}],"sunrise":"08:28","sunset":"16:12"},{"date":"2015-01-04","groups":[{"time":"07:50:00","height":"4.7"},{"time":"20:11:00","height":"4.7"}],"sunrise":"08:28","sunset":"16:14"},{"date":"2015-01-05","groups":[{"time":"08:29:00","height":"4.9"},{"time":"20:49:00","height":"4.8"}],"sunrise":"08:28","sunset":"16:15"},{"date":"2015-01-06","groups":[{"time":"09:05:00","height":"5.0"},{"time":"21:22:00","height":"4.8"}],"sunrise":"08:27","sunset":"16:16"},{"date":"2015-01-07","groups":[{"time":"09:37:00","height":"5.0"},{"time":"21:54:00","height":"4.8"}],"sunrise":"08:27","sunset":"16:17"},{"date":"2015-01-08","groups":[{"time":"10:09:00","height":"4.9"},{"time":"22:28:00","height":"4.7"}],"sunrise":"08:26","sunset":"16:19"},{"date":"2015-01-09","groups":[{"time":"10:43:00","height":"4.8"},{"time":"23:03:00","height":"4.5"}],"sunrise":"08:26","sunset":"16:20"},{"date":"2015-01-10","groups":[{"time":"11:18:00","height":"4.6"},{"time":"23:39:00","height":"4.3"}],"sunrise":"08:25","sunset":"16:22"},{"date":"2015-01-11","groups":[{"time":"11:56:00","height":"4.3"}],"sunrise":"08:25","sunset":"16:23"},{"date":"2015-01-12","groups":[{"time":"00:18:00","height":"4.0"},{"time":"12:37:00","height":"4.1"}],"sunrise":"08:24","sunset":"16:25"},{"date":"2015-01-13","groups":[{"time":"01:03:00","height":"3.8"},{"time":"13:26:00","height":"3.8"}],"sunrise":"08:23","sunset":"16:26"},{"date":"2015-01-14","groups":[{"time":"01:59:00","height":"3.5"},{"time":"14:27:00","height":"3.6"}],"sunrise":"08:22","sunset":"16:28"},{"date":"2015-01-15","groups":[{"time":"03:11:00","height":"3.4"},{"time":"15:44:00","height":"3.5"}],"sunrise":"08:21","sunset":"16:29"},{"date":"2015-01-16","groups":[{"time":"04:28:00","height":"3.5"},{"time":"16:57:00","height":"3.7"}],"sunrise":"08:20","sunset":"16:31"},{"date":"2015-01-17","groups":[{"time":"05:34:00","height":"3.9"},{"time":"17:59:00","height":"4.0"}],"sunrise":"08:19","sunset":"16:33"},{"date":"2015-01-18","groups":[{"time":"06:28:00","height":"4.3"},{"time":"18:53:00","height":"4.5"}],"sunrise":"08:18","sunset":"16:34"},{"date":"2015-01-19","groups":[{"time":"07:17:00","height":"4.8"},{"time":"19:41:00","height":"4.9"}],"sunrise":"08:17","sunset":"16:36"},{"date":"2015-01-20","groups":[{"time":"08:03:00","height":"5.2"},{"time":"20:27:00","height":"5.2"}],"sunrise":"08:16","sunset":"16:38"},{"date":"2015-01-21","groups":[{"time":"08:49:00","height":"5.5"},{"time":"21:11:00","height":"5.4"}],"sunrise":"08:15","sunset":"16:40"},{"date":"2015-01-22","groups":[{"time":"09:33:00","height":"5.7"},{"time":"21:54:00","height":"5.5"}],"sunrise":"08:14","sunset":"16:41"},{"date":"2015-01-23","groups":[{"time":"10:16:00","height":"5.7"},{"time":"22:41:00","height":"5.4"}],"sunrise":"08:12","sunset":"16:43"},{"date":"2015-01-24","groups":[{"time":"11:06:00","height":"5.5"},{"time":"23:30:00","height":"5.2"}],"sunrise":"08:11","sunset":"16:45"},{"date":"2015-01-25","groups":[{"time":"11:56:00","height":"5.3"}],"sunrise":"08:10","sunset":"16:47"},{"date":"2015-01-26","groups":[{"time":"00:20:00","height":"4.8"},{"time":"12:48:00","height":"4.8"}],"sunrise":"08:08","sunset":"16:49"},{"date":"2015-01-27","groups":[{"time":"01:13:00","height":"4.4"},{"time":"13:44:00","height":"4.4"}],"sunrise":"08:07","sunset":"16:50"},{"date":"2015-01-28","groups":[{"time":"02:14:00","height":"4.0"},{"time":"14:52:00","height":"4.0"}],"sunrise":"08:05","sunset":"16:52"},{"date":"2015-01-29","groups":[{"time":"03:30:00","height":"3.7"},{"time":"16:07:00","height":"3.7"}],"sunrise":"08:04","sunset":"16:54"},{"date":"2015-01-30","groups":[{"time":"04:46:00","height":"3.7"},{"time":"17:22:00","height":"3.8"}],"sunrise":"08:02","sunset":"16:56"},{"date":"2015-01-31","groups":[{"time":"05:57:00","height":"3.9"},{"time":"18:27:00","height":"4.0"}],"sunrise":"08:01","sunset":"16:58"},{"date":"2015-02-01","groups":[{"time":"06:54:00","height":"4.2"},{"time":"19:16:00","height":"4.3"}],"sunrise":"07:59","sunset":"17:00"},{"date":"2015-02-02","groups":[{"time":"07:37:00","height":"4.5"},{"time":"19:57:00","height":"4.5"}],"sunrise":"07:58","sunset":"17:02"},{"date":"2015-02-03","groups":[{"time":"08:15:00","height":"4.7"},{"time":"20:33:00","height":"4.7"}],"sunrise":"07:56","sunset":"17:04"},{"date":"2015-02-04","groups":[{"time":"08:49:00","height":"4.9"},{"time":"21:05:00","height":"4.8"}],"sunrise":"07:54","sunset":"17:06"},{"date":"2015-02-05","groups":[{"time":"09:19:00","height":"4.9"},{"time":"21:35:00","height":"4.8"}],"sunrise":"07:52","sunset":"17:08"},{"date":"2015-02-06","groups":[{"time":"09:48:00","height":"4.9"},{"time":"22:04:00","height":"4.8"}],"sunrise":"07:51","sunset":"17:09"},{"date":"2015-02-07","groups":[{"time":"10:17:00","height":"4.9"},{"time":"22:34:00","height":"4.7"}],"sunrise":"07:49","sunset":"17:11"},{"date":"2015-02-08","groups":[{"time":"10:50:00","height":"4.8"},{"time":"23:07:00","height":"4.5"}],"sunrise":"07:47","sunset":"17:13"},{"date":"2015-02-09","groups":[{"time":"11:22:00","height":"4.6"},{"time":"23:42:00","height":"4.3"}],"sunrise":"07:45","sunset":"17:15"},{"date":"2015-02-10","groups":[{"time":"11:58:00","height":"4.3"}],"sunrise":"07:43","sunset":"17:17"},{"date":"2015-02-11","groups":[{"time":"00:18:00","height":"4.0"},{"time":"12:39:00","height":"4.0"}],"sunrise":"07:41","sunset":"17:19"},{"date":"2015-02-12","groups":[{"time":"01:06:00","height":"3.8"},{"time":"13:32:00","height":"3.7"}],"sunrise":"07:39","sunset":"17:21"},{"date":"2015-02-13","groups":[{"time":"02:10:00","height":"3.5"},{"time":"14:46:00","height":"3.5"}],"sunrise":"07:37","sunset":"17:23"},{"date":"2015-02-14","groups":[{"time":"03:36:00","height":"3.4"},{"time":"16:14:00","height":"3.5"}],"sunrise":"07:35","sunset":"17:25"},{"date":"2015-02-15","groups":[{"time":"04:58:00","height":"3.7"},{"time":"17:32:00","height":"3.8"}],"sunrise":"07:33","sunset":"17:27"},{"date":"2015-02-16","groups":[{"time":"06:05:00","height":"4.1"},{"time":"18:33:00","height":"4.3"}],"sunrise":"07:31","sunset":"17:29"},{"date":"2015-02-17","groups":[{"time":"07:00:00","height":"4.7"},{"time":"19:25:00","height":"4.8"}],"sunrise":"07:29","sunset":"17:31"},{"date":"2015-02-18","groups":[{"time":"07:47:00","height":"5.2"},{"time":"20:12:00","height":"5.2"}],"sunrise":"07:27","sunset":"17:33"},{"date":"2015-02-19","groups":[{"time":"08:34:00","height":"5.6"},{"time":"20:56:00","height":"5.5"}],"sunrise":"07:25","sunset":"17:35"},{"date":"2015-02-20","groups":[{"time":"09:17:00","height":"5.8"},{"time":"21:38:00","height":"5.6"}],"sunrise":"07:23","sunset":"17:37"},{"date":"2015-02-21","groups":[{"time":"09:59:00","height":"5.9"},{"time":"22:20:00","height":"5.6"}],"sunrise":"07:21","sunset":"17:38"},{"date":"2015-02-22","groups":[{"time":"10:44:00","height":"5.7"},{"time":"23:07:00","height":"5.3"}],"sunrise":"07:19","sunset":"17:40"},{"date":"2015-02-23","groups":[{"time":"11:32:00","height":"5.4"},{"time":"23:52:00","height":"4.9"}],"sunrise":"07:17","sunset":"17:42"},{"date":"2015-02-24","groups":[{"time":"12:20:00","height":"4.9"}],"sunrise":"07:14","sunset":"17:44"},{"date":"2015-02-25","groups":[{"time":"00:41:00","height":"4.5"},{"time":"13:12:00","height":"4.3"}],"sunrise":"07:12","sunset":"17:46"},{"date":"2015-02-26","groups":[{"time":"01:36:00","height":"4.0"},{"time":"14:13:00","height":"3.8"}],"sunrise":"07:10","sunset":"17:48"},{"date":"2015-02-27","groups":[{"time":"02:48:00","height":"3.6"},{"time":"15:35:00","height":"3.4"}],"sunrise":"07:08","sunset":"17:50"},{"date":"2015-02-28","groups":[{"time":"04:16:00","height":"3.4"},{"time":"16:57:00","height":"3.4"}],"sunrise":"07:06","sunset":"17:52"},{"date":"2015-03-01","groups":[{"time":"05:36:00","height":"3.6"},{"time":"18:08:00","height":"3.7"}],"sunrise":"07:03","sunset":"17:54"},{"date":"2015-03-02","groups":[{"time":"06:34:00","height":"4.0"},{"time":"18:59:00","height":"4.1"}],"sunrise":"07:01","sunset":"17:55"},{"date":"2015-03-03","groups":[{"time":"07:18:00","height":"4.4"},{"time":"19:37:00","height":"4.4"}],"sunrise":"06:59","sunset":"17:57"},{"date":"2015-03-04","groups":[{"time":"07:54:00","height":"4.6"},{"time":"20:11:00","height":"4.6"}],"sunrise":"06:56","sunset":"17:59"},{"date":"2015-03-05","groups":[{"time":"08:27:00","height":"4.8"},{"time":"20:43:00","height":"4.8"}],"sunrise":"06:54","sunset":"18:01"},{"date":"2015-03-06","groups":[{"time":"08:56:00","height":"4.9"},{"time":"21:11:00","height":"4.9"}],"sunrise":"06:52","sunset":"18:03"},{"date":"2015-03-07","groups":[{"time":"09:24:00","height":"5.0"},{"time":"21:38:00","height":"4.9"}],"sunrise":"06:50","sunset":"18:05"},{"date":"2015-03-08","groups":[{"time":"09:52:00","height":"4.9"},{"time":"22:06:00","height":"4.8"}],"sunrise":"06:47","sunset":"18:07"},{"date":"2015-03-09","groups":[{"time":"10:19:00","height":"4.8"},{"time":"22:37:00","height":"4.7"}],"sunrise":"06:45","sunset":"18:08"},{"date":"2015-03-10","groups":[{"time":"10:52:00","height":"4.7"},{"time":"23:09:00","height":"4.5"}],"sunrise":"06:43","sunset":"18:10"},{"date":"2015-03-11","groups":[{"time":"11:26:00","height":"4.5"},{"time":"23:46:00","height":"4.3"}],"sunrise":"06:40","sunset":"18:12"},{"date":"2015-03-12","groups":[{"time":"12:05:00","height":"4.2"}],"sunrise":"06:38","sunset":"18:14"},{"date":"2015-03-13","groups":[{"time":"00:30:00","height":"4.0"},{"time":"12:55:00","height":"3.8"}],"sunrise":"06:35","sunset":"18:16"},{"date":"2015-03-14","groups":[{"time":"01:30:00","height":"3.7"},{"time":"14:07:00","height":"3.5"}],"sunrise":"06:33","sunset":"18:17"},{"date":"2015-03-15","groups":[{"time":"02:57:00","height":"3.5"},{"time":"15:43:00","height":"3.4"}],"sunrise":"06:31","sunset":"18:19"},{"date":"2015-03-16","groups":[{"time":"04:28:00","height":"3.6"},{"time":"17:08:00","height":"3.7"}],"sunrise":"06:28","sunset":"18:21"},{"date":"2015-03-17","groups":[{"time":"05:41:00","height":"4.1"},{"time":"18:13:00","height":"4.3"}],"sunrise":"06:26","sunset":"18:23"},{"date":"2015-03-18","groups":[{"time":"06:39:00","height":"4.7"},{"time":"19:07:00","height":"4.8"}],"sunrise":"06:24","sunset":"18:25"},{"date":"2015-03-19","groups":[{"time":"07:29:00","height":"5.2"},{"time":"19:53:00","height":"5.2"}],"sunrise":"06:21","sunset":"18:27"},{"date":"2015-03-20","groups":[{"time":"08:15:00","height":"5.6"},{"time":"20:36:00","height":"5.6"}],"sunrise":"06:19","sunset":"18:28"},{"date":"2015-03-21","groups":[{"time":"08:58:00","height":"5.8"},{"time":"21:19:00","height":"5.7"}],"sunrise":"06:16","sunset":"18:30"},{"date":"2015-03-22","groups":[{"time":"09:39:00","height":"5.8"},{"time":"21:58:00","height":"5.6"}],"sunrise":"06:14","sunset":"18:32"},{"date":"2015-03-23","groups":[{"time":"10:20:00","height":"5.6"},{"time":"22:41:00","height":"5.4"}],"sunrise":"06:12","sunset":"18:34"},{"date":"2015-03-24","groups":[{"time":"11:06:00","height":"5.3"},{"time":"23:25:00","height":"5.0"}],"sunrise":"06:09","sunset":"18:35"},{"date":"2015-03-25","groups":[{"time":"11:51:00","height":"4.8"}],"sunrise":"06:07","sunset":"18:37"},{"date":"2015-03-26","groups":[{"time":"00:11:00","height":"4.5"},{"time":"12:40:00","height":"4.2"}],"sunrise":"06:04","sunset":"18:39"},{"date":"2015-03-27","groups":[{"time":"01:03:00","height":"4.0"},{"time":"13:38:00","height":"3.7"}],"sunrise":"06:02","sunset":"18:41"},{"date":"2015-03-28","groups":[{"time":"02:09:00","height":"3.6"},{"time":"14:56:00","height":"3.3"}],"sunrise":"06:00","sunset":"18:43"},{"date":"2015-03-29","groups":[{"time":"03:39:00","height":"3.4"},{"time":"16:24:00","height":"3.3"}],"sunrise":"05:57","sunset":"18:44"},{"date":"2015-03-30","groups":[{"time":"06:01:00","height":"3.5"},{"time":"18:38:00","height":"3.5"}],"sunrise":"06:55","sunset":"19:46"},{"date":"2015-03-31","groups":[{"time":"07:03:00","height":"3.8"},{"time":"19:29:00","height":"3.9"}],"sunrise":"06:53","sunset":"19:48"},{"date":"2015-04-01","groups":[{"time":"07:49:00","height":"4.2"},{"time":"20:10:00","height":"4.3"}],"sunrise":"06:50","sunset":"19:50"},{"date":"2015-04-02","groups":[{"time":"08:26:00","height":"4.5"},{"time":"20:44:00","height":"4.5"}],"sunrise":"06:48","sunset":"19:52"},{"date":"2015-04-03","groups":[{"time":"08:58:00","height":"4.7"},{"time":"21:15:00","height":"4.7"}],"sunrise":"06:45","sunset":"19:53"},{"date":"2015-04-04","groups":[{"time":"09:29:00","height":"4.8"},{"time":"21:44:00","height":"4.9"}],"sunrise":"06:43","sunset":"19:55"},{"date":"2015-04-05","groups":[{"time":"09:57:00","height":"4.9"},{"time":"22:12:00","height":"4.9"}],"sunrise":"06:41","sunset":"19:57"},{"date":"2015-04-06","groups":[{"time":"10:25:00","height":"4.9"},{"time":"22:40:00","height":"4.9"}],"sunrise":"06:38","sunset":"19:59"},{"date":"2015-04-07","groups":[{"time":"10:54:00","height":"4.9"},{"time":"23:10:00","height":"4.8"}],"sunrise":"06:36","sunset":"20:00"},{"date":"2015-04-08","groups":[{"time":"11:26:00","height":"4.7"},{"time":"23:44:00","height":"4.7"}],"sunrise":"06:34","sunset":"20:02"},{"date":"2015-04-09","groups":[{"time":"12:03:00","height":"4.5"}],"sunrise":"06:31","sunset":"20:04"},{"date":"2015-04-10","groups":[{"time":"00:23:00","height":"4.5"},{"time":"12:45:00","height":"4.3"}],"sunrise":"06:29","sunset":"20:06"},{"date":"2015-04-11","groups":[{"time":"01:10:00","height":"4.2"},{"time":"13:37:00","height":"3.9"}],"sunrise":"06:27","sunset":"20:08"},{"date":"2015-04-12","groups":[{"time":"02:10:00","height":"3.9"},{"time":"14:48:00","height":"3.6"}],"sunrise":"06:24","sunset":"20:09"},{"date":"2015-04-13","groups":[{"time":"03:34:00","height":"3.7"},{"time":"16:20:00","height":"3.6"}],"sunrise":"06:22","sunset":"20:11"},{"date":"2015-04-14","groups":[{"time":"05:04:00","height":"3.8"},{"time":"17:44:00","height":"3.8"}],"sunrise":"06:20","sunset":"20:13"},{"date":"2015-04-15","groups":[{"time":"06:17:00","height":"4.2"},{"time":"18:50:00","height":"4.3"}],"sunrise":"06:18","sunset":"20:15"},{"date":"2015-04-16","groups":[{"time":"07:16:00","height":"4.7"},{"time":"19:44:00","height":"4.8"}],"sunrise":"06:15","sunset":"20:16"},{"date":"2015-04-17","groups":[{"time":"08:07:00","height":"5.1"},{"time":"20:31:00","height":"5.2"}],"sunrise":"06:13","sunset":"20:18"},{"date":"2015-04-18","groups":[{"time":"08:53:00","height":"5.4"},{"time":"21:16:00","height":"5.4"}],"sunrise":"06:11","sunset":"20:20"},{"date":"2015-04-19","groups":[{"time":"09:37:00","height":"5.6"},{"time":"21:57:00","height":"5.5"}],"sunrise":"06:09","sunset":"20:22"},{"date":"2015-04-20","groups":[{"time":"10:19:00","height":"5.6"},{"time":"22:38:00","height":"5.5"}],"sunrise":"06:06","sunset":"20:24"},{"date":"2015-04-21","groups":[{"time":"10:59:00","height":"5.4"},{"time":"23:17:00","height":"5.3"}],"sunrise":"06:04","sunset":"20:25"},{"date":"2015-04-22","groups":[{"time":"11:42:00","height":"5.1"}],"sunrise":"06:02","sunset":"20:27"},{"date":"2015-04-23","groups":[{"time":"00:00:00","height":"4.9"},{"time":"12:26:00","height":"4.7"}],"sunrise":"06:00","sunset":"20:29"},{"date":"2015-04-24","groups":[{"time":"00:45:00","height":"4.5"},{"time":"13:13:00","height":"4.2"}],"sunrise":"05:58","sunset":"20:31"},{"date":"2015-04-25","groups":[{"time":"01:34:00","height":"4.1"},{"time":"14:06:00","height":"3.7"}],"sunrise":"05:56","sunset":"20:32"},{"date":"2015-04-26","groups":[{"time":"02:32:00","height":"3.7"},{"time":"15:13:00","height":"3.4"}],"sunrise":"05:54","sunset":"20:34"},{"date":"2015-04-27","groups":[{"time":"03:49:00","height":"3.4"},{"time":"16:39:00","height":"3.2"}],"sunrise":"05:52","sunset":"20:36"},{"date":"2015-04-28","groups":[{"time":"05:13:00","height":"3.4"},{"time":"17:53:00","height":"3.4"}],"sunrise":"05:49","sunset":"20:38"},{"date":"2015-04-29","groups":[{"time":"06:19:00","height":"3.7"},{"time":"18:49:00","height":"3.7"}],"sunrise":"05:47","sunset":"20:39"},{"date":"2015-04-30","groups":[{"time":"07:09:00","height":"4.0"},{"time":"19:33:00","height":"4.1"}],"sunrise":"05:45","sunset":"20:41"},{"date":"2015-05-01","groups":[{"time":"07:49:00","height":"4.3"},{"time":"20:10:00","height":"4.4"}],"sunrise":"05:43","sunset":"20:43"},{"date":"2015-05-02","groups":[{"time":"08:25:00","height":"4.5"},{"time":"20:43:00","height":"4.6"}],"sunrise":"05:41","sunset":"20:45"},{"date":"2015-05-03","groups":[{"time":"08:58:00","height":"4.7"},{"time":"21:15:00","height":"4.8"}],"sunrise":"05:39","sunset":"20:46"},{"date":"2015-05-04","groups":[{"time":"09:30:00","height":"4.8"},{"time":"21:46:00","height":"4.9"}],"sunrise":"05:38","sunset":"20:48"},{"date":"2015-05-05","groups":[{"time":"10:01:00","height":"4.9"},{"time":"22:18:00","height":"5.0"}],"sunrise":"05:36","sunset":"20:50"},{"date":"2015-05-06","groups":[{"time":"10:33:00","height":"4.9"},{"time":"22:50:00","height":"4.9"}],"sunrise":"05:34","sunset":"20:52"},{"date":"2015-05-07","groups":[{"time":"11:07:00","height":"4.8"},{"time":"23:27:00","height":"4.8"}],"sunrise":"05:32","sunset":"20:53"},{"date":"2015-05-08","groups":[{"time":"11:47:00","height":"4.6"}],"sunrise":"05:30","sunset":"20:55"},{"date":"2015-05-09","groups":[{"time":"00:11:00","height":"4.6"},{"time":"12:35:00","height":"4.4"}],"sunrise":"05:28","sunset":"20:57"},{"date":"2015-05-10","groups":[{"time":"01:01:00","height":"4.4"},{"time":"13:30:00","height":"4.1"}],"sunrise":"05:27","sunset":"20:58"},{"date":"2015-05-11","groups":[{"time":"02:04:00","height":"4.1"},{"time":"14:40:00","height":"3.9"}],"sunrise":"05:25","sunset":"21:00"},{"date":"2015-05-12","groups":[{"time":"03:19:00","height":"4.0"},{"time":"16:01:00","height":"3.8"}],"sunrise":"05:23","sunset":"21:02"},{"date":"2015-05-13","groups":[{"time":"04:41:00","height":"4.0"},{"time":"17:19:00","height":"3.9"}],"sunrise":"05:21","sunset":"21:03"},{"date":"2015-05-14","groups":[{"time":"05:51:00","height":"4.3"},{"time":"18:25:00","height":"4.2"}],"sunrise":"05:20","sunset":"21:05"},{"date":"2015-05-15","groups":[{"time":"06:51:00","height":"4.6"},{"time":"19:20:00","height":"4.6"}],"sunrise":"05:18","sunset":"21:07"},{"date":"2015-05-16","groups":[{"time":"07:44:00","height":"4.9"},{"time":"20:10:00","height":"4.9"}],"sunrise":"05:17","sunset":"21:08"},{"date":"2015-05-17","groups":[{"time":"08:32:00","height":"5.1"},{"time":"20:55:00","height":"5.2"}],"sunrise":"05:15","sunset":"21:10"},{"date":"2015-05-18","groups":[{"time":"09:18:00","height":"5.3"},{"time":"21:37:00","height":"5.3"}],"sunrise":"05:14","sunset":"21:11"},{"date":"2015-05-19","groups":[{"time":"10:00:00","height":"5.3"},{"time":"22:18:00","height":"5.3"}],"sunrise":"05:12","sunset":"21:13"},{"date":"2015-05-20","groups":[{"time":"10:40:00","height":"5.1"},{"time":"22:57:00","height":"5.1"}],"sunrise":"05:11","sunset":"21:14"},{"date":"2015-05-21","groups":[{"time":"11:20:00","height":"4.9"},{"time":"23:39:00","height":"4.9"}],"sunrise":"05:09","sunset":"21:16"},{"date":"2015-05-22","groups":[{"time":"12:04:00","height":"4.6"}],"sunrise":"05:08","sunset":"21:17"},{"date":"2015-05-23","groups":[{"time":"00:22:00","height":"4.6"},{"time":"12:48:00","height":"4.2"}],"sunrise":"05:07","sunset":"21:19"},{"date":"2015-05-24","groups":[{"time":"01:07:00","height":"4.2"},{"time":"13:36:00","height":"3.9"}],"sunrise":"05:05","sunset":"21:20"},{"date":"2015-05-25","groups":[{"time":"01:56:00","height":"3.9"},{"time":"14:30:00","height":"3.6"}],"sunrise":"05:04","sunset":"21:22"},{"date":"2015-05-26","groups":[{"time":"02:56:00","height":"3.6"},{"time":"15:38:00","height":"3.4"}],"sunrise":"05:03","sunset":"21:23"},{"date":"2015-05-27","groups":[{"time":"04:10:00","height":"3.5"},{"time":"16:54:00","height":"3.4"}],"sunrise":"05:02","sunset":"21:24"},{"date":"2015-05-28","groups":[{"time":"05:22:00","height":"3.5"},{"time":"17:57:00","height":"3.5"}],"sunrise":"05:01","sunset":"21:26"},{"date":"2015-05-29","groups":[{"time":"06:20:00","height":"3.7"},{"time":"18:48:00","height":"3.8"}],"sunrise":"05:00","sunset":"21:27"},{"date":"2015-05-30","groups":[{"time":"07:07:00","height":"4.0"},{"time":"19:31:00","height":"4.1"}],"sunrise":"04:59","sunset":"21:28"},{"date":"2015-05-31","groups":[{"time":"07:48:00","height":"4.3"},{"time":"20:10:00","height":"4.4"}],"sunrise":"04:58","sunset":"21:30"},{"date":"2015-06-01","groups":[{"time":"08:26:00","height":"4.5"},{"time":"20:46:00","height":"4.7"}],"sunrise":"04:57","sunset":"21:31"},{"date":"2015-06-02","groups":[{"time":"09:03:00","height":"4.7"},{"time":"21:21:00","height":"4.9"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2015-06-03","groups":[{"time":"09:39:00","height":"4.8"},{"time":"21:58:00","height":"5.0"}],"sunrise":"04:55","sunset":"21:33"},{"date":"2015-06-04","groups":[{"time":"10:17:00","height":"4.9"},{"time":"22:36:00","height":"5.0"}],"sunrise":"04:55","sunset":"21:34"},{"date":"2015-06-05","groups":[{"time":"10:54:00","height":"4.9"},{"time":"23:16:00","height":"5.0"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2015-06-06","groups":[{"time":"11:40:00","height":"4.8"}],"sunrise":"04:53","sunset":"21:36"},{"date":"2015-06-07","groups":[{"time":"00:04:00","height":"4.9"},{"time":"12:30:00","height":"4.6"}],"sunrise":"04:53","sunset":"21:37"},{"date":"2015-06-08","groups":[{"time":"00:57:00","height":"4.7"},{"time":"13:25:00","height":"4.4"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2015-06-09","groups":[{"time":"01:55:00","height":"4.5"},{"time":"14:27:00","height":"4.1"}],"sunrise":"04:52","sunset":"21:39"},{"date":"2015-06-10","groups":[{"time":"03:01:00","height":"4.3"},{"time":"15:38:00","height":"4.0"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2015-06-11","groups":[{"time":"04:15:00","height":"4.2"},{"time":"16:52:00","height":"4.0"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2015-06-12","groups":[{"time":"05:23:00","height":"4.2"},{"time":"17:57:00","height":"4.1"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2015-06-13","groups":[{"time":"06:26:00","height":"4.4"},{"time":"18:57:00","height":"4.4"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2015-06-14","groups":[{"time":"07:24:00","height":"4.6"},{"time":"19:50:00","height":"4.6"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2015-06-15","groups":[{"time":"08:15:00","height":"4.8"},{"time":"20:38:00","height":"4.8"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2015-06-16","groups":[{"time":"09:02:00","height":"4.9"},{"time":"21:22:00","height":"5.0"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2015-06-17","groups":[{"time":"09:45:00","height":"4.9"},{"time":"22:03:00","height":"5.0"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2015-06-18","groups":[{"time":"10:24:00","height":"4.9"},{"time":"22:41:00","height":"5.0"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2015-06-19","groups":[{"time":"11:02:00","height":"4.8"},{"time":"23:18:00","height":"4.8"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2015-06-20","groups":[{"time":"11:42:00","height":"4.6"},{"time":"23:58:00","height":"4.6"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2015-06-21","groups":[{"time":"12:22:00","height":"4.3"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2015-06-22","groups":[{"time":"00:38:00","height":"4.4"},{"time":"13:03:00","height":"4.1"}],"sunrise":"04:50","sunset":"21:46"},{"date":"2015-06-23","groups":[{"time":"01:21:00","height":"4.2"},{"time":"13:48:00","height":"3.8"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2015-06-24","groups":[{"time":"02:08:00","height":"3.9"},{"time":"14:40:00","height":"3.6"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2015-06-25","groups":[{"time":"03:04:00","height":"3.7"},{"time":"15:43:00","height":"3.4"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2015-06-26","groups":[{"time":"04:11:00","height":"3.5"},{"time":"16:53:00","height":"3.4"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2015-06-27","groups":[{"time":"05:21:00","height":"3.5"},{"time":"17:57:00","height":"3.6"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2015-06-28","groups":[{"time":"06:20:00","height":"3.7"},{"time":"18:51:00","height":"3.9"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2015-06-29","groups":[{"time":"07:11:00","height":"4.0"},{"time":"19:37:00","height":"4.2"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2015-06-30","groups":[{"time":"07:57:00","height":"4.3"},{"time":"20:19:00","height":"4.6"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2015-07-01","groups":[{"time":"08:39:00","height":"4.6"},{"time":"21:01:00","height":"4.8"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2015-07-02","groups":[{"time":"09:21:00","height":"4.8"},{"time":"21:42:00","height":"5.1"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2015-07-03","groups":[{"time":"10:03:00","height":"5.0"},{"time":"22:23:00","height":"5.2"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2015-07-04","groups":[{"time":"10:44:00","height":"5.1"},{"time":"23:05:00","height":"5.3"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2015-07-05","groups":[{"time":"11:30:00","height":"5.0"},{"time":"23:54:00","height":"5.2"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2015-07-06","groups":[{"time":"12:20:00","height":"4.9"}],"sunrise":"04:59","sunset":"21:42"},{"date":"2015-07-07","groups":[{"time":"00:46:00","height":"5.0"},{"time":"13:12:00","height":"4.7"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2015-07-08","groups":[{"time":"01:40:00","height":"4.8"},{"time":"14:08:00","height":"4.4"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2015-07-09","groups":[{"time":"02:40:00","height":"4.5"},{"time":"15:11:00","height":"4.1"}],"sunrise":"05:02","sunset":"21:40"},{"date":"2015-07-10","groups":[{"time":"03:46:00","height":"4.2"},{"time":"16:23:00","height":"3.9"}],"sunrise":"05:03","sunset":"21:40"},{"date":"2015-07-11","groups":[{"time":"04:57:00","height":"4.1"},{"time":"17:32:00","height":"3.9"}],"sunrise":"05:04","sunset":"21:39"},{"date":"2015-07-12","groups":[{"time":"06:04:00","height":"4.1"},{"time":"18:38:00","height":"4.1"}],"sunrise":"05:05","sunset":"21:38"},{"date":"2015-07-13","groups":[{"time":"07:08:00","height":"4.2"},{"time":"19:37:00","height":"4.3"}],"sunrise":"05:07","sunset":"21:37"},{"date":"2015-07-14","groups":[{"time":"08:03:00","height":"4.4"},{"time":"20:27:00","height":"4.6"}],"sunrise":"05:08","sunset":"21:36"},{"date":"2015-07-15","groups":[{"time":"08:50:00","height":"4.6"},{"time":"21:10:00","height":"4.8"}],"sunrise":"05:09","sunset":"21:35"},{"date":"2015-07-16","groups":[{"time":"09:32:00","height":"4.7"},{"time":"21:49:00","height":"4.9"}],"sunrise":"05:10","sunset":"21:34"},{"date":"2015-07-17","groups":[{"time":"10:08:00","height":"4.8"},{"time":"22:24:00","height":"4.9"}],"sunrise":"05:12","sunset":"21:33"},{"date":"2015-07-18","groups":[{"time":"10:43:00","height":"4.7"},{"time":"22:57:00","height":"4.9"}],"sunrise":"05:13","sunset":"21:32"},{"date":"2015-07-19","groups":[{"time":"11:16:00","height":"4.7"},{"time":"23:32:00","height":"4.8"}],"sunrise":"05:14","sunset":"21:30"},{"date":"2015-07-20","groups":[{"time":"11:53:00","height":"4.5"}],"sunrise":"05:16","sunset":"21:29"},{"date":"2015-07-21","groups":[{"time":"00:08:00","height":"4.6"},{"time":"12:29:00","height":"4.3"}],"sunrise":"05:17","sunset":"21:28"},{"date":"2015-07-22","groups":[{"time":"00:44:00","height":"4.4"},{"time":"13:07:00","height":"4.1"}],"sunrise":"05:19","sunset":"21:26"},{"date":"2015-07-23","groups":[{"time":"01:24:00","height":"4.1"},{"time":"13:49:00","height":"3.8"}],"sunrise":"05:20","sunset":"21:25"},{"date":"2015-07-24","groups":[{"time":"02:08:00","height":"3.9"},{"time":"14:39:00","height":"3.6"}],"sunrise":"05:21","sunset":"21:24"},{"date":"2015-07-25","groups":[{"time":"03:05:00","height":"3.6"},{"time":"15:44:00","height":"3.4"}],"sunrise":"05:23","sunset":"21:22"},{"date":"2015-07-26","groups":[{"time":"04:15:00","height":"3.5"},{"time":"17:00:00","height":"3.4"}],"sunrise":"05:24","sunset":"21:21"},{"date":"2015-07-27","groups":[{"time":"05:30:00","height":"3.5"},{"time":"18:09:00","height":"3.7"}],"sunrise":"05:26","sunset":"21:19"},{"date":"2015-07-28","groups":[{"time":"06:36:00","height":"3.8"},{"time":"19:07:00","height":"4.1"}],"sunrise":"05:28","sunset":"21:18"},{"date":"2015-07-29","groups":[{"time":"07:30:00","height":"4.2"},{"time":"19:57:00","height":"4.5"}],"sunrise":"05:29","sunset":"21:16"},{"date":"2015-07-30","groups":[{"time":"08:19:00","height":"4.6"},{"time":"20:42:00","height":"4.9"}],"sunrise":"05:31","sunset":"21:14"},{"date":"2015-07-31","groups":[{"time":"09:04:00","height":"4.9"},{"time":"21:26:00","height":"5.2"}],"sunrise":"05:32","sunset":"21:13"},{"date":"2015-08-01","groups":[{"time":"09:49:00","height":"5.2"},{"time":"22:09:00","height":"5.5"}],"sunrise":"05:34","sunset":"21:11"},{"date":"2015-08-02","groups":[{"time":"10:31:00","height":"5.3"},{"time":"22:52:00","height":"5.6"}],"sunrise":"05:35","sunset":"21:09"},{"date":"2015-08-03","groups":[{"time":"11:14:00","height":"5.3"},{"time":"23:38:00","height":"5.5"}],"sunrise":"05:37","sunset":"21:07"},{"date":"2015-08-04","groups":[{"time":"12:03:00","height":"5.2"}],"sunrise":"05:39","sunset":"21:06"},{"date":"2015-08-05","groups":[{"time":"00:28:00","height":"5.3"},{"time":"12:51:00","height":"4.9"}],"sunrise":"05:40","sunset":"21:04"},{"date":"2015-08-06","groups":[{"time":"01:18:00","height":"5.0"},{"time":"13:43:00","height":"4.6"}],"sunrise":"05:42","sunset":"21:02"},{"date":"2015-08-07","groups":[{"time":"02:13:00","height":"4.6"},{"time":"14:41:00","height":"4.2"}],"sunrise":"05:44","sunset":"21:00"},{"date":"2015-08-08","groups":[{"time":"03:17:00","height":"4.1"},{"time":"15:51:00","height":"3.9"}],"sunrise":"05:45","sunset":"20:58"},{"date":"2015-08-09","groups":[{"time":"04:31:00","height":"3.8"},{"time":"17:09:00","height":"3.7"}],"sunrise":"05:47","sunset":"20:56"},{"date":"2015-08-10","groups":[{"time":"05:46:00","height":"3.8"},{"time":"18:24:00","height":"3.9"}],"sunrise":"05:49","sunset":"20:54"},{"date":"2015-08-11","groups":[{"time":"06:57:00","height":"3.9"},{"time":"19:27:00","height":"4.2"}],"sunrise":"05:50","sunset":"20:52"},{"date":"2015-08-12","groups":[{"time":"07:53:00","height":"4.2"},{"time":"20:15:00","height":"4.5"}],"sunrise":"05:52","sunset":"20:50"},{"date":"2015-08-13","groups":[{"time":"08:38:00","height":"4.5"},{"time":"20:56:00","height":"4.7"}],"sunrise":"05:54","sunset":"20:48"},{"date":"2015-08-14","groups":[{"time":"09:16:00","height":"4.7"},{"time":"21:32:00","height":"4.9"}],"sunrise":"05:55","sunset":"20:46"},{"date":"2015-08-15","groups":[{"time":"09:50:00","height":"4.8"},{"time":"22:05:00","height":"4.9"}],"sunrise":"05:57","sunset":"20:44"},{"date":"2015-08-16","groups":[{"time":"10:22:00","height":"4.8"},{"time":"22:35:00","height":"4.9"}],"sunrise":"05:59","sunset":"20:42"},{"date":"2015-08-17","groups":[{"time":"10:51:00","height":"4.8"},{"time":"23:04:00","height":"4.9"}],"sunrise":"06:00","sunset":"20:40"},{"date":"2015-08-18","groups":[{"time":"11:21:00","height":"4.7"},{"time":"23:36:00","height":"4.8"}],"sunrise":"06:02","sunset":"20:38"},{"date":"2015-08-19","groups":[{"time":"11:54:00","height":"4.5"}],"sunrise":"06:04","sunset":"20:36"},{"date":"2015-08-20","groups":[{"time":"00:08:00","height":"4.6"},{"time":"12:28:00","height":"4.3"}],"sunrise":"06:06","sunset":"20:33"},{"date":"2015-08-21","groups":[{"time":"00:43:00","height":"4.3"},{"time":"13:03:00","height":"4.1"}],"sunrise":"06:07","sunset":"20:31"},{"date":"2015-08-22","groups":[{"time":"01:22:00","height":"4.0"},{"time":"13:48:00","height":"3.8"}],"sunrise":"06:09","sunset":"20:29"},{"date":"2015-08-23","groups":[{"time":"02:10:00","height":"3.7"},{"time":"14:45:00","height":"3.5"}],"sunrise":"06:11","sunset":"20:27"},{"date":"2015-08-24","groups":[{"time":"03:18:00","height":"3.5"},{"time":"16:06:00","height":"3.4"}],"sunrise":"06:12","sunset":"20:25"},{"date":"2015-08-25","groups":[{"time":"04:45:00","height":"3.4"},{"time":"17:32:00","height":"3.6"}],"sunrise":"06:14","sunset":"20:22"},{"date":"2015-08-26","groups":[{"time":"06:06:00","height":"3.6"},{"time":"18:41:00","height":"4.0"}],"sunrise":"06:16","sunset":"20:20"},{"date":"2015-08-27","groups":[{"time":"07:09:00","height":"4.1"},{"time":"19:35:00","height":"4.5"}],"sunrise":"06:17","sunset":"20:18"},{"date":"2015-08-28","groups":[{"time":"08:00:00","height":"4.6"},{"time":"20:23:00","height":"5.0"}],"sunrise":"06:19","sunset":"20:16"},{"date":"2015-08-29","groups":[{"time":"08:47:00","height":"5.1"},{"time":"21:08:00","height":"5.4"}],"sunrise":"06:21","sunset":"20:13"},{"date":"2015-08-30","groups":[{"time":"09:32:00","height":"5.4"},{"time":"21:51:00","height":"5.7"}],"sunrise":"06:22","sunset":"20:11"},{"date":"2015-08-31","groups":[{"time":"10:13:00","height":"5.6"},{"time":"22:34:00","height":"5.8"}],"sunrise":"06:24","sunset":"20:09"},{"date":"2015-09-01","groups":[{"time":"10:54:00","height":"5.590"},{"time":"23:17:00","height":"5.747"}],"sunrise":"06:26","sunset":"20:06"},{"date":"2015-09-02","groups":[{"time":"11:40:00","height":"5.422"}],"sunrise":"06:28","sunset":"20:04"},{"date":"2015-09-03","groups":[{"time":"00:05:00","height":"5.475"},{"time":"12:26:00","height":"5.100"}],"sunrise":"06:29","sunset":"20:02"},{"date":"2015-09-04","groups":[{"time":"00:54:00","height":"5.048"},{"time":"13:15:00","height":"4.667"}],"sunrise":"06:31","sunset":"19:59"},{"date":"2015-09-05","groups":[{"time":"01:46:00","height":"4.527"},{"time":"14:10:00","height":"4.193"}],"sunrise":"06:33","sunset":"19:57"},{"date":"2015-09-06","groups":[{"time":"02:46:00","height":"4.002"},{"time":"15:20:00","height":"3.776"}],"sunrise":"06:34","sunset":"19:55"},{"date":"2015-09-07","groups":[{"time":"04:03:00","height":"3.608"},{"time":"16:47:00","height":"3.575"}],"sunrise":"06:36","sunset":"19:52"},{"date":"2015-09-08","groups":[{"time":"05:28:00","height":"3.517"},{"time":"18:09:00","height":"3.714"}],"sunrise":"06:38","sunset":"19:50"},{"date":"2015-09-09","groups":[{"time":"06:43:00","height":"3.750"},{"time":"19:12:00","height":"4.066"}],"sunrise":"06:39","sunset":"19:47"},{"date":"2015-09-10","groups":[{"time":"07:38:00","height":"4.110"},{"time":"19:59:00","height":"4.429"}],"sunrise":"06:41","sunset":"19:45"},{"date":"2015-09-11","groups":[{"time":"08:19:00","height":"4.438"},{"time":"20:37:00","height":"4.708"}],"sunrise":"06:43","sunset":"19:43"},{"date":"2015-09-12","groups":[{"time":"08:55:00","height":"4.679"},{"time":"21:10:00","height":"4.887"}],"sunrise":"06:45","sunset":"19:40"},{"date":"2015-09-13","groups":[{"time":"09:27:00","height":"4.829"},{"time":"21:41:00","height":"4.981"}],"sunrise":"06:46","sunset":"19:38"},{"date":"2015-09-14","groups":[{"time":"09:57:00","height":"4.903"},{"time":"22:09:00","height":"5.008"}],"sunrise":"06:48","sunset":"19:35"},{"date":"2015-09-15","groups":[{"time":"10:24:00","height":"4.913"},{"time":"22:37:00","height":"4.974"}],"sunrise":"06:50","sunset":"19:33"},{"date":"2015-09-16","groups":[{"time":"10:52:00","height":"4.861"},{"time":"23:04:00","height":"4.879"}],"sunrise":"06:51","sunset":"19:31"},{"date":"2015-09-17","groups":[{"time":"11:20:00","height":"4.742"},{"time":"23:34:00","height":"4.714"}],"sunrise":"06:53","sunset":"19:28"},{"date":"2015-09-18","groups":[{"time":"11:53:00","height":"4.555"}],"sunrise":"06:55","sunset":"19:26"},{"date":"2015-09-19","groups":[{"time":"00:08:00","height":"4.480"},{"time":"12:28:00","height":"4.306"}],"sunrise":"06:56","sunset":"19:23"},{"date":"2015-09-20","groups":[{"time":"00:45:00","height":"4.188"},{"time":"13:09:00","height":"4.012"}],"sunrise":"06:58","sunset":"19:21"},{"date":"2015-09-21","groups":[{"time":"01:31:00","height":"3.859"},{"time":"14:04:00","height":"3.710"}],"sunrise":"07:00","sunset":"19:19"},{"date":"2015-09-22","groups":[{"time":"02:36:00","height":"3.546"},{"time":"15:24:00","height":"3.502"}],"sunrise":"07:01","sunset":"19:16"},{"date":"2015-09-23","groups":[{"time":"04:09:00","height":"3.409"},{"time":"17:00:00","height":"3.592"}],"sunrise":"07:03","sunset":"19:14"},{"date":"2015-09-24","groups":[{"time":"05:39:00","height":"3.638"},{"time":"18:15:00","height":"4.022"}],"sunrise":"07:05","sunset":"19:11"},{"date":"2015-09-25","groups":[{"time":"06:47:00","height":"4.139"},{"time":"19:13:00","height":"4.592"}],"sunrise":"07:07","sunset":"19:09"},{"date":"2015-09-26","groups":[{"time":"07:41:00","height":"4.698"},{"time":"20:02:00","height":"5.139"}],"sunrise":"07:08","sunset":"19:07"},{"date":"2015-09-27","groups":[{"time":"08:28:00","height":"5.186"},{"time":"20:48:00","height":"5.571"}],"sunrise":"07:10","sunset":"19:04"},{"date":"2015-09-28","groups":[{"time":"09:11:00","height":"5.536"},{"time":"21:32:00","height":"5.838"}],"sunrise":"07:12","sunset":"19:02"},{"date":"2015-09-29","groups":[{"time":"09:53:00","height":"5.717"},{"time":"22:14:00","height":"5.913"}],"sunrise":"07:14","sunset":"18:59"},{"date":"2015-09-30","groups":[{"time":"10:35:00","height":"5.714"},{"time":"22:55:00","height":"5.786"}],"sunrise":"07:15","sunset":"18:57"},{"date":"2015-10-01","groups":[{"time":"11:15:00","height":"5.528"},{"time":"23:41:00","height":"5.469"}],"sunrise":"07:17","sunset":"18:55"},{"date":"2015-10-02","groups":[{"time":"12:02:00","height":"5.184"}],"sunrise":"07:19","sunset":"18:52"},{"date":"2015-10-03","groups":[{"time":"00:29:00","height":"5.003"},{"time":"12:49:00","height":"4.730"}],"sunrise":"07:20","sunset":"18:50"},{"date":"2015-10-04","groups":[{"time":"01:18:00","height":"4.455"},{"time":"13:42:00","height":"4.234"}],"sunrise":"07:22","sunset":"18:47"},{"date":"2015-10-05","groups":[{"time":"02:17:00","height":"3.915"},{"time":"14:48:00","height":"3.790"}],"sunrise":"07:24","sunset":"18:45"},{"date":"2015-10-06","groups":[{"time":"03:32:00","height":"3.507"},{"time":"16:16:00","height":"3.546"}],"sunrise":"07:26","sunset":"18:43"},{"date":"2015-10-07","groups":[{"time":"05:03:00","height":"3.403"},{"time":"17:41:00","height":"3.643"}],"sunrise":"07:27","sunset":"18:40"},{"date":"2015-10-08","groups":[{"time":"06:18:00","height":"3.635"},{"time":"18:46:00","height":"3.971"}],"sunrise":"07:29","sunset":"18:38"},{"date":"2015-10-09","groups":[{"time":"07:13:00","height":"4.010"},{"time":"19:33:00","height":"4.331"}],"sunrise":"07:31","sunset":"18:36"},{"date":"2015-10-10","groups":[{"time":"07:54:00","height":"4.364"},{"time":"20:11:00","height":"4.625"}],"sunrise":"07:33","sunset":"18:33"},{"date":"2015-10-11","groups":[{"time":"08:29:00","height":"4.641"},{"time":"20:44:00","height":"4.829"}],"sunrise":"07:35","sunset":"18:31"},{"date":"2015-10-12","groups":[{"time":"09:01:00","height":"4.831"},{"time":"21:14:00","height":"4.952"}],"sunrise":"07:36","sunset":"18:29"},{"date":"2015-10-13","groups":[{"time":"09:30:00","height":"4.945"},{"time":"21:43:00","height":"5.007"}],"sunrise":"07:38","sunset":"18:27"},{"date":"2015-10-14","groups":[{"time":"09:58:00","height":"4.994"},{"time":"22:11:00","height":"5.004"}],"sunrise":"07:40","sunset":"18:24"},{"date":"2015-10-15","groups":[{"time":"10:26:00","height":"4.981"},{"time":"22:38:00","height":"4.938"}],"sunrise":"07:42","sunset":"18:22"},{"date":"2015-10-16","groups":[{"time":"10:54:00","height":"4.899"},{"time":"23:08:00","height":"4.803"}],"sunrise":"07:44","sunset":"18:20"},{"date":"2015-10-17","groups":[{"time":"11:26:00","height":"4.743"},{"time":"23:42:00","height":"4.597"}],"sunrise":"07:45","sunset":"18:18"},{"date":"2015-10-18","groups":[{"time":"12:03:00","height":"4.517"}],"sunrise":"07:47","sunset":"18:15"},{"date":"2015-10-19","groups":[{"time":"00:21:00","height":"4.325"},{"time":"12:45:00","height":"4.237"}],"sunrise":"07:49","sunset":"18:13"},{"date":"2015-10-20","groups":[{"time":"01:09:00","height":"4.007"},{"time":"13:41:00","height":"3.940"}],"sunrise":"07:51","sunset":"18:11"},{"date":"2015-10-21","groups":[{"time":"02:14:00","height":"3.702"},{"time":"14:58:00","height":"3.725"}],"sunrise":"07:53","sunset":"18:09"},{"date":"2015-10-22","groups":[{"time":"03:43:00","height":"3.555"},{"time":"16:32:00","height":"3.769"}],"sunrise":"07:54","sunset":"18:07"},{"date":"2015-10-23","groups":[{"time":"05:13:00","height":"3.738"},{"time":"17:49:00","height":"4.127"}],"sunrise":"07:56","sunset":"18:04"},{"date":"2015-10-24","groups":[{"time":"06:23:00","height":"4.189"},{"time":"18:49:00","height":"4.636"}],"sunrise":"07:58","sunset":"18:02"},{"date":"2015-10-25","groups":[{"time":"07:18:00","height":"4.711"},{"time":"19:41:00","height":"5.131"}],"sunrise":"08:00","sunset":"18:00"},{"date":"2015-10-26","groups":[{"time":"07:06:00","height":"5.170"},{"time":"19:28:00","height":"5.515"}],"sunrise":"07:02","sunset":"16:58"},{"date":"2015-10-27","groups":[{"time":"07:50:00","height":"5.501"},{"time":"20:12:00","height":"5.740"}],"sunrise":"07:04","sunset":"16:56"},{"date":"2015-10-28","groups":[{"time":"08:34:00","height":"5.672"},{"time":"20:55:00","height":"5.785"}],"sunrise":"07:06","sunset":"16:54"},{"date":"2015-10-29","groups":[{"time":"09:15:00","height":"5.674"},{"time":"21:37:00","height":"5.649"}],"sunrise":"07:07","sunset":"16:52"},{"date":"2015-10-30","groups":[{"time":"09:55:00","height":"5.510"},{"time":"22:19:00","height":"5.349"}],"sunrise":"07:09","sunset":"16:50"},{"date":"2015-10-31","groups":[{"time":"10:40:00","height":"5.202"},{"time":"23:07:00","height":"4.924"}],"sunrise":"07:11","sunset":"16:48"},{"date":"2015-11-01","groups":[{"time":"11:26:00","height":"4.792"},{"time":"23:56:00","height":"4.434"}],"sunrise":"07:13","sunset":"16:46"},{"date":"2015-11-02","groups":[{"time":"12:17:00","height":"4.342"}],"sunrise":"07:15","sunset":"16:44"},{"date":"2015-11-03","groups":[{"time":"00:50:00","height":"3.954"},{"time":"13:17:00","height":"3.925"}],"sunrise":"07:17","sunset":"16:42"},{"date":"2015-11-04","groups":[{"time":"01:56:00","height":"3.569"},{"time":"14:32:00","height":"3.640"}],"sunrise":"07:19","sunset":"16:41"},{"date":"2015-11-05","groups":[{"time":"03:19:00","height":"3.399"},{"time":"15:57:00","height":"3.605"}],"sunrise":"07:20","sunset":"16:39"},{"date":"2015-11-06","groups":[{"time":"04:37:00","height":"3.519"},{"time":"17:04:00","height":"3.810"}],"sunrise":"07:22","sunset":"16:37"},{"date":"2015-11-07","groups":[{"time":"05:35:00","height":"3.823"},{"time":"17:57:00","height":"4.111"}],"sunrise":"07:24","sunset":"16:35"},{"date":"2015-11-08","groups":[{"time":"06:21:00","height":"4.166"},{"time":"18:38:00","height":"4.402"}],"sunrise":"07:26","sunset":"16:33"},{"date":"2015-11-09","groups":[{"time":"06:59:00","height":"4.470"},{"time":"19:14:00","height":"4.636"}],"sunrise":"07:28","sunset":"16:32"},{"date":"2015-11-10","groups":[{"time":"07:31:00","height":"4.710"},{"time":"19:47:00","height":"4.804"}],"sunrise":"07:30","sunset":"16:30"},{"date":"2015-11-11","groups":[{"time":"08:03:00","height":"4.883"},{"time":"20:17:00","height":"4.909"}],"sunrise":"07:32","sunset":"16:28"},{"date":"2015-11-12","groups":[{"time":"08:34:00","height":"4.990"},{"time":"20:48:00","height":"4.957"}],"sunrise":"07:33","sunset":"16:27"},{"date":"2015-11-13","groups":[{"time":"09:04:00","height":"5.033"},{"time":"21:18:00","height":"4.943"}],"sunrise":"07:35","sunset":"16:25"},{"date":"2015-11-14","groups":[{"time":"09:35:00","height":"5.006"},{"time":"21:50:00","height":"4.861"}],"sunrise":"07:37","sunset":"16:24"},{"date":"2015-11-15","groups":[{"time":"10:08:00","height":"4.902"},{"time":"22:26:00","height":"4.704"}],"sunrise":"07:39","sunset":"16:22"},{"date":"2015-11-16","groups":[{"time":"10:47:00","height":"4.725"},{"time":"23:09:00","height":"4.479"}],"sunrise":"07:41","sunset":"16:21"},{"date":"2015-11-17","groups":[{"time":"11:34:00","height":"4.490"},{"time":"23:59:00","height":"4.207"}],"sunrise":"07:42","sunset":"16:19"},{"date":"2015-11-18","groups":[{"time":"12:30:00","height":"4.236"}],"sunrise":"07:44","sunset":"16:18"},{"date":"2015-11-19","groups":[{"time":"01:03:00","height":"3.943"},{"time":"13:42:00","height":"4.039"}],"sunrise":"07:46","sunset":"16:17"},{"date":"2015-11-20","groups":[{"time":"02:21:00","height":"3.793"},{"time":"15:04:00","height":"4.013"}],"sunrise":"07:48","sunset":"16:15"},{"date":"2015-11-21","groups":[{"time":"03:45:00","height":"3.870"},{"time":"16:20:00","height":"4.212"}],"sunrise":"07:50","sunset":"16:14"},{"date":"2015-11-22","groups":[{"time":"04:54:00","height":"4.172"},{"time":"17:23:00","height":"4.560"}],"sunrise":"07:51","sunset":"16:13"},{"date":"2015-11-23","groups":[{"time":"05:53:00","height":"4.576"},{"time":"18:18:00","height":"4.932"}],"sunrise":"07:53","sunset":"16:12"},{"date":"2015-11-24","groups":[{"time":"06:44:00","height":"4.964"},{"time":"19:08:00","height":"5.237"}],"sunrise":"07:55","sunset":"16:11"},{"date":"2015-11-25","groups":[{"time":"07:31:00","height":"5.265"},{"time":"19:54:00","height":"5.427"}],"sunrise":"07:56","sunset":"16:10"},{"date":"2015-11-26","groups":[{"time":"08:17:00","height":"5.445"},{"time":"20:39:00","height":"5.482"}],"sunrise":"07:58","sunset":"16:09"},{"date":"2015-11-27","groups":[{"time":"08:59:00","height":"5.489"},{"time":"21:22:00","height":"5.397"}],"sunrise":"07:59","sunset":"16:08"},{"date":"2015-11-28","groups":[{"time":"09:40:00","height":"5.394"},{"time":"22:03:00","height":"5.183"}],"sunrise":"08:01","sunset":"16:07"},{"date":"2015-11-29","groups":[{"time":"10:21:00","height":"5.176"},{"time":"22:47:00","height":"4.868"}],"sunrise":"08:03","sunset":"16:06"},{"date":"2015-11-30","groups":[{"time":"11:07:00","height":"4.865"},{"time":"23:33:00","height":"4.493"}],"sunrise":"08:04","sunset":"16:05"},{"date":"2015-12-01","groups":[{"time":"11:54:00","height":"4.505"}],"sunrise":"08:06","sunset":"16:04"},{"date":"2015-12-02","groups":[{"time":"00:21:00","height":"4.107"},{"time":"12:42:00","height":"4.144"}],"sunrise":"08:07","sunset":"16:04"},{"date":"2015-12-03","groups":[{"time":"01:14:00","height":"3.759"},{"time":"13:41:00","height":"3.833"}],"sunrise":"08:08","sunset":"16:03"},{"date":"2015-12-04","groups":[{"time":"02:19:00","height":"3.507"},{"time":"14:52:00","height":"3.636"}],"sunrise":"08:10","sunset":"16:02"},{"date":"2015-12-05","groups":[{"time":"03:37:00","height":"3.431"},{"time":"16:06:00","height":"3.627"}],"sunrise":"08:11","sunset":"16:02"},{"date":"2015-12-06","groups":[{"time":"04:44:00","height":"3.567"},{"time":"17:08:00","height":"3.791"}],"sunrise":"08:12","sunset":"16:01"},{"date":"2015-12-07","groups":[{"time":"05:39:00","height":"3.837"},{"time":"17:58:00","height":"4.038"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2015-12-08","groups":[{"time":"06:23:00","height":"4.149"},{"time":"18:41:00","height":"4.298"}],"sunrise":"08:15","sunset":"16:01"},{"date":"2015-12-09","groups":[{"time":"07:01:00","height":"4.447"},{"time":"19:18:00","height":"4.531"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2015-12-10","groups":[{"time":"07:37:00","height":"4.700"},{"time":"19:53:00","height":"4.720"}],"sunrise":"08:17","sunset":"16:00"},{"date":"2015-12-11","groups":[{"time":"08:11:00","height":"4.897"},{"time":"20:27:00","height":"4.856"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2015-12-12","groups":[{"time":"08:46:00","height":"5.030"},{"time":"21:03:00","height":"4.933"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2015-12-13","groups":[{"time":"09:21:00","height":"5.093"},{"time":"21:38:00","height":"4.939"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2015-12-14","groups":[{"time":"09:57:00","height":"5.077"},{"time":"22:16:00","height":"4.865"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2015-12-15","groups":[{"time":"10:40:00","height":"4.980"},{"time":"23:03:00","height":"4.712"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2015-12-16","groups":[{"time":"11:28:00","height":"4.812"},{"time":"23:52:00","height":"4.495"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2015-12-17","groups":[{"time":"12:22:00","height":"4.597"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2015-12-18","groups":[{"time":"00:50:00","height":"4.254"},{"time":"13:23:00","height":"4.380"}],"sunrise":"08:25","sunset":"16:00"},{"date":"2015-12-19","groups":[{"time":"01:57:00","height":"4.048"},{"time":"14:34:00","height":"4.226"}],"sunrise":"08:25","sunset":"16:01"},{"date":"2015-12-20","groups":[{"time":"03:12:00","height":"3.960"},{"time":"15:49:00","height":"4.203"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2015-12-21","groups":[{"time":"04:24:00","height":"4.051"},{"time":"16:55:00","height":"4.333"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2015-12-22","groups":[{"time":"05:29:00","height":"4.296"},{"time":"17:57:00","height":"4.561"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2015-12-23","groups":[{"time":"06:27:00","height":"4.610"},{"time":"18:52:00","height":"4.809"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2015-12-24","groups":[{"time":"07:18:00","height":"4.908"},{"time":"19:42:00","height":"5.012"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2015-12-25","groups":[{"time":"08:04:00","height":"5.132"},{"time":"20:28:00","height":"5.129"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2015-12-26","groups":[{"time":"08:48:00","height":"5.250"},{"time":"21:09:00","height":"5.142"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2015-12-27","groups":[{"time":"09:27:00","height":"5.252"},{"time":"21:49:00","height":"5.050"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2015-12-28","groups":[{"time":"10:05:00","height":"5.144"},{"time":"22:28:00","height":"4.866"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2015-12-29","groups":[{"time":"10:46:00","height":"4.944"},{"time":"23:09:00","height":"4.614"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2015-12-30","groups":[{"time":"11:26:00","height":"4.681"},{"time":"23:49:00","height":"4.321"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2015-12-31","groups":[{"time":"12:08:00","height":"4.383"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2016-01-01","groups":[{"time":"00:33:00","height":"4.015"},{"time":"12:52:00","height":"4.074"}],"sunrise":"08:29","sunset":"16:10"},{"date":"2016-01-02","groups":[{"time":"01:20:00","height":"3.721"},{"time":"13:44:00","height":"3.781"}],"sunrise":"08:29","sunset":"16:11"},{"date":"2016-01-03","groups":[{"time":"02:20:00","height":"3.480"},{"time":"14:49:00","height":"3.557"}],"sunrise":"08:28","sunset":"16:12"},{"date":"2016-01-04","groups":[{"time":"03:35:00","height":"3.371"},{"time":"16:04:00","height":"3.489"}],"sunrise":"08:28","sunset":"16:13"},{"date":"2016-01-05","groups":[{"time":"04:45:00","height":"3.474"},{"time":"17:10:00","height":"3.621"}],"sunrise":"08:28","sunset":"16:15"},{"date":"2016-01-06","groups":[{"time":"05:43:00","height":"3.748"},{"time":"18:04:00","height":"3.884"}],"sunrise":"08:27","sunset":"16:16"},{"date":"2016-01-07","groups":[{"time":"06:30:00","height":"4.097"},{"time":"18:50:00","height":"4.196"}],"sunrise":"08:27","sunset":"16:17"},{"date":"2016-01-08","groups":[{"time":"07:13:00","height":"4.451"},{"time":"19:31:00","height":"4.501"}],"sunrise":"08:27","sunset":"16:18"},{"date":"2016-01-09","groups":[{"time":"07:51:00","height":"4.770"},{"time":"20:10:00","height":"4.766"}],"sunrise":"08:26","sunset":"16:20"},{"date":"2016-01-10","groups":[{"time":"08:30:00","height":"5.030"},{"time":"20:49:00","height":"4.970"}],"sunrise":"08:25","sunset":"16:21"},{"date":"2016-01-11","groups":[{"time":"09:08:00","height":"5.214"},{"time":"21:27:00","height":"5.092"}],"sunrise":"08:25","sunset":"16:23"},{"date":"2016-01-12","groups":[{"time":"09:47:00","height":"5.308"},{"time":"22:07:00","height":"5.115"}],"sunrise":"08:24","sunset":"16:24"},{"date":"2016-01-13","groups":[{"time":"10:30:00","height":"5.298"},{"time":"22:53:00","height":"5.029"}],"sunrise":"08:23","sunset":"16:26"},{"date":"2016-01-14","groups":[{"time":"11:17:00","height":"5.176"},{"time":"23:41:00","height":"4.838"}],"sunrise":"08:22","sunset":"16:27"},{"date":"2016-01-15","groups":[{"time":"12:08:00","height":"4.953"}],"sunrise":"08:22","sunset":"16:29"},{"date":"2016-01-16","groups":[{"time":"00:33:00","height":"4.566"},{"time":"13:02:00","height":"4.657"}],"sunrise":"08:21","sunset":"16:31"},{"date":"2016-01-17","groups":[{"time":"01:30:00","height":"4.260"},{"time":"14:05:00","height":"4.340"}],"sunrise":"08:20","sunset":"16:32"},{"date":"2016-01-18","groups":[{"time":"02:38:00","height":"3.991"},{"time":"15:17:00","height":"4.089"}],"sunrise":"08:19","sunset":"16:34"},{"date":"2016-01-19","groups":[{"time":"03:54:00","height":"3.867"},{"time":"16:30:00","height":"4.008"}],"sunrise":"08:18","sunset":"16:36"},{"date":"2016-01-20","groups":[{"time":"05:07:00","height":"3.964"},{"time":"17:41:00","height":"4.133"}],"sunrise":"08:16","sunset":"16:37"},{"date":"2016-01-21","groups":[{"time":"06:13:00","height":"4.242"},{"time":"18:43:00","height":"4.388"}],"sunrise":"08:15","sunset":"16:39"},{"date":"2016-01-22","groups":[{"time":"07:09:00","height":"4.579"},{"time":"19:33:00","height":"4.659"}],"sunrise":"08:14","sunset":"16:41"},{"date":"2016-01-23","groups":[{"time":"07:56:00","height":"4.870"},{"time":"20:18:00","height":"4.865"}],"sunrise":"08:13","sunset":"16:43"},{"date":"2016-01-24","groups":[{"time":"08:37:00","height":"5.061"},{"time":"20:57:00","height":"4.976"}],"sunrise":"08:11","sunset":"16:44"},{"date":"2016-01-25","groups":[{"time":"09:14:00","height":"5.142"},{"time":"21:33:00","height":"4.988"}],"sunrise":"08:10","sunset":"16:46"},{"date":"2016-01-26","groups":[{"time":"09:48:00","height":"5.119"},{"time":"22:06:00","height":"4.909"}],"sunrise":"08:09","sunset":"16:48"},{"date":"2016-01-27","groups":[{"time":"10:23:00","height":"5.008"},{"time":"22:42:00","height":"4.755"}],"sunrise":"08:07","sunset":"16:50"},{"date":"2016-01-28","groups":[{"time":"10:57:00","height":"4.825"},{"time":"23:17:00","height":"4.541"}],"sunrise":"08:06","sunset":"16:52"},{"date":"2016-01-29","groups":[{"time":"11:33:00","height":"4.585"},{"time":"23:52:00","height":"4.278"}],"sunrise":"08:04","sunset":"16:54"},{"date":"2016-01-30","groups":[{"time":"12:09:00","height":"4.297"}],"sunrise":"08:03","sunset":"16:56"},{"date":"2016-01-31","groups":[{"time":"00:31:00","height":"3.979"},{"time":"12:50:00","height":"3.973"}],"sunrise":"08:01","sunset":"16:58"},{"date":"2016-02-01","groups":[{"time":"01:16:00","height":"3.668"},{"time":"13:40:00","height":"3.644"}],"sunrise":"08:00","sunset":"16:59"},{"date":"2016-02-02","groups":[{"time":"02:14:00","height":"3.394"},{"time":"14:46:00","height":"3.378"}],"sunrise":"07:58","sunset":"17:01"},{"date":"2016-02-03","groups":[{"time":"03:35:00","height":"3.263"},{"time":"16:08:00","height":"3.306"}],"sunrise":"07:56","sunset":"17:03"},{"date":"2016-02-04","groups":[{"time":"04:54:00","height":"3.406"},{"time":"17:25:00","height":"3.517"}],"sunrise":"07:55","sunset":"17:05"},{"date":"2016-02-05","groups":[{"time":"05:57:00","height":"3.776"},{"time":"18:22:00","height":"3.902"}],"sunrise":"07:53","sunset":"17:07"},{"date":"2016-02-06","groups":[{"time":"06:47:00","height":"4.231"},{"time":"19:09:00","height":"4.335"}],"sunrise":"07:51","sunset":"17:09"},{"date":"2016-02-07","groups":[{"time":"07:31:00","height":"4.680"},{"time":"19:52:00","height":"4.741"}],"sunrise":"07:49","sunset":"17:11"},{"date":"2016-02-08","groups":[{"time":"08:12:00","height":"5.073"},{"time":"20:33:00","height":"5.074"}],"sunrise":"07:47","sunset":"17:13"},{"date":"2016-02-09","groups":[{"time":"08:52:00","height":"5.375"},{"time":"21:13:00","height":"5.303"}],"sunrise":"07:46","sunset":"17:15"},{"date":"2016-02-10","groups":[{"time":"09:33:00","height":"5.560"},{"time":"21:53:00","height":"5.399"}],"sunrise":"07:44","sunset":"17:17"},{"date":"2016-02-11","groups":[{"time":"10:14:00","height":"5.600"},{"time":"22:37:00","height":"5.345"}],"sunrise":"07:42","sunset":"17:19"},{"date":"2016-02-12","groups":[{"time":"11:00:00","height":"5.480"},{"time":"23:22:00","height":"5.141"}],"sunrise":"07:40","sunset":"17:21"},{"date":"2016-02-13","groups":[{"time":"11:48:00","height":"5.204"}],"sunrise":"07:38","sunset":"17:23"},{"date":"2016-02-14","groups":[{"time":"00:10:00","height":"4.812"},{"time":"12:39:00","height":"4.804"}],"sunrise":"07:36","sunset":"17:24"},{"date":"2016-02-15","groups":[{"time":"01:03:00","height":"4.403"},{"time":"13:36:00","height":"4.340"}],"sunrise":"07:34","sunset":"17:26"},{"date":"2016-02-16","groups":[{"time":"02:07:00","height":"3.990"},{"time":"14:47:00","height":"3.916"}],"sunrise":"07:32","sunset":"17:28"},{"date":"2016-02-17","groups":[{"time":"03:26:00","height":"3.702"},{"time":"16:08:00","height":"3.693"}],"sunrise":"07:30","sunset":"17:30"},{"date":"2016-02-18","groups":[{"time":"04:48:00","height":"3.698"},{"time":"17:27:00","height":"3.783"}],"sunrise":"07:28","sunset":"17:32"},{"date":"2016-02-19","groups":[{"time":"06:02:00","height":"3.980"},{"time":"18:33:00","height":"4.094"}],"sunrise":"07:26","sunset":"17:34"},{"date":"2016-02-20","groups":[{"time":"06:59:00","height":"4.365"},{"time":"19:23:00","height":"4.439"}],"sunrise":"07:24","sunset":"17:36"},{"date":"2016-02-21","groups":[{"time":"07:44:00","height":"4.700"},{"time":"20:04:00","height":"4.710"}],"sunrise":"07:21","sunset":"17:38"},{"date":"2016-02-22","groups":[{"time":"08:22:00","height":"4.926"},{"time":"20:40:00","height":"4.880"}],"sunrise":"07:19","sunset":"17:40"},{"date":"2016-02-23","groups":[{"time":"08:56:00","height":"5.044"},{"time":"21:13:00","height":"4.954"}],"sunrise":"07:17","sunset":"17:42"},{"date":"2016-02-24","groups":[{"time":"09:27:00","height":"5.069"},{"time":"21:43:00","height":"4.944"}],"sunrise":"07:15","sunset":"17:44"},{"date":"2016-02-25","groups":[{"time":"09:56:00","height":"5.016"},{"time":"22:12:00","height":"4.860"}],"sunrise":"07:13","sunset":"17:46"},{"date":"2016-02-26","groups":[{"time":"10:27:00","height":"4.894"},{"time":"22:44:00","height":"4.707"}],"sunrise":"07:11","sunset":"17:47"},{"date":"2016-02-27","groups":[{"time":"10:58:00","height":"4.703"},{"time":"23:16:00","height":"4.489"}],"sunrise":"07:08","sunset":"17:49"},{"date":"2016-02-28","groups":[{"time":"11:31:00","height":"4.445"},{"time":"23:49:00","height":"4.212"}],"sunrise":"07:06","sunset":"17:51"},{"date":"2016-02-29","groups":[{"time":"12:07:00","height":"4.131"}],"sunrise":"07:04","sunset":"17:53"},{"date":"2016-03-01","groups":[{"time":"00:28:00","height":"3.893"},{"time":"12:48:00","height":"3.779"}],"sunrise":"07:02","sunset":"17:55"},{"date":"2016-03-02","groups":[{"time":"01:16:00","height":"3.563"},{"time":"13:44:00","height":"3.435"}],"sunrise":"06:59","sunset":"17:57"},{"date":"2016-03-03","groups":[{"time":"02:26:00","height":"3.298"},{"time":"15:07:00","height":"3.215"}],"sunrise":"06:57","sunset":"17:59"},{"date":"2016-03-04","groups":[{"time":"04:00:00","height":"3.270"},{"time":"16:40:00","height":"3.315"}],"sunrise":"06:55","sunset":"18:01"},{"date":"2016-03-05","groups":[{"time":"05:21:00","height":"3.596"},{"time":"17:52:00","height":"3.732"}],"sunrise":"06:52","sunset":"18:02"},{"date":"2016-03-06","groups":[{"time":"06:19:00","height":"4.111"},{"time":"18:44:00","height":"4.260"}],"sunrise":"06:50","sunset":"18:04"},{"date":"2016-03-07","groups":[{"time":"07:07:00","height":"4.654"},{"time":"19:31:00","height":"4.769"}],"sunrise":"06:48","sunset":"18:06"},{"date":"2016-03-08","groups":[{"time":"07:50:00","height":"5.139"},{"time":"20:13:00","height":"5.191"}],"sunrise":"06:45","sunset":"18:08"},{"date":"2016-03-09","groups":[{"time":"08:33:00","height":"5.512"},{"time":"20:54:00","height":"5.481"}],"sunrise":"06:43","sunset":"18:10"},{"date":"2016-03-10","groups":[{"time":"09:14:00","height":"5.735"},{"time":"21:35:00","height":"5.610"}],"sunrise":"06:41","sunset":"18:12"},{"date":"2016-03-11","groups":[{"time":"09:55:00","height":"5.779"},{"time":"22:15:00","height":"5.560"}],"sunrise":"06:38","sunset":"18:13"},{"date":"2016-03-12","groups":[{"time":"10:40:00","height":"5.627"},{"time":"23:00:00","height":"5.334"}],"sunrise":"06:36","sunset":"18:15"},{"date":"2016-03-13","groups":[{"time":"11:26:00","height":"5.292"},{"time":"23:48:00","height":"4.959"}],"sunrise":"06:34","sunset":"18:17"},{"date":"2016-03-14","groups":[{"time":"12:16:00","height":"4.815"}],"sunrise":"06:31","sunset":"18:19"},{"date":"2016-03-15","groups":[{"time":"00:39:00","height":"4.489"},{"time":"13:12:00","height":"4.270"}],"sunrise":"06:29","sunset":"18:21"},{"date":"2016-03-16","groups":[{"time":"01:40:00","height":"4.003"},{"time":"14:21:00","height":"3.770"}],"sunrise":"06:27","sunset":"18:22"},{"date":"2016-03-17","groups":[{"time":"02:59:00","height":"3.635"},{"time":"15:47:00","height":"3.492"}],"sunrise":"06:24","sunset":"18:24"},{"date":"2016-03-18","groups":[{"time":"04:27:00","height":"3.574"},{"time":"17:10:00","height":"3.581"}],"sunrise":"06:22","sunset":"18:26"},{"date":"2016-03-19","groups":[{"time":"05:44:00","height":"3.842"},{"time":"18:16:00","height":"3.923"}],"sunrise":"06:19","sunset":"18:28"},{"date":"2016-03-20","groups":[{"time":"06:41:00","height":"4.226"},{"time":"19:04:00","height":"4.296"}],"sunrise":"06:17","sunset":"18:30"},{"date":"2016-03-21","groups":[{"time":"07:23:00","height":"4.558"},{"time":"19:44:00","height":"4.592"}],"sunrise":"06:15","sunset":"18:31"},{"date":"2016-03-22","groups":[{"time":"08:00:00","height":"4.786"},{"time":"20:18:00","height":"4.788"}],"sunrise":"06:12","sunset":"18:33"},{"date":"2016-03-23","groups":[{"time":"08:33:00","height":"4.916"},{"time":"20:49:00","height":"4.896"}],"sunrise":"06:10","sunset":"18:35"},{"date":"2016-03-24","groups":[{"time":"09:03:00","height":"4.968"},{"time":"21:18:00","height":"4.931"}],"sunrise":"06:07","sunset":"18:37"},{"date":"2016-03-25","groups":[{"time":"09:31:00","height":"4.954"},{"time":"21:45:00","height":"4.899"}],"sunrise":"06:05","sunset":"18:39"},{"date":"2016-03-26","groups":[{"time":"09:57:00","height":"4.877"},{"time":"22:12:00","height":"4.799"}],"sunrise":"06:03","sunset":"18:40"},{"date":"2016-03-27","groups":[{"time":"10:27:00","height":"4.730"},{"time":"22:43:00","height":"4.628"}],"sunrise":"06:00","sunset":"18:42"},{"date":"2016-03-28","groups":[{"time":"11:58:00","height":"4.514"}],"sunrise":"06:58","sunset":"19:44"},{"date":"2016-03-29","groups":[{"time":"00:16:00","height":"4.391"},{"time":"12:33:00","height":"4.234"}],"sunrise":"06:56","sunset":"19:46"},{"date":"2016-03-30","groups":[{"time":"00:52:00","height":"4.101"},{"time":"13:13:00","height":"3.909"}],"sunrise":"06:53","sunset":"19:48"},{"date":"2016-03-31","groups":[{"time":"01:38:00","height":"3.782"},{"time":"14:05:00","height":"3.571"}],"sunrise":"06:51","sunset":"19:49"},{"date":"2016-04-01","groups":[{"time":"02:43:00","height":"3.489"},{"time":"15:22:00","height":"3.314"}],"sunrise":"06:48","sunset":"19:51"},{"date":"2016-04-02","groups":[{"time":"04:14:00","height":"3.378"},{"time":"16:59:00","height":"3.337"}],"sunrise":"06:46","sunset":"19:53"},{"date":"2016-04-03","groups":[{"time":"05:41:00","height":"3.618"},{"time":"18:18:00","height":"3.718"}],"sunrise":"06:44","sunset":"19:55"},{"date":"2016-04-04","groups":[{"time":"06:46:00","height":"4.114"},{"time":"19:16:00","height":"4.260"}],"sunrise":"06:41","sunset":"19:56"},{"date":"2016-04-05","groups":[{"time":"07:39:00","height":"4.669"},{"time":"20:04:00","height":"4.796"}],"sunrise":"06:39","sunset":"19:58"},{"date":"2016-04-06","groups":[{"time":"08:26:00","height":"5.168"},{"time":"20:49:00","height":"5.239"}],"sunrise":"06:37","sunset":"20:00"},{"date":"2016-04-07","groups":[{"time":"09:10:00","height":"5.542"},{"time":"21:32:00","height":"5.540"}],"sunrise":"06:34","sunset":"20:02"},{"date":"2016-04-08","groups":[{"time":"09:53:00","height":"5.751"},{"time":"22:14:00","height":"5.672"}],"sunrise":"06:32","sunset":"20:04"},{"date":"2016-04-09","groups":[{"time":"10:36:00","height":"5.770"},{"time":"22:54:00","height":"5.620"}],"sunrise":"06:30","sunset":"20:05"},{"date":"2016-04-10","groups":[{"time":"11:18:00","height":"5.591"},{"time":"23:39:00","height":"5.391"}],"sunrise":"06:27","sunset":"20:07"},{"date":"2016-04-11","groups":[{"time":"12:06:00","height":"5.232"}],"sunrise":"06:25","sunset":"20:09"},{"date":"2016-04-12","groups":[{"time":"00:26:00","height":"5.015"},{"time":"12:56:00","height":"4.745"}],"sunrise":"06:23","sunset":"20:11"},{"date":"2016-04-13","groups":[{"time":"01:17:00","height":"4.548"},{"time":"13:51:00","height":"4.209"}],"sunrise":"06:20","sunset":"20:12"},{"date":"2016-04-14","groups":[{"time":"02:17:00","height":"4.069"},{"time":"14:57:00","height":"3.727"}],"sunrise":"06:18","sunset":"20:14"},{"date":"2016-04-15","groups":[{"time":"03:31:00","height":"3.694"},{"time":"16:20:00","height":"3.447"}],"sunrise":"06:16","sunset":"20:16"},{"date":"2016-04-16","groups":[{"time":"04:59:00","height":"3.578"},{"time":"17:41:00","height":"3.495"}],"sunrise":"06:14","sunset":"20:18"},{"date":"2016-04-17","groups":[{"time":"06:13:00","height":"3.759"},{"time":"18:47:00","height":"3.787"}],"sunrise":"06:11","sunset":"20:20"},{"date":"2016-04-18","groups":[{"time":"07:11:00","height":"4.072"},{"time":"19:36:00","height":"4.133"}],"sunrise":"06:09","sunset":"20:21"},{"date":"2016-04-19","groups":[{"time":"07:55:00","height":"4.368"},{"time":"20:15:00","height":"4.427"}],"sunrise":"06:07","sunset":"20:23"},{"date":"2016-04-20","groups":[{"time":"08:31:00","height":"4.589"},{"time":"20:49:00","height":"4.641"}],"sunrise":"06:05","sunset":"20:25"},{"date":"2016-04-21","groups":[{"time":"09:04:00","height":"4.733"},{"time":"21:20:00","height":"4.781"}],"sunrise":"06:03","sunset":"20:27"},{"date":"2016-04-22","groups":[{"time":"09:35:00","height":"4.810"},{"time":"21:50:00","height":"4.856"}],"sunrise":"06:00","sunset":"20:28"},{"date":"2016-04-23","groups":[{"time":"10:04:00","height":"4.831"},{"time":"22:19:00","height":"4.870"}],"sunrise":"05:58","sunset":"20:30"},{"date":"2016-04-24","groups":[{"time":"10:32:00","height":"4.795"},{"time":"22:47:00","height":"4.821"}],"sunrise":"05:56","sunset":"20:32"},{"date":"2016-04-25","groups":[{"time":"11:00:00","height":"4.698"},{"time":"23:16:00","height":"4.705"}],"sunrise":"05:54","sunset":"20:34"},{"date":"2016-04-26","groups":[{"time":"11:32:00","height":"4.534"},{"time":"23:51:00","height":"4.521"}],"sunrise":"05:52","sunset":"20:35"},{"date":"2016-04-27","groups":[{"time":"12:09:00","height":"4.310"}],"sunrise":"05:50","sunset":"20:37"},{"date":"2016-04-28","groups":[{"time":"00:30:00","height":"4.282"},{"time":"12:51:00","height":"4.039"}],"sunrise":"05:48","sunset":"20:39"},{"date":"2016-04-29","groups":[{"time":"01:16:00","height":"4.011"},{"time":"13:44:00","height":"3.754"}],"sunrise":"05:46","sunset":"20:41"},{"date":"2016-04-30","groups":[{"time":"02:19:00","height":"3.760"},{"time":"14:56:00","height":"3.534"}],"sunrise":"05:44","sunset":"20:42"},{"date":"2016-05-01","groups":[{"time":"03:40:00","height":"3.647"},{"time":"16:26:00","height":"3.527"}],"sunrise":"05:42","sunset":"20:44"},{"date":"2016-05-02","groups":[{"time":"05:05:00","height":"3.801"},{"time":"17:42:00","height":"3.814"}],"sunrise":"05:40","sunset":"20:46"},{"date":"2016-05-03","groups":[{"time":"06:12:00","height":"4.190"},{"time":"18:44:00","height":"4.274"}],"sunrise":"05:38","sunset":"20:48"},{"date":"2016-05-04","groups":[{"time":"07:10:00","height":"4.662"},{"time":"19:37:00","height":"4.753"}],"sunrise":"05:36","sunset":"20:49"},{"date":"2016-05-05","groups":[{"time":"08:00:00","height":"5.093"},{"time":"20:24:00","height":"5.157"}],"sunrise":"05:34","sunset":"20:51"},{"date":"2016-05-06","groups":[{"time":"08:47:00","height":"5.412"},{"time":"21:09:00","height":"5.436"}],"sunrise":"05:32","sunset":"20:53"},{"date":"2016-05-07","groups":[{"time":"09:33:00","height":"5.582"},{"time":"21:53:00","height":"5.564"}],"sunrise":"05:31","sunset":"20:55"},{"date":"2016-05-08","groups":[{"time":"10:17:00","height":"5.584"},{"time":"22:37:00","height":"5.531"}],"sunrise":"05:29","sunset":"20:56"},{"date":"2016-05-09","groups":[{"time":"11:00:00","height":"5.416"},{"time":"23:20:00","height":"5.339"}],"sunrise":"05:27","sunset":"20:58"},{"date":"2016-05-10","groups":[{"time":"11:49:00","height":"5.098"}],"sunrise":"05:25","sunset":"21:00"},{"date":"2016-05-11","groups":[{"time":"00:09:00","height":"5.017"},{"time":"12:38:00","height":"4.677"}],"sunrise":"05:23","sunset":"21:01"},{"date":"2016-05-12","groups":[{"time":"01:00:00","height":"4.614"},{"time":"13:30:00","height":"4.220"}],"sunrise":"05:22","sunset":"21:03"},{"date":"2016-05-13","groups":[{"time":"01:55:00","height":"4.197"},{"time":"14:30:00","height":"3.805"}],"sunrise":"05:20","sunset":"21:05"},{"date":"2016-05-14","groups":[{"time":"03:00:00","height":"3.844"},{"time":"15:43:00","height":"3.525"}],"sunrise":"05:19","sunset":"21:06"},{"date":"2016-05-15","groups":[{"time":"04:17:00","height":"3.653"},{"time":"16:59:00","height":"3.471"}],"sunrise":"05:17","sunset":"21:08"},{"date":"2016-05-16","groups":[{"time":"05:29:00","height":"3.684"},{"time":"18:04:00","height":"3.636"}],"sunrise":"05:15","sunset":"21:09"},{"date":"2016-05-17","groups":[{"time":"06:28:00","height":"3.872"},{"time":"18:57:00","height":"3.908"}],"sunrise":"05:14","sunset":"21:11"},{"date":"2016-05-18","groups":[{"time":"07:17:00","height":"4.109"},{"time":"19:41:00","height":"4.187"}],"sunrise":"05:12","sunset":"21:12"},{"date":"2016-05-19","groups":[{"time":"07:58:00","height":"4.326"},{"time":"20:17:00","height":"4.425"}],"sunrise":"05:11","sunset":"21:14"},{"date":"2016-05-20","groups":[{"time":"08:33:00","height":"4.495"},{"time":"20:51:00","height":"4.607"}],"sunrise":"05:10","sunset":"21:16"},{"date":"2016-05-21","groups":[{"time":"09:06:00","height":"4.612"},{"time":"21:23:00","height":"4.732"}],"sunrise":"05:08","sunset":"21:17"},{"date":"2016-05-22","groups":[{"time":"09:38:00","height":"4.680"},{"time":"21:54:00","height":"4.802"}],"sunrise":"05:07","sunset":"21:18"},{"date":"2016-05-23","groups":[{"time":"10:09:00","height":"4.699"},{"time":"22:25:00","height":"4.814"}],"sunrise":"05:06","sunset":"21:20"},{"date":"2016-05-24","groups":[{"time":"10:40:00","height":"4.664"},{"time":"22:57:00","height":"4.764"}],"sunrise":"05:04","sunset":"21:21"},{"date":"2016-05-25","groups":[{"time":"11:14:00","height":"4.570"},{"time":"23:33:00","height":"4.650"}],"sunrise":"05:03","sunset":"21:23"},{"date":"2016-05-26","groups":[{"time":"11:54:00","height":"4.418"}],"sunrise":"05:02","sunset":"21:24"},{"date":"2016-05-27","groups":[{"time":"00:16:00","height":"4.481"},{"time":"12:38:00","height":"4.219"}],"sunrise":"05:01","sunset":"21:25"},{"date":"2016-05-28","groups":[{"time":"01:05:00","height":"4.279"},{"time":"13:33:00","height":"4.002"}],"sunrise":"05:00","sunset":"21:27"},{"date":"2016-05-29","groups":[{"time":"02:04:00","height":"4.086"},{"time":"14:38:00","height":"3.824"}],"sunrise":"04:59","sunset":"21:28"},{"date":"2016-05-30","groups":[{"time":"03:15:00","height":"3.973"},{"time":"15:54:00","height":"3.776"}],"sunrise":"04:58","sunset":"21:29"},{"date":"2016-05-31","groups":[{"time":"04:33:00","height":"4.020"},{"time":"17:09:00","height":"3.922"}],"sunrise":"04:57","sunset":"21:30"},{"date":"2016-06-01","groups":[{"time":"05:40:00","height":"4.240"},{"time":"18:13:00","height":"4.230"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2016-06-02","groups":[{"time":"06:41:00","height":"4.558"},{"time":"19:11:00","height":"4.598"}],"sunrise":"04:55","sunset":"21:33"},{"date":"2016-06-03","groups":[{"time":"07:36:00","height":"4.877"},{"time":"20:02:00","height":"4.939"}],"sunrise":"04:55","sunset":"21:34"},{"date":"2016-06-04","groups":[{"time":"08:27:00","height":"5.131"},{"time":"20:50:00","height":"5.199"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2016-06-05","groups":[{"time":"09:15:00","height":"5.281"},{"time":"21:36:00","height":"5.345"}],"sunrise":"04:53","sunset":"21:36"},{"date":"2016-06-06","groups":[{"time":"10:02:00","height":"5.307"},{"time":"22:22:00","height":"5.361"}],"sunrise":"04:53","sunset":"21:37"},{"date":"2016-06-07","groups":[{"time":"10:46:00","height":"5.202"},{"time":"23:04:00","height":"5.245"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2016-06-08","groups":[{"time":"11:31:00","height":"4.978"},{"time":"23:52:00","height":"5.013"}],"sunrise":"04:52","sunset":"21:39"},{"date":"2016-06-09","groups":[{"time":"12:19:00","height":"4.666"}],"sunrise":"04:51","sunset":"21:39"},{"date":"2016-06-10","groups":[{"time":"00:39:00","height":"4.702"},{"time":"13:08:00","height":"4.311"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2016-06-11","groups":[{"time":"01:28:00","height":"4.356"},{"time":"13:59:00","height":"3.962"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2016-06-12","groups":[{"time":"02:22:00","height":"4.026"},{"time":"14:56:00","height":"3.670"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2016-06-13","groups":[{"time":"03:24:00","height":"3.761"},{"time":"16:04:00","height":"3.494"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2016-06-14","groups":[{"time":"04:35:00","height":"3.624"},{"time":"17:12:00","height":"3.489"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2016-06-15","groups":[{"time":"05:38:00","height":"3.650"},{"time":"18:11:00","height":"3.645"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2016-06-16","groups":[{"time":"06:33:00","height":"3.801"},{"time":"19:01:00","height":"3.890"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2016-06-17","groups":[{"time":"07:21:00","height":"4.008"},{"time":"19:44:00","height":"4.156"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2016-06-18","groups":[{"time":"08:02:00","height":"4.220"},{"time":"20:23:00","height":"4.399"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2016-06-19","groups":[{"time":"08:40:00","height":"4.403"},{"time":"20:59:00","height":"4.599"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2016-06-20","groups":[{"time":"09:16:00","height":"4.547"},{"time":"21:34:00","height":"4.747"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2016-06-21","groups":[{"time":"09:50:00","height":"4.647"},{"time":"22:07:00","height":"4.841"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2016-06-22","groups":[{"time":"10:25:00","height":"4.699"},{"time":"22:43:00","height":"4.876"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2016-06-23","groups":[{"time":"11:01:00","height":"4.692"},{"time":"23:21:00","height":"4.847"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2016-06-24","groups":[{"time":"11:42:00","height":"4.619"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2016-06-25","groups":[{"time":"00:06:00","height":"4.752"},{"time":"12:29:00","height":"4.484"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2016-06-26","groups":[{"time":"00:55:00","height":"4.602"},{"time":"13:20:00","height":"4.304"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2016-06-27","groups":[{"time":"01:49:00","height":"4.423"},{"time":"14:18:00","height":"4.116"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2016-06-28","groups":[{"time":"02:52:00","height":"4.254"},{"time":"15:25:00","height":"3.974"}],"sunrise":"04:53","sunset":"21:45"},{"date":"2016-06-29","groups":[{"time":"04:02:00","height":"4.151"},{"time":"16:39:00","height":"3.951"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2016-06-30","groups":[{"time":"05:12:00","height":"4.172"},{"time":"17:46:00","height":"4.088"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2016-07-01","groups":[{"time":"06:17:00","height":"4.323"},{"time":"18:49:00","height":"4.348"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2016-07-02","groups":[{"time":"07:17:00","height":"4.551"},{"time":"19:45:00","height":"4.653"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2016-07-03","groups":[{"time":"08:13:00","height":"4.786"},{"time":"20:37:00","height":"4.930"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2016-07-04","groups":[{"time":"09:03:00","height":"4.970"},{"time":"21:25:00","height":"5.127"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2016-07-05","groups":[{"time":"09:50:00","height":"5.064"},{"time":"22:09:00","height":"5.213"}],"sunrise":"04:59","sunset":"21:43"},{"date":"2016-07-06","groups":[{"time":"10:32:00","height":"5.050"},{"time":"22:50:00","height":"5.179"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2016-07-07","groups":[{"time":"11:13:00","height":"4.930"},{"time":"23:31:00","height":"5.034"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2016-07-08","groups":[{"time":"11:56:00","height":"4.720"}],"sunrise":"05:02","sunset":"21:41"},{"date":"2016-07-09","groups":[{"time":"00:15:00","height":"4.801"},{"time":"12:38:00","height":"4.451"}],"sunrise":"05:03","sunset":"21:40"},{"date":"2016-07-10","groups":[{"time":"00:57:00","height":"4.514"},{"time":"13:21:00","height":"4.152"}],"sunrise":"05:04","sunset":"21:39"},{"date":"2016-07-11","groups":[{"time":"01:40:00","height":"4.203"},{"time":"14:06:00","height":"3.854"}],"sunrise":"05:05","sunset":"21:38"},{"date":"2016-07-12","groups":[{"time":"02:28:00","height":"3.895"},{"time":"14:59:00","height":"3.588"}],"sunrise":"05:06","sunset":"21:37"},{"date":"2016-07-13","groups":[{"time":"03:25:00","height":"3.628"},{"time":"16:05:00","height":"3.412"}],"sunrise":"05:07","sunset":"21:36"},{"date":"2016-07-14","groups":[{"time":"04:36:00","height":"3.471"},{"time":"17:17:00","height":"3.407"}],"sunrise":"05:09","sunset":"21:35"},{"date":"2016-07-15","groups":[{"time":"05:44:00","height":"3.496"},{"time":"18:20:00","height":"3.591"}],"sunrise":"05:10","sunset":"21:34"},{"date":"2016-07-16","groups":[{"time":"06:43:00","height":"3.684"},{"time":"19:12:00","height":"3.888"}],"sunrise":"05:11","sunset":"21:33"},{"date":"2016-07-17","groups":[{"time":"07:33:00","height":"3.954"},{"time":"19:57:00","height":"4.214"}],"sunrise":"05:13","sunset":"21:32"},{"date":"2016-07-18","groups":[{"time":"08:15:00","height":"4.237"},{"time":"20:36:00","height":"4.517"}],"sunrise":"05:14","sunset":"21:31"},{"date":"2016-07-19","groups":[{"time":"08:55:00","height":"4.495"},{"time":"21:14:00","height":"4.774"}],"sunrise":"05:15","sunset":"21:29"},{"date":"2016-07-20","groups":[{"time":"09:33:00","height":"4.708"},{"time":"21:51:00","height":"4.973"}],"sunrise":"05:17","sunset":"21:28"},{"date":"2016-07-21","groups":[{"time":"10:10:00","height":"4.863"},{"time":"22:29:00","height":"5.103"}],"sunrise":"05:18","sunset":"21:27"},{"date":"2016-07-22","groups":[{"time":"10:48:00","height":"4.942"},{"time":"23:07:00","height":"5.149"}],"sunrise":"05:20","sunset":"21:25"},{"date":"2016-07-23","groups":[{"time":"11:28:00","height":"4.930"},{"time":"23:52:00","height":"5.099"}],"sunrise":"05:21","sunset":"21:24"},{"date":"2016-07-24","groups":[{"time":"12:13:00","height":"4.820"}],"sunrise":"05:23","sunset":"21:23"},{"date":"2016-07-25","groups":[{"time":"00:38:00","height":"4.950"},{"time":"13:02:00","height":"4.621"}],"sunrise":"05:24","sunset":"21:21"},{"date":"2016-07-26","groups":[{"time":"01:29:00","height":"4.717"},{"time":"13:55:00","height":"4.362"}],"sunrise":"05:26","sunset":"21:20"},{"date":"2016-07-27","groups":[{"time":"02:27:00","height":"4.432"},{"time":"14:57:00","height":"4.096"}],"sunrise":"05:27","sunset":"21:18"},{"date":"2016-07-28","groups":[{"time":"03:33:00","height":"4.158"},{"time":"16:10:00","height":"3.906"}],"sunrise":"05:29","sunset":"21:16"},{"date":"2016-07-29","groups":[{"time":"04:49:00","height":"3.995"},{"time":"17:25:00","height":"3.900"}],"sunrise":"05:30","sunset":"21:15"},{"date":"2016-07-30","groups":[{"time":"06:00:00","height":"4.029"},{"time":"18:35:00","height":"4.106"}],"sunrise":"05:32","sunset":"21:13"},{"date":"2016-07-31","groups":[{"time":"07:08:00","height":"4.241"},{"time":"19:37:00","height":"4.436"}],"sunrise":"05:33","sunset":"21:11"},{"date":"2016-08-01","groups":[{"time":"08:05:00","height":"4.528"},{"time":"20:30:00","height":"4.768"}],"sunrise":"05:35","sunset":"21:10"},{"date":"2016-08-02","groups":[{"time":"08:54:00","height":"4.784"},{"time":"21:15:00","height":"5.018"}],"sunrise":"05:37","sunset":"21:08"},{"date":"2016-08-03","groups":[{"time":"09:37:00","height":"4.949"},{"time":"21:55:00","height":"5.151"}],"sunrise":"05:38","sunset":"21:06"},{"date":"2016-08-04","groups":[{"time":"10:16:00","height":"5.005"},{"time":"22:33:00","height":"5.166"}],"sunrise":"05:40","sunset":"21:04"},{"date":"2016-08-05","groups":[{"time":"10:52:00","height":"4.957"},{"time":"23:08:00","height":"5.074"}],"sunrise":"05:42","sunset":"21:02"},{"date":"2016-08-06","groups":[{"time":"11:28:00","height":"4.820"},{"time":"23:44:00","height":"4.897"}],"sunrise":"05:43","sunset":"21:01"},{"date":"2016-08-07","groups":[{"time":"12:05:00","height":"4.612"}],"sunrise":"05:45","sunset":"20:59"},{"date":"2016-08-08","groups":[{"time":"00:21:00","height":"4.655"},{"time":"12:41:00","height":"4.353"}],"sunrise":"05:47","sunset":"20:57"},{"date":"2016-08-09","groups":[{"time":"00:57:00","height":"4.365"},{"time":"13:18:00","height":"4.061"}],"sunrise":"05:48","sunset":"20:55"},{"date":"2016-08-10","groups":[{"time":"01:37:00","height":"4.042"},{"time":"14:02:00","height":"3.752"}],"sunrise":"05:50","sunset":"20:53"},{"date":"2016-08-11","groups":[{"time":"02:23:00","height":"3.707"},{"time":"14:56:00","height":"3.466"}],"sunrise":"05:52","sunset":"20:51"},{"date":"2016-08-12","groups":[{"time":"03:24:00","height":"3.412"},{"time":"16:11:00","height":"3.288"}],"sunrise":"05:53","sunset":"20:49"},{"date":"2016-08-13","groups":[{"time":"04:46:00","height":"3.272"},{"time":"17:34:00","height":"3.357"}],"sunrise":"05:55","sunset":"20:47"},{"date":"2016-08-14","groups":[{"time":"06:05:00","height":"3.409"},{"time":"18:41:00","height":"3.672"}],"sunrise":"05:57","sunset":"20:45"},{"date":"2016-08-15","groups":[{"time":"07:05:00","height":"3.747"},{"time":"19:31:00","height":"4.091"}],"sunrise":"05:58","sunset":"20:43"},{"date":"2016-08-16","groups":[{"time":"07:53:00","height":"4.151"},{"time":"20:14:00","height":"4.514"}],"sunrise":"06:00","sunset":"20:40"},{"date":"2016-08-17","groups":[{"time":"08:34:00","height":"4.540"},{"time":"20:53:00","height":"4.890"}],"sunrise":"06:02","sunset":"20:38"},{"date":"2016-08-18","groups":[{"time":"09:13:00","height":"4.872"},{"time":"21:32:00","height":"5.193"}],"sunrise":"06:03","sunset":"20:36"},{"date":"2016-08-19","groups":[{"time":"09:52:00","height":"5.121"},{"time":"22:11:00","height":"5.399"}],"sunrise":"06:05","sunset":"20:34"},{"date":"2016-08-20","groups":[{"time":"10:31:00","height":"5.261"},{"time":"22:50:00","height":"5.486"}],"sunrise":"06:07","sunset":"20:32"},{"date":"2016-08-21","groups":[{"time":"11:10:00","height":"5.272"},{"time":"23:32:00","height":"5.432"}],"sunrise":"06:08","sunset":"20:30"},{"date":"2016-08-22","groups":[{"time":"11:54:00","height":"5.144"}],"sunrise":"06:10","sunset":"20:27"},{"date":"2016-08-23","groups":[{"time":"00:19:00","height":"5.231"},{"time":"12:41:00","height":"4.887"}],"sunrise":"06:12","sunset":"20:25"},{"date":"2016-08-24","groups":[{"time":"01:08:00","height":"4.900"},{"time":"13:31:00","height":"4.535"}],"sunrise":"06:14","sunset":"20:23"},{"date":"2016-08-25","groups":[{"time":"02:03:00","height":"4.482"},{"time":"14:31:00","height":"4.148"}],"sunrise":"06:15","sunset":"20:21"},{"date":"2016-08-26","groups":[{"time":"03:09:00","height":"4.060"},{"time":"15:45:00","height":"3.831"}],"sunrise":"06:17","sunset":"20:18"},{"date":"2016-08-27","groups":[{"time":"04:30:00","height":"3.776"},{"time":"17:10:00","height":"3.745"}],"sunrise":"06:19","sunset":"20:16"},{"date":"2016-08-28","groups":[{"time":"05:51:00","height":"3.780"},{"time":"18:27:00","height":"3.965"}],"sunrise":"06:20","sunset":"20:14"},{"date":"2016-08-29","groups":[{"time":"07:02:00","height":"4.054"},{"time":"19:31:00","height":"4.353"}],"sunrise":"06:22","sunset":"20:12"},{"date":"2016-08-30","groups":[{"time":"07:58:00","height":"4.418"},{"time":"20:20:00","height":"4.725"}],"sunrise":"06:24","sunset":"20:09"},{"date":"2016-08-31","groups":[{"time":"08:43:00","height":"4.726"},{"time":"21:02:00","height":"4.990"}],"sunrise":"06:25","sunset":"20:07"},{"date":"2017-01-01","groups":[{"time":"10:06:00","height":"4.933"},{"time":"22:24:00","height":"4.713"}],"sunrise":"08:29","sunset":"16:11"},{"date":"2017-01-02","groups":[{"time":"10:45:00","height":"4.853"},{"time":"23:05:00","height":"4.593"}],"sunrise":"08:29","sunset":"16:12"},{"date":"2017-01-03","groups":[{"time":"11:29:00","height":"4.712"},{"time":"23:50:00","height":"4.416"}],"sunrise":"08:28","sunset":"16:13"},{"date":"2017-01-04","groups":[{"time":"12:17:00","height":"4.524"}],"sunrise":"08:28","sunset":"16:14"},{"date":"2017-01-05","groups":[{"time":"00:42:00","height":"4.206"},{"time":"13:13:00","height":"4.318"}],"sunrise":"08:28","sunset":"16:15"},{"date":"2017-01-06","groups":[{"time":"01:43:00","height":"4.004"},{"time":"14:20:00","height":"4.143"}],"sunrise":"08:27","sunset":"16:17"},{"date":"2017-01-07","groups":[{"time":"02:56:00","height":"3.883"},{"time":"15:35:00","height":"4.075"}],"sunrise":"08:27","sunset":"16:18"},{"date":"2017-01-08","groups":[{"time":"04:11:00","height":"3.930"},{"time":"16:45:00","height":"4.175"}],"sunrise":"08:26","sunset":"16:20"},{"date":"2017-01-09","groups":[{"time":"05:19:00","height":"4.169"},{"time":"17:50:00","height":"4.422"}],"sunrise":"08:26","sunset":"16:21"},{"date":"2017-01-10","groups":[{"time":"06:21:00","height":"4.522"},{"time":"18:49:00","height":"4.730"}],"sunrise":"08:25","sunset":"16:22"},{"date":"2017-01-11","groups":[{"time":"07:16:00","height":"4.892"},{"time":"19:43:00","height":"5.017"}],"sunrise":"08:24","sunset":"16:24"},{"date":"2017-01-12","groups":[{"time":"08:05:00","height":"5.200"},{"time":"20:31:00","height":"5.216"}],"sunrise":"08:23","sunset":"16:25"},{"date":"2017-01-13","groups":[{"time":"08:51:00","height":"5.394"},{"time":"21:15:00","height":"5.294"}],"sunrise":"08:23","sunset":"16:27"},{"date":"2017-01-14","groups":[{"time":"09:34:00","height":"5.447"},{"time":"21:56:00","height":"5.237"}],"sunrise":"08:22","sunset":"16:29"},{"date":"2017-01-15","groups":[{"time":"10:15:00","height":"5.358"},{"time":"22:40:00","height":"5.056"}],"sunrise":"08:21","sunset":"16:30"},{"date":"2017-01-16","groups":[{"time":"10:59:00","height":"5.142"},{"time":"23:22:00","height":"4.778"}],"sunrise":"08:20","sunset":"16:32"},{"date":"2017-01-17","groups":[{"time":"11:42:00","height":"4.834"}],"sunrise":"08:19","sunset":"16:34"},{"date":"2017-01-18","groups":[{"time":"00:04:00","height":"4.440"},{"time":"12:24:00","height":"4.473"}],"sunrise":"08:18","sunset":"16:35"},{"date":"2017-01-19","groups":[{"time":"00:49:00","height":"4.081"},{"time":"13:09:00","height":"4.097"}],"sunrise":"08:17","sunset":"16:37"},{"date":"2017-01-20","groups":[{"time":"01:38:00","height":"3.737"},{"time":"14:02:00","height":"3.745"}],"sunrise":"08:16","sunset":"16:39"},{"date":"2017-01-21","groups":[{"time":"02:38:00","height":"3.459"},{"time":"15:11:00","height":"3.480"}],"sunrise":"08:14","sunset":"16:40"},{"date":"2017-01-22","groups":[{"time":"03:56:00","height":"3.340"},{"time":"16:27:00","height":"3.408"}],"sunrise":"08:13","sunset":"16:42"},{"date":"2017-01-23","groups":[{"time":"05:07:00","height":"3.459"},{"time":"17:34:00","height":"3.558"}],"sunrise":"08:12","sunset":"16:44"},{"date":"2017-01-24","groups":[{"time":"06:06:00","height":"3.749"},{"time":"18:28:00","height":"3.837"}],"sunrise":"08:10","sunset":"16:46"},{"date":"2017-01-25","groups":[{"time":"06:53:00","height":"4.095"},{"time":"19:12:00","height":"4.144"}],"sunrise":"08:09","sunset":"16:48"},{"date":"2017-01-26","groups":[{"time":"07:32:00","height":"4.425"},{"time":"19:50:00","height":"4.425"}],"sunrise":"08:08","sunset":"16:50"},{"date":"2017-01-27","groups":[{"time":"08:08:00","height":"4.705"},{"time":"20:25:00","height":"4.659"}],"sunrise":"08:06","sunset":"16:51"},{"date":"2017-01-28","groups":[{"time":"08:43:00","height":"4.925"},{"time":"21:00:00","height":"4.840"}],"sunrise":"08:05","sunset":"16:53"},{"date":"2017-01-29","groups":[{"time":"09:17:00","height":"5.082"},{"time":"21:34:00","height":"4.955"}],"sunrise":"08:03","sunset":"16:55"},{"date":"2017-01-30","groups":[{"time":"09:52:00","height":"5.165"},{"time":"22:09:00","height":"4.987"}],"sunrise":"08:02","sunset":"16:57"},{"date":"2017-01-31","groups":[{"time":"10:30:00","height":"5.158"},{"time":"22:50:00","height":"4.923"}],"sunrise":"08:00","sunset":"16:59"},{"date":"2017-02-01","groups":[{"time":"11:12:00","height":"5.050"},{"time":"23:33:00","height":"4.758"}],"sunrise":"07:58","sunset":"17:01"},{"date":"2017-02-02","groups":[{"time":"11:58:00","height":"4.843"}],"sunrise":"07:57","sunset":"17:03"},{"date":"2017-02-03","groups":[{"time":"00:20:00","height":"4.509"},{"time":"12:49:00","height":"4.556"}],"sunrise":"07:55","sunset":"17:05"},{"date":"2017-02-04","groups":[{"time":"01:14:00","height":"4.207"},{"time":"13:48:00","height":"4.230"}],"sunrise":"07:53","sunset":"17:07"},{"date":"2017-02-05","groups":[{"time":"02:21:00","height":"3.919"},{"time":"15:03:00","height":"3.956"}],"sunrise":"07:51","sunset":"17:09"},{"date":"2017-02-06","groups":[{"time":"03:42:00","height":"3.768"},{"time":"16:22:00","height":"3.873"}],"sunrise":"07:50","sunset":"17:10"},{"date":"2017-02-07","groups":[{"time":"05:00:00","height":"3.880"},{"time":"17:37:00","height":"4.050"}],"sunrise":"07:48","sunset":"17:12"},{"date":"2017-02-08","groups":[{"time":"06:11:00","height":"4.223"},{"time":"18:43:00","height":"4.395"}],"sunrise":"07:46","sunset":"17:14"},{"date":"2017-02-09","groups":[{"time":"07:09:00","height":"4.647"},{"time":"19:35:00","height":"4.759"}],"sunrise":"07:44","sunset":"17:16"},{"date":"2017-02-10","groups":[{"time":"07:58:00","height":"5.018"},{"time":"20:21:00","height":"5.038"}],"sunrise":"07:42","sunset":"17:18"},{"date":"2017-02-11","groups":[{"time":"08:40:00","height":"5.266"},{"time":"21:02:00","height":"5.190"}],"sunrise":"07:40","sunset":"17:20"},{"date":"2017-02-12","groups":[{"time":"09:20:00","height":"5.369"},{"time":"21:39:00","height":"5.208"}],"sunrise":"07:38","sunset":"17:22"},{"date":"2017-02-13","groups":[{"time":"09:55:00","height":"5.331"},{"time":"22:15:00","height":"5.102"}],"sunrise":"07:36","sunset":"17:24"},{"date":"2017-02-14","groups":[{"time":"10:32:00","height":"5.169"},{"time":"22:53:00","height":"4.894"}],"sunrise":"07:34","sunset":"17:26"},{"date":"2017-02-15","groups":[{"time":"11:09:00","height":"4.912"},{"time":"23:29:00","height":"4.609"}],"sunrise":"07:32","sunset":"17:28"},{"date":"2017-02-16","groups":[{"time":"11:45:00","height":"4.587"}],"sunrise":"07:30","sunset":"17:30"},{"date":"2017-02-17","groups":[{"time":"00:04:00","height":"4.276"},{"time":"12:23:00","height":"4.218"}],"sunrise":"07:28","sunset":"17:32"},{"date":"2017-02-18","groups":[{"time":"00:44:00","height":"3.914"},{"time":"13:05:00","height":"3.825"}],"sunrise":"07:26","sunset":"17:34"},{"date":"2017-02-19","groups":[{"time":"01:32:00","height":"3.553"},{"time":"13:58:00","height":"3.446"}],"sunrise":"07:24","sunset":"17:36"},{"date":"2017-02-20","groups":[{"time":"02:38:00","height":"3.254"},{"time":"15:16:00","height":"3.175"}],"sunrise":"07:22","sunset":"17:37"},{"date":"2017-02-21","groups":[{"time":"04:10:00","height":"3.173"},{"time":"16:49:00","height":"3.195"}],"sunrise":"07:20","sunset":"17:39"},{"date":"2017-02-22","groups":[{"time":"05:29:00","height":"3.417"},{"time":"17:57:00","height":"3.502"}],"sunrise":"07:18","sunset":"17:41"},{"date":"2017-02-23","groups":[{"time":"06:25:00","height":"3.826"},{"time":"18:47:00","height":"3.911"}],"sunrise":"07:15","sunset":"17:43"},{"date":"2017-02-24","groups":[{"time":"07:07:00","height":"4.259"},{"time":"19:28:00","height":"4.319"}],"sunrise":"07:13","sunset":"17:45"},{"date":"2017-02-25","groups":[{"time":"07:46:00","height":"4.655"},{"time":"20:04:00","height":"4.681"}],"sunrise":"07:11","sunset":"17:47"},{"date":"2017-02-26","groups":[{"time":"08:22:00","height":"4.988"},{"time":"20:40:00","height":"4.975"}],"sunrise":"07:09","sunset":"17:49"},{"date":"2017-02-27","groups":[{"time":"08:57:00","height":"5.243"},{"time":"21:15:00","height":"5.179"}],"sunrise":"07:07","sunset":"17:51"},{"date":"2017-02-28","groups":[{"time":"09:34:00","height":"5.398"},{"time":"21:51:00","height":"5.271"}],"sunrise":"07:04","sunset":"17:53"},{"date":"2017-03-01","groups":[{"time":"10:10:00","height":"5.427"},{"time":"22:30:00","height":"5.226"}],"sunrise":"07:02","sunset":"17:55"},{"date":"2017-03-02","groups":[{"time":"10:53:00","height":"5.312"},{"time":"23:12:00","height":"5.044"}],"sunrise":"07:00","sunset":"17:56"},{"date":"2017-03-03","groups":[{"time":"11:37:00","height":"5.052"},{"time":"23:58:00","height":"4.738"}],"sunrise":"06:58","sunset":"17:58"},{"date":"2017-03-04","groups":[{"time":"12:27:00","height":"4.671"}],"sunrise":"06:55","sunset":"18:00"},{"date":"2017-03-05","groups":[{"time":"00:50:00","height":"4.348"},{"time":"13:25:00","height":"4.223"}],"sunrise":"06:53","sunset":"18:02"},{"date":"2017-03-06","groups":[{"time":"01:55:00","height":"3.944"},{"time":"14:39:00","height":"3.817"}],"sunrise":"06:51","sunset":"18:04"},{"date":"2017-03-07","groups":[{"time":"03:19:00","height":"3.673"},{"time":"16:06:00","height":"3.643"}],"sunrise":"06:48","sunset":"18:06"},{"date":"2017-03-08","groups":[{"time":"04:46:00","height":"3.725"},{"time":"17:28:00","height":"3.821"}],"sunrise":"06:46","sunset":"18:07"},{"date":"2017-03-09","groups":[{"time":"06:01:00","height":"4.081"},{"time":"18:34:00","height":"4.216"}],"sunrise":"06:44","sunset":"18:09"},{"date":"2017-03-10","groups":[{"time":"06:59:00","height":"4.526"},{"time":"19:24:00","height":"4.618"}],"sunrise":"06:41","sunset":"18:11"},{"date":"2017-03-11","groups":[{"time":"07:45:00","height":"4.897"},{"time":"20:06:00","height":"4.919"}],"sunrise":"06:39","sunset":"18:13"},{"date":"2017-03-12","groups":[{"time":"08:24:00","height":"5.134"},{"time":"20:44:00","height":"5.091"}],"sunrise":"06:37","sunset":"18:15"},{"date":"2017-03-13","groups":[{"time":"09:00:00","height":"5.234"},{"time":"21:18:00","height":"5.141"}],"sunrise":"06:34","sunset":"18:17"},{"date":"2017-03-14","groups":[{"time":"09:33:00","height":"5.216"},{"time":"21:49:00","height":"5.086"}],"sunrise":"06:32","sunset":"18:18"},{"date":"2017-03-15","groups":[{"time":"10:03:00","height":"5.099"},{"time":"22:20:00","height":"4.940"}],"sunrise":"06:30","sunset":"18:20"},{"date":"2017-03-16","groups":[{"time":"10:36:00","height":"4.897"},{"time":"22:53:00","height":"4.718"}],"sunrise":"06:27","sunset":"18:22"},{"date":"2017-03-17","groups":[{"time":"11:08:00","height":"4.626"},{"time":"23:25:00","height":"4.432"}],"sunrise":"06:25","sunset":"18:24"},{"date":"2017-03-18","groups":[{"time":"11:42:00","height":"4.296"}],"sunrise":"06:22","sunset":"18:26"},{"date":"2017-03-19","groups":[{"time":"00:01:00","height":"4.097"},{"time":"12:20:00","height":"3.920"}],"sunrise":"06:20","sunset":"18:27"},{"date":"2017-03-20","groups":[{"time":"00:42:00","height":"3.731"},{"time":"13:05:00","height":"3.523"}],"sunrise":"06:18","sunset":"18:29"},{"date":"2017-03-21","groups":[{"time":"01:38:00","height":"3.375"},{"time":"14:11:00","height":"3.175"}],"sunrise":"06:15","sunset":"18:31"},{"date":"2017-03-22","groups":[{"time":"03:01:00","height":"3.147"},{"time":"15:50:00","height":"3.045"}],"sunrise":"06:13","sunset":"18:33"},{"date":"2017-03-23","groups":[{"time":"04:40:00","height":"3.257"},{"time":"17:18:00","height":"3.307"}],"sunrise":"06:10","sunset":"18:35"},{"date":"2017-03-24","groups":[{"time":"05:47:00","height":"3.664"},{"time":"18:14:00","height":"3.772"}],"sunrise":"06:08","sunset":"18:36"},{"date":"2017-03-25","groups":[{"time":"06:35:00","height":"4.158"},{"time":"18:58:00","height":"4.269"}],"sunrise":"06:06","sunset":"18:38"},{"date":"2017-03-26","groups":[{"time":"07:16:00","height":"4.636"},{"time":"19:37:00","height":"4.725"}],"sunrise":"06:03","sunset":"18:40"},{"date":"2017-03-27","groups":[{"time":"08:55:00","height":"5.050"},{"time":"21:15:00","height":"5.098"}],"sunrise":"07:01","sunset":"19:42"},{"date":"2017-03-28","groups":[{"time":"09:34:00","height":"5.366"},{"time":"21:52:00","height":"5.357"}],"sunrise":"06:58","sunset":"19:44"},{"date":"2017-03-29","groups":[{"time":"10:12:00","height":"5.554"},{"time":"22:30:00","height":"5.476"}],"sunrise":"06:56","sunset":"19:45"},{"date":"2017-03-30","groups":[{"time":"10:51:00","height":"5.586"},{"time":"23:09:00","height":"5.434"}],"sunrise":"06:54","sunset":"19:47"},{"date":"2017-03-31","groups":[{"time":"11:32:00","height":"5.442"},{"time":"23:53:00","height":"5.230"}],"sunrise":"06:51","sunset":"19:49"},{"date":"2017-04-01","groups":[{"time":"12:20:00","height":"5.130"}],"sunrise":"06:49","sunset":"19:51"},{"date":"2017-04-02","groups":[{"time":"00:39:00","height":"4.886"},{"time":"13:10:00","height":"4.687"}],"sunrise":"06:47","sunset":"19:52"},{"date":"2017-04-03","groups":[{"time":"01:33:00","height":"4.451"},{"time":"14:09:00","height":"4.185"}],"sunrise":"06:44","sunset":"19:54"},{"date":"2017-04-04","groups":[{"time":"02:39:00","height":"4.009"},{"time":"15:24:00","height":"3.750"}],"sunrise":"06:42","sunset":"19:56"},{"date":"2017-04-05","groups":[{"time":"04:03:00","height":"3.711"},{"time":"16:53:00","height":"3.570"}],"sunrise":"06:40","sunset":"19:58"},{"date":"2017-04-06","groups":[{"time":"05:31:00","height":"3.736"},{"time":"18:13:00","height":"3.749"}],"sunrise":"06:37","sunset":"20:00"},{"date":"2017-04-07","groups":[{"time":"06:44:00","height":"4.050"},{"time":"19:17:00","height":"4.127"}],"sunrise":"06:35","sunset":"20:01"},{"date":"2017-04-08","groups":[{"time":"07:40:00","height":"4.436"},{"time":"20:05:00","height":"4.499"}],"sunrise":"06:33","sunset":"20:03"},{"date":"2017-04-09","groups":[{"time":"08:24:00","height":"4.747"},{"time":"20:45:00","height":"4.775"}],"sunrise":"06:30","sunset":"20:05"},{"date":"2017-04-10","groups":[{"time":"09:02:00","height":"4.939"},{"time":"21:19:00","height":"4.939"}],"sunrise":"06:28","sunset":"20:07"},{"date":"2017-04-11","groups":[{"time":"09:35:00","height":"5.023"},{"time":"21:52:00","height":"5.007"}],"sunrise":"06:26","sunset":"20:08"},{"date":"2017-04-12","groups":[{"time":"10:06:00","height":"5.021"},{"time":"22:22:00","height":"4.995"}],"sunrise":"06:23","sunset":"20:10"},{"date":"2017-04-13","groups":[{"time":"10:37:00","height":"4.948"},{"time":"22:51:00","height":"4.909"}],"sunrise":"06:21","sunset":"20:12"},{"date":"2017-04-14","groups":[{"time":"11:05:00","height":"4.806"},{"time":"23:20:00","height":"4.752"}],"sunrise":"06:19","sunset":"20:14"},{"date":"2017-04-15","groups":[{"time":"11:37:00","height":"4.598"},{"time":"23:53:00","height":"4.528"}],"sunrise":"06:16","sunset":"20:16"},{"date":"2017-04-16","groups":[{"time":"12:09:00","height":"4.327"}],"sunrise":"06:14","sunset":"20:17"},{"date":"2017-04-17","groups":[{"time":"00:28:00","height":"4.247"},{"time":"12:46:00","height":"4.004"}],"sunrise":"06:12","sunset":"20:19"},{"date":"2017-04-18","groups":[{"time":"01:08:00","height":"3.925"},{"time":"13:29:00","height":"3.655"}],"sunrise":"06:10","sunset":"20:21"},{"date":"2017-04-19","groups":[{"time":"01:57:00","height":"3.597"},{"time":"14:29:00","height":"3.330"}],"sunrise":"06:08","sunset":"20:23"},{"date":"2017-04-20","groups":[{"time":"03:10:00","height":"3.347"},{"time":"15:53:00","height":"3.157"}],"sunrise":"06:05","sunset":"20:24"},{"date":"2017-04-21","groups":[{"time":"04:43:00","height":"3.340"},{"time":"17:25:00","height":"3.308"}],"sunrise":"06:03","sunset":"20:26"},{"date":"2017-04-22","groups":[{"time":"05:59:00","height":"3.653"},{"time":"18:31:00","height":"3.735"}],"sunrise":"06:01","sunset":"20:28"},{"date":"2017-04-23","groups":[{"time":"06:56:00","height":"4.128"},{"time":"19:22:00","height":"4.248"}],"sunrise":"05:59","sunset":"20:30"},{"date":"2017-04-24","groups":[{"time":"07:42:00","height":"4.624"},{"time":"20:05:00","height":"4.737"}],"sunrise":"05:57","sunset":"20:32"},{"date":"2017-04-25","groups":[{"time":"08:25:00","height":"5.061"},{"time":"20:47:00","height":"5.140"}],"sunrise":"05:55","sunset":"20:33"},{"date":"2017-04-26","groups":[{"time":"09:07:00","height":"5.390"},{"time":"21:28:00","height":"5.419"}],"sunrise":"05:53","sunset":"20:35"},{"date":"2017-04-27","groups":[{"time":"09:50:00","height":"5.576"},{"time":"22:09:00","height":"5.548"}],"sunrise":"05:50","sunset":"20:37"},{"date":"2017-04-28","groups":[{"time":"10:31:00","height":"5.595"},{"time":"22:50:00","height":"5.512"}],"sunrise":"05:48","sunset":"20:39"},{"date":"2017-04-29","groups":[{"time":"11:14:00","height":"5.435"},{"time":"23:36:00","height":"5.314"}],"sunrise":"05:46","sunset":"20:40"},{"date":"2017-04-30","groups":[{"time":"12:05:00","height":"5.113"}],"sunrise":"05:44","sunset":"20:42"},{"date":"2017-05-01","groups":[{"time":"00:26:00","height":"4.980"},{"time":"12:58:00","height":"4.676"}],"sunrise":"05:42","sunset":"20:44"},{"date":"2017-05-02","groups":[{"time":"01:22:00","height":"4.566"},{"time":"13:57:00","height":"4.205"}],"sunrise":"05:40","sunset":"20:46"},{"date":"2017-05-03","groups":[{"time":"02:26:00","height":"4.155"},{"time":"15:08:00","height":"3.810"}],"sunrise":"05:38","sunset":"20:47"},{"date":"2017-05-04","groups":[{"time":"03:44:00","height":"3.867"},{"time":"16:32:00","height":"3.628"}],"sunrise":"05:37","sunset":"20:49"},{"date":"2017-05-05","groups":[{"time":"05:06:00","height":"3.823"},{"time":"17:46:00","height":"3.730"}],"sunrise":"05:35","sunset":"20:51"},{"date":"2017-05-06","groups":[{"time":"06:15:00","height":"4.008"},{"time":"18:48:00","height":"4.010"}],"sunrise":"05:33","sunset":"20:52"},{"date":"2017-05-07","groups":[{"time":"07:11:00","height":"4.275"},{"time":"19:37:00","height":"4.312"}],"sunrise":"05:31","sunset":"20:54"},{"date":"2017-05-08","groups":[{"time":"07:56:00","height":"4.508"},{"time":"20:17:00","height":"4.553"}],"sunrise":"05:29","sunset":"20:56"},{"date":"2017-05-09","groups":[{"time":"08:34:00","height":"4.665"},{"time":"20:53:00","height":"4.717"}],"sunrise":"05:27","sunset":"20:58"},{"date":"2017-05-10","groups":[{"time":"09:09:00","height":"4.752"},{"time":"21:25:00","height":"4.812"}],"sunrise":"05:26","sunset":"20:59"},{"date":"2017-05-11","groups":[{"time":"09:41:00","height":"4.781"},{"time":"21:56:00","height":"4.845"}],"sunrise":"05:24","sunset":"21:01"},{"date":"2017-05-12","groups":[{"time":"10:11:00","height":"4.757"},{"time":"22:26:00","height":"4.819"}],"sunrise":"05:22","sunset":"21:03"},{"date":"2017-05-13","groups":[{"time":"10:40:00","height":"4.677"},{"time":"22:55:00","height":"4.730"}],"sunrise":"05:21","sunset":"21:04"},{"date":"2017-05-14","groups":[{"time":"11:10:00","height":"4.539"},{"time":"23:27:00","height":"4.578"}],"sunrise":"05:19","sunset":"21:06"},{"date":"2017-05-15","groups":[{"time":"11:44:00","height":"4.344"}],"sunrise":"05:17","sunset":"21:07"},{"date":"2017-05-16","groups":[{"time":"00:04:00","height":"4.371"},{"time":"12:22:00","height":"4.102"}],"sunrise":"05:16","sunset":"21:09"},{"date":"2017-05-17","groups":[{"time":"00:44:00","height":"4.124"},{"time":"13:05:00","height":"3.836"}],"sunrise":"05:14","sunset":"21:11"},{"date":"2017-05-18","groups":[{"time":"01:33:00","height":"3.868"},{"time":"14:01:00","height":"3.585"}],"sunrise":"05:13","sunset":"21:12"},{"date":"2017-05-19","groups":[{"time":"02:35:00","height":"3.662"},{"time":"15:12:00","height":"3.431"}],"sunrise":"05:11","sunset":"21:14"},{"date":"2017-05-20","groups":[{"time":"03:53:00","height":"3.606"},{"time":"16:35:00","height":"3.486"}],"sunrise":"05:10","sunset":"21:15"},{"date":"2017-05-21","groups":[{"time":"05:10:00","height":"3.783"},{"time":"17:45:00","height":"3.785"}],"sunrise":"05:09","sunset":"21:17"},{"date":"2017-05-22","groups":[{"time":"06:13:00","height":"4.146"},{"time":"18:42:00","height":"4.220"}],"sunrise":"05:07","sunset":"21:18"},{"date":"2017-05-23","groups":[{"time":"07:07:00","height":"4.574"},{"time":"19:33:00","height":"4.670"}],"sunrise":"05:06","sunset":"21:20"},{"date":"2017-05-24","groups":[{"time":"07:56:00","height":"4.971"},{"time":"20:20:00","height":"5.059"}],"sunrise":"05:05","sunset":"21:21"},{"date":"2017-05-25","groups":[{"time":"08:43:00","height":"5.276"},{"time":"21:05:00","height":"5.340"}],"sunrise":"05:04","sunset":"21:22"},{"date":"2017-05-26","groups":[{"time":"09:30:00","height":"5.452"},{"time":"21:50:00","height":"5.487"}],"sunrise":"05:02","sunset":"21:24"},{"date":"2017-05-27","groups":[{"time":"10:15:00","height":"5.477"},{"time":"22:36:00","height":"5.487"}],"sunrise":"05:01","sunset":"21:25"},{"date":"2017-05-28","groups":[{"time":"11:01:00","height":"5.348"},{"time":"23:21:00","height":"5.340"}],"sunrise":"05:00","sunset":"21:26"},{"date":"2017-05-29","groups":[{"time":"11:52:00","height":"5.080"}],"sunrise":"04:59","sunset":"21:28"},{"date":"2017-05-30","groups":[{"time":"00:15:00","height":"5.070"},{"time":"12:46:00","height":"4.713"}],"sunrise":"04:58","sunset":"21:29"},{"date":"2017-05-31","groups":[{"time":"01:10:00","height":"4.720"},{"time":"13:42:00","height":"4.314"}],"sunrise":"04:57","sunset":"21:30"},{"date":"2017-06-01","groups":[{"time":"02:08:00","height":"4.356"},{"time":"14:45:00","height":"3.956"}],"sunrise":"04:56","sunset":"21:31"},{"date":"2017-06-02","groups":[{"time":"03:15:00","height":"4.051"},{"time":"15:57:00","height":"3.726"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2017-06-03","groups":[{"time":"04:30:00","height":"3.884"},{"time":"17:07:00","height":"3.686"}],"sunrise":"04:55","sunset":"21:34"},{"date":"2017-06-04","groups":[{"time":"05:36:00","height":"3.889"},{"time":"18:09:00","height":"3.819"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2017-06-05","groups":[{"time":"06:34:00","height":"4.015"},{"time":"19:02:00","height":"4.037"}],"sunrise":"04:54","sunset":"21:36"},{"date":"2017-06-06","groups":[{"time":"07:23:00","height":"4.183"},{"time":"19:47:00","height":"4.261"}],"sunrise":"04:53","sunset":"21:37"},{"date":"2017-06-07","groups":[{"time":"08:05:00","height":"4.339"},{"time":"20:26:00","height":"4.451"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2017-06-08","groups":[{"time":"08:43:00","height":"4.461"},{"time":"21:01:00","height":"4.594"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2017-06-09","groups":[{"time":"09:17:00","height":"4.543"},{"time":"21:34:00","height":"4.686"}],"sunrise":"04:51","sunset":"21:39"},{"date":"2017-06-10","groups":[{"time":"09:50:00","height":"4.579"},{"time":"22:06:00","height":"4.724"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2017-06-11","groups":[{"time":"10:21:00","height":"4.570"},{"time":"22:37:00","height":"4.709"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2017-06-12","groups":[{"time":"10:52:00","height":"4.512"},{"time":"23:08:00","height":"4.640"}],"sunrise":"04:50","sunset":"21:41"},{"date":"2017-06-13","groups":[{"time":"11:26:00","height":"4.408"},{"time":"23:45:00","height":"4.519"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2017-06-14","groups":[{"time":"12:05:00","height":"4.259"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2017-06-15","groups":[{"time":"00:26:00","height":"4.358"},{"time":"12:48:00","height":"4.080"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2017-06-16","groups":[{"time":"01:13:00","height":"4.175"},{"time":"13:38:00","height":"3.895"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2017-06-17","groups":[{"time":"02:08:00","height":"4.008"},{"time":"14:39:00","height":"3.751"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2017-06-18","groups":[{"time":"03:14:00","height":"3.909"},{"time":"15:50:00","height":"3.713"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2017-06-19","groups":[{"time":"04:29:00","height":"3.941"},{"time":"17:04:00","height":"3.843"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2017-06-20","groups":[{"time":"05:35:00","height":"4.132"},{"time":"18:08:00","height":"4.133"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2017-06-21","groups":[{"time":"06:36:00","height":"4.431"},{"time":"19:05:00","height":"4.500"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2017-06-22","groups":[{"time":"07:31:00","height":"4.757"},{"time":"19:58:00","height":"4.863"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2017-06-23","groups":[{"time":"08:24:00","height":"5.040"},{"time":"20:47:00","height":"5.162"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2017-06-24","groups":[{"time":"09:14:00","height":"5.236"},{"time":"21:36:00","height":"5.359"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2017-06-25","groups":[{"time":"10:03:00","height":"5.316"},{"time":"22:23:00","height":"5.430"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2017-06-26","groups":[{"time":"10:50:00","height":"5.265"},{"time":"23:10:00","height":"5.365"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2017-06-27","groups":[{"time":"11:39:00","height":"5.087"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2017-06-28","groups":[{"time":"00:00:00","height":"5.172"},{"time":"12:29:00","height":"4.805"}],"sunrise":"04:53","sunset":"21:45"},{"date":"2017-06-29","groups":[{"time":"00:51:00","height":"4.879"},{"time":"13:20:00","height":"4.461"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2017-06-30","groups":[{"time":"01:42:00","height":"4.530"},{"time":"14:13:00","height":"4.110"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2017-07-01","groups":[{"time":"02:38:00","height":"4.179"},{"time":"15:11:00","height":"3.807"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2017-07-02","groups":[{"time":"03:39:00","height":"3.885"},{"time":"16:18:00","height":"3.614"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2017-07-03","groups":[{"time":"04:48:00","height":"3.712"},{"time":"17:23:00","height":"3.586"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2017-07-04","groups":[{"time":"05:50:00","height":"3.698"},{"time":"18:24:00","height":"3.717"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2017-07-05","groups":[{"time":"06:47:00","height":"3.816"},{"time":"19:15:00","height":"3.941"}],"sunrise":"04:59","sunset":"21:43"},{"date":"2017-07-06","groups":[{"time":"07:36:00","height":"4.002"},{"time":"20:00:00","height":"4.188"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2017-07-07","groups":[{"time":"08:18:00","height":"4.195"},{"time":"20:38:00","height":"4.409"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2017-07-08","groups":[{"time":"08:56:00","height":"4.359"},{"time":"21:14:00","height":"4.582"}],"sunrise":"05:02","sunset":"21:41"},{"date":"2017-07-09","groups":[{"time":"09:31:00","height":"4.481"},{"time":"21:48:00","height":"4.700"}],"sunrise":"05:03","sunset":"21:40"},{"date":"2017-07-10","groups":[{"time":"10:04:00","height":"4.558"},{"time":"22:21:00","height":"4.767"}],"sunrise":"05:04","sunset":"21:39"},{"date":"2017-07-11","groups":[{"time":"10:37:00","height":"4.592"},{"time":"22:53:00","height":"4.783"}],"sunrise":"05:05","sunset":"21:38"},{"date":"2017-07-12","groups":[{"time":"11:09:00","height":"4.578"},{"time":"23:29:00","height":"4.745"}],"sunrise":"05:06","sunset":"21:37"},{"date":"2017-07-13","groups":[{"time":"11:47:00","height":"4.511"}],"sunrise":"05:07","sunset":"21:36"},{"date":"2017-07-14","groups":[{"time":"00:09:00","height":"4.651"},{"time":"12:30:00","height":"4.389"}],"sunrise":"05:08","sunset":"21:35"},{"date":"2017-07-15","groups":[{"time":"00:54:00","height":"4.507"},{"time":"13:15:00","height":"4.225"}],"sunrise":"05:10","sunset":"21:34"},{"date":"2017-07-16","groups":[{"time":"01:42:00","height":"4.331"},{"time":"14:08:00","height":"4.045"}],"sunrise":"05:11","sunset":"21:33"},{"date":"2017-07-17","groups":[{"time":"02:41:00","height":"4.153"},{"time":"15:12:00","height":"3.894"}],"sunrise":"05:12","sunset":"21:32"},{"date":"2017-07-18","groups":[{"time":"03:50:00","height":"4.027"},{"time":"16:27:00","height":"3.849"}],"sunrise":"05:14","sunset":"21:31"},{"date":"2017-07-19","groups":[{"time":"05:04:00","height":"4.028"},{"time":"17:38:00","height":"3.982"}],"sunrise":"05:15","sunset":"21:30"},{"date":"2017-07-20","groups":[{"time":"06:12:00","height":"4.196"},{"time":"18:44:00","height":"4.278"}],"sunrise":"05:16","sunset":"21:28"},{"date":"2017-07-21","groups":[{"time":"07:15:00","height":"4.479"},{"time":"19:44:00","height":"4.650"}],"sunrise":"05:18","sunset":"21:27"},{"date":"2017-07-22","groups":[{"time":"08:13:00","height":"4.793"},{"time":"20:37:00","height":"5.005"}],"sunrise":"05:19","sunset":"21:26"},{"date":"2017-07-23","groups":[{"time":"09:04:00","height":"5.058"},{"time":"21:26:00","height":"5.276"}],"sunrise":"05:21","sunset":"21:24"},{"date":"2017-07-24","groups":[{"time":"09:52:00","height":"5.221"},{"time":"22:12:00","height":"5.420"}],"sunrise":"05:22","sunset":"21:23"},{"date":"2017-07-25","groups":[{"time":"10:37:00","height":"5.253"},{"time":"22:55:00","height":"5.417"}],"sunrise":"05:24","sunset":"21:21"},{"date":"2017-07-26","groups":[{"time":"11:19:00","height":"5.148"},{"time":"23:40:00","height":"5.270"}],"sunrise":"05:25","sunset":"21:20"},{"date":"2017-07-27","groups":[{"time":"12:05:00","height":"4.924"}],"sunrise":"05:27","sunset":"21:18"},{"date":"2017-07-28","groups":[{"time":"00:24:00","height":"5.001"},{"time":"12:49:00","height":"4.612"}],"sunrise":"05:28","sunset":"21:17"},{"date":"2017-07-29","groups":[{"time":"01:09:00","height":"4.651"},{"time":"13:34:00","height":"4.257"}],"sunrise":"05:30","sunset":"21:15"},{"date":"2017-07-30","groups":[{"time":"01:54:00","height":"4.263"},{"time":"14:21:00","height":"3.900"}],"sunrise":"05:31","sunset":"21:13"},{"date":"2017-07-31","groups":[{"time":"02:44:00","height":"3.883"},{"time":"15:17:00","height":"3.589"}],"sunrise":"05:33","sunset":"21:12"},{"date":"2017-08-01","groups":[{"time":"03:46:00","height":"3.567"},{"time":"16:29:00","height":"3.400"}],"sunrise":"05:35","sunset":"21:10"},{"date":"2017-08-02","groups":[{"time":"05:00:00","height":"3.405"},{"time":"17:41:00","height":"3.426"}],"sunrise":"05:36","sunset":"21:08"},{"date":"2017-08-03","groups":[{"time":"06:10:00","height":"3.471"},{"time":"18:44:00","height":"3.656"}],"sunrise":"05:38","sunset":"21:06"},{"date":"2017-08-04","groups":[{"time":"07:10:00","height":"3.705"},{"time":"19:36:00","height":"3.979"}],"sunrise":"05:40","sunset":"21:05"},{"date":"2017-08-05","groups":[{"time":"07:57:00","height":"3.997"},{"time":"20:17:00","height":"4.300"}],"sunrise":"05:41","sunset":"21:03"},{"date":"2017-08-06","groups":[{"time":"08:36:00","height":"4.271"},{"time":"20:54:00","height":"4.572"}],"sunrise":"05:43","sunset":"21:01"},{"date":"2017-08-07","groups":[{"time":"09:12:00","height":"4.499"},{"time":"21:28:00","height":"4.783"}],"sunrise":"05:44","sunset":"20:59"},{"date":"2017-08-08","groups":[{"time":"09:46:00","height":"4.674"},{"time":"22:02:00","height":"4.934"}],"sunrise":"05:46","sunset":"20:57"},{"date":"2017-08-09","groups":[{"time":"10:19:00","height":"4.797"},{"time":"22:35:00","height":"5.025"}],"sunrise":"05:48","sunset":"20:55"},{"date":"2017-08-10","groups":[{"time":"10:52:00","height":"4.856"},{"time":"23:09:00","height":"5.044"}],"sunrise":"05:49","sunset":"20:53"},{"date":"2017-08-11","groups":[{"time":"11:28:00","height":"4.835"},{"time":"23:49:00","height":"4.978"}],"sunrise":"05:51","sunset":"20:51"},{"date":"2017-08-12","groups":[{"time":"12:08:00","height":"4.726"}],"sunrise":"05:53","sunset":"20:49"},{"date":"2017-08-13","groups":[{"time":"00:31:00","height":"4.822"},{"time":"12:51:00","height":"4.533"}],"sunrise":"05:55","sunset":"20:47"},{"date":"2017-08-14","groups":[{"time":"01:17:00","height":"4.584"},{"time":"13:40:00","height":"4.277"}],"sunrise":"05:56","sunset":"20:45"},{"date":"2017-08-15","groups":[{"time":"02:12:00","height":"4.291"},{"time":"14:40:00","height":"4.002"}],"sunrise":"05:58","sunset":"20:43"},{"date":"2017-08-16","groups":[{"time":"03:19:00","height":"4.004"},{"time":"15:57:00","height":"3.802"}],"sunrise":"06:00","sunset":"20:41"},{"date":"2017-08-17","groups":[{"time":"04:41:00","height":"3.848"},{"time":"17:19:00","height":"3.821"}],"sunrise":"06:01","sunset":"20:39"},{"date":"2017-08-18","groups":[{"time":"05:58:00","height":"3.943"},{"time":"18:33:00","height":"4.104"}],"sunrise":"06:03","sunset":"20:37"},{"date":"2017-08-19","groups":[{"time":"07:08:00","height":"4.258"},{"time":"19:37:00","height":"4.532"}],"sunrise":"06:05","sunset":"20:35"},{"date":"2017-08-20","groups":[{"time":"08:07:00","height":"4.650"},{"time":"20:30:00","height":"4.953"}],"sunrise":"06:06","sunset":"20:32"},{"date":"2017-08-21","groups":[{"time":"08:56:00","height":"4.987"},{"time":"21:16:00","height":"5.267"}],"sunrise":"06:08","sunset":"20:30"},{"date":"2017-08-22","groups":[{"time":"09:40:00","height":"5.202"},{"time":"21:58:00","height":"5.432"}],"sunrise":"06:10","sunset":"20:28"},{"date":"2017-08-23","groups":[{"time":"10:20:00","height":"5.275"},{"time":"22:37:00","height":"5.441"}],"sunrise":"06:11","sunset":"20:26"},{"date":"2017-08-24","groups":[{"time":"10:56:00","height":"5.207"},{"time":"23:14:00","height":"5.305"}],"sunrise":"06:13","sunset":"20:23"},{"date":"2017-08-25","groups":[{"time":"11:36:00","height":"5.017"},{"time":"23:53:00","height":"5.050"}],"sunrise":"06:15","sunset":"20:21"},{"date":"2017-08-26","groups":[{"time":"12:13:00","height":"4.735"}],"sunrise":"06:17","sunset":"20:19"},{"date":"2017-08-27","groups":[{"time":"00:31:00","height":"4.711"},{"time":"12:51:00","height":"4.393"}],"sunrise":"06:18","sunset":"20:17"},{"date":"2017-08-28","groups":[{"time":"01:09:00","height":"4.323"},{"time":"13:31:00","height":"4.024"}],"sunrise":"06:20","sunset":"20:14"},{"date":"2017-08-29","groups":[{"time":"01:51:00","height":"3.916"},{"time":"14:18:00","height":"3.657"}],"sunrise":"06:22","sunset":"20:12"},{"date":"2017-08-30","groups":[{"time":"02:42:00","height":"3.523"},{"time":"15:21:00","height":"3.347"}],"sunrise":"06:23","sunset":"20:10"},{"date":"2017-08-31","groups":[{"time":"03:56:00","height":"3.225"},{"time":"16:51:00","height":"3.230"}],"sunrise":"06:25","sunset":"20:07"},{"date":"2017-09-01","groups":[{"time":"05:31:00","height":"3.196"},{"time":"18:12:00","height":"3.437"}],"sunrise":"06:27","sunset":"20:05"},{"date":"2017-09-02","groups":[{"time":"06:42:00","height":"3.472"},{"time":"19:10:00","height":"3.826"}],"sunrise":"06:28","sunset":"20:03"},{"date":"2017-09-03","groups":[{"time":"07:33:00","height":"3.863"},{"time":"19:54:00","height":"4.243"}],"sunrise":"06:30","sunset":"20:00"},{"date":"2017-09-04","groups":[{"time":"08:14:00","height":"4.252"},{"time":"20:31:00","height":"4.614"}],"sunrise":"06:32","sunset":"19:58"},{"date":"2017-09-05","groups":[{"time":"08:49:00","height":"4.590"},{"time":"21:05:00","height":"4.919"}],"sunrise":"06:34","sunset":"19:56"},{"date":"2017-09-06","groups":[{"time":"09:23:00","height":"4.864"},{"time":"21:39:00","height":"5.151"}],"sunrise":"06:35","sunset":"19:53"},{"date":"2017-09-07","groups":[{"time":"09:56:00","height":"5.062"},{"time":"22:13:00","height":"5.299"}],"sunrise":"06:37","sunset":"19:51"},{"date":"2017-09-08","groups":[{"time":"10:30:00","height":"5.170"},{"time":"22:48:00","height":"5.346"}],"sunrise":"06:39","sunset":"19:49"},{"date":"2017-09-09","groups":[{"time":"11:05:00","height":"5.165"},{"time":"23:26:00","height":"5.271"}],"sunrise":"06:40","sunset":"19:46"},{"date":"2017-09-10","groups":[{"time":"11:45:00","height":"5.036"}],"sunrise":"06:42","sunset":"19:44"},{"date":"2017-09-11","groups":[{"time":"00:08:00","height":"5.065"},{"time":"12:29:00","height":"4.788"}],"sunrise":"06:44","sunset":"19:41"},{"date":"2017-09-12","groups":[{"time":"00:55:00","height":"4.739"},{"time":"13:17:00","height":"4.448"}],"sunrise":"06:45","sunset":"19:39"},{"date":"2017-09-13","groups":[{"time":"01:49:00","height":"4.331"},{"time":"14:17:00","height":"4.070"}],"sunrise":"06:47","sunset":"19:37"},{"date":"2017-09-14","groups":[{"time":"02:58:00","height":"3.925"},{"time":"15:37:00","height":"3.773"}],"sunrise":"06:49","sunset":"19:34"},{"date":"2017-09-15","groups":[{"time":"04:28:00","height":"3.691"},{"time":"17:09:00","height":"3.754"}],"sunrise":"06:50","sunset":"19:32"},{"date":"2017-09-16","groups":[{"time":"05:53:00","height":"3.802"},{"time":"18:28:00","height":"4.074"}],"sunrise":"06:52","sunset":"19:29"},{"date":"2017-09-17","groups":[{"time":"07:04:00","height":"4.186"},{"time":"19:30:00","height":"4.542"}],"sunrise":"06:54","sunset":"19:27"},{"date":"2017-09-18","groups":[{"time":"07:59:00","height":"4.625"},{"time":"20:19:00","height":"4.966"}],"sunrise":"06:56","sunset":"19:25"},{"date":"2017-09-19","groups":[{"time":"08:43:00","height":"4.977"},{"time":"21:02:00","height":"5.255"}],"sunrise":"06:57","sunset":"19:22"},{"date":"2017-09-20","groups":[{"time":"09:22:00","height":"5.191"},{"time":"21:39:00","height":"5.389"}],"sunrise":"06:59","sunset":"19:20"},{"date":"2017-09-21","groups":[{"time":"09:59:00","height":"5.266"},{"time":"22:15:00","height":"5.381"}],"sunrise":"07:01","sunset":"19:17"},{"date":"2017-09-22","groups":[{"time":"10:32:00","height":"5.218"},{"time":"22:47:00","height":"5.255"}],"sunrise":"07:02","sunset":"19:15"},{"date":"2017-09-23","groups":[{"time":"11:04:00","height":"5.066"},{"time":"23:19:00","height":"5.032"}],"sunrise":"07:04","sunset":"19:13"},{"date":"2017-09-24","groups":[{"time":"11:38:00","height":"4.830"},{"time":"23:53:00","height":"4.734"}],"sunrise":"07:06","sunset":"19:10"},{"date":"2017-09-25","groups":[{"time":"12:11:00","height":"4.529"}],"sunrise":"07:08","sunset":"19:08"},{"date":"2017-09-26","groups":[{"time":"00:28:00","height":"4.382"},{"time":"12:47:00","height":"4.184"}],"sunrise":"07:09","sunset":"19:05"},{"date":"2017-09-27","groups":[{"time":"01:05:00","height":"3.992"},{"time":"13:28:00","height":"3.814"}],"sunrise":"07:11","sunset":"19:03"},{"date":"2017-09-28","groups":[{"time":"01:51:00","height":"3.586"},{"time":"14:23:00","height":"3.456"}],"sunrise":"07:13","sunset":"19:01"},{"date":"2017-09-29","groups":[{"time":"02:55:00","height":"3.225"},{"time":"15:47:00","height":"3.220"}],"sunrise":"07:14","sunset":"18:58"},{"date":"2017-09-30","groups":[{"time":"04:36:00","height":"3.074"},{"time":"17:30:00","height":"3.322"}],"sunrise":"07:16","sunset":"18:56"},{"date":"2017-10-01","groups":[{"time":"06:08:00","height":"3.323"},{"time":"18:37:00","height":"3.719"}],"sunrise":"07:18","sunset":"18:53"},{"date":"2017-10-02","groups":[{"time":"07:03:00","height":"3.769"},{"time":"19:23:00","height":"4.191"}],"sunrise":"07:20","sunset":"18:51"},{"date":"2017-10-03","groups":[{"time":"07:44:00","height":"4.243"},{"time":"20:01:00","height":"4.641"}],"sunrise":"07:21","sunset":"18:49"},{"date":"2017-10-04","groups":[{"time":"08:21:00","height":"4.676"},{"time":"20:37:00","height":"5.027"}],"sunrise":"07:23","sunset":"18:46"},{"date":"2017-10-05","groups":[{"time":"08:56:00","height":"5.034"},{"time":"21:13:00","height":"5.325"}],"sunrise":"07:25","sunset":"18:44"},{"date":"2017-10-06","groups":[{"time":"09:32:00","height":"5.294"},{"time":"21:50:00","height":"5.514"}],"sunrise":"07:27","sunset":"18:42"},{"date":"2017-10-07","groups":[{"time":"10:07:00","height":"5.432"},{"time":"22:27:00","height":"5.568"}],"sunrise":"07:28","sunset":"18:39"},{"date":"2017-10-08","groups":[{"time":"10:44:00","height":"5.430"},{"time":"23:05:00","height":"5.468"}],"sunrise":"07:30","sunset":"18:37"},{"date":"2017-10-09","groups":[{"time":"11:24:00","height":"5.278"},{"time":"23:50:00","height":"5.209"}],"sunrise":"07:32","sunset":"18:35"},{"date":"2017-10-10","groups":[{"time":"12:10:00","height":"4.988"}],"sunrise":"07:34","sunset":"18:32"},{"date":"2017-10-11","groups":[{"time":"00:38:00","height":"4.815"},{"time":"13:01:00","height":"4.596"}],"sunrise":"07:35","sunset":"18:30"},{"date":"2017-10-12","groups":[{"time":"01:36:00","height":"4.343"},{"time":"14:04:00","height":"4.173"}],"sunrise":"07:37","sunset":"18:28"},{"date":"2017-10-13","groups":[{"time":"02:47:00","height":"3.901"},{"time":"15:25:00","height":"3.856"}],"sunrise":"07:39","sunset":"18:25"},{"date":"2017-10-14","groups":[{"time":"04:17:00","height":"3.671"},{"time":"16:59:00","height":"3.835"}],"sunrise":"07:41","sunset":"18:23"},{"date":"2017-10-15","groups":[{"time":"05:43:00","height":"3.803"},{"time":"18:16:00","height":"4.136"}],"sunrise":"07:43","sunset":"18:21"},{"date":"2017-10-16","groups":[{"time":"06:51:00","height":"4.184"},{"time":"19:15:00","height":"4.553"}],"sunrise":"07:44","sunset":"18:19"},{"date":"2017-10-17","groups":[{"time":"07:43:00","height":"4.594"},{"time":"20:01:00","height":"4.909"}],"sunrise":"07:46","sunset":"18:16"},{"date":"2017-10-18","groups":[{"time":"08:24:00","height":"4.909"},{"time":"20:42:00","height":"5.134"}],"sunrise":"07:48","sunset":"18:14"},{"date":"2017-10-19","groups":[{"time":"09:02:00","height":"5.099"},{"time":"21:18:00","height":"5.229"}],"sunrise":"07:50","sunset":"18:12"},{"date":"2017-10-20","groups":[{"time":"09:35:00","height":"5.174"},{"time":"21:50:00","height":"5.218"}],"sunrise":"07:52","sunset":"18:10"},{"date":"2017-10-21","groups":[{"time":"10:06:00","height":"5.155"},{"time":"22:21:00","height":"5.123"}],"sunrise":"07:54","sunset":"18:08"},{"date":"2017-10-22","groups":[{"time":"10:37:00","height":"5.055"},{"time":"22:51:00","height":"4.956"}],"sunrise":"07:55","sunset":"18:06"},{"date":"2017-10-23","groups":[{"time":"11:06:00","height":"4.883"},{"time":"23:20:00","height":"4.724"}],"sunrise":"07:57","sunset":"18:03"},{"date":"2017-10-24","groups":[{"time":"11:39:00","height":"4.645"},{"time":"23:54:00","height":"4.433"}],"sunrise":"07:59","sunset":"18:01"},{"date":"2017-10-25","groups":[{"time":"12:13:00","height":"4.353"}],"sunrise":"08:01","sunset":"17:59"},{"date":"2017-10-26","groups":[{"time":"00:31:00","height":"4.096"},{"time":"12:52:00","height":"4.023"}],"sunrise":"08:03","sunset":"17:57"},{"date":"2017-10-27","groups":[{"time":"01:13:00","height":"3.731"},{"time":"13:42:00","height":"3.684"}],"sunrise":"08:05","sunset":"17:55"},{"date":"2017-10-28","groups":[{"time":"02:10:00","height":"3.385"},{"time":"14:53:00","height":"3.414"}],"sunrise":"08:06","sunset":"17:53"},{"date":"2017-10-29","groups":[{"time":"03:33:00","height":"3.176"},{"time":"16:28:00","height":"3.375"}],"sunrise":"08:08","sunset":"17:51"},{"date":"2017-10-30","groups":[{"time":"04:13:00","height":"3.289"},{"time":"16:48:00","height":"3.663"}],"sunrise":"07:10","sunset":"16:49"},{"date":"2017-10-31","groups":[{"time":"05:20:00","height":"3.694"},{"time":"17:42:00","height":"4.116"}],"sunrise":"07:12","sunset":"16:47"},{"date":"2017-11-01","groups":[{"time":"06:08:00","height":"4.190"},{"time":"18:27:00","height":"4.595"}],"sunrise":"07:14","sunset":"16:45"},{"date":"2017-11-02","groups":[{"time":"06:48:00","height":"4.675"},{"time":"19:07:00","height":"5.028"}],"sunrise":"07:16","sunset":"16:43"},{"date":"2017-11-03","groups":[{"time":"07:28:00","height":"5.088"},{"time":"19:47:00","height":"5.368"}],"sunrise":"07:18","sunset":"16:41"},{"date":"2017-11-04","groups":[{"time":"08:06:00","height":"5.393"},{"time":"20:26:00","height":"5.582"}],"sunrise":"07:20","sunset":"16:40"},{"date":"2017-11-05","groups":[{"time":"08:46:00","height":"5.561"},{"time":"21:07:00","height":"5.643"}],"sunrise":"07:21","sunset":"16:38"},{"date":"2017-11-06","groups":[{"time":"09:26:00","height":"5.575"},{"time":"21:49:00","height":"5.536"}],"sunrise":"07:23","sunset":"16:36"},{"date":"2017-11-07","groups":[{"time":"10:08:00","height":"5.432"},{"time":"22:36:00","height":"5.267"}],"sunrise":"07:25","sunset":"16:34"},{"date":"2017-11-08","groups":[{"time":"10:57:00","height":"5.149"},{"time":"23:29:00","height":"4.872"}],"sunrise":"07:27","sunset":"16:33"},{"date":"2017-11-09","groups":[{"time":"11:51:00","height":"4.771"}],"sunrise":"07:29","sunset":"16:31"},{"date":"2017-11-10","groups":[{"time":"00:27:00","height":"4.418"},{"time":"12:55:00","height":"4.371"}],"sunrise":"07:31","sunset":"16:29"},{"date":"2017-11-11","groups":[{"time":"01:36:00","height":"4.007"},{"time":"14:11:00","height":"4.063"}],"sunrise":"07:33","sunset":"16:28"},{"date":"2017-11-12","groups":[{"time":"02:58:00","height":"3.776"},{"time":"15:37:00","height":"3.976"}],"sunrise":"07:34","sunset":"16:26"},{"date":"2017-11-13","groups":[{"time":"04:19:00","height":"3.828"},{"time":"16:50:00","height":"4.137"}],"sunrise":"07:36","sunset":"16:24"},{"date":"2017-11-14","groups":[{"time":"05:25:00","height":"4.097"},{"time":"17:49:00","height":"4.414"}],"sunrise":"07:38","sunset":"16:23"},{"date":"2017-11-15","groups":[{"time":"06:17:00","height":"4.419"},{"time":"18:37:00","height":"4.672"}],"sunrise":"07:40","sunset":"16:21"},{"date":"2017-11-16","groups":[{"time":"07:00:00","height":"4.689"},{"time":"19:18:00","height":"4.849"}],"sunrise":"07:42","sunset":"16:20"},{"date":"2017-11-17","groups":[{"time":"07:38:00","height":"4.873"},{"time":"19:54:00","height":"4.940"}],"sunrise":"07:43","sunset":"16:19"},{"date":"2017-11-18","groups":[{"time":"08:12:00","height":"4.974"},{"time":"20:27:00","height":"4.960"}],"sunrise":"07:45","sunset":"16:17"},{"date":"2017-11-19","groups":[{"time":"08:44:00","height":"5.005"},{"time":"20:58:00","height":"4.923"}],"sunrise":"07:47","sunset":"16:16"},{"date":"2017-11-20","groups":[{"time":"09:14:00","height":"4.973"},{"time":"21:28:00","height":"4.830"}],"sunrise":"07:49","sunset":"16:15"},{"date":"2017-11-21","groups":[{"time":"09:43:00","height":"4.877"},{"time":"21:58:00","height":"4.678"}],"sunrise":"07:50","sunset":"16:13"},{"date":"2017-11-22","groups":[{"time":"10:14:00","height":"4.719"},{"time":"22:30:00","height":"4.472"}],"sunrise":"07:52","sunset":"16:12"},{"date":"2017-11-23","groups":[{"time":"10:50:00","height":"4.505"},{"time":"23:07:00","height":"4.218"}],"sunrise":"07:54","sunset":"16:11"},{"date":"2017-11-24","groups":[{"time":"11:29:00","height":"4.249"},{"time":"23:48:00","height":"3.934"}],"sunrise":"07:55","sunset":"16:10"},{"date":"2017-11-25","groups":[{"time":"12:15:00","height":"3.973"}],"sunrise":"07:57","sunset":"16:09"},{"date":"2017-11-26","groups":[{"time":"00:39:00","height":"3.653"},{"time":"13:14:00","height":"3.728"}],"sunrise":"07:59","sunset":"16:08"},{"date":"2017-11-27","groups":[{"time":"01:46:00","height":"3.444"},{"time":"14:28:00","height":"3.607"}],"sunrise":"08:00","sunset":"16:07"},{"date":"2017-11-28","groups":[{"time":"03:07:00","height":"3.420"},{"time":"15:49:00","height":"3.709"}],"sunrise":"08:02","sunset":"16:06"},{"date":"2017-11-29","groups":[{"time":"04:24:00","height":"3.655"},{"time":"16:53:00","height":"4.028"}],"sunrise":"08:03","sunset":"16:05"},{"date":"2017-11-30","groups":[{"time":"05:25:00","height":"4.069"},{"time":"17:48:00","height":"4.450"}],"sunrise":"08:05","sunset":"16:05"},{"date":"2017-12-01","groups":[{"time":"06:13:00","height":"4.535"},{"time":"18:36:00","height":"4.872"}],"sunrise":"08:06","sunset":"16:04"},{"date":"2017-12-02","groups":[{"time":"07:00:00","height":"4.965"},{"time":"19:22:00","height":"5.225"}],"sunrise":"08:08","sunset":"16:03"},{"date":"2017-12-03","groups":[{"time":"07:44:00","height":"5.305"},{"time":"20:07:00","height":"5.464"}],"sunrise":"08:09","sunset":"16:03"},{"date":"2017-12-04","groups":[{"time":"08:29:00","height":"5.521"},{"time":"20:52:00","height":"5.561"}],"sunrise":"08:11","sunset":"16:02"},{"date":"2017-12-05","groups":[{"time":"09:13:00","height":"5.594"},{"time":"21:38:00","height":"5.504"}],"sunrise":"08:12","sunset":"16:02"},{"date":"2017-12-06","groups":[{"time":"09:57:00","height":"5.518"},{"time":"22:26:00","height":"5.298"}],"sunrise":"08:13","sunset":"16:01"},{"date":"2017-12-07","groups":[{"time":"10:49:00","height":"5.307"},{"time":"23:19:00","height":"4.975"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2017-12-08","groups":[{"time":"11:43:00","height":"4.995"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2017-12-09","groups":[{"time":"00:15:00","height":"4.587"},{"time":"12:41:00","height":"4.636"}],"sunrise":"08:17","sunset":"16:00"},{"date":"2017-12-10","groups":[{"time":"01:17:00","height":"4.205"},{"time":"13:46:00","height":"4.300"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2017-12-11","groups":[{"time":"02:25:00","height":"3.913"},{"time":"14:59:00","height":"4.070"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2017-12-12","groups":[{"time":"03:41:00","height":"3.795"},{"time":"16:10:00","height":"4.008"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2017-12-13","groups":[{"time":"04:47:00","height":"3.873"},{"time":"17:13:00","height":"4.097"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2017-12-14","groups":[{"time":"05:45:00","height":"4.077"},{"time":"18:07:00","height":"4.260"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2017-12-15","groups":[{"time":"06:33:00","height":"4.317"},{"time":"18:53:00","height":"4.428"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2017-12-16","groups":[{"time":"07:15:00","height":"4.531"},{"time":"19:32:00","height":"4.565"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2017-12-17","groups":[{"time":"07:51:00","height":"4.695"},{"time":"20:07:00","height":"4.658"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2017-12-18","groups":[{"time":"08:25:00","height":"4.803"},{"time":"20:41:00","height":"4.704"}],"sunrise":"08:25","sunset":"16:00"},{"date":"2017-12-19","groups":[{"time":"08:57:00","height":"4.853"},{"time":"21:12:00","height":"4.699"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2017-12-20","groups":[{"time":"09:28:00","height":"4.845"},{"time":"21:42:00","height":"4.643"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2017-12-21","groups":[{"time":"09:58:00","height":"4.779"},{"time":"22:14:00","height":"4.538"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2017-12-22","groups":[{"time":"10:33:00","height":"4.660"},{"time":"22:51:00","height":"4.385"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2017-12-23","groups":[{"time":"11:11:00","height":"4.493"},{"time":"23:30:00","height":"4.193"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2017-12-24","groups":[{"time":"11:54:00","height":"4.292"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2017-12-25","groups":[{"time":"00:14:00","height":"3.981"},{"time":"12:42:00","height":"4.084"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2017-12-26","groups":[{"time":"01:07:00","height":"3.783"},{"time":"13:42:00","height":"3.912"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2017-12-27","groups":[{"time":"02:13:00","height":"3.655"},{"time":"14:53:00","height":"3.846"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2017-12-28","groups":[{"time":"03:31:00","height":"3.680"},{"time":"16:06:00","height":"3.947"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2017-12-29","groups":[{"time":"04:40:00","height":"3.905"},{"time":"17:10:00","height":"4.216"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2017-12-30","groups":[{"time":"05:41:00","height":"4.275"},{"time":"18:09:00","height":"4.573"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2017-12-31","groups":[{"time":"06:36:00","height":"4.692"},{"time":"19:02:00","height":"4.930"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2018-01-01","groups":[{"time":"07:27:00","height":"5.077"},{"time":"19:53:00","height":"5.222"}],"sunrise":"08:29","sunset":"16:10"},{"date":"2018-01-02","groups":[{"time":"08:16:00","height":"5.375"},{"time":"20:42:00","height":"5.405"}],"sunrise":"08:29","sunset":"16:12"},{"date":"2018-01-03","groups":[{"time":"09:03:00","height":"5.551"},{"time":"21:29:00","height":"5.453"}],"sunrise":"08:28","sunset":"16:13"},{"date":"2018-01-04","groups":[{"time":"09:49:00","height":"5.584"},{"time":"22:15:00","height":"5.357"}],"sunrise":"08:28","sunset":"16:14"},{"date":"2018-01-05","groups":[{"time":"10:37:00","height":"5.468"},{"time":"23:06:00","height":"5.126"}],"sunrise":"08:28","sunset":"16:15"},{"date":"2018-01-06","groups":[{"time":"11:28:00","height":"5.219"},{"time":"23:56:00","height":"4.795"}],"sunrise":"08:27","sunset":"16:16"},{"date":"2018-01-07","groups":[{"time":"12:18:00","height":"4.871"}],"sunrise":"08:27","sunset":"16:18"},{"date":"2018-01-08","groups":[{"time":"00:48:00","height":"4.413"},{"time":"13:13:00","height":"4.478"}],"sunrise":"08:26","sunset":"16:19"},{"date":"2018-01-09","groups":[{"time":"01:44:00","height":"4.039"},{"time":"14:12:00","height":"4.100"}],"sunrise":"08:26","sunset":"16:21"},{"date":"2018-01-10","groups":[{"time":"02:48:00","height":"3.742"},{"time":"15:20:00","height":"3.816"}],"sunrise":"08:25","sunset":"16:22"},{"date":"2018-01-11","groups":[{"time":"03:59:00","height":"3.602"},{"time":"16:28:00","height":"3.702"}],"sunrise":"08:24","sunset":"16:24"},{"date":"2018-01-12","groups":[{"time":"05:05:00","height":"3.664"},{"time":"17:32:00","height":"3.773"}],"sunrise":"08:24","sunset":"16:25"},{"date":"2018-01-13","groups":[{"time":"06:03:00","height":"3.878"},{"time":"18:27:00","height":"3.963"}],"sunrise":"08:23","sunset":"16:27"},{"date":"2018-01-14","groups":[{"time":"06:52:00","height":"4.152"},{"time":"19:13:00","height":"4.187"}],"sunrise":"08:22","sunset":"16:28"},{"date":"2018-01-15","groups":[{"time":"07:32:00","height":"4.411"},{"time":"19:51:00","height":"4.387"}],"sunrise":"08:21","sunset":"16:30"},{"date":"2018-01-16","groups":[{"time":"08:08:00","height":"4.619"},{"time":"20:25:00","height":"4.538"}],"sunrise":"08:20","sunset":"16:31"},{"date":"2018-01-17","groups":[{"time":"08:42:00","height":"4.764"},{"time":"20:58:00","height":"4.635"}],"sunrise":"08:19","sunset":"16:33"},{"date":"2018-01-18","groups":[{"time":"09:14:00","height":"4.849"},{"time":"21:29:00","height":"4.680"}],"sunrise":"08:18","sunset":"16:35"},{"date":"2018-01-19","groups":[{"time":"09:44:00","height":"4.877"},{"time":"21:59:00","height":"4.676"}],"sunrise":"08:17","sunset":"16:37"},{"date":"2018-01-20","groups":[{"time":"10:16:00","height":"4.847"},{"time":"22:33:00","height":"4.616"}],"sunrise":"08:16","sunset":"16:38"},{"date":"2018-01-21","groups":[{"time":"10:53:00","height":"4.759"},{"time":"23:10:00","height":"4.500"}],"sunrise":"08:15","sunset":"16:40"},{"date":"2018-01-22","groups":[{"time":"11:32:00","height":"4.612"},{"time":"23:49:00","height":"4.329"}],"sunrise":"08:13","sunset":"16:42"},{"date":"2018-01-23","groups":[{"time":"12:14:00","height":"4.418"}],"sunrise":"08:12","sunset":"16:44"},{"date":"2018-01-24","groups":[{"time":"00:35:00","height":"4.120"},{"time":"13:05:00","height":"4.195"}],"sunrise":"08:11","sunset":"16:45"},{"date":"2018-01-25","groups":[{"time":"01:30:00","height":"3.903"},{"time":"14:07:00","height":"3.984"}],"sunrise":"08:09","sunset":"16:47"},{"date":"2018-01-26","groups":[{"time":"02:40:00","height":"3.741"},{"time":"15:23:00","height":"3.865"}],"sunrise":"08:08","sunset":"16:49"},{"date":"2018-01-27","groups":[{"time":"04:01:00","height":"3.745"},{"time":"16:38:00","height":"3.943"}],"sunrise":"08:07","sunset":"16:51"},{"date":"2018-01-28","groups":[{"time":"05:14:00","height":"3.987"},{"time":"17:48:00","height":"4.225"}],"sunrise":"08:05","sunset":"16:53"},{"date":"2018-01-29","groups":[{"time":"06:19:00","height":"4.395"},{"time":"18:49:00","height":"4.613"}],"sunrise":"08:04","sunset":"16:55"},{"date":"2018-01-30","groups":[{"time":"07:15:00","height":"4.846"},{"time":"19:44:00","height":"4.993"}],"sunrise":"08:02","sunset":"16:57"},{"date":"2018-01-31","groups":[{"time":"08:06:00","height":"5.242"},{"time":"20:33:00","height":"5.283"}],"sunrise":"08:00","sunset":"16:59"},{"date":"2018-02-01","groups":[{"time":"08:53:00","height":"5.517"},{"time":"21:18:00","height":"5.434"}],"sunrise":"07:59","sunset":"17:00"},{"date":"2018-02-02","groups":[{"time":"09:38:00","height":"5.632"},{"time":"22:00:00","height":"5.426"}],"sunrise":"07:57","sunset":"17:02"},{"date":"2018-02-03","groups":[{"time":"10:20:00","height":"5.573"},{"time":"22:45:00","height":"5.260"}],"sunrise":"07:55","sunset":"17:04"},{"date":"2018-02-04","groups":[{"time":"11:06:00","height":"5.351"},{"time":"23:30:00","height":"4.964"}],"sunrise":"07:54","sunset":"17:06"},{"date":"2018-02-05","groups":[{"time":"11:50:00","height":"4.998"}],"sunrise":"07:52","sunset":"17:08"},{"date":"2018-02-06","groups":[{"time":"00:13:00","height":"4.580"},{"time":"12:34:00","height":"4.565"}],"sunrise":"07:50","sunset":"17:10"},{"date":"2018-02-07","groups":[{"time":"00:59:00","height":"4.158"},{"time":"13:21:00","height":"4.106"}],"sunrise":"07:48","sunset":"17:12"},{"date":"2018-02-08","groups":[{"time":"01:51:00","height":"3.751"},{"time":"14:18:00","height":"3.679"}],"sunrise":"07:46","sunset":"17:14"},{"date":"2018-02-09","groups":[{"time":"02:57:00","height":"3.430"},{"time":"15:33:00","height":"3.379"}],"sunrise":"07:45","sunset":"17:16"},{"date":"2018-02-10","groups":[{"time":"04:17:00","height":"3.318"},{"time":"16:52:00","height":"3.336"}],"sunrise":"07:43","sunset":"17:18"},{"date":"2018-02-11","groups":[{"time":"05:30:00","height":"3.485"},{"time":"18:00:00","height":"3.549"}],"sunrise":"07:41","sunset":"17:20"},{"date":"2018-02-12","groups":[{"time":"06:28:00","height":"3.819"},{"time":"18:52:00","height":"3.871"}],"sunrise":"07:39","sunset":"17:22"},{"date":"2018-02-13","groups":[{"time":"07:13:00","height":"4.176"},{"time":"19:32:00","height":"4.186"}],"sunrise":"07:37","sunset":"17:24"},{"date":"2018-02-14","groups":[{"time":"07:50:00","height":"4.485"},{"time":"20:07:00","height":"4.446"}],"sunrise":"07:35","sunset":"17:25"},{"date":"2018-02-15","groups":[{"time":"08:24:00","height":"4.723"},{"time":"20:40:00","height":"4.645"}],"sunrise":"07:33","sunset":"17:27"},{"date":"2018-02-16","groups":[{"time":"08:55:00","height":"4.894"},{"time":"21:10:00","height":"4.786"}],"sunrise":"07:31","sunset":"17:29"},{"date":"2018-02-17","groups":[{"time":"09:26:00","height":"5.003"},{"time":"21:40:00","height":"4.868"}],"sunrise":"07:29","sunset":"17:31"},{"date":"2018-02-18","groups":[{"time":"09:57:00","height":"5.047"},{"time":"22:12:00","height":"4.880"}],"sunrise":"07:27","sunset":"17:33"},{"date":"2018-02-19","groups":[{"time":"10:31:00","height":"5.012"},{"time":"22:47:00","height":"4.806"}],"sunrise":"07:25","sunset":"17:35"},{"date":"2018-02-20","groups":[{"time":"11:09:00","height":"4.889"},{"time":"23:25:00","height":"4.645"}],"sunrise":"07:22","sunset":"17:37"},{"date":"2018-02-21","groups":[{"time":"11:49:00","height":"4.677"}],"sunrise":"07:20","sunset":"17:39"},{"date":"2018-02-22","groups":[{"time":"00:08:00","height":"4.404"},{"time":"12:35:00","height":"4.387"}],"sunrise":"07:18","sunset":"17:41"},{"date":"2018-02-23","groups":[{"time":"00:57:00","height":"4.104"},{"time":"13:33:00","height":"4.052"}],"sunrise":"07:16","sunset":"17:43"},{"date":"2018-02-24","groups":[{"time":"02:04:00","height":"3.800"},{"time":"14:49:00","height":"3.763"}],"sunrise":"07:14","sunset":"17:45"},{"date":"2018-02-25","groups":[{"time":"03:31:00","height":"3.635"},{"time":"16:17:00","height":"3.700"}],"sunrise":"07:12","sunset":"17:47"},{"date":"2018-02-26","groups":[{"time":"04:55:00","height":"3.784"},{"time":"17:36:00","height":"3.959"}],"sunrise":"07:09","sunset":"17:48"},{"date":"2018-02-27","groups":[{"time":"06:08:00","height":"4.208"},{"time":"18:42:00","height":"4.405"}],"sunrise":"07:07","sunset":"17:50"},{"date":"2018-02-28","groups":[{"time":"07:07:00","height":"4.718"},{"time":"19:35:00","height":"4.859"}],"sunrise":"07:05","sunset":"17:52"},{"date":"2018-03-01","groups":[{"time":"07:56:00","height":"5.163"},{"time":"20:20:00","height":"5.207"}],"sunrise":"07:03","sunset":"17:54"},{"date":"2018-03-02","groups":[{"time":"08:40:00","height":"5.465"},{"time":"21:03:00","height":"5.402"}],"sunrise":"07:00","sunset":"17:56"},{"date":"2018-03-03","groups":[{"time":"09:21:00","height":"5.592"},{"time":"21:41:00","height":"5.432"}],"sunrise":"06:58","sunset":"17:58"},{"date":"2018-03-04","groups":[{"time":"09:58:00","height":"5.542"},{"time":"22:18:00","height":"5.303"}],"sunrise":"06:56","sunset":"18:00"},{"date":"2018-03-05","groups":[{"time":"10:38:00","height":"5.331"},{"time":"22:58:00","height":"5.042"}],"sunrise":"06:54","sunset":"18:01"},{"date":"2018-03-06","groups":[{"time":"11:17:00","height":"4.993"},{"time":"23:36:00","height":"4.684"}],"sunrise":"06:51","sunset":"18:03"},{"date":"2018-03-07","groups":[{"time":"11:55:00","height":"4.572"}],"sunrise":"06:49","sunset":"18:05"},{"date":"2018-03-08","groups":[{"time":"00:15:00","height":"4.272"},{"time":"12:35:00","height":"4.110"}],"sunrise":"06:47","sunset":"18:07"},{"date":"2018-03-09","groups":[{"time":"00:57:00","height":"3.842"},{"time":"13:21:00","height":"3.647"}],"sunrise":"06:44","sunset":"18:09"},{"date":"2018-03-10","groups":[{"time":"01:53:00","height":"3.438"},{"time":"14:25:00","height":"3.242"}],"sunrise":"06:42","sunset":"18:11"},{"date":"2018-03-11","groups":[{"time":"03:15:00","height":"3.164"},{"time":"16:02:00","height":"3.055"}],"sunrise":"06:40","sunset":"18:13"},{"date":"2018-03-12","groups":[{"time":"04:50:00","height":"3.225"},{"time":"17:28:00","height":"3.246"}],"sunrise":"06:37","sunset":"18:14"},{"date":"2018-03-13","groups":[{"time":"05:58:00","height":"3.570"},{"time":"18:26:00","height":"3.632"}],"sunrise":"06:35","sunset":"18:16"},{"date":"2018-03-14","groups":[{"time":"06:46:00","height":"3.990"},{"time":"19:08:00","height":"4.035"}],"sunrise":"06:32","sunset":"18:18"},{"date":"2018-03-15","groups":[{"time":"07:24:00","height":"4.375"},{"time":"19:43:00","height":"4.390"}],"sunrise":"06:30","sunset":"18:20"},{"date":"2018-03-16","groups":[{"time":"07:58:00","height":"4.692"},{"time":"20:15:00","height":"4.680"}],"sunrise":"06:28","sunset":"18:22"},{"date":"2018-03-17","groups":[{"time":"08:31:00","height":"4.939"},{"time":"20:47:00","height":"4.904"}],"sunrise":"06:25","sunset":"18:23"},{"date":"2018-03-18","groups":[{"time":"09:03:00","height":"5.116"},{"time":"21:18:00","height":"5.056"}],"sunrise":"06:23","sunset":"18:25"},{"date":"2018-03-19","groups":[{"time":"09:35:00","height":"5.212"},{"time":"21:49:00","height":"5.115"}],"sunrise":"06:21","sunset":"18:27"},{"date":"2018-03-20","groups":[{"time":"10:07:00","height":"5.206"},{"time":"22:24:00","height":"5.062"}],"sunrise":"06:18","sunset":"18:29"},{"date":"2018-03-21","groups":[{"time":"10:45:00","height":"5.079"},{"time":"23:03:00","height":"4.888"}],"sunrise":"06:16","sunset":"18:31"},{"date":"2018-03-22","groups":[{"time":"11:28:00","height":"4.829"},{"time":"23:46:00","height":"4.606"}],"sunrise":"06:13","sunset":"18:32"},{"date":"2018-03-23","groups":[{"time":"12:14:00","height":"4.471"}],"sunrise":"06:11","sunset":"18:34"},{"date":"2018-03-24","groups":[{"time":"00:36:00","height":"4.242"},{"time":"13:13:00","height":"4.051"}],"sunrise":"06:09","sunset":"18:36"},{"date":"2018-03-25","groups":[{"time":"02:42:00","height":"3.864"},{"time":"14:32:00","height":"3.686"}],"sunrise":"06:06","sunset":"18:38"},{"date":"2018-03-26","groups":[{"time":"04:13:00","height":"3.634"},{"time":"17:05:00","height":"3.590"}],"sunrise":"07:04","sunset":"19:40"},{"date":"2018-03-27","groups":[{"time":"05:43:00","height":"3.759"},{"time":"18:26:00","height":"3.866"}],"sunrise":"07:01","sunset":"19:41"},{"date":"2018-03-28","groups":[{"time":"06:57:00","height":"4.184"},{"time":"19:30:00","height":"4.332"}],"sunrise":"06:59","sunset":"19:43"},{"date":"2018-03-29","groups":[{"time":"07:54:00","height":"4.674"},{"time":"20:20:00","height":"4.780"}],"sunrise":"06:57","sunset":"19:45"},{"date":"2018-03-30","groups":[{"time":"08:40:00","height":"5.075"},{"time":"21:03:00","height":"5.108"}],"sunrise":"06:54","sunset":"19:47"},{"date":"2018-03-31","groups":[{"time":"09:22:00","height":"5.325"},{"time":"21:42:00","height":"5.288"}],"sunrise":"06:52","sunset":"19:48"},{"date":"2018-04-01","groups":[{"time":"10:00:00","height":"5.415"},{"time":"22:18:00","height":"5.323"}],"sunrise":"06:50","sunset":"19:50"},{"date":"2018-04-02","groups":[{"time":"10:35:00","height":"5.357"},{"time":"22:52:00","height":"5.226"}],"sunrise":"06:47","sunset":"19:52"},{"date":"2018-04-03","groups":[{"time":"11:08:00","height":"5.172"},{"time":"23:26:00","height":"5.017"}],"sunrise":"06:45","sunset":"19:54"},{"date":"2018-04-04","groups":[{"time":"11:44:00","height":"4.884"}],"sunrise":"06:42","sunset":"19:56"},{"date":"2018-04-05","groups":[{"time":"00:02:00","height":"4.719"},{"time":"12:19:00","height":"4.522"}],"sunrise":"06:40","sunset":"19:57"},{"date":"2018-04-06","groups":[{"time":"00:37:00","height":"4.362"},{"time":"12:56:00","height":"4.116"}],"sunrise":"06:38","sunset":"19:59"},{"date":"2018-04-07","groups":[{"time":"01:16:00","height":"3.971"},{"time":"13:38:00","height":"3.689"}],"sunrise":"06:35","sunset":"20:01"},{"date":"2018-04-08","groups":[{"time":"02:05:00","height":"3.576"},{"time":"14:33:00","height":"3.284"}],"sunrise":"06:33","sunset":"20:03"},{"date":"2018-04-09","groups":[{"time":"03:13:00","height":"3.246"},{"time":"15:59:00","height":"3.011"}],"sunrise":"06:31","sunset":"20:04"},{"date":"2018-04-10","groups":[{"time":"04:55:00","height":"3.159"},{"time":"17:41:00","height":"3.091"}],"sunrise":"06:28","sunset":"20:06"},{"date":"2018-04-11","groups":[{"time":"06:15:00","height":"3.425"},{"time":"18:47:00","height":"3.461"}],"sunrise":"06:26","sunset":"20:08"},{"date":"2018-04-12","groups":[{"time":"07:08:00","height":"3.838"},{"time":"19:32:00","height":"3.901"}],"sunrise":"06:24","sunset":"20:10"},{"date":"2018-04-13","groups":[{"time":"07:49:00","height":"4.259"},{"time":"20:10:00","height":"4.321"}],"sunrise":"06:22","sunset":"20:12"},{"date":"2018-04-14","groups":[{"time":"08:25:00","height":"4.634"},{"time":"20:44:00","height":"4.686"}],"sunrise":"06:19","sunset":"20:13"},{"date":"2018-04-15","groups":[{"time":"09:00:00","height":"4.944"},{"time":"21:18:00","height":"4.979"}],"sunrise":"06:17","sunset":"20:15"},{"date":"2018-04-16","groups":[{"time":"09:35:00","height":"5.175"},{"time":"21:52:00","height":"5.182"}],"sunrise":"06:15","sunset":"20:17"},{"date":"2018-04-17","groups":[{"time":"10:10:00","height":"5.304"},{"time":"22:27:00","height":"5.271"}],"sunrise":"06:13","sunset":"20:19"},{"date":"2018-04-18","groups":[{"time":"10:46:00","height":"5.308"},{"time":"23:03:00","height":"5.227"}],"sunrise":"06:10","sunset":"20:20"},{"date":"2018-04-19","groups":[{"time":"11:26:00","height":"5.168"},{"time":"23:44:00","height":"5.046"}],"sunrise":"06:08","sunset":"20:22"},{"date":"2018-04-20","groups":[{"time":"12:12:00","height":"4.888"}],"sunrise":"06:06","sunset":"20:24"},{"date":"2018-04-21","groups":[{"time":"00:32:00","height":"4.745"},{"time":"13:03:00","height":"4.498"}],"sunrise":"06:04","sunset":"20:26"},{"date":"2018-04-22","groups":[{"time":"01:26:00","height":"4.366"},{"time":"14:05:00","height":"4.068"}],"sunrise":"06:02","sunset":"20:28"},{"date":"2018-04-23","groups":[{"time":"02:35:00","height":"3.996"},{"time":"15:23:00","height":"3.727"}],"sunrise":"05:59","sunset":"20:29"},{"date":"2018-04-24","groups":[{"time":"04:02:00","height":"3.788"},{"time":"16:53:00","height":"3.652"}],"sunrise":"05:57","sunset":"20:31"},{"date":"2018-04-25","groups":[{"time":"05:28:00","height":"3.887"},{"time":"18:09:00","height":"3.894"}],"sunrise":"05:55","sunset":"20:33"},{"date":"2018-04-26","groups":[{"time":"06:38:00","height":"4.222"},{"time":"19:11:00","height":"4.285"}],"sunrise":"05:53","sunset":"20:35"},{"date":"2018-04-27","groups":[{"time":"07:33:00","height":"4.598"},{"time":"20:00:00","height":"4.652"}],"sunrise":"05:51","sunset":"20:36"},{"date":"2018-04-28","groups":[{"time":"08:19:00","height":"4.891"},{"time":"20:41:00","height":"4.917"}],"sunrise":"05:49","sunset":"20:38"},{"date":"2018-04-29","groups":[{"time":"08:59:00","height":"5.059"},{"time":"21:19:00","height":"5.064"}],"sunrise":"05:47","sunset":"20:40"},{"date":"2018-04-30","groups":[{"time":"09:36:00","height":"5.111"},{"time":"21:53:00","height":"5.104"}],"sunrise":"05:45","sunset":"20:42"},{"date":"2018-05-01","groups":[{"time":"10:10:00","height":"5.063"},{"time":"22:26:00","height":"5.050"}],"sunrise":"05:43","sunset":"20:43"},{"date":"2018-05-02","groups":[{"time":"10:42:00","height":"4.929"},{"time":"22:57:00","height":"4.910"}],"sunrise":"05:41","sunset":"20:45"},{"date":"2018-05-03","groups":[{"time":"11:14:00","height":"4.720"},{"time":"23:31:00","height":"4.696"}],"sunrise":"05:39","sunset":"20:47"},{"date":"2018-05-04","groups":[{"time":"11:49:00","height":"4.449"}],"sunrise":"05:37","sunset":"20:49"},{"date":"2018-05-05","groups":[{"time":"00:07:00","height":"4.422"},{"time":"12:25:00","height":"4.131"}],"sunrise":"05:35","sunset":"20:50"},{"date":"2018-05-06","groups":[{"time":"00:46:00","height":"4.108"},{"time":"13:07:00","height":"3.785"}],"sunrise":"05:33","sunset":"20:52"},{"date":"2018-05-07","groups":[{"time":"01:31:00","height":"3.778"},{"time":"13:56:00","height":"3.445"}],"sunrise":"05:31","sunset":"20:54"},{"date":"2018-05-08","groups":[{"time":"02:30:00","height":"3.480"},{"time":"15:05:00","height":"3.183"}],"sunrise":"05:30","sunset":"20:55"},{"date":"2018-05-09","groups":[{"time":"03:49:00","height":"3.319"},{"time":"16:36:00","height":"3.135"}],"sunrise":"05:28","sunset":"20:57"},{"date":"2018-05-10","groups":[{"time":"05:16:00","height":"3.420"},{"time":"17:53:00","height":"3.381"}],"sunrise":"05:26","sunset":"20:59"},{"date":"2018-05-11","groups":[{"time":"06:18:00","height":"3.741"},{"time":"18:46:00","height":"3.786"}],"sunrise":"05:24","sunset":"21:00"},{"date":"2018-05-12","groups":[{"time":"07:06:00","height":"4.143"},{"time":"19:29:00","height":"4.224"}],"sunrise":"05:23","sunset":"21:02"},{"date":"2018-05-13","groups":[{"time":"07:47:00","height":"4.541"},{"time":"20:09:00","height":"4.633"}],"sunrise":"05:21","sunset":"21:04"},{"date":"2018-05-14","groups":[{"time":"08:28:00","height":"4.889"},{"time":"20:47:00","height":"4.972"}],"sunrise":"05:19","sunset":"21:05"},{"date":"2018-05-15","groups":[{"time":"09:07:00","height":"5.152"},{"time":"21:26:00","height":"5.212"}],"sunrise":"05:18","sunset":"21:07"},{"date":"2018-05-16","groups":[{"time":"09:48:00","height":"5.303"},{"time":"22:06:00","height":"5.329"}],"sunrise":"05:16","sunset":"21:09"},{"date":"2018-05-17","groups":[{"time":"10:29:00","height":"5.318"},{"time":"22:47:00","height":"5.309"}],"sunrise":"05:15","sunset":"21:10"},{"date":"2018-05-18","groups":[{"time":"11:12:00","height":"5.188"},{"time":"23:32:00","height":"5.155"}],"sunrise":"05:13","sunset":"21:12"},{"date":"2018-05-19","groups":[{"time":"12:03:00","height":"4.925"}],"sunrise":"05:12","sunset":"21:13"},{"date":"2018-05-20","groups":[{"time":"00:24:00","height":"4.888"},{"time":"12:58:00","height":"4.570"}],"sunrise":"05:10","sunset":"21:15"},{"date":"2018-05-21","groups":[{"time":"01:23:00","height":"4.556"},{"time":"14:00:00","height":"4.196"}],"sunrise":"05:09","sunset":"21:16"},{"date":"2018-05-22","groups":[{"time":"02:29:00","height":"4.239"},{"time":"15:12:00","height":"3.902"}],"sunrise":"05:08","sunset":"21:18"},{"date":"2018-05-23","groups":[{"time":"03:46:00","height":"4.036"},{"time":"16:32:00","height":"3.795"}],"sunrise":"05:06","sunset":"21:19"},{"date":"2018-05-24","groups":[{"time":"05:04:00","height":"4.027"},{"time":"17:42:00","height":"3.909"}],"sunrise":"05:05","sunset":"21:21"},{"date":"2018-05-25","groups":[{"time":"06:09:00","height":"4.185"},{"time":"18:42:00","height":"4.156"}],"sunrise":"05:04","sunset":"21:22"},{"date":"2018-05-26","groups":[{"time":"07:06:00","height":"4.400"},{"time":"19:33:00","height":"4.419"}],"sunrise":"05:03","sunset":"21:23"},{"date":"2018-05-27","groups":[{"time":"07:53:00","height":"4.584"},{"time":"20:16:00","height":"4.629"}],"sunrise":"05:02","sunset":"21:25"},{"date":"2018-05-28","groups":[{"time":"08:35:00","height":"4.701"},{"time":"20:55:00","height":"4.766"}],"sunrise":"05:01","sunset":"21:26"},{"date":"2018-05-29","groups":[{"time":"09:12:00","height":"4.752"},{"time":"21:30:00","height":"4.834"}],"sunrise":"04:59","sunset":"21:27"},{"date":"2018-05-30","groups":[{"time":"09:47:00","height":"4.746"},{"time":"22:04:00","height":"4.837"}],"sunrise":"04:59","sunset":"21:29"},{"date":"2018-05-31","groups":[{"time":"10:20:00","height":"4.685"},{"time":"22:36:00","height":"4.777"}],"sunrise":"04:58","sunset":"21:30"},{"date":"2018-06-01","groups":[{"time":"10:52:00","height":"4.568"},{"time":"23:07:00","height":"4.656"}],"sunrise":"04:57","sunset":"21:31"},{"date":"2018-06-02","groups":[{"time":"11:25:00","height":"4.400"},{"time":"23:43:00","height":"4.481"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2018-06-03","groups":[{"time":"12:02:00","height":"4.187"}],"sunrise":"04:55","sunset":"21:33"},{"date":"2018-06-04","groups":[{"time":"00:22:00","height":"4.263"},{"time":"12:42:00","height":"3.943"}],"sunrise":"04:54","sunset":"21:34"},{"date":"2018-06-05","groups":[{"time":"01:05:00","height":"4.020"},{"time":"13:28:00","height":"3.691"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2018-06-06","groups":[{"time":"01:56:00","height":"3.783"},{"time":"14:23:00","height":"3.475"}],"sunrise":"04:53","sunset":"21:36"},{"date":"2018-06-07","groups":[{"time":"02:58:00","height":"3.610"},{"time":"15:33:00","height":"3.366"}],"sunrise":"04:53","sunset":"21:37"},{"date":"2018-06-08","groups":[{"time":"04:12:00","height":"3.579"},{"time":"16:49:00","height":"3.445"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2018-06-09","groups":[{"time":"05:21:00","height":"3.736"},{"time":"17:53:00","height":"3.719"}],"sunrise":"04:52","sunset":"21:39"},{"date":"2018-06-10","groups":[{"time":"06:18:00","height":"4.041"},{"time":"18:46:00","height":"4.105"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2018-06-11","groups":[{"time":"07:10:00","height":"4.406"},{"time":"19:34:00","height":"4.512"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2018-06-12","groups":[{"time":"07:57:00","height":"4.756"},{"time":"20:20:00","height":"4.874"}],"sunrise":"04:50","sunset":"21:41"},{"date":"2018-06-13","groups":[{"time":"08:43:00","height":"5.040"},{"time":"21:04:00","height":"5.153"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2018-06-14","groups":[{"time":"09:30:00","height":"5.222"},{"time":"21:50:00","height":"5.321"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2018-06-15","groups":[{"time":"10:16:00","height":"5.282"},{"time":"22:36:00","height":"5.365"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2018-06-16","groups":[{"time":"11:02:00","height":"5.211"},{"time":"23:24:00","height":"5.283"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2018-06-17","groups":[{"time":"11:54:00","height":"5.019"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2018-06-18","groups":[{"time":"00:17:00","height":"5.089"},{"time":"12:49:00","height":"4.736"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2018-06-19","groups":[{"time":"01:13:00","height":"4.815"},{"time":"13:47:00","height":"4.410"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2018-06-20","groups":[{"time":"02:14:00","height":"4.510"},{"time":"14:49:00","height":"4.107"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2018-06-21","groups":[{"time":"03:20:00","height":"4.236"},{"time":"15:59:00","height":"3.896"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2018-06-22","groups":[{"time":"04:30:00","height":"4.056"},{"time":"17:06:00","height":"3.834"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2018-06-23","groups":[{"time":"05:35:00","height":"4.009"},{"time":"18:09:00","height":"3.921"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2018-06-24","groups":[{"time":"06:34:00","height":"4.073"},{"time":"19:04:00","height":"4.097"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2018-06-25","groups":[{"time":"07:27:00","height":"4.195"},{"time":"19:52:00","height":"4.295"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2018-06-26","groups":[{"time":"08:12:00","height":"4.322"},{"time":"20:33:00","height":"4.468"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2018-06-27","groups":[{"time":"08:52:00","height":"4.426"},{"time":"21:10:00","height":"4.597"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2018-06-28","groups":[{"time":"09:29:00","height":"4.494"},{"time":"21:46:00","height":"4.674"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2018-06-29","groups":[{"time":"10:03:00","height":"4.517"},{"time":"22:19:00","height":"4.695"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2018-06-30","groups":[{"time":"10:35:00","height":"4.496"},{"time":"22:50:00","height":"4.665"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2018-07-01","groups":[{"time":"11:06:00","height":"4.429"},{"time":"23:24:00","height":"4.585"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2018-07-02","groups":[{"time":"11:42:00","height":"4.318"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2018-07-03","groups":[{"time":"00:02:00","height":"4.457"},{"time":"12:19:00","height":"4.168"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2018-07-04","groups":[{"time":"00:41:00","height":"4.290"},{"time":"13:00:00","height":"3.989"}],"sunrise":"04:57","sunset":"21:43"},{"date":"2018-07-05","groups":[{"time":"01:25:00","height":"4.101"},{"time":"13:47:00","height":"3.805"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2018-07-06","groups":[{"time":"02:16:00","height":"3.921"},{"time":"14:43:00","height":"3.655"}],"sunrise":"04:59","sunset":"21:42"},{"date":"2018-07-07","groups":[{"time":"03:18:00","height":"3.796"},{"time":"15:50:00","height":"3.596"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2018-07-08","groups":[{"time":"04:28:00","height":"3.785"},{"time":"17:02:00","height":"3.694"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2018-07-09","groups":[{"time":"05:35:00","height":"3.933"},{"time":"18:07:00","height":"3.963"}],"sunrise":"05:02","sunset":"21:40"},{"date":"2018-07-10","groups":[{"time":"06:37:00","height":"4.217"},{"time":"19:05:00","height":"4.337"}],"sunrise":"05:03","sunset":"21:39"},{"date":"2018-07-11","groups":[{"time":"07:33:00","height":"4.558"},{"time":"19:59:00","height":"4.729"}],"sunrise":"05:05","sunset":"21:39"},{"date":"2018-07-12","groups":[{"time":"08:26:00","height":"4.883"},{"time":"20:49:00","height":"5.075"}],"sunrise":"05:06","sunset":"21:38"},{"date":"2018-07-13","groups":[{"time":"09:17:00","height":"5.138"},{"time":"21:38:00","height":"5.331"}],"sunrise":"05:07","sunset":"21:37"},{"date":"2018-07-14","groups":[{"time":"10:06:00","height":"5.286"},{"time":"22:25:00","height":"5.467"}],"sunrise":"05:08","sunset":"21:36"},{"date":"2018-07-15","groups":[{"time":"10:52:00","height":"5.304"},{"time":"23:12:00","height":"5.465"}],"sunrise":"05:09","sunset":"21:35"},{"date":"2018-07-16","groups":[{"time":"11:41:00","height":"5.187"}],"sunrise":"05:11","sunset":"21:34"},{"date":"2018-07-17","groups":[{"time":"00:04:00","height":"5.322"},{"time":"12:33:00","height":"4.948"}],"sunrise":"05:12","sunset":"21:32"},{"date":"2018-07-18","groups":[{"time":"00:55:00","height":"5.055"},{"time":"13:24:00","height":"4.623"}],"sunrise":"05:13","sunset":"21:31"},{"date":"2018-07-19","groups":[{"time":"01:48:00","height":"4.702"},{"time":"14:17:00","height":"4.263"}],"sunrise":"05:15","sunset":"21:30"},{"date":"2018-07-20","groups":[{"time":"02:43:00","height":"4.317"},{"time":"15:17:00","height":"3.930"}],"sunrise":"05:16","sunset":"21:29"},{"date":"2018-07-21","groups":[{"time":"03:46:00","height":"3.969"},{"time":"16:25:00","height":"3.698"}],"sunrise":"05:17","sunset":"21:27"},{"date":"2018-07-22","groups":[{"time":"04:54:00","height":"3.741"},{"time":"17:31:00","height":"3.641"}],"sunrise":"05:19","sunset":"21:26"},{"date":"2018-07-23","groups":[{"time":"06:00:00","height":"3.695"},{"time":"18:35:00","height":"3.767"}],"sunrise":"05:20","sunset":"21:25"},{"date":"2018-07-24","groups":[{"time":"07:01:00","height":"3.813"},{"time":"19:29:00","height":"4.005"}],"sunrise":"05:22","sunset":"21:23"},{"date":"2018-07-25","groups":[{"time":"07:53:00","height":"4.014"},{"time":"20:15:00","height":"4.262"}],"sunrise":"05:23","sunset":"21:22"},{"date":"2018-07-26","groups":[{"time":"08:35:00","height":"4.219"},{"time":"20:54:00","height":"4.481"}],"sunrise":"05:25","sunset":"21:20"},{"date":"2018-07-27","groups":[{"time":"09:12:00","height":"4.386"},{"time":"21:29:00","height":"4.640"}],"sunrise":"05:26","sunset":"21:19"},{"date":"2018-07-28","groups":[{"time":"09:46:00","height":"4.500"},{"time":"22:02:00","height":"4.739"}],"sunrise":"05:28","sunset":"21:17"},{"date":"2018-07-29","groups":[{"time":"10:18:00","height":"4.561"},{"time":"22:33:00","height":"4.780"}],"sunrise":"05:30","sunset":"21:16"},{"date":"2018-07-30","groups":[{"time":"10:48:00","height":"4.576"},{"time":"23:03:00","height":"4.770"}],"sunrise":"05:31","sunset":"21:14"},{"date":"2018-07-31","groups":[{"time":"11:19:00","height":"4.542"},{"time":"23:38:00","height":"4.705"}],"sunrise":"05:33","sunset":"21:12"},{"date":"2018-08-01","groups":[{"time":"11:54:00","height":"4.455"}],"sunrise":"05:34","sunset":"21:10"},{"date":"2018-08-02","groups":[{"time":"00:15:00","height":"4.582"},{"time":"12:32:00","height":"4.315"}],"sunrise":"05:36","sunset":"21:09"},{"date":"2018-08-03","groups":[{"time":"00:54:00","height":"4.408"},{"time":"13:12:00","height":"4.133"}],"sunrise":"05:38","sunset":"21:07"},{"date":"2018-08-04","groups":[{"time":"01:38:00","height":"4.198"},{"time":"14:01:00","height":"3.930"}],"sunrise":"05:39","sunset":"21:05"},{"date":"2018-08-05","groups":[{"time":"02:32:00","height":"3.981"},{"time":"15:02:00","height":"3.747"}],"sunrise":"05:41","sunset":"21:03"},{"date":"2018-08-06","groups":[{"time":"03:41:00","height":"3.811"},{"time":"16:19:00","height":"3.672"}],"sunrise":"05:42","sunset":"21:01"},{"date":"2018-08-07","groups":[{"time":"05:00:00","height":"3.794"},{"time":"17:37:00","height":"3.815"}],"sunrise":"05:44","sunset":"21:00"},{"date":"2018-08-08","groups":[{"time":"06:13:00","height":"4.000"},{"time":"18:45:00","height":"4.171"}],"sunrise":"05:46","sunset":"20:58"},{"date":"2018-08-09","groups":[{"time":"07:18:00","height":"4.367"},{"time":"19:45:00","height":"4.626"}],"sunrise":"05:47","sunset":"20:56"},{"date":"2018-08-10","groups":[{"time":"08:15:00","height":"4.776"},{"time":"20:39:00","height":"5.065"}],"sunrise":"05:49","sunset":"20:54"},{"date":"2018-08-11","groups":[{"time":"09:06:00","height":"5.127"},{"time":"21:27:00","height":"5.408"}],"sunrise":"05:51","sunset":"20:52"},{"date":"2018-08-12","groups":[{"time":"09:53:00","height":"5.359"},{"time":"22:13:00","height":"5.608"}],"sunrise":"05:52","sunset":"20:50"},{"date":"2018-08-13","groups":[{"time":"10:38:00","height":"5.439"},{"time":"22:56:00","height":"5.636"}],"sunrise":"05:54","sunset":"20:48"},{"date":"2018-08-14","groups":[{"time":"11:21:00","height":"5.355"},{"time":"23:42:00","height":"5.489"}],"sunrise":"05:56","sunset":"20:46"},{"date":"2018-08-15","groups":[{"time":"12:07:00","height":"5.122"}],"sunrise":"05:58","sunset":"20:44"},{"date":"2018-08-16","groups":[{"time":"00:29:00","height":"5.186"},{"time":"12:52:00","height":"4.773"}],"sunrise":"05:59","sunset":"20:41"},{"date":"2018-08-17","groups":[{"time":"01:14:00","height":"4.770"},{"time":"13:39:00","height":"4.360"}],"sunrise":"06:01","sunset":"20:39"},{"date":"2018-08-18","groups":[{"time":"02:02:00","height":"4.299"},{"time":"14:29:00","height":"3.938"}],"sunrise":"06:03","sunset":"20:37"},{"date":"2018-08-19","groups":[{"time":"02:56:00","height":"3.839"},{"time":"15:32:00","height":"3.579"}],"sunrise":"06:04","sunset":"20:35"},{"date":"2018-08-20","groups":[{"time":"04:05:00","height":"3.477"},{"time":"16:50:00","height":"3.396"}],"sunrise":"06:06","sunset":"20:33"},{"date":"2018-08-21","groups":[{"time":"05:25:00","height":"3.346"},{"time":"18:07:00","height":"3.492"}],"sunrise":"06:08","sunset":"20:31"},{"date":"2018-08-22","groups":[{"time":"06:39:00","height":"3.500"},{"time":"19:10:00","height":"3.796"}],"sunrise":"06:09","sunset":"20:28"},{"date":"2018-08-23","groups":[{"time":"07:35:00","height":"3.808"},{"time":"19:57:00","height":"4.152"}],"sunrise":"06:11","sunset":"20:26"},{"date":"2018-08-24","groups":[{"time":"08:18:00","height":"4.127"},{"time":"20:35:00","height":"4.464"}],"sunrise":"06:13","sunset":"20:24"},{"date":"2018-08-25","groups":[{"time":"08:54:00","height":"4.391"},{"time":"21:09:00","height":"4.700"}],"sunrise":"06:14","sunset":"20:22"},{"date":"2018-08-26","groups":[{"time":"09:26:00","height":"4.587"},{"time":"21:41:00","height":"4.860"}],"sunrise":"06:16","sunset":"20:20"},{"date":"2018-08-27","groups":[{"time":"09:57:00","height":"4.719"},{"time":"22:11:00","height":"4.956"}],"sunrise":"06:18","sunset":"20:17"},{"date":"2018-08-28","groups":[{"time":"10:26:00","height":"4.795"},{"time":"22:41:00","height":"4.991"}],"sunrise":"06:20","sunset":"20:15"},{"date":"2018-08-29","groups":[{"time":"10:55:00","height":"4.812"},{"time":"23:12:00","height":"4.960"}],"sunrise":"06:21","sunset":"20:13"},{"date":"2018-08-30","groups":[{"time":"11:27:00","height":"4.758"},{"time":"23:46:00","height":"4.852"}],"sunrise":"06:23","sunset":"20:10"},{"date":"2018-08-31","groups":[{"time":"12:03:00","height":"4.626"}],"sunrise":"06:25","sunset":"20:08"},{"date":"2018-09-01","groups":[{"time":"00:24:00","height":"4.663"},{"time":"12:42:00","height":"4.418"}],"sunrise":"06:26","sunset":"20:06"},{"date":"2018-09-02","groups":[{"time":"01:07:00","height":"4.401"},{"time":"13:27:00","height":"4.151"}],"sunrise":"06:28","sunset":"20:03"},{"date":"2018-09-03","groups":[{"time":"01:59:00","height":"4.087"},{"time":"14:26:00","height":"3.860"}],"sunrise":"06:30","sunset":"20:01"},{"date":"2018-09-04","groups":[{"time":"03:07:00","height":"3.783"},{"time":"15:47:00","height":"3.651"}],"sunrise":"06:31","sunset":"19:59"},{"date":"2018-09-05","groups":[{"time":"04:37:00","height":"3.647"},{"time":"17:18:00","height":"3.718"}],"sunrise":"06:33","sunset":"19:56"},{"date":"2018-09-06","groups":[{"time":"06:01:00","height":"3.839"},{"time":"18:35:00","height":"4.105"}],"sunrise":"06:35","sunset":"19:54"},{"date":"2018-09-07","groups":[{"time":"07:11:00","height":"4.277"},{"time":"19:37:00","height":"4.632"}],"sunrise":"06:37","sunset":"19:52"},{"date":"2018-09-08","groups":[{"time":"08:07:00","height":"4.768"},{"time":"20:29:00","height":"5.128"}],"sunrise":"06:38","sunset":"19:49"},{"date":"2018-09-09","groups":[{"time":"08:55:00","height":"5.176"},{"time":"21:14:00","height":"5.494"}],"sunrise":"06:40","sunset":"19:47"},{"date":"2018-09-10","groups":[{"time":"09:38:00","height":"5.436"},{"time":"21:57:00","height":"5.686"}],"sunrise":"06:42","sunset":"19:44"},{"date":"2018-09-11","groups":[{"time":"10:19:00","height":"5.525"},{"time":"22:37:00","height":"5.690"}],"sunrise":"06:43","sunset":"19:42"},{"date":"2018-09-12","groups":[{"time":"10:57:00","height":"5.444"},{"time":"23:15:00","height":"5.513"}],"sunrise":"06:45","sunset":"19:40"},{"date":"2018-09-13","groups":[{"time":"11:38:00","height":"5.210"},{"time":"23:57:00","height":"5.183"}],"sunrise":"06:47","sunset":"19:37"},{"date":"2018-09-14","groups":[{"time":"12:18:00","height":"4.858"}],"sunrise":"06:48","sunset":"19:35"},{"date":"2018-09-15","groups":[{"time":"00:37:00","height":"4.747"},{"time":"12:59:00","height":"4.434"}],"sunrise":"06:50","sunset":"19:32"},{"date":"2018-09-16","groups":[{"time":"01:18:00","height":"4.256"},{"time":"13:42:00","height":"3.987"}],"sunrise":"06:52","sunset":"19:30"},{"date":"2018-09-17","groups":[{"time":"02:05:00","height":"3.764"},{"time":"14:36:00","height":"3.569"}],"sunrise":"06:53","sunset":"19:28"},{"date":"2018-09-18","groups":[{"time":"03:08:00","height":"3.334"},{"time":"15:58:00","height":"3.280"}],"sunrise":"06:55","sunset":"19:25"},{"date":"2018-09-19","groups":[{"time":"04:45:00","height":"3.118"},{"time":"17:34:00","height":"3.318"}],"sunrise":"06:57","sunset":"19:23"},{"date":"2018-09-20","groups":[{"time":"06:12:00","height":"3.287"},{"time":"18:43:00","height":"3.656"}],"sunrise":"06:59","sunset":"19:20"},{"date":"2018-09-21","groups":[{"time":"07:12:00","height":"3.670"},{"time":"19:32:00","height":"4.076"}],"sunrise":"07:00","sunset":"19:18"},{"date":"2018-09-22","groups":[{"time":"07:55:00","height":"4.073"},{"time":"20:11:00","height":"4.456"}],"sunrise":"07:02","sunset":"19:16"},{"date":"2018-09-23","groups":[{"time":"08:30:00","height":"4.419"},{"time":"20:44:00","height":"4.755"}],"sunrise":"07:04","sunset":"19:13"},{"date":"2018-09-24","groups":[{"time":"09:01:00","height":"4.689"},{"time":"21:15:00","height":"4.972"}],"sunrise":"07:05","sunset":"19:11"},{"date":"2018-09-25","groups":[{"time":"09:31:00","height":"4.888"},{"time":"21:46:00","height":"5.117"}],"sunrise":"07:07","sunset":"19:08"},{"date":"2018-09-26","groups":[{"time":"10:01:00","height":"5.019"},{"time":"22:16:00","height":"5.190"}],"sunrise":"07:09","sunset":"19:06"},{"date":"2018-09-27","groups":[{"time":"10:30:00","height":"5.073"},{"time":"22:47:00","height":"5.178"}],"sunrise":"07:11","sunset":"19:03"},{"date":"2018-09-28","groups":[{"time":"11:01:00","height":"5.035"},{"time":"23:20:00","height":"5.066"}],"sunrise":"07:12","sunset":"19:01"},{"date":"2018-09-29","groups":[{"time":"11:37:00","height":"4.893"},{"time":"23:59:00","height":"4.844"}],"sunrise":"07:14","sunset":"18:59"},{"date":"2018-09-30","groups":[{"time":"12:17:00","height":"4.649"}],"sunrise":"07:16","sunset":"18:56"},{"date":"2018-10-01","groups":[{"time":"00:44:00","height":"4.522"},{"time":"13:03:00","height":"4.322"}],"sunrise":"07:17","sunset":"18:54"},{"date":"2018-10-02","groups":[{"time":"01:37:00","height":"4.130"},{"time":"14:04:00","height":"3.961"}],"sunrise":"07:19","sunset":"18:52"},{"date":"2018-10-03","groups":[{"time":"02:49:00","height":"3.753"},{"time":"15:30:00","height":"3.698"}],"sunrise":"07:21","sunset":"18:49"},{"date":"2018-10-04","groups":[{"time":"04:26:00","height":"3.595"},{"time":"17:07:00","height":"3.762"}],"sunrise":"07:23","sunset":"18:47"},{"date":"2018-10-05","groups":[{"time":"05:53:00","height":"3.824"},{"time":"18:25:00","height":"4.173"}],"sunrise":"07:24","sunset":"18:44"},{"date":"2018-10-06","groups":[{"time":"07:01:00","height":"4.301"},{"time":"19:26:00","height":"4.700"}],"sunrise":"07:26","sunset":"18:42"},{"date":"2018-10-07","groups":[{"time":"07:54:00","height":"4.796"},{"time":"20:15:00","height":"5.161"}],"sunrise":"07:28","sunset":"18:40"},{"date":"2018-10-08","groups":[{"time":"08:39:00","height":"5.183"},{"time":"20:57:00","height":"5.470"}],"sunrise":"07:30","sunset":"18:37"},{"date":"2018-10-09","groups":[{"time":"09:19:00","height":"5.415"},{"time":"21:37:00","height":"5.604"}],"sunrise":"07:31","sunset":"18:35"},{"date":"2018-10-10","groups":[{"time":"09:57:00","height":"5.487"},{"time":"22:14:00","height":"5.570"}],"sunrise":"07:33","sunset":"18:33"},{"date":"2018-10-11","groups":[{"time":"10:33:00","height":"5.411"},{"time":"22:50:00","height":"5.386"}],"sunrise":"07:35","sunset":"18:30"},{"date":"2018-10-12","groups":[{"time":"11:07:00","height":"5.203"},{"time":"23:25:00","height":"5.079"}],"sunrise":"07:37","sunset":"18:28"},{"date":"2018-10-13","groups":[{"time":"11:44:00","height":"4.892"}],"sunrise":"07:39","sunset":"18:26"},{"date":"2018-10-14","groups":[{"time":"00:03:00","height":"4.684"},{"time":"12:22:00","height":"4.512"}],"sunrise":"07:40","sunset":"18:24"},{"date":"2018-10-15","groups":[{"time":"00:41:00","height":"4.242"},{"time":"13:02:00","height":"4.099"}],"sunrise":"07:42","sunset":"18:21"},{"date":"2018-10-16","groups":[{"time":"01:24:00","height":"3.788"},{"time":"13:52:00","height":"3.692"}],"sunrise":"07:44","sunset":"18:19"},{"date":"2018-10-17","groups":[{"time":"02:19:00","height":"3.367"},{"time":"15:01:00","height":"3.359"}],"sunrise":"07:46","sunset":"18:17"},{"date":"2018-10-18","groups":[{"time":"03:45:00","height":"3.084"},{"time":"16:46:00","height":"3.277"}],"sunrise":"07:48","sunset":"18:15"},{"date":"2018-10-19","groups":[{"time":"05:31:00","height":"3.167"},{"time":"18:05:00","height":"3.547"}],"sunrise":"07:49","sunset":"18:13"},{"date":"2018-10-20","groups":[{"time":"06:37:00","height":"3.536"},{"time":"18:57:00","height":"3.956"}],"sunrise":"07:51","sunset":"18:10"},{"date":"2018-10-21","groups":[{"time":"07:21:00","height":"3.968"},{"time":"19:37:00","height":"4.363"}],"sunrise":"07:53","sunset":"18:08"},{"date":"2018-10-22","groups":[{"time":"07:58:00","height":"4.370"},{"time":"20:13:00","height":"4.713"}],"sunrise":"07:55","sunset":"18:06"},{"date":"2018-10-23","groups":[{"time":"08:31:00","height":"4.711"},{"time":"20:46:00","height":"4.990"}],"sunrise":"07:57","sunset":"18:04"},{"date":"2018-10-24","groups":[{"time":"09:02:00","height":"4.980"},{"time":"21:18:00","height":"5.191"}],"sunrise":"07:59","sunset":"18:02"},{"date":"2018-10-25","groups":[{"time":"09:35:00","height":"5.169"},{"time":"21:51:00","height":"5.304"}],"sunrise":"08:00","sunset":"18:00"},{"date":"2018-10-26","groups":[{"time":"10:06:00","height":"5.262"},{"time":"22:25:00","height":"5.313"}],"sunrise":"08:02","sunset":"17:58"},{"date":"2018-10-27","groups":[{"time":"10:40:00","height":"5.241"},{"time":"23:00:00","height":"5.198"}],"sunrise":"08:04","sunset":"17:56"},{"date":"2018-10-28","groups":[{"time":"11:17:00","height":"5.096"},{"time":"23:43:00","height":"4.956"}],"sunrise":"08:06","sunset":"17:54"},{"date":"2018-10-29","groups":[{"time":"11:02:00","height":"4.836"},{"time":"23:31:00","height":"4.604"}],"sunrise":"07:08","sunset":"16:52"},{"date":"2018-10-30","groups":[{"time":"11:54:00","height":"4.491"}],"sunrise":"07:10","sunset":"16:50"},{"date":"2018-10-31","groups":[{"time":"00:29:00","height":"4.193"},{"time":"12:59:00","height":"4.129"}],"sunrise":"07:12","sunset":"16:48"},{"date":"2018-11-01","groups":[{"time":"01:44:00","height":"3.834"},{"time":"14:23:00","height":"3.889"}],"sunrise":"07:14","sunset":"16:46"},{"date":"2018-11-02","groups":[{"time":"03:16:00","height":"3.702"},{"time":"15:54:00","height":"3.941"}],"sunrise":"07:15","sunset":"16:44"},{"date":"2018-11-03","groups":[{"time":"04:38:00","height":"3.905"},{"time":"17:09:00","height":"4.270"}],"sunrise":"07:17","sunset":"16:42"},{"date":"2018-11-04","groups":[{"time":"05:43:00","height":"4.309"},{"time":"18:07:00","height":"4.684"}],"sunrise":"07:19","sunset":"16:40"},{"date":"2018-11-05","groups":[{"time":"06:35:00","height":"4.722"},{"time":"18:55:00","height":"5.032"}],"sunrise":"07:21","sunset":"16:38"},{"date":"2018-11-06","groups":[{"time":"07:19:00","height":"5.041"},{"time":"19:37:00","height":"5.251"}],"sunrise":"07:23","sunset":"16:36"},{"date":"2018-11-07","groups":[{"time":"07:58:00","height":"5.232"},{"time":"20:16:00","height":"5.332"}],"sunrise":"07:25","sunset":"16:35"},{"date":"2018-11-08","groups":[{"time":"08:35:00","height":"5.299"},{"time":"20:52:00","height":"5.291"}],"sunrise":"07:27","sunset":"16:33"},{"date":"2018-11-09","groups":[{"time":"09:09:00","height":"5.254"},{"time":"21:26:00","height":"5.146"}],"sunrise":"07:28","sunset":"16:31"},{"date":"2018-11-10","groups":[{"time":"09:42:00","height":"5.109"},{"time":"21:59:00","height":"4.914"}],"sunrise":"07:30","sunset":"16:30"},{"date":"2018-11-11","groups":[{"time":"10:16:00","height":"4.879"},{"time":"22:34:00","height":"4.613"}],"sunrise":"07:32","sunset":"16:28"},{"date":"2018-11-12","groups":[{"time":"10:53:00","height":"4.586"},{"time":"23:11:00","height":"4.268"}],"sunrise":"07:34","sunset":"16:26"},{"date":"2018-11-13","groups":[{"time":"11:33:00","height":"4.254"},{"time":"23:52:00","height":"3.901"}],"sunrise":"07:36","sunset":"16:25"},{"date":"2018-11-14","groups":[{"time":"12:18:00","height":"3.910"}],"sunrise":"07:38","sunset":"16:23"},{"date":"2018-11-15","groups":[{"time":"00:42:00","height":"3.544"},{"time":"13:16:00","height":"3.599"}],"sunrise":"07:39","sunset":"16:22"},{"date":"2018-11-16","groups":[{"time":"01:49:00","height":"3.259"},{"time":"14:35:00","height":"3.413"}],"sunrise":"07:41","sunset":"16:20"},{"date":"2018-11-17","groups":[{"time":"03:22:00","height":"3.175"},{"time":"16:05:00","height":"3.484"}],"sunrise":"07:43","sunset":"16:19"},{"date":"2018-11-18","groups":[{"time":"04:42:00","height":"3.393"},{"time":"17:08:00","height":"3.778"}],"sunrise":"07:45","sunset":"16:18"},{"date":"2018-11-19","groups":[{"time":"05:36:00","height":"3.773"},{"time":"17:55:00","height":"4.153"}],"sunrise":"07:47","sunset":"16:16"},{"date":"2018-11-20","groups":[{"time":"06:18:00","height":"4.191"},{"time":"18:35:00","height":"4.528"}],"sunrise":"07:48","sunset":"16:15"},{"date":"2018-11-21","groups":[{"time":"06:56:00","height":"4.588"},{"time":"19:13:00","height":"4.861"}],"sunrise":"07:50","sunset":"16:14"},{"date":"2018-11-22","groups":[{"time":"07:31:00","height":"4.926"},{"time":"19:50:00","height":"5.122"}],"sunrise":"07:52","sunset":"16:13"},{"date":"2018-11-23","groups":[{"time":"08:08:00","height":"5.180"},{"time":"20:28:00","height":"5.288"}],"sunrise":"07:53","sunset":"16:11"},{"date":"2018-11-24","groups":[{"time":"08:47:00","height":"5.327"},{"time":"21:07:00","height":"5.337"}],"sunrise":"07:55","sunset":"16:10"},{"date":"2018-11-25","groups":[{"time":"09:25:00","height":"5.351"},{"time":"21:48:00","height":"5.255"}],"sunrise":"07:57","sunset":"16:09"},{"date":"2018-11-26","groups":[{"time":"10:06:00","height":"5.247"},{"time":"22:34:00","height":"5.043"}],"sunrise":"07:58","sunset":"16:08"},{"date":"2018-11-27","groups":[{"time":"10:55:00","height":"5.029"},{"time":"23:28:00","height":"4.731"}],"sunrise":"08:00","sunset":"16:07"},{"date":"2018-11-28","groups":[{"time":"11:50:00","height":"4.732"}],"sunrise":"08:01","sunset":"16:06"},{"date":"2018-11-29","groups":[{"time":"00:27:00","height":"4.372"},{"time":"12:54:00","height":"4.421"}],"sunrise":"08:03","sunset":"16:06"},{"date":"2018-11-30","groups":[{"time":"01:35:00","height":"4.056"},{"time":"14:09:00","height":"4.186"}],"sunrise":"08:05","sunset":"16:05"},{"date":"2018-12-01","groups":[{"time":"02:54:00","height":"3.888"},{"time":"15:30:00","height":"4.122"}],"sunrise":"08:06","sunset":"16:04"},{"date":"2018-12-02","groups":[{"time":"04:11:00","height":"3.944"},{"time":"16:40:00","height":"4.247"}],"sunrise":"08:07","sunset":"16:03"},{"date":"2018-12-03","groups":[{"time":"05:16:00","height":"4.176"},{"time":"17:41:00","height":"4.470"}],"sunrise":"08:09","sunset":"16:03"},{"date":"2018-12-04","groups":[{"time":"06:11:00","height":"4.464"},{"time":"18:32:00","height":"4.689"}],"sunrise":"08:10","sunset":"16:02"},{"date":"2018-12-05","groups":[{"time":"06:57:00","height":"4.718"},{"time":"19:16:00","height":"4.845"}],"sunrise":"08:12","sunset":"16:02"},{"date":"2018-12-06","groups":[{"time":"07:38:00","height":"4.898"},{"time":"19:57:00","height":"4.923"}],"sunrise":"08:13","sunset":"16:01"},{"date":"2018-12-07","groups":[{"time":"08:16:00","height":"4.997"},{"time":"20:34:00","height":"4.929"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2018-12-08","groups":[{"time":"08:51:00","height":"5.018"},{"time":"21:08:00","height":"4.868"}],"sunrise":"08:15","sunset":"16:00"},{"date":"2018-12-09","groups":[{"time":"09:24:00","height":"4.964"},{"time":"21:41:00","height":"4.746"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2018-12-10","groups":[{"time":"09:57:00","height":"4.841"},{"time":"22:14:00","height":"4.567"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2018-12-11","groups":[{"time":"10:32:00","height":"4.660"},{"time":"22:51:00","height":"4.343"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2018-12-12","groups":[{"time":"11:10:00","height":"4.434"},{"time":"23:30:00","height":"4.087"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2018-12-13","groups":[{"time":"11:52:00","height":"4.179"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2018-12-14","groups":[{"time":"00:13:00","height":"3.815"},{"time":"12:40:00","height":"3.917"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2018-12-15","groups":[{"time":"01:04:00","height":"3.561"},{"time":"13:38:00","height":"3.694"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2018-12-16","groups":[{"time":"02:08:00","height":"3.383"},{"time":"14:48:00","height":"3.578"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2018-12-17","groups":[{"time":"03:26:00","height":"3.367"},{"time":"16:02:00","height":"3.646"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2018-12-18","groups":[{"time":"04:36:00","height":"3.569"},{"time":"17:03:00","height":"3.893"}],"sunrise":"08:25","sunset":"16:00"},{"date":"2018-12-19","groups":[{"time":"05:31:00","height":"3.922"},{"time":"17:55:00","height":"4.236"}],"sunrise":"08:25","sunset":"16:01"},{"date":"2018-12-20","groups":[{"time":"06:19:00","height":"4.331"},{"time":"18:41:00","height":"4.598"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2018-12-21","groups":[{"time":"07:04:00","height":"4.725"},{"time":"19:26:00","height":"4.921"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2018-12-22","groups":[{"time":"07:47:00","height":"5.057"},{"time":"20:10:00","height":"5.163"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2018-12-23","groups":[{"time":"08:31:00","height":"5.293"},{"time":"20:55:00","height":"5.298"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2018-12-24","groups":[{"time":"09:15:00","height":"5.414"},{"time":"21:40:00","height":"5.308"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2018-12-25","groups":[{"time":"09:59:00","height":"5.411"},{"time":"22:28:00","height":"5.190"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2018-12-26","groups":[{"time":"10:51:00","height":"5.285"},{"time":"23:21:00","height":"4.960"}],"sunrise":"08:28","sunset":"16:05"},{"date":"2018-12-27","groups":[{"time":"11:45:00","height":"5.057"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2018-12-28","groups":[{"time":"00:16:00","height":"4.655"},{"time":"12:41:00","height":"4.763"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2018-12-29","groups":[{"time":"01:16:00","height":"4.328"},{"time":"13:44:00","height":"4.454"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2018-12-30","groups":[{"time":"02:22:00","height":"4.048"},{"time":"14:53:00","height":"4.199"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2018-12-31","groups":[{"time":"03:35:00","height":"3.891"},{"time":"16:04:00","height":"4.067"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2019-03-01","groups":[{"time":"04:38:00","height":"3.339"},{"time":"17:18:00","height":"3.324"}],"sunrise":"07:03","sunset":"17:54"},{"date":"2019-03-02","groups":[{"time":"05:54:00","height":"3.592"},{"time":"18:25:00","height":"3.632"}],"sunrise":"07:01","sunset":"17:55"},{"date":"2019-03-03","groups":[{"time":"06:47:00","height":"3.974"},{"time":"19:11:00","height":"3.995"}],"sunrise":"06:59","sunset":"17:57"},{"date":"2019-03-04","groups":[{"time":"07:29:00","height":"4.331"},{"time":"19:48:00","height":"4.307"}],"sunrise":"06:56","sunset":"17:59"},{"date":"2019-03-05","groups":[{"time":"08:03:00","height":"4.607"},{"time":"20:20:00","height":"4.540"}],"sunrise":"06:54","sunset":"18:01"},{"date":"2019-03-06","groups":[{"time":"08:35:00","height":"4.798"},{"time":"20:50:00","height":"4.699"}],"sunrise":"06:52","sunset":"18:03"},{"date":"2019-03-07","groups":[{"time":"09:05:00","height":"4.914"},{"time":"21:19:00","height":"4.793"}],"sunrise":"06:49","sunset":"18:05"},{"date":"2019-03-08","groups":[{"time":"09:33:00","height":"4.967"},{"time":"21:46:00","height":"4.829"}],"sunrise":"06:47","sunset":"18:07"},{"date":"2019-03-09","groups":[{"time":"10:01:00","height":"4.955"},{"time":"22:14:00","height":"4.799"}],"sunrise":"06:45","sunset":"18:08"},{"date":"2019-03-10","groups":[{"time":"10:32:00","height":"4.869"},{"time":"22:46:00","height":"4.693"}],"sunrise":"06:42","sunset":"18:10"},{"date":"2019-03-11","groups":[{"time":"11:06:00","height":"4.703"},{"time":"23:20:00","height":"4.508"}],"sunrise":"06:40","sunset":"18:12"},{"date":"2019-03-12","groups":[{"time":"11:43:00","height":"4.461"},{"time":"23:58:00","height":"4.255"}],"sunrise":"06:38","sunset":"18:14"},{"date":"2019-03-13","groups":[{"time":"12:26:00","height":"4.152"}],"sunrise":"06:35","sunset":"18:16"},{"date":"2019-03-14","groups":[{"time":"00:46:00","height":"3.946"},{"time":"13:21:00","height":"3.802"}],"sunrise":"06:33","sunset":"18:18"},{"date":"2019-03-15","groups":[{"time":"01:52:00","height":"3.633"},{"time":"14:43:00","height":"3.515"}],"sunrise":"06:31","sunset":"18:19"},{"date":"2019-03-16","groups":[{"time":"03:27:00","height":"3.481"},{"time":"16:19:00","height":"3.516"}],"sunrise":"06:28","sunset":"18:21"},{"date":"2019-03-17","groups":[{"time":"04:57:00","height":"3.705"},{"time":"17:39:00","height":"3.887"}],"sunrise":"06:26","sunset":"18:23"},{"date":"2019-03-18","groups":[{"time":"06:08:00","height":"4.216"},{"time":"18:42:00","height":"4.426"}],"sunrise":"06:24","sunset":"18:25"},{"date":"2019-03-19","groups":[{"time":"07:04:00","height":"4.788"},{"time":"19:32:00","height":"4.942"}],"sunrise":"06:21","sunset":"18:27"},{"date":"2019-03-20","groups":[{"time":"07:52:00","height":"5.277"},{"time":"20:18:00","height":"5.335"}],"sunrise":"06:19","sunset":"18:28"},{"date":"2019-03-21","groups":[{"time":"08:36:00","height":"5.609"},{"time":"20:59:00","height":"5.558"}],"sunrise":"06:16","sunset":"18:30"},{"date":"2019-03-22","groups":[{"time":"09:18:00","height":"5.748"},{"time":"21:38:00","height":"5.598"}],"sunrise":"06:14","sunset":"18:32"},{"date":"2019-03-23","groups":[{"time":"09:57:00","height":"5.686"},{"time":"22:17:00","height":"5.456"}],"sunrise":"06:12","sunset":"18:34"},{"date":"2019-03-24","groups":[{"time":"10:38:00","height":"5.433"},{"time":"22:59:00","height":"5.156"}],"sunrise":"06:09","sunset":"18:36"},{"date":"2019-03-25","groups":[{"time":"11:20:00","height":"5.026"},{"time":"23:41:00","height":"4.740"}],"sunrise":"06:07","sunset":"18:37"},{"date":"2019-03-26","groups":[{"time":"12:02:00","height":"4.521"}],"sunrise":"06:04","sunset":"18:39"},{"date":"2019-03-27","groups":[{"time":"00:23:00","height":"4.261"},{"time":"12:47:00","height":"3.979"}],"sunrise":"06:02","sunset":"18:41"},{"date":"2019-03-28","groups":[{"time":"01:13:00","height":"3.777"},{"time":"13:42:00","height":"3.469"}],"sunrise":"06:00","sunset":"18:43"},{"date":"2019-03-29","groups":[{"time":"02:21:00","height":"3.367"},{"time":"15:05:00","height":"3.106"}],"sunrise":"05:57","sunset":"18:44"},{"date":"2019-03-30","groups":[{"time":"03:57:00","height":"3.208"},{"time":"16:44:00","height":"3.107"}],"sunrise":"05:55","sunset":"18:46"},{"date":"2019-03-31","groups":[{"time":"05:21:00","height":"3.421"},{"time":"17:57:00","height":"3.433"}],"sunrise":"05:52","sunset":"18:48"},{"date":"2019-04-01","groups":[{"time":"07:18:00","height":"3.813"},{"time":"19:44:00","height":"3.841"}],"sunrise":"06:50","sunset":"19:50"},{"date":"2019-04-02","groups":[{"time":"08:00:00","height":"4.199"},{"time":"20:20:00","height":"4.205"}],"sunrise":"06:48","sunset":"19:52"},{"date":"2019-04-03","groups":[{"time":"08:35:00","height":"4.514"},{"time":"20:53:00","height":"4.493"}],"sunrise":"06:45","sunset":"19:53"},{"date":"2019-04-04","groups":[{"time":"09:07:00","height":"4.745"},{"time":"21:22:00","height":"4.707"}],"sunrise":"06:43","sunset":"19:55"},{"date":"2019-04-05","groups":[{"time":"09:37:00","height":"4.902"},{"time":"21:51:00","height":"4.856"}],"sunrise":"06:41","sunset":"19:57"},{"date":"2019-04-06","groups":[{"time":"10:06:00","height":"4.995"},{"time":"22:20:00","height":"4.942"}],"sunrise":"06:38","sunset":"19:59"},{"date":"2019-04-07","groups":[{"time":"10:36:00","height":"5.019"},{"time":"22:48:00","height":"4.951"}],"sunrise":"06:36","sunset":"20:00"},{"date":"2019-04-08","groups":[{"time":"11:06:00","height":"4.959"},{"time":"23:19:00","height":"4.870"}],"sunrise":"06:34","sunset":"20:02"},{"date":"2019-04-09","groups":[{"time":"11:41:00","height":"4.804"},{"time":"23:56:00","height":"4.692"}],"sunrise":"06:31","sunset":"20:04"},{"date":"2019-04-10","groups":[{"time":"12:20:00","height":"4.551"}],"sunrise":"06:29","sunset":"20:06"},{"date":"2019-04-11","groups":[{"time":"00:36:00","height":"4.425"},{"time":"13:05:00","height":"4.215"}],"sunrise":"06:27","sunset":"20:08"},{"date":"2019-04-12","groups":[{"time":"01:27:00","height":"4.091"},{"time":"14:05:00","height":"3.837"}],"sunrise":"06:24","sunset":"20:09"},{"date":"2019-04-13","groups":[{"time":"02:35:00","height":"3.757"},{"time":"15:28:00","height":"3.542"}],"sunrise":"06:22","sunset":"20:11"},{"date":"2019-04-14","groups":[{"time":"04:10:00","height":"3.601"},{"time":"17:05:00","height":"3.553"}],"sunrise":"06:20","sunset":"20:13"},{"date":"2019-04-15","groups":[{"time":"05:40:00","height":"3.812"},{"time":"18:23:00","height":"3.918"}],"sunrise":"06:18","sunset":"20:15"},{"date":"2019-04-16","groups":[{"time":"06:50:00","height":"4.282"},{"time":"19:24:00","height":"4.425"}],"sunrise":"06:15","sunset":"20:16"},{"date":"2019-04-17","groups":[{"time":"07:45:00","height":"4.788"},{"time":"20:13:00","height":"4.892"}],"sunrise":"06:13","sunset":"20:18"},{"date":"2019-04-18","groups":[{"time":"08:32:00","height":"5.197"},{"time":"20:57:00","height":"5.235"}],"sunrise":"06:11","sunset":"20:20"},{"date":"2019-04-19","groups":[{"time":"09:15:00","height":"5.449"},{"time":"21:36:00","height":"5.422"}],"sunrise":"06:09","sunset":"20:22"},{"date":"2019-04-20","groups":[{"time":"09:55:00","height":"5.529"},{"time":"22:15:00","height":"5.450"}],"sunrise":"06:06","sunset":"20:24"},{"date":"2019-04-21","groups":[{"time":"10:34:00","height":"5.440"},{"time":"22:52:00","height":"5.326"}],"sunrise":"06:04","sunset":"20:25"},{"date":"2019-04-22","groups":[{"time":"11:11:00","height":"5.199"},{"time":"23:30:00","height":"5.069"}],"sunrise":"06:02","sunset":"20:27"},{"date":"2019-04-23","groups":[{"time":"11:51:00","height":"4.837"}],"sunrise":"06:00","sunset":"20:29"},{"date":"2019-04-24","groups":[{"time":"00:10:00","height":"4.711"},{"time":"12:31:00","height":"4.399"}],"sunrise":"05:58","sunset":"20:31"},{"date":"2019-04-25","groups":[{"time":"00:51:00","height":"4.296"},{"time":"13:14:00","height":"3.933"}],"sunrise":"05:56","sunset":"20:32"},{"date":"2019-04-26","groups":[{"time":"01:38:00","height":"3.869"},{"time":"14:05:00","height":"3.490"}],"sunrise":"05:54","sunset":"20:34"},{"date":"2019-04-27","groups":[{"time":"02:39:00","height":"3.489"},{"time":"15:17:00","height":"3.144"}],"sunrise":"05:51","sunset":"20:36"},{"date":"2019-04-28","groups":[{"time":"04:04:00","height":"3.270"},{"time":"16:55:00","height":"3.058"}],"sunrise":"05:49","sunset":"20:38"},{"date":"2019-04-29","groups":[{"time":"05:33:00","height":"3.361"},{"time":"18:10:00","height":"3.297"}],"sunrise":"05:47","sunset":"20:39"},{"date":"2019-04-30","groups":[{"time":"06:34:00","height":"3.669"},{"time":"19:03:00","height":"3.669"}],"sunrise":"05:45","sunset":"20:41"},{"date":"2019-05-01","groups":[{"time":"07:21:00","height":"4.027"},{"time":"19:44:00","height":"4.044"}],"sunrise":"05:43","sunset":"20:43"},{"date":"2019-05-02","groups":[{"time":"07:59:00","height":"4.351"},{"time":"20:18:00","height":"4.373"}],"sunrise":"05:41","sunset":"20:45"},{"date":"2019-05-03","groups":[{"time":"08:33:00","height":"4.616"},{"time":"20:50:00","height":"4.641"}],"sunrise":"05:39","sunset":"20:46"},{"date":"2019-05-04","groups":[{"time":"09:05:00","height":"4.819"},{"time":"21:21:00","height":"4.847"}],"sunrise":"05:37","sunset":"20:48"},{"date":"2019-05-05","groups":[{"time":"09:38:00","height":"4.956"},{"time":"21:53:00","height":"4.981"}],"sunrise":"05:36","sunset":"20:50"},{"date":"2019-05-06","groups":[{"time":"10:11:00","height":"5.016"},{"time":"22:25:00","height":"5.028"}],"sunrise":"05:34","sunset":"20:52"},{"date":"2019-05-07","groups":[{"time":"10:45:00","height":"4.983"},{"time":"22:59:00","height":"4.973"}],"sunrise":"05:32","sunset":"20:53"},{"date":"2019-05-08","groups":[{"time":"11:23:00","height":"4.844"},{"time":"23:40:00","height":"4.813"}],"sunrise":"05:30","sunset":"20:55"},{"date":"2019-05-09","groups":[{"time":"12:07:00","height":"4.600"}],"sunrise":"05:28","sunset":"20:57"},{"date":"2019-05-10","groups":[{"time":"00:26:00","height":"4.561"},{"time":"12:59:00","height":"4.278"}],"sunrise":"05:26","sunset":"20:58"},{"date":"2019-05-11","groups":[{"time":"01:22:00","height":"4.255"},{"time":"14:03:00","height":"3.942"}],"sunrise":"05:25","sunset":"21:00"},{"date":"2019-05-12","groups":[{"time":"02:33:00","height":"3.978"},{"time":"15:22:00","height":"3.712"}],"sunrise":"05:23","sunset":"21:02"},{"date":"2019-05-13","groups":[{"time":"03:59:00","height":"3.865"},{"time":"16:49:00","height":"3.726"}],"sunrise":"05:21","sunset":"21:03"},{"date":"2019-05-14","groups":[{"time":"05:20:00","height":"4.010"},{"time":"18:00:00","height":"3.994"}],"sunrise":"05:20","sunset":"21:05"},{"date":"2019-05-15","groups":[{"time":"06:25:00","height":"4.334"},{"time":"18:59:00","height":"4.372"}],"sunrise":"05:18","sunset":"21:07"},{"date":"2019-05-16","groups":[{"time":"07:21:00","height":"4.684"},{"time":"19:49:00","height":"4.727"}],"sunrise":"05:17","sunset":"21:08"},{"date":"2019-05-17","groups":[{"time":"08:10:00","height":"4.958"},{"time":"20:33:00","height":"4.989"}],"sunrise":"05:15","sunset":"21:10"},{"date":"2019-05-18","groups":[{"time":"08:53:00","height":"5.116"},{"time":"21:14:00","height":"5.137"}],"sunrise":"05:14","sunset":"21:11"},{"date":"2019-05-19","groups":[{"time":"09:34:00","height":"5.153"},{"time":"21:53:00","height":"5.170"}],"sunrise":"05:12","sunset":"21:13"},{"date":"2019-05-20","groups":[{"time":"10:12:00","height":"5.075"},{"time":"22:30:00","height":"5.092"}],"sunrise":"05:11","sunset":"21:14"},{"date":"2019-05-21","groups":[{"time":"10:48:00","height":"4.896"},{"time":"23:05:00","height":"4.914"}],"sunrise":"05:09","sunset":"21:16"},{"date":"2019-05-22","groups":[{"time":"11:26:00","height":"4.634"},{"time":"23:45:00","height":"4.657"}],"sunrise":"05:08","sunset":"21:17"},{"date":"2019-05-23","groups":[{"time":"12:06:00","height":"4.315"}],"sunrise":"05:07","sunset":"21:19"},{"date":"2019-05-24","groups":[{"time":"00:26:00","height":"4.349"},{"time":"12:48:00","height":"3.971"}],"sunrise":"05:05","sunset":"21:20"},{"date":"2019-05-25","groups":[{"time":"01:11:00","height":"4.024"},{"time":"13:35:00","height":"3.634"}],"sunrise":"05:04","sunset":"21:22"},{"date":"2019-05-26","groups":[{"time":"02:03:00","height":"3.718"},{"time":"14:32:00","height":"3.347"}],"sunrise":"05:03","sunset":"21:23"},{"date":"2019-05-27","groups":[{"time":"03:09:00","height":"3.488"},{"time":"15:48:00","height":"3.185"}],"sunrise":"05:02","sunset":"21:24"},{"date":"2019-05-28","groups":[{"time":"04:30:00","height":"3.422"},{"time":"17:08:00","height":"3.245"}],"sunrise":"05:01","sunset":"21:26"},{"date":"2019-05-29","groups":[{"time":"05:38:00","height":"3.562"},{"time":"18:09:00","height":"3.499"}],"sunrise":"05:00","sunset":"21:27"},{"date":"2019-05-30","groups":[{"time":"06:31:00","height":"3.827"},{"time":"18:57:00","height":"3.836"}],"sunrise":"04:59","sunset":"21:28"},{"date":"2019-05-31","groups":[{"time":"07:15:00","height":"4.130"},{"time":"19:38:00","height":"4.184"}],"sunrise":"04:58","sunset":"21:30"},{"date":"2019-06-01","groups":[{"time":"07:55:00","height":"4.422"},{"time":"20:15:00","height":"4.503"}],"sunrise":"04:57","sunset":"21:31"},{"date":"2019-06-02","groups":[{"time":"08:33:00","height":"4.673"},{"time":"20:51:00","height":"4.769"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2019-06-03","groups":[{"time":"09:11:00","height":"4.864"},{"time":"21:29:00","height":"4.960"}],"sunrise":"04:55","sunset":"21:33"},{"date":"2019-06-04","groups":[{"time":"09:50:00","height":"4.975"},{"time":"22:07:00","height":"5.061"}],"sunrise":"04:55","sunset":"21:34"},{"date":"2019-06-05","groups":[{"time":"10:30:00","height":"4.990"},{"time":"22:47:00","height":"5.059"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2019-06-06","groups":[{"time":"11:12:00","height":"4.899"},{"time":"23:31:00","height":"4.956"}],"sunrise":"04:53","sunset":"21:36"},{"date":"2019-06-07","groups":[{"time":"12:02:00","height":"4.711"}],"sunrise":"04:53","sunset":"21:37"},{"date":"2019-06-08","groups":[{"time":"00:23:00","height":"4.768"},{"time":"12:57:00","height":"4.455"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2019-06-09","groups":[{"time":"01:22:00","height":"4.532"},{"time":"13:59:00","height":"4.185"}],"sunrise":"04:52","sunset":"21:39"},{"date":"2019-06-10","groups":[{"time":"02:27:00","height":"4.306"},{"time":"15:08:00","height":"3.976"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2019-06-11","groups":[{"time":"03:39:00","height":"4.159"},{"time":"16:24:00","height":"3.903"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2019-06-12","groups":[{"time":"04:53:00","height":"4.145"},{"time":"17:31:00","height":"3.996"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2019-06-13","groups":[{"time":"05:57:00","height":"4.255"},{"time":"18:31:00","height":"4.201"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2019-06-14","groups":[{"time":"06:56:00","height":"4.421"},{"time":"19:25:00","height":"4.439"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2019-06-15","groups":[{"time":"07:47:00","height":"4.579"},{"time":"20:12:00","height":"4.646"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2019-06-16","groups":[{"time":"08:33:00","height":"4.690"},{"time":"20:55:00","height":"4.792"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2019-06-17","groups":[{"time":"09:15:00","height":"4.739"},{"time":"21:35:00","height":"4.865"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2019-06-18","groups":[{"time":"09:54:00","height":"4.725"},{"time":"22:12:00","height":"4.861"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2019-06-19","groups":[{"time":"10:31:00","height":"4.644"},{"time":"22:48:00","height":"4.782"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2019-06-20","groups":[{"time":"11:06:00","height":"4.507"},{"time":"23:25:00","height":"4.640"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2019-06-21","groups":[{"time":"11:44:00","height":"4.321"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2019-06-22","groups":[{"time":"00:04:00","height":"4.450"},{"time":"12:24:00","height":"4.102"}],"sunrise":"04:50","sunset":"21:46"},{"date":"2019-06-23","groups":[{"time":"00:45:00","height":"4.229"},{"time":"13:05:00","height":"3.866"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2019-06-24","groups":[{"time":"01:29:00","height":"3.993"},{"time":"13:52:00","height":"3.633"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2019-06-25","groups":[{"time":"02:20:00","height":"3.769"},{"time":"14:46:00","height":"3.438"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2019-06-26","groups":[{"time":"03:21:00","height":"3.599"},{"time":"15:53:00","height":"3.339"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2019-06-27","groups":[{"time":"04:30:00","height":"3.546"},{"time":"17:03:00","height":"3.401"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2019-06-28","groups":[{"time":"05:33:00","height":"3.651"},{"time":"18:04:00","height":"3.631"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2019-06-29","groups":[{"time":"06:29:00","height":"3.886"},{"time":"18:56:00","height":"3.962"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2019-06-30","groups":[{"time":"07:18:00","height":"4.186"},{"time":"19:42:00","height":"4.321"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2019-07-01","groups":[{"time":"08:04:00","height":"4.491"},{"time":"20:26:00","height":"4.657"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2019-07-02","groups":[{"time":"08:49:00","height":"4.758"},{"time":"21:09:00","height":"4.932"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2019-07-03","groups":[{"time":"09:35:00","height":"4.954"},{"time":"21:53:00","height":"5.124"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2019-07-04","groups":[{"time":"10:19:00","height":"5.058"},{"time":"22:38:00","height":"5.217"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2019-07-05","groups":[{"time":"11:04:00","height":"5.056"},{"time":"23:25:00","height":"5.203"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2019-07-06","groups":[{"time":"11:55:00","height":"4.947"}],"sunrise":"04:59","sunset":"21:42"},{"date":"2019-07-07","groups":[{"time":"00:17:00","height":"5.086"},{"time":"12:48:00","height":"4.746"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2019-07-08","groups":[{"time":"01:12:00","height":"4.879"},{"time":"13:43:00","height":"4.484"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2019-07-09","groups":[{"time":"02:09:00","height":"4.616"},{"time":"14:44:00","height":"4.211"}],"sunrise":"05:02","sunset":"21:40"},{"date":"2019-07-10","groups":[{"time":"03:12:00","height":"4.342"},{"time":"15:50:00","height":"3.990"}],"sunrise":"05:03","sunset":"21:40"},{"date":"2019-07-11","groups":[{"time":"04:22:00","height":"4.122"},{"time":"16:59:00","height":"3.886"}],"sunrise":"05:04","sunset":"21:39"},{"date":"2019-07-12","groups":[{"time":"05:27:00","height":"4.016"},{"time":"18:03:00","height":"3.934"}],"sunrise":"05:05","sunset":"21:38"},{"date":"2019-07-13","groups":[{"time":"06:31:00","height":"4.042"},{"time":"19:03:00","height":"4.103"}],"sunrise":"05:07","sunset":"21:37"},{"date":"2019-07-14","groups":[{"time":"07:29:00","height":"4.162"},{"time":"19:56:00","height":"4.322"}],"sunrise":"05:08","sunset":"21:36"},{"date":"2019-07-15","groups":[{"time":"08:19:00","height":"4.312"},{"time":"20:41:00","height":"4.524"}],"sunrise":"05:09","sunset":"21:35"},{"date":"2019-07-16","groups":[{"time":"09:03:00","height":"4.442"},{"time":"21:21:00","height":"4.672"}],"sunrise":"05:10","sunset":"21:34"},{"date":"2019-07-17","groups":[{"time":"09:41:00","height":"4.524"},{"time":"21:58:00","height":"4.752"}],"sunrise":"05:12","sunset":"21:33"},{"date":"2019-07-18","groups":[{"time":"10:16:00","height":"4.551"},{"time":"22:32:00","height":"4.766"}],"sunrise":"05:13","sunset":"21:32"},{"date":"2019-07-19","groups":[{"time":"10:49:00","height":"4.521"},{"time":"23:05:00","height":"4.718"}],"sunrise":"05:14","sunset":"21:30"},{"date":"2019-07-20","groups":[{"time":"11:23:00","height":"4.442"},{"time":"23:40:00","height":"4.618"}],"sunrise":"05:16","sunset":"21:29"},{"date":"2019-07-21","groups":[{"time":"11:57:00","height":"4.317"}],"sunrise":"05:17","sunset":"21:28"},{"date":"2019-07-22","groups":[{"time":"00:17:00","height":"4.470"},{"time":"12:33:00","height":"4.151"}],"sunrise":"05:19","sunset":"21:26"},{"date":"2019-07-23","groups":[{"time":"00:55:00","height":"4.277"},{"time":"13:12:00","height":"3.951"}],"sunrise":"05:20","sunset":"21:25"},{"date":"2019-07-24","groups":[{"time":"01:36:00","height":"4.051"},{"time":"13:55:00","height":"3.737"}],"sunrise":"05:22","sunset":"21:24"},{"date":"2019-07-25","groups":[{"time":"02:23:00","height":"3.820"},{"time":"14:48:00","height":"3.545"}],"sunrise":"05:23","sunset":"21:22"},{"date":"2019-07-26","groups":[{"time":"03:23:00","height":"3.630"},{"time":"15:56:00","height":"3.437"}],"sunrise":"05:25","sunset":"21:21"},{"date":"2019-07-27","groups":[{"time":"04:35:00","height":"3.555"},{"time":"17:09:00","height":"3.499"}],"sunrise":"05:26","sunset":"21:19"},{"date":"2019-07-28","groups":[{"time":"05:44:00","height":"3.671"},{"time":"18:17:00","height":"3.767"}],"sunrise":"05:28","sunset":"21:18"},{"date":"2019-07-29","groups":[{"time":"06:47:00","height":"3.963"},{"time":"19:15:00","height":"4.163"}],"sunrise":"05:29","sunset":"21:16"},{"date":"2019-07-30","groups":[{"time":"07:43:00","height":"4.339"},{"time":"20:07:00","height":"4.593"}],"sunrise":"05:31","sunset":"21:14"},{"date":"2019-07-31","groups":[{"time":"08:33:00","height":"4.715"},{"time":"20:55:00","height":"4.984"}],"sunrise":"05:32","sunset":"21:13"},{"date":"2019-08-01","groups":[{"time":"09:22:00","height":"5.029"},{"time":"21:42:00","height":"5.290"}],"sunrise":"05:34","sunset":"21:11"},{"date":"2019-08-02","groups":[{"time":"10:07:00","height":"5.239"},{"time":"22:27:00","height":"5.480"}],"sunrise":"05:36","sunset":"21:09"},{"date":"2019-08-03","groups":[{"time":"10:53:00","height":"5.319"},{"time":"23:12:00","height":"5.527"}],"sunrise":"05:37","sunset":"21:07"},{"date":"2019-08-04","groups":[{"time":"11:40:00","height":"5.254"}],"sunrise":"05:39","sunset":"21:06"},{"date":"2019-08-05","groups":[{"time":"00:02:00","height":"5.420"},{"time":"12:30:00","height":"5.050"}],"sunrise":"05:40","sunset":"21:04"},{"date":"2019-08-06","groups":[{"time":"00:51:00","height":"5.166"},{"time":"13:20:00","height":"4.735"}],"sunrise":"05:42","sunset":"21:02"},{"date":"2019-08-07","groups":[{"time":"01:43:00","height":"4.796"},{"time":"14:13:00","height":"4.357"}],"sunrise":"05:44","sunset":"21:00"},{"date":"2019-08-08","groups":[{"time":"02:39:00","height":"4.366"},{"time":"15:12:00","height":"3.985"}],"sunrise":"05:45","sunset":"20:58"},{"date":"2019-08-09","groups":[{"time":"03:43:00","height":"3.958"},{"time":"16:24:00","height":"3.713"}],"sunrise":"05:47","sunset":"20:56"},{"date":"2019-08-10","groups":[{"time":"04:57:00","height":"3.686"},{"time":"17:37:00","height":"3.650"}],"sunrise":"05:49","sunset":"20:54"},{"date":"2019-08-11","groups":[{"time":"06:10:00","height":"3.651"},{"time":"18:46:00","height":"3.821"}],"sunrise":"05:50","sunset":"20:52"},{"date":"2019-08-12","groups":[{"time":"07:17:00","height":"3.831"},{"time":"19:44:00","height":"4.119"}],"sunrise":"05:52","sunset":"20:50"},{"date":"2019-08-13","groups":[{"time":"08:09:00","height":"4.093"},{"time":"20:30:00","height":"4.413"}],"sunrise":"05:54","sunset":"20:48"},{"date":"2019-08-14","groups":[{"time":"08:50:00","height":"4.331"},{"time":"21:07:00","height":"4.640"}],"sunrise":"05:55","sunset":"20:46"},{"date":"2019-08-15","groups":[{"time":"09:27:00","height":"4.505"},{"time":"21:42:00","height":"4.785"}],"sunrise":"05:57","sunset":"20:44"},{"date":"2019-08-16","groups":[{"time":"09:59:00","height":"4.609"},{"time":"22:13:00","height":"4.856"}],"sunrise":"05:59","sunset":"20:42"},{"date":"2019-08-17","groups":[{"time":"10:29:00","height":"4.651"},{"time":"22:43:00","height":"4.864"}],"sunrise":"06:00","sunset":"20:40"},{"date":"2019-08-18","groups":[{"time":"10:57:00","height":"4.635"},{"time":"23:13:00","height":"4.812"}],"sunrise":"06:02","sunset":"20:38"},{"date":"2019-08-19","groups":[{"time":"11:28:00","height":"4.566"},{"time":"23:45:00","height":"4.700"}],"sunrise":"06:04","sunset":"20:36"},{"date":"2019-08-20","groups":[{"time":"11:59:00","height":"4.438"}],"sunrise":"06:06","sunset":"20:33"},{"date":"2019-08-21","groups":[{"time":"00:19:00","height":"4.524"},{"time":"12:33:00","height":"4.255"}],"sunrise":"06:07","sunset":"20:31"},{"date":"2019-08-22","groups":[{"time":"00:55:00","height":"4.290"},{"time":"13:11:00","height":"4.026"}],"sunrise":"06:09","sunset":"20:29"},{"date":"2019-08-23","groups":[{"time":"01:36:00","height":"4.015"},{"time":"13:56:00","height":"3.773"}],"sunrise":"06:11","sunset":"20:27"},{"date":"2019-08-24","groups":[{"time":"02:29:00","height":"3.731"},{"time":"14:57:00","height":"3.539"}],"sunrise":"06:12","sunset":"20:25"},{"date":"2019-08-25","groups":[{"time":"03:40:00","height":"3.509"},{"time":"16:22:00","height":"3.442"}],"sunrise":"06:14","sunset":"20:22"},{"date":"2019-08-26","groups":[{"time":"05:08:00","height":"3.502"},{"time":"17:47:00","height":"3.635"}],"sunrise":"06:16","sunset":"20:20"},{"date":"2019-08-27","groups":[{"time":"06:25:00","height":"3.799"},{"time":"18:56:00","height":"4.085"}],"sunrise":"06:17","sunset":"20:18"},{"date":"2019-08-28","groups":[{"time":"07:28:00","height":"4.272"},{"time":"19:52:00","height":"4.622"}],"sunrise":"06:19","sunset":"20:16"},{"date":"2019-08-29","groups":[{"time":"08:21:00","height":"4.767"},{"time":"20:42:00","height":"5.121"}],"sunrise":"06:21","sunset":"20:13"},{"date":"2019-08-30","groups":[{"time":"09:08:00","height":"5.182"},{"time":"21:27:00","height":"5.508"}],"sunrise":"06:23","sunset":"20:11"},{"date":"2019-08-31","groups":[{"time":"09:53:00","height":"5.460"},{"time":"22:11:00","height":"5.737"}],"sunrise":"06:24","sunset":"20:09"},{"date":"2019-09-01","groups":[{"time":"10:36:00","height":"5.570"},{"time":"22:54:00","height":"5.778"}],"sunrise":"06:26","sunset":"20:06"},{"date":"2019-09-02","groups":[{"time":"11:17:00","height":"5.501"},{"time":"23:39:00","height":"5.623"}],"sunrise":"06:28","sunset":"20:04"},{"date":"2019-09-03","groups":[{"time":"12:04:00","height":"5.260"}],"sunrise":"06:29","sunset":"20:02"},{"date":"2019-09-04","groups":[{"time":"00:24:00","height":"5.287"},{"time":"12:49:00","height":"4.883"}],"sunrise":"06:31","sunset":"19:59"},{"date":"2019-09-05","groups":[{"time":"01:12:00","height":"4.814"},{"time":"13:37:00","height":"4.422"}],"sunrise":"06:33","sunset":"19:57"},{"date":"2019-09-06","groups":[{"time":"02:02:00","height":"4.271"},{"time":"14:32:00","height":"3.949"}],"sunrise":"06:34","sunset":"19:55"},{"date":"2019-09-07","groups":[{"time":"03:02:00","height":"3.748"},{"time":"15:43:00","height":"3.564"}],"sunrise":"06:36","sunset":"19:52"},{"date":"2019-09-08","groups":[{"time":"04:25:00","height":"3.381"},{"time":"17:11:00","height":"3.435"}],"sunrise":"06:38","sunset":"19:50"},{"date":"2019-09-09","groups":[{"time":"05:53:00","height":"3.354"},{"time":"18:31:00","height":"3.649"}],"sunrise":"06:39","sunset":"19:47"},{"date":"2019-09-10","groups":[{"time":"07:05:00","height":"3.640"},{"time":"19:29:00","height":"4.032"}],"sunrise":"06:41","sunset":"19:45"},{"date":"2019-09-11","groups":[{"time":"07:55:00","height":"4.011"},{"time":"20:12:00","height":"4.400"}],"sunrise":"06:43","sunset":"19:43"},{"date":"2019-09-12","groups":[{"time":"08:32:00","height":"4.334"},{"time":"20:47:00","height":"4.681"}],"sunrise":"06:45","sunset":"19:40"},{"date":"2019-09-13","groups":[{"time":"09:05:00","height":"4.572"},{"time":"21:19:00","height":"4.866"}],"sunrise":"06:46","sunset":"19:38"},{"date":"2019-09-14","groups":[{"time":"09:36:00","height":"4.726"},{"time":"21:50:00","height":"4.969"}],"sunrise":"06:48","sunset":"19:35"},{"date":"2019-09-15","groups":[{"time":"10:05:00","height":"4.811"},{"time":"22:18:00","height":"5.004"}],"sunrise":"06:50","sunset":"19:33"},{"date":"2019-09-16","groups":[{"time":"10:31:00","height":"4.836"},{"time":"22:45:00","height":"4.977"}],"sunrise":"06:51","sunset":"19:31"},{"date":"2019-09-17","groups":[{"time":"10:57:00","height":"4.800"},{"time":"23:14:00","height":"4.882"}],"sunrise":"06:53","sunset":"19:28"},{"date":"2019-09-18","groups":[{"time":"11:27:00","height":"4.696"},{"time":"23:45:00","height":"4.712"}],"sunrise":"06:55","sunset":"19:26"},{"date":"2019-09-19","groups":[{"time":"11:59:00","height":"4.520"}],"sunrise":"06:56","sunset":"19:23"},{"date":"2019-09-20","groups":[{"time":"00:20:00","height":"4.469"},{"time":"12:35:00","height":"4.277"}],"sunrise":"06:58","sunset":"19:21"},{"date":"2019-09-21","groups":[{"time":"00:59:00","height":"4.164"},{"time":"13:18:00","height":"3.982"}],"sunrise":"07:00","sunset":"19:19"},{"date":"2019-09-22","groups":[{"time":"01:50:00","height":"3.817"},{"time":"14:18:00","height":"3.670"}],"sunrise":"07:02","sunset":"19:16"},{"date":"2019-09-23","groups":[{"time":"03:04:00","height":"3.504"},{"time":"15:47:00","height":"3.474"}],"sunrise":"07:03","sunset":"19:14"},{"date":"2019-09-24","groups":[{"time":"04:45:00","height":"3.434"},{"time":"17:25:00","height":"3.635"}],"sunrise":"07:05","sunset":"19:11"},{"date":"2019-09-25","groups":[{"time":"06:10:00","height":"3.765"},{"time":"18:41:00","height":"4.133"}],"sunrise":"07:07","sunset":"19:09"},{"date":"2019-09-26","groups":[{"time":"07:14:00","height":"4.314"},{"time":"19:37:00","height":"4.728"}],"sunrise":"07:08","sunset":"19:06"},{"date":"2019-09-27","groups":[{"time":"08:06:00","height":"4.868"},{"time":"20:26:00","height":"5.261"}],"sunrise":"07:10","sunset":"19:04"},{"date":"2019-09-28","groups":[{"time":"08:51:00","height":"5.313"},{"time":"21:10:00","height":"5.646"}],"sunrise":"07:12","sunset":"19:02"},{"date":"2019-09-29","groups":[{"time":"09:34:00","height":"5.595"},{"time":"21:52:00","height":"5.844"}],"sunrise":"07:14","sunset":"18:59"},{"date":"2019-09-30","groups":[{"time":"10:14:00","height":"5.692"},{"time":"22:33:00","height":"5.836"}],"sunrise":"07:15","sunset":"18:57"},{"date":"2019-10-01","groups":[{"time":"10:54:00","height":"5.602"},{"time":"23:12:00","height":"5.625"}],"sunrise":"07:17","sunset":"18:55"},{"date":"2019-10-02","groups":[{"time":"11:34:00","height":"5.340"},{"time":"23:56:00","height":"5.237"}],"sunrise":"07:19","sunset":"18:52"},{"date":"2019-10-03","groups":[{"time":"12:18:00","height":"4.941"}],"sunrise":"07:21","sunset":"18:50"},{"date":"2019-10-04","groups":[{"time":"00:41:00","height":"4.726"},{"time":"13:03:00","height":"4.459"}],"sunrise":"07:22","sunset":"18:47"},{"date":"2019-10-05","groups":[{"time":"01:27:00","height":"4.159"},{"time":"13:54:00","height":"3.960"}],"sunrise":"07:24","sunset":"18:45"},{"date":"2019-10-06","groups":[{"time":"02:23:00","height":"3.617"},{"time":"15:02:00","height":"3.534"}],"sunrise":"07:26","sunset":"18:43"},{"date":"2019-10-07","groups":[{"time":"03:46:00","height":"3.222"},{"time":"16:40:00","height":"3.355"}],"sunrise":"07:28","sunset":"18:40"},{"date":"2019-10-08","groups":[{"time":"05:27:00","height":"3.198"},{"time":"18:05:00","height":"3.560"}],"sunrise":"07:29","sunset":"18:38"},{"date":"2019-10-09","groups":[{"time":"06:41:00","height":"3.523"},{"time":"19:03:00","height":"3.956"}],"sunrise":"07:31","sunset":"18:36"},{"date":"2019-10-10","groups":[{"time":"07:30:00","height":"3.937"},{"time":"19:45:00","height":"4.346"}],"sunrise":"07:33","sunset":"18:33"},{"date":"2019-10-11","groups":[{"time":"08:07:00","height":"4.305"},{"time":"20:21:00","height":"4.656"}],"sunrise":"07:35","sunset":"18:31"},{"date":"2019-10-12","groups":[{"time":"08:39:00","height":"4.588"},{"time":"20:52:00","height":"4.873"}],"sunrise":"07:36","sunset":"18:29"},{"date":"2019-10-13","groups":[{"time":"09:08:00","height":"4.788"},{"time":"21:22:00","height":"5.006"}],"sunrise":"07:38","sunset":"18:26"},{"date":"2019-10-14","groups":[{"time":"09:36:00","height":"4.916"},{"time":"21:50:00","height":"5.069"}],"sunrise":"07:40","sunset":"18:24"},{"date":"2019-10-15","groups":[{"time":"10:04:00","height":"4.980"},{"time":"22:19:00","height":"5.066"}],"sunrise":"07:42","sunset":"18:22"},{"date":"2019-10-16","groups":[{"time":"10:31:00","height":"4.976"},{"time":"22:47:00","height":"4.989"}],"sunrise":"07:44","sunset":"18:20"},{"date":"2019-10-17","groups":[{"time":"10:59:00","height":"4.894"},{"time":"23:18:00","height":"4.829"}],"sunrise":"07:45","sunset":"18:17"},{"date":"2019-10-18","groups":[{"time":"11:32:00","height":"4.725"},{"time":"23:55:00","height":"4.584"}],"sunrise":"07:47","sunset":"18:15"},{"date":"2019-10-19","groups":[{"time":"12:10:00","height":"4.476"}],"sunrise":"07:49","sunset":"18:13"},{"date":"2019-10-20","groups":[{"time":"00:37:00","height":"4.262"},{"time":"12:57:00","height":"4.161"}],"sunrise":"07:51","sunset":"18:11"},{"date":"2019-10-21","groups":[{"time":"01:31:00","height":"3.894"},{"time":"13:59:00","height":"3.830"}],"sunrise":"07:53","sunset":"18:09"},{"date":"2019-10-22","groups":[{"time":"02:48:00","height":"3.574"},{"time":"15:30:00","height":"3.632"}],"sunrise":"07:55","sunset":"18:07"},{"date":"2019-10-23","groups":[{"time":"04:29:00","height":"3.520"},{"time":"17:08:00","height":"3.788"}],"sunrise":"07:56","sunset":"18:04"},{"date":"2019-10-24","groups":[{"time":"05:53:00","height":"3.852"},{"time":"18:21:00","height":"4.255"}],"sunrise":"07:58","sunset":"18:02"},{"date":"2019-10-25","groups":[{"time":"06:56:00","height":"4.378"},{"time":"19:17:00","height":"4.798"}],"sunrise":"08:00","sunset":"18:00"},{"date":"2019-10-26","groups":[{"time":"07:46:00","height":"4.893"},{"time":"20:05:00","height":"5.263"}],"sunrise":"08:02","sunset":"17:58"},{"date":"2019-10-27","groups":[{"time":"08:31:00","height":"5.294"},{"time":"20:49:00","height":"5.576"}],"sunrise":"08:04","sunset":"17:56"},{"date":"2019-10-28","groups":[{"time":"08:12:00","height":"5.539"},{"time":"20:31:00","height":"5.709"}],"sunrise":"07:06","sunset":"16:54"},{"date":"2019-10-29","groups":[{"time":"08:52:00","height":"5.617"},{"time":"21:11:00","height":"5.658"}],"sunrise":"07:07","sunset":"16:52"},{"date":"2019-10-30","groups":[{"time":"09:31:00","height":"5.531"},{"time":"21:50:00","height":"5.436"}],"sunrise":"07:09","sunset":"16:50"},{"date":"2019-10-31","groups":[{"time":"10:08:00","height":"5.294"},{"time":"22:30:00","height":"5.071"}],"sunrise":"07:11","sunset":"16:48"},{"date":"2019-11-01","groups":[{"time":"10:51:00","height":"4.936"},{"time":"23:12:00","height":"4.610"}],"sunrise":"07:13","sunset":"16:46"},{"date":"2019-11-02","groups":[{"time":"11:35:00","height":"4.505"},{"time":"23:58:00","height":"4.110"}],"sunrise":"07:15","sunset":"16:44"},{"date":"2019-11-03","groups":[{"time":"12:24:00","height":"4.056"}],"sunrise":"07:17","sunset":"16:42"},{"date":"2019-11-04","groups":[{"time":"00:51:00","height":"3.634"},{"time":"13:25:00","height":"3.658"}],"sunrise":"07:19","sunset":"16:41"},{"date":"2019-11-05","groups":[{"time":"02:02:00","height":"3.268"},{"time":"14:50:00","height":"3.429"}],"sunrise":"07:21","sunset":"16:39"},{"date":"2019-11-06","groups":[{"time":"03:41:00","height":"3.165"},{"time":"16:19:00","height":"3.506"}],"sunrise":"07:22","sunset":"16:37"},{"date":"2019-11-07","groups":[{"time":"04:58:00","height":"3.393"},{"time":"17:22:00","height":"3.806"}],"sunrise":"07:24","sunset":"16:35"},{"date":"2019-11-08","groups":[{"time":"05:52:00","height":"3.763"},{"time":"18:09:00","height":"4.157"}],"sunrise":"07:26","sunset":"16:33"},{"date":"2019-11-09","groups":[{"time":"06:32:00","height":"4.134"},{"time":"18:46:00","height":"4.473"}],"sunrise":"07:28","sunset":"16:32"},{"date":"2019-11-10","groups":[{"time":"07:06:00","height":"4.454"},{"time":"19:20:00","height":"4.721"}],"sunrise":"07:30","sunset":"16:30"},{"date":"2019-11-11","groups":[{"time":"07:38:00","height":"4.708"},{"time":"19:52:00","height":"4.899"}],"sunrise":"07:32","sunset":"16:28"},{"date":"2019-11-12","groups":[{"time":"08:07:00","height":"4.894"},{"time":"20:23:00","height":"5.010"}],"sunrise":"07:33","sunset":"16:27"},{"date":"2019-11-13","groups":[{"time":"08:38:00","height":"5.013"},{"time":"20:54:00","height":"5.051"}],"sunrise":"07:35","sunset":"16:25"},{"date":"2019-11-14","groups":[{"time":"09:08:00","height":"5.056"},{"time":"21:27:00","height":"5.013"}],"sunrise":"07:37","sunset":"16:24"},{"date":"2019-11-15","groups":[{"time":"09:40:00","height":"5.011"},{"time":"22:00:00","height":"4.885"}],"sunrise":"07:39","sunset":"16:22"},{"date":"2019-11-16","groups":[{"time":"10:16:00","height":"4.872"},{"time":"22:41:00","height":"4.664"}],"sunrise":"07:41","sunset":"16:21"},{"date":"2019-11-17","groups":[{"time":"10:59:00","height":"4.648"},{"time":"23:29:00","height":"4.368"}],"sunrise":"07:43","sunset":"16:19"},{"date":"2019-11-18","groups":[{"time":"11:50:00","height":"4.364"}],"sunrise":"07:44","sunset":"16:18"},{"date":"2019-11-19","groups":[{"time":"00:27:00","height":"4.041"},{"time":"12:55:00","height":"4.083"}],"sunrise":"07:46","sunset":"16:17"},{"date":"2019-11-20","groups":[{"time":"01:42:00","height":"3.779"},{"time":"14:18:00","height":"3.925"}],"sunrise":"07:48","sunset":"16:15"},{"date":"2019-11-21","groups":[{"time":"03:10:00","height":"3.726"},{"time":"15:45:00","height":"4.011"}],"sunrise":"07:50","sunset":"16:14"},{"date":"2019-11-22","groups":[{"time":"04:28:00","height":"3.947"},{"time":"16:55:00","height":"4.319"}],"sunrise":"07:51","sunset":"16:13"},{"date":"2019-11-23","groups":[{"time":"05:30:00","height":"4.331"},{"time":"17:53:00","height":"4.698"}],"sunrise":"07:53","sunset":"16:12"},{"date":"2019-11-24","groups":[{"time":"06:23:00","height":"4.731"},{"time":"18:44:00","height":"5.030"}],"sunrise":"07:55","sunset":"16:11"},{"date":"2019-11-25","groups":[{"time":"07:09:00","height":"5.055"},{"time":"19:30:00","height":"5.250"}],"sunrise":"07:56","sunset":"16:10"},{"date":"2019-11-26","groups":[{"time":"07:52:00","height":"5.266"},{"time":"20:12:00","height":"5.339"}],"sunrise":"07:58","sunset":"16:09"},{"date":"2019-11-27","groups":[{"time":"08:33:00","height":"5.352"},{"time":"20:52:00","height":"5.297"}],"sunrise":"08:00","sunset":"16:08"},{"date":"2019-11-28","groups":[{"time":"09:12:00","height":"5.312"},{"time":"21:32:00","height":"5.134"}],"sunrise":"08:01","sunset":"16:07"},{"date":"2019-11-29","groups":[{"time":"09:50:00","height":"5.155"},{"time":"22:10:00","height":"4.870"}],"sunrise":"08:03","sunset":"16:06"},{"date":"2019-11-30","groups":[{"time":"10:30:00","height":"4.899"},{"time":"22:52:00","height":"4.533"}],"sunrise":"08:04","sunset":"16:05"},{"date":"2019-12-01","groups":[{"time":"11:13:00","height":"4.578"},{"time":"23:35:00","height":"4.162"}],"sunrise":"08:06","sunset":"16:04"},{"date":"2019-12-02","groups":[{"time":"11:59:00","height":"4.232"}],"sunrise":"08:07","sunset":"16:04"},{"date":"2019-12-03","groups":[{"time":"00:22:00","height":"3.798"},{"time":"12:50:00","height":"3.902"}],"sunrise":"08:08","sunset":"16:03"},{"date":"2019-12-04","groups":[{"time":"01:18:00","height":"3.483"},{"time":"13:53:00","height":"3.641"}],"sunrise":"08:10","sunset":"16:02"},{"date":"2019-12-05","groups":[{"time":"02:30:00","height":"3.282"},{"time":"15:12:00","height":"3.528"}],"sunrise":"08:11","sunset":"16:02"},{"date":"2019-12-06","groups":[{"time":"03:53:00","height":"3.287"},{"time":"16:23:00","height":"3.617"}],"sunrise":"08:13","sunset":"16:01"},{"date":"2019-12-07","groups":[{"time":"04:57:00","height":"3.501"},{"time":"17:20:00","height":"3.846"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2019-12-08","groups":[{"time":"05:47:00","height":"3.816"},{"time":"18:05:00","height":"4.126"}],"sunrise":"08:15","sunset":"16:01"},{"date":"2019-12-09","groups":[{"time":"06:28:00","height":"4.151"},{"time":"18:45:00","height":"4.401"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2019-12-10","groups":[{"time":"07:05:00","height":"4.464"},{"time":"19:22:00","height":"4.642"}],"sunrise":"08:17","sunset":"16:00"},{"date":"2019-12-11","groups":[{"time":"07:40:00","height":"4.730"},{"time":"19:59:00","height":"4.831"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2019-12-12","groups":[{"time":"08:16:00","height":"4.932"},{"time":"20:35:00","height":"4.954"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2019-12-13","groups":[{"time":"08:51:00","height":"5.056"},{"time":"21:12:00","height":"4.997"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2019-12-14","groups":[{"time":"09:29:00","height":"5.091"},{"time":"21:52:00","height":"4.949"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2019-12-15","groups":[{"time":"10:08:00","height":"5.034"},{"time":"22:37:00","height":"4.808"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2019-12-16","groups":[{"time":"10:56:00","height":"4.889"},{"time":"23:28:00","height":"4.590"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2019-12-17","groups":[{"time":"11:50:00","height":"4.682"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2019-12-18","groups":[{"time":"00:24:00","height":"4.331"},{"time":"12:50:00","height":"4.454"}],"sunrise":"08:25","sunset":"16:00"},{"date":"2019-12-19","groups":[{"time":"01:29:00","height":"4.092"},{"time":"13:59:00","height":"4.264"}],"sunrise":"08:25","sunset":"16:01"},{"date":"2019-12-20","groups":[{"time":"02:41:00","height":"3.946"},{"time":"15:14:00","height":"4.179"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2019-12-21","groups":[{"time":"03:55:00","height":"3.959"},{"time":"16:23:00","height":"4.232"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2019-12-22","groups":[{"time":"05:00:00","height":"4.129"},{"time":"17:26:00","height":"4.391"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2019-12-23","groups":[{"time":"05:58:00","height":"4.385"},{"time":"18:23:00","height":"4.586"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2019-12-24","groups":[{"time":"06:50:00","height":"4.651"},{"time":"19:13:00","height":"4.757"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2019-12-25","groups":[{"time":"07:37:00","height":"4.869"},{"time":"19:59:00","height":"4.869"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2019-12-26","groups":[{"time":"08:19:00","height":"5.009"},{"time":"20:40:00","height":"4.903"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2019-12-27","groups":[{"time":"08:59:00","height":"5.059"},{"time":"21:20:00","height":"4.857"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2019-12-28","groups":[{"time":"09:37:00","height":"5.015"},{"time":"21:55:00","height":"4.734"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2019-12-29","groups":[{"time":"10:14:00","height":"4.886"},{"time":"22:34:00","height":"4.546"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2019-12-30","groups":[{"time":"10:54:00","height":"4.692"},{"time":"23:13:00","height":"4.314"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2019-12-31","groups":[{"time":"11:34:00","height":"4.455"},{"time":"23:52:00","height":"4.057"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2020-01-01","groups":[{"time":"12:16:00","height":"4.194"}],"sunrise":"08:29","sunset":"16:10"},{"date":"2020-01-02","groups":[{"time":"00:36:00","height":"3.792"},{"time":"13:03:00","height":"3.928"}],"sunrise":"08:29","sunset":"16:11"},{"date":"2020-01-03","groups":[{"time":"01:26:00","height":"3.545"},{"time":"13:58:00","height":"3.690"}],"sunrise":"08:28","sunset":"16:12"},{"date":"2020-01-04","groups":[{"time":"02:27:00","height":"3.360"},{"time":"15:05:00","height":"3.537"}],"sunrise":"08:28","sunset":"16:13"},{"date":"2020-01-05","groups":[{"time":"03:41:00","height":"3.314"},{"time":"16:15:00","height":"3.541"}],"sunrise":"08:28","sunset":"16:15"},{"date":"2020-01-06","groups":[{"time":"04:49:00","height":"3.464"},{"time":"17:16:00","height":"3.714"}],"sunrise":"08:27","sunset":"16:16"},{"date":"2020-01-07","groups":[{"time":"05:45:00","height":"3.762"},{"time":"18:08:00","height":"3.992"}],"sunrise":"08:27","sunset":"16:17"},{"date":"2020-01-08","groups":[{"time":"06:32:00","height":"4.124"},{"time":"18:55:00","height":"4.307"}],"sunrise":"08:27","sunset":"16:18"},{"date":"2020-01-09","groups":[{"time":"07:15:00","height":"4.486"},{"time":"19:38:00","height":"4.609"}],"sunrise":"08:26","sunset":"16:20"},{"date":"2020-01-10","groups":[{"time":"07:57:00","height":"4.807"},{"time":"20:19:00","height":"4.860"}],"sunrise":"08:25","sunset":"16:21"},{"date":"2020-01-11","groups":[{"time":"08:39:00","height":"5.060"},{"time":"21:03:00","height":"5.035"}],"sunrise":"08:25","sunset":"16:23"},{"date":"2020-01-12","groups":[{"time":"09:21:00","height":"5.225"},{"time":"21:44:00","height":"5.112"}],"sunrise":"08:24","sunset":"16:24"},{"date":"2020-01-13","groups":[{"time":"10:02:00","height":"5.288"},{"time":"22:29:00","height":"5.079"}],"sunrise":"08:23","sunset":"16:26"},{"date":"2020-01-14","groups":[{"time":"10:51:00","height":"5.238"},{"time":"23:19:00","height":"4.934"}],"sunrise":"08:22","sunset":"16:27"},{"date":"2020-01-15","groups":[{"time":"11:42:00","height":"5.080"}],"sunrise":"08:21","sunset":"16:29"},{"date":"2020-01-16","groups":[{"time":"00:11:00","height":"4.697"},{"time":"12:35:00","height":"4.829"}],"sunrise":"08:21","sunset":"16:31"},{"date":"2020-01-17","groups":[{"time":"01:06:00","height":"4.402"},{"time":"13:32:00","height":"4.522"}],"sunrise":"08:20","sunset":"16:32"},{"date":"2020-01-18","groups":[{"time":"02:08:00","height":"4.107"},{"time":"14:38:00","height":"4.218"}],"sunrise":"08:19","sunset":"16:34"},{"date":"2020-01-19","groups":[{"time":"03:18:00","height":"3.889"},{"time":"15:50:00","height":"4.003"}],"sunrise":"08:17","sunset":"16:36"},{"date":"2020-01-20","groups":[{"time":"04:28:00","height":"3.834"},{"time":"16:59:00","height":"3.954"}],"sunrise":"08:16","sunset":"16:37"},{"date":"2020-01-21","groups":[{"time":"05:36:00","height":"3.970"},{"time":"18:06:00","height":"4.073"}],"sunrise":"08:15","sunset":"16:39"},{"date":"2020-01-22","groups":[{"time":"06:37:00","height":"4.232"},{"time":"19:03:00","height":"4.284"}],"sunrise":"08:14","sunset":"16:41"},{"date":"2020-01-23","groups":[{"time":"07:27:00","height":"4.518"},{"time":"19:50:00","height":"4.492"}],"sunrise":"08:13","sunset":"16:43"},{"date":"2020-01-24","groups":[{"time":"08:10:00","height":"4.750"},{"time":"20:31:00","height":"4.643"}],"sunrise":"08:11","sunset":"16:45"},{"date":"2020-01-25","groups":[{"time":"08:50:00","height":"4.896"},{"time":"21:08:00","height":"4.719"}],"sunrise":"08:10","sunset":"16:46"},{"date":"2020-01-26","groups":[{"time":"09:24:00","height":"4.952"},{"time":"21:41:00","height":"4.718"}],"sunrise":"08:09","sunset":"16:48"},{"date":"2020-01-27","groups":[{"time":"09:57:00","height":"4.926"},{"time":"22:13:00","height":"4.649"}],"sunrise":"08:07","sunset":"16:50"},{"date":"2020-01-28","groups":[{"time":"10:31:00","height":"4.829"},{"time":"22:47:00","height":"4.521"}],"sunrise":"08:06","sunset":"16:52"},{"date":"2020-01-29","groups":[{"time":"11:06:00","height":"4.673"},{"time":"23:21:00","height":"4.342"}],"sunrise":"08:04","sunset":"16:54"},{"date":"2020-01-30","groups":[{"time":"11:42:00","height":"4.461"},{"time":"23:57:00","height":"4.118"}],"sunrise":"08:03","sunset":"16:56"},{"date":"2020-01-31","groups":[{"time":"12:18:00","height":"4.202"}],"sunrise":"08:01","sunset":"16:58"},{"date":"2020-02-01","groups":[{"time":"00:35:00","height":"3.860"},{"time":"13:01:00","height":"3.910"}],"sunrise":"08:00","sunset":"16:59"},{"date":"2020-02-02","groups":[{"time":"01:20:00","height":"3.593"},{"time":"13:53:00","height":"3.622"}],"sunrise":"07:58","sunset":"17:01"},{"date":"2020-02-03","groups":[{"time":"02:20:00","height":"3.363"},{"time":"15:01:00","height":"3.407"}],"sunrise":"07:56","sunset":"17:03"},{"date":"2020-02-04","groups":[{"time":"03:38:00","height":"3.270"},{"time":"16:20:00","height":"3.385"}],"sunrise":"07:55","sunset":"17:05"},{"date":"2020-02-05","groups":[{"time":"04:57:00","height":"3.432"},{"time":"17:31:00","height":"3.619"}],"sunrise":"07:53","sunset":"17:07"},{"date":"2020-02-06","groups":[{"time":"06:02:00","height":"3.813"},{"time":"18:30:00","height":"4.014"}],"sunrise":"07:51","sunset":"17:09"},{"date":"2020-02-07","groups":[{"time":"06:55:00","height":"4.281"},{"time":"19:21:00","height":"4.452"}],"sunrise":"07:49","sunset":"17:11"},{"date":"2020-02-08","groups":[{"time":"07:42:00","height":"4.743"},{"time":"20:06:00","height":"4.855"}],"sunrise":"07:47","sunset":"17:13"},{"date":"2020-02-09","groups":[{"time":"08:26:00","height":"5.139"},{"time":"20:50:00","height":"5.168"}],"sunrise":"07:46","sunset":"17:15"},{"date":"2020-02-10","groups":[{"time":"09:08:00","height":"5.431"},{"time":"21:33:00","height":"5.357"}],"sunrise":"07:44","sunset":"17:17"},{"date":"2020-02-11","groups":[{"time":"09:51:00","height":"5.586"},{"time":"22:15:00","height":"5.396"}],"sunrise":"07:42","sunset":"17:19"},{"date":"2020-02-12","groups":[{"time":"10:36:00","height":"5.578"},{"time":"23:02:00","height":"5.274"}],"sunrise":"07:40","sunset":"17:21"},{"date":"2020-02-13","groups":[{"time":"11:23:00","height":"5.400"},{"time":"23:49:00","height":"5.005"}],"sunrise":"07:38","sunset":"17:23"},{"date":"2020-02-14","groups":[{"time":"12:11:00","height":"5.066"}],"sunrise":"07:36","sunset":"17:25"},{"date":"2020-02-15","groups":[{"time":"00:38:00","height":"4.626"},{"time":"13:03:00","height":"4.618"}],"sunrise":"07:34","sunset":"17:26"},{"date":"2020-02-16","groups":[{"time":"01:32:00","height":"4.193"},{"time":"14:01:00","height":"4.128"}],"sunrise":"07:32","sunset":"17:28"},{"date":"2020-02-17","groups":[{"time":"02:37:00","height":"3.792"},{"time":"15:14:00","height":"3.709"}],"sunrise":"07:30","sunset":"17:30"},{"date":"2020-02-18","groups":[{"time":"03:57:00","height":"3.560"},{"time":"16:36:00","height":"3.526"}],"sunrise":"07:28","sunset":"17:32"},{"date":"2020-02-19","groups":[{"time":"05:17:00","height":"3.628"},{"time":"17:55:00","height":"3.660"}],"sunrise":"07:26","sunset":"17:34"},{"date":"2020-02-20","groups":[{"time":"06:27:00","height":"3.944"},{"time":"18:56:00","height":"3.977"}],"sunrise":"07:23","sunset":"17:36"},{"date":"2020-02-21","groups":[{"time":"07:17:00","height":"4.315"},{"time":"19:41:00","height":"4.295"}],"sunrise":"07:21","sunset":"17:38"},{"date":"2020-02-22","groups":[{"time":"07:58:00","height":"4.620"},{"time":"20:19:00","height":"4.538"}],"sunrise":"07:19","sunset":"17:40"},{"date":"2020-02-23","groups":[{"time":"08:35:00","height":"4.826"},{"time":"20:51:00","height":"4.691"}],"sunrise":"07:17","sunset":"17:42"},{"date":"2020-02-24","groups":[{"time":"09:06:00","height":"4.936"},{"time":"21:22:00","height":"4.763"}],"sunrise":"07:15","sunset":"17:44"},{"date":"2020-02-25","groups":[{"time":"09:37:00","height":"4.965"},{"time":"21:50:00","height":"4.765"}],"sunrise":"07:13","sunset":"17:46"},{"date":"2020-02-26","groups":[{"time":"10:05:00","height":"4.925"},{"time":"22:18:00","height":"4.704"}],"sunrise":"07:10","sunset":"17:47"},{"date":"2020-02-27","groups":[{"time":"10:36:00","height":"4.818"},{"time":"22:49:00","height":"4.578"}],"sunrise":"07:08","sunset":"17:49"},{"date":"2020-02-28","groups":[{"time":"11:07:00","height":"4.640"},{"time":"23:19:00","height":"4.389"}],"sunrise":"07:06","sunset":"17:51"},{"date":"2020-02-29","groups":[{"time":"11:39:00","height":"4.393"},{"time":"23:52:00","height":"4.142"}],"sunrise":"07:04","sunset":"17:53"},{"date":"2020-06-01","groups":[{"time":"05:07:00","height":"4.078"},{"time":"17:46:00","height":"4.025"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2020-06-02","groups":[{"time":"06:11:00","height":"4.358"},{"time":"18:44:00","height":"4.367"}],"sunrise":"04:55","sunset":"21:33"},{"date":"2020-06-03","groups":[{"time":"07:07:00","height":"4.664"},{"time":"19:36:00","height":"4.702"}],"sunrise":"04:55","sunset":"21:34"},{"date":"2020-06-04","groups":[{"time":"07:58:00","height":"4.917"},{"time":"20:24:00","height":"4.969"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2020-06-05","groups":[{"time":"08:46:00","height":"5.075"},{"time":"21:08:00","height":"5.138"}],"sunrise":"04:53","sunset":"21:36"},{"date":"2020-06-06","groups":[{"time":"09:31:00","height":"5.121"},{"time":"21:52:00","height":"5.192"}],"sunrise":"04:53","sunset":"21:37"},{"date":"2020-06-07","groups":[{"time":"10:14:00","height":"5.049"},{"time":"22:34:00","height":"5.128"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2020-06-08","groups":[{"time":"10:56:00","height":"4.866"},{"time":"23:16:00","height":"4.952"}],"sunrise":"04:52","sunset":"21:39"},{"date":"2020-06-09","groups":[{"time":"11:41:00","height":"4.596"}],"sunrise":"04:51","sunset":"21:39"},{"date":"2020-06-10","groups":[{"time":"00:02:00","height":"4.692"},{"time":"12:26:00","height":"4.272"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2020-06-11","groups":[{"time":"00:49:00","height":"4.384"},{"time":"13:14:00","height":"3.938"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2020-06-12","groups":[{"time":"01:39:00","height":"4.072"},{"time":"14:05:00","height":"3.633"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2020-06-13","groups":[{"time":"02:34:00","height":"3.797"},{"time":"15:06:00","height":"3.402"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2020-06-14","groups":[{"time":"03:39:00","height":"3.610"},{"time":"16:17:00","height":"3.302"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2020-06-15","groups":[{"time":"04:50:00","height":"3.562"},{"time":"17:24:00","height":"3.374"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2020-06-16","groups":[{"time":"05:50:00","height":"3.658"},{"time":"18:20:00","height":"3.580"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2020-06-17","groups":[{"time":"06:41:00","height":"3.843"},{"time":"19:07:00","height":"3.847"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2020-06-18","groups":[{"time":"07:26:00","height":"4.060"},{"time":"19:47:00","height":"4.122"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2020-06-19","groups":[{"time":"08:06:00","height":"4.269"},{"time":"20:25:00","height":"4.372"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2020-06-20","groups":[{"time":"08:44:00","height":"4.449"},{"time":"21:01:00","height":"4.578"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2020-06-21","groups":[{"time":"09:21:00","height":"4.586"},{"time":"21:37:00","height":"4.729"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2020-06-22","groups":[{"time":"09:58:00","height":"4.671"},{"time":"22:13:00","height":"4.817"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2020-06-23","groups":[{"time":"10:36:00","height":"4.695"},{"time":"22:52:00","height":"4.835"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2020-06-24","groups":[{"time":"11:16:00","height":"4.650"},{"time":"23:34:00","height":"4.783"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2020-06-25","groups":[{"time":"12:04:00","height":"4.536"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2020-06-26","groups":[{"time":"00:24:00","height":"4.667"},{"time":"12:56:00","height":"4.368"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2020-06-27","groups":[{"time":"01:18:00","height":"4.510"},{"time":"13:53:00","height":"4.178"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2020-06-28","groups":[{"time":"02:19:00","height":"4.342"},{"time":"14:57:00","height":"4.014"}],"sunrise":"04:53","sunset":"21:45"},{"date":"2020-06-29","groups":[{"time":"03:26:00","height":"4.206"},{"time":"16:07:00","height":"3.931"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2020-06-30","groups":[{"time":"04:38:00","height":"4.151"},{"time":"17:15:00","height":"3.976"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2020-07-01","groups":[{"time":"05:42:00","height":"4.199"},{"time":"18:17:00","height":"4.142"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2020-07-02","groups":[{"time":"06:43:00","height":"4.330"},{"time":"19:14:00","height":"4.377"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2020-07-03","groups":[{"time":"07:40:00","height":"4.494"},{"time":"20:07:00","height":"4.620"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2020-07-04","groups":[{"time":"08:32:00","height":"4.645"},{"time":"20:56:00","height":"4.820"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2020-07-05","groups":[{"time":"09:19:00","height":"4.743"},{"time":"21:40:00","height":"4.943"}],"sunrise":"04:59","sunset":"21:43"},{"date":"2020-07-06","groups":[{"time":"10:03:00","height":"4.767"},{"time":"22:22:00","height":"4.971"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2020-07-07","groups":[{"time":"10:43:00","height":"4.707"},{"time":"23:01:00","height":"4.904"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2020-07-08","groups":[{"time":"11:23:00","height":"4.570"},{"time":"23:42:00","height":"4.753"}],"sunrise":"05:02","sunset":"21:41"},{"date":"2020-07-09","groups":[{"time":"12:04:00","height":"4.375"}],"sunrise":"05:03","sunset":"21:40"},{"date":"2020-07-10","groups":[{"time":"00:24:00","height":"4.545"},{"time":"12:44:00","height":"4.145"}],"sunrise":"05:04","sunset":"21:39"},{"date":"2020-07-11","groups":[{"time":"01:05:00","height":"4.302"},{"time":"13:26:00","height":"3.899"}],"sunrise":"05:05","sunset":"21:38"},{"date":"2020-07-12","groups":[{"time":"01:50:00","height":"4.043"},{"time":"14:10:00","height":"3.657"}],"sunrise":"05:06","sunset":"21:37"},{"date":"2020-07-13","groups":[{"time":"02:39:00","height":"3.789"},{"time":"15:04:00","height":"3.446"}],"sunrise":"05:08","sunset":"21:36"},{"date":"2020-07-14","groups":[{"time":"03:37:00","height":"3.579"},{"time":"16:10:00","height":"3.320"}],"sunrise":"05:09","sunset":"21:35"},{"date":"2020-07-15","groups":[{"time":"04:46:00","height":"3.473"},{"time":"17:20:00","height":"3.350"}],"sunrise":"05:10","sunset":"21:34"},{"date":"2020-07-16","groups":[{"time":"05:50:00","height":"3.528"},{"time":"18:22:00","height":"3.550"}],"sunrise":"05:11","sunset":"21:33"},{"date":"2020-07-17","groups":[{"time":"06:47:00","height":"3.723"},{"time":"19:13:00","height":"3.854"}],"sunrise":"05:13","sunset":"21:32"},{"date":"2020-07-18","groups":[{"time":"07:36:00","height":"3.992"},{"time":"19:59:00","height":"4.188"}],"sunrise":"05:14","sunset":"21:31"},{"date":"2020-07-19","groups":[{"time":"08:21:00","height":"4.277"},{"time":"20:40:00","height":"4.505"}],"sunrise":"05:15","sunset":"21:29"},{"date":"2020-07-20","groups":[{"time":"09:03:00","height":"4.539"},{"time":"21:20:00","height":"4.775"}],"sunrise":"05:17","sunset":"21:28"},{"date":"2020-07-21","groups":[{"time":"09:44:00","height":"4.750"},{"time":"22:01:00","height":"4.980"}],"sunrise":"05:18","sunset":"21:27"},{"date":"2020-07-22","groups":[{"time":"10:25:00","height":"4.891"},{"time":"22:42:00","height":"5.107"}],"sunrise":"05:20","sunset":"21:25"},{"date":"2020-07-23","groups":[{"time":"11:06:00","height":"4.943"},{"time":"23:25:00","height":"5.139"}],"sunrise":"05:21","sunset":"21:24"},{"date":"2020-07-24","groups":[{"time":"11:53:00","height":"4.894"}],"sunrise":"05:23","sunset":"21:22"},{"date":"2020-07-25","groups":[{"time":"00:13:00","height":"5.067"},{"time":"12:42:00","height":"4.744"}],"sunrise":"05:24","sunset":"21:21"},{"date":"2020-07-26","groups":[{"time":"01:03:00","height":"4.893"},{"time":"13:33:00","height":"4.513"}],"sunrise":"05:26","sunset":"21:19"},{"date":"2020-07-27","groups":[{"time":"01:56:00","height":"4.636"},{"time":"14:29:00","height":"4.240"}],"sunrise":"05:27","sunset":"21:18"},{"date":"2020-07-28","groups":[{"time":"02:56:00","height":"4.335"},{"time":"15:33:00","height":"3.983"}],"sunrise":"05:29","sunset":"21:16"},{"date":"2020-07-29","groups":[{"time":"04:04:00","height":"4.057"},{"time":"16:46:00","height":"3.831"}],"sunrise":"05:30","sunset":"21:15"},{"date":"2020-07-30","groups":[{"time":"05:17:00","height":"3.901"},{"time":"17:55:00","height":"3.864"}],"sunrise":"05:32","sunset":"21:13"},{"date":"2020-07-31","groups":[{"time":"06:27:00","height":"3.932"},{"time":"19:02:00","height":"4.077"}],"sunrise":"05:34","sunset":"21:11"},{"date":"2020-08-01","groups":[{"time":"07:32:00","height":"4.118"},{"time":"20:00:00","height":"4.378"}],"sunrise":"05:35","sunset":"21:10"},{"date":"2020-08-02","groups":[{"time":"08:27:00","height":"4.357"},{"time":"20:48:00","height":"4.660"}],"sunrise":"05:37","sunset":"21:08"},{"date":"2020-08-03","groups":[{"time":"09:12:00","height":"4.559"},{"time":"21:31:00","height":"4.860"}],"sunrise":"05:38","sunset":"21:06"},{"date":"2020-08-04","groups":[{"time":"09:52:00","height":"4.681"},{"time":"22:08:00","height":"4.957"}],"sunrise":"05:40","sunset":"21:04"},{"date":"2020-08-05","groups":[{"time":"10:28:00","height":"4.716"},{"time":"22:43:00","height":"4.958"}],"sunrise":"05:42","sunset":"21:02"},{"date":"2020-08-06","groups":[{"time":"11:01:00","height":"4.671"},{"time":"23:17:00","height":"4.876"}],"sunrise":"05:43","sunset":"21:00"},{"date":"2020-08-07","groups":[{"time":"11:36:00","height":"4.558"},{"time":"23:53:00","height":"4.727"}],"sunrise":"05:45","sunset":"20:59"},{"date":"2020-08-08","groups":[{"time":"12:09:00","height":"4.392"}],"sunrise":"05:47","sunset":"20:57"},{"date":"2020-08-09","groups":[{"time":"00:29:00","height":"4.523"},{"time":"12:44:00","height":"4.181"}],"sunrise":"05:48","sunset":"20:55"},{"date":"2020-08-10","groups":[{"time":"01:04:00","height":"4.268"},{"time":"13:21:00","height":"3.933"}],"sunrise":"05:50","sunset":"20:53"},{"date":"2020-08-11","groups":[{"time":"01:44:00","height":"3.974"},{"time":"14:03:00","height":"3.663"}],"sunrise":"05:52","sunset":"20:51"},{"date":"2020-08-12","groups":[{"time":"02:31:00","height":"3.664"},{"time":"14:56:00","height":"3.408"}],"sunrise":"05:53","sunset":"20:49"},{"date":"2020-08-13","groups":[{"time":"03:33:00","height":"3.396"},{"time":"16:09:00","height":"3.249"}],"sunrise":"05:55","sunset":"20:47"},{"date":"2020-08-14","groups":[{"time":"04:53:00","height":"3.283"},{"time":"17:33:00","height":"3.321"}],"sunrise":"05:57","sunset":"20:45"},{"date":"2020-08-15","groups":[{"time":"06:10:00","height":"3.436"},{"time":"18:42:00","height":"3.646"}],"sunrise":"05:58","sunset":"20:42"},{"date":"2020-08-16","groups":[{"time":"07:12:00","height":"3.790"},{"time":"19:36:00","height":"4.089"}],"sunrise":"06:00","sunset":"20:40"},{"date":"2020-08-17","groups":[{"time":"08:02:00","height":"4.215"},{"time":"20:22:00","height":"4.543"}],"sunrise":"06:02","sunset":"20:38"},{"date":"2020-08-18","groups":[{"time":"08:47:00","height":"4.625"},{"time":"21:04:00","height":"4.947"}],"sunrise":"06:03","sunset":"20:36"},{"date":"2020-08-19","groups":[{"time":"09:29:00","height":"4.966"},{"time":"21:47:00","height":"5.265"}],"sunrise":"06:05","sunset":"20:34"},{"date":"2020-08-20","groups":[{"time":"10:10:00","height":"5.204"},{"time":"22:27:00","height":"5.467"}],"sunrise":"06:07","sunset":"20:32"},{"date":"2020-08-21","groups":[{"time":"10:50:00","height":"5.310"},{"time":"23:08:00","height":"5.526"}],"sunrise":"06:09","sunset":"20:30"},{"date":"2020-08-22","groups":[{"time":"11:33:00","height":"5.268"},{"time":"23:54:00","height":"5.424"}],"sunrise":"06:10","sunset":"20:27"},{"date":"2020-08-23","groups":[{"time":"12:19:00","height":"5.076"}],"sunrise":"06:12","sunset":"20:25"},{"date":"2020-08-24","groups":[{"time":"00:41:00","height":"5.161"},{"time":"13:07:00","height":"4.758"}],"sunrise":"06:14","sunset":"20:23"},{"date":"2020-08-25","groups":[{"time":"01:30:00","height":"4.765"},{"time":"13:59:00","height":"4.360"}],"sunrise":"06:15","sunset":"20:21"},{"date":"2020-08-26","groups":[{"time":"02:26:00","height":"4.292"},{"time":"14:59:00","height":"3.952"}],"sunrise":"06:17","sunset":"20:18"},{"date":"2020-08-27","groups":[{"time":"03:34:00","height":"3.836"},{"time":"16:18:00","height":"3.655"}],"sunrise":"06:19","sunset":"20:16"},{"date":"2020-08-28","groups":[{"time":"04:58:00","height":"3.561"},{"time":"17:41:00","height":"3.639"}],"sunrise":"06:20","sunset":"20:14"},{"date":"2020-08-29","groups":[{"time":"06:22:00","height":"3.619"},{"time":"18:57:00","height":"3.923"}],"sunrise":"06:22","sunset":"20:11"},{"date":"2020-08-30","groups":[{"time":"07:30:00","height":"3.929"},{"time":"19:54:00","height":"4.319"}],"sunrise":"06:24","sunset":"20:09"},{"date":"2020-08-31","groups":[{"time":"08:20:00","height":"4.280"},{"time":"20:38:00","height":"4.664"}],"sunrise":"06:26","sunset":"20:07"},{"date":"2020-09-01","groups":[{"time":"09:00:00","height":"4.557"},{"time":"21:16:00","height":"4.896"}],"sunrise":"06:27","sunset":"20:05"},{"date":"2020-09-02","groups":[{"time":"09:35:00","height":"4.731"},{"time":"21:50:00","height":"5.015"}],"sunrise":"06:29","sunset":"20:02"},{"date":"2020-09-03","groups":[{"time":"10:06:00","height":"4.810"},{"time":"22:21:00","height":"5.040"}],"sunrise":"06:31","sunset":"20:00"},{"date":"2020-09-04","groups":[{"time":"10:36:00","height":"4.811"},{"time":"22:50:00","height":"4.990"}],"sunrise":"06:32","sunset":"19:57"},{"date":"2020-09-05","groups":[{"time":"11:03:00","height":"4.746"},{"time":"23:19:00","height":"4.873"}],"sunrise":"06:34","sunset":"19:55"},{"date":"2020-09-06","groups":[{"time":"11:33:00","height":"4.620"},{"time":"23:51:00","height":"4.689"}],"sunrise":"06:36","sunset":"19:53"},{"date":"2020-09-07","groups":[{"time":"12:04:00","height":"4.433"}],"sunrise":"06:37","sunset":"19:50"},{"date":"2020-09-08","groups":[{"time":"00:22:00","height":"4.438"},{"time":"12:35:00","height":"4.188"}],"sunrise":"06:39","sunset":"19:48"},{"date":"2020-09-09","groups":[{"time":"00:57:00","height":"4.125"},{"time":"13:11:00","height":"3.895"}],"sunrise":"06:41","sunset":"19:46"},{"date":"2020-09-10","groups":[{"time":"01:38:00","height":"3.770"},{"time":"13:57:00","height":"3.577"}],"sunrise":"06:42","sunset":"19:43"},{"date":"2020-09-11","groups":[{"time":"02:33:00","height":"3.415"},{"time":"15:06:00","height":"3.296"}],"sunrise":"06:44","sunset":"19:41"},{"date":"2020-09-12","groups":[{"time":"03:58:00","height":"3.175"},{"time":"16:46:00","height":"3.235"}],"sunrise":"06:46","sunset":"19:38"},{"date":"2020-09-13","groups":[{"time":"05:38:00","height":"3.278"},{"time":"18:14:00","height":"3.565"}],"sunrise":"06:48","sunset":"19:36"},{"date":"2020-09-14","groups":[{"time":"06:50:00","height":"3.720"},{"time":"19:14:00","height":"4.106"}],"sunrise":"06:49","sunset":"19:34"},{"date":"2020-09-15","groups":[{"time":"07:43:00","height":"4.271"},{"time":"20:02:00","height":"4.672"}],"sunrise":"06:51","sunset":"19:31"},{"date":"2020-09-16","groups":[{"time":"08:28:00","height":"4.794"},{"time":"20:45:00","height":"5.170"}],"sunrise":"06:53","sunset":"19:29"},{"date":"2020-09-17","groups":[{"time":"09:09:00","height":"5.216"},{"time":"21:26:00","height":"5.545"}],"sunrise":"06:54","sunset":"19:26"},{"date":"2020-09-18","groups":[{"time":"09:50:00","height":"5.496"},{"time":"22:06:00","height":"5.760"}],"sunrise":"06:56","sunset":"19:24"},{"date":"2020-09-19","groups":[{"time":"10:29:00","height":"5.607"},{"time":"22:47:00","height":"5.786"}],"sunrise":"06:58","sunset":"19:22"},{"date":"2020-09-20","groups":[{"time":"11:09:00","height":"5.536"},{"time":"23:29:00","height":"5.611"}],"sunrise":"06:59","sunset":"19:19"},{"date":"2020-09-21","groups":[{"time":"11:53:00","height":"5.289"}],"sunrise":"07:01","sunset":"19:17"},{"date":"2020-09-22","groups":[{"time":"00:16:00","height":"5.247"},{"time":"12:39:00","height":"4.897"}],"sunrise":"07:03","sunset":"19:14"},{"date":"2020-09-23","groups":[{"time":"01:03:00","height":"4.739"},{"time":"13:29:00","height":"4.413"}],"sunrise":"07:05","sunset":"19:12"},{"date":"2020-09-24","groups":[{"time":"01:57:00","height":"4.158"},{"time":"14:31:00","height":"3.920"}],"sunrise":"07:06","sunset":"19:09"},{"date":"2020-09-25","groups":[{"time":"03:08:00","height":"3.623"},{"time":"15:54:00","height":"3.563"}],"sunrise":"07:08","sunset":"19:07"},{"date":"2020-09-26","groups":[{"time":"04:45:00","height":"3.335"},{"time":"17:30:00","height":"3.562"}],"sunrise":"07:10","sunset":"19:05"},{"date":"2020-09-27","groups":[{"time":"06:16:00","height":"3.486"},{"time":"18:47:00","height":"3.908"}],"sunrise":"07:11","sunset":"19:02"},{"date":"2020-09-28","groups":[{"time":"07:20:00","height":"3.887"},{"time":"19:39:00","height":"4.335"}],"sunrise":"07:13","sunset":"19:00"},{"date":"2020-09-29","groups":[{"time":"08:04:00","height":"4.284"},{"time":"20:19:00","height":"4.683"}],"sunrise":"07:15","sunset":"18:57"},{"date":"2020-09-30","groups":[{"time":"08:40:00","height":"4.586"},{"time":"20:54:00","height":"4.911"}],"sunrise":"07:17","sunset":"18:55"},{"date":"2020-10-01","groups":[{"time":"09:12:00","height":"4.778"},{"time":"21:25:00","height":"5.031"}],"sunrise":"07:18","sunset":"18:53"},{"date":"2020-10-02","groups":[{"time":"09:41:00","height":"4.881"},{"time":"21:54:00","height":"5.067"}],"sunrise":"07:20","sunset":"18:50"},{"date":"2020-10-03","groups":[{"time":"10:08:00","height":"4.912"},{"time":"22:22:00","height":"5.037"}],"sunrise":"07:22","sunset":"18:48"},{"date":"2020-10-04","groups":[{"time":"10:34:00","height":"4.882"},{"time":"22:49:00","height":"4.941"}],"sunrise":"07:24","sunset":"18:46"},{"date":"2020-10-05","groups":[{"time":"10:59:00","height":"4.788"},{"time":"23:16:00","height":"4.775"}],"sunrise":"07:25","sunset":"18:43"},{"date":"2020-10-06","groups":[{"time":"11:28:00","height":"4.626"},{"time":"23:46:00","height":"4.536"}],"sunrise":"07:27","sunset":"18:41"},{"date":"2020-10-07","groups":[{"time":"11:59:00","height":"4.395"}],"sunrise":"07:29","sunset":"18:39"},{"date":"2020-10-08","groups":[{"time":"00:20:00","height":"4.230"},{"time":"12:34:00","height":"4.105"}],"sunrise":"07:31","sunset":"18:36"},{"date":"2020-10-09","groups":[{"time":"01:00:00","height":"3.875"},{"time":"13:18:00","height":"3.774"}],"sunrise":"07:32","sunset":"18:34"},{"date":"2020-10-10","groups":[{"time":"01:53:00","height":"3.503"},{"time":"14:25:00","height":"3.456"}],"sunrise":"07:34","sunset":"18:32"},{"date":"2020-10-11","groups":[{"time":"03:19:00","height":"3.227"},{"time":"16:06:00","height":"3.337"}],"sunrise":"07:36","sunset":"18:29"},{"date":"2020-10-12","groups":[{"time":"05:06:00","height":"3.306"},{"time":"17:43:00","height":"3.639"}],"sunrise":"07:38","sunset":"18:27"},{"date":"2020-10-13","groups":[{"time":"06:25:00","height":"3.773"},{"time":"18:47:00","height":"4.201"}],"sunrise":"07:40","sunset":"18:25"},{"date":"2020-10-14","groups":[{"time":"07:18:00","height":"4.364"},{"time":"19:37:00","height":"4.794"}],"sunrise":"07:41","sunset":"18:22"},{"date":"2020-10-15","groups":[{"time":"08:03:00","height":"4.917"},{"time":"20:21:00","height":"5.303"}],"sunrise":"07:43","sunset":"18:20"},{"date":"2020-10-16","groups":[{"time":"08:46:00","height":"5.352"},{"time":"21:03:00","height":"5.664"}],"sunrise":"07:45","sunset":"18:18"},{"date":"2020-10-17","groups":[{"time":"09:27:00","height":"5.627"},{"time":"21:45:00","height":"5.841"}],"sunrise":"07:47","sunset":"18:16"},{"date":"2020-10-18","groups":[{"time":"10:06:00","height":"5.722"},{"time":"22:25:00","height":"5.813"}],"sunrise":"07:49","sunset":"18:14"},{"date":"2020-10-19","groups":[{"time":"10:46:00","height":"5.629"},{"time":"23:06:00","height":"5.581"}],"sunrise":"07:50","sunset":"18:11"},{"date":"2020-10-20","groups":[{"time":"11:28:00","height":"5.361"},{"time":"23:52:00","height":"5.168"}],"sunrise":"07:52","sunset":"18:09"},{"date":"2020-10-21","groups":[{"time":"12:16:00","height":"4.951"}],"sunrise":"07:54","sunset":"18:07"},{"date":"2020-10-22","groups":[{"time":"00:42:00","height":"4.631"},{"time":"13:07:00","height":"4.459"}],"sunrise":"07:56","sunset":"18:05"},{"date":"2020-10-23","groups":[{"time":"01:37:00","height":"4.052"},{"time":"14:08:00","height":"3.970"}],"sunrise":"07:58","sunset":"18:03"},{"date":"2020-10-24","groups":[{"time":"02:46:00","height":"3.545"},{"time":"15:31:00","height":"3.621"}],"sunrise":"08:00","sunset":"18:01"},{"date":"2020-10-25","groups":[{"time":"04:23:00","height":"3.294"},{"time":"17:06:00","height":"3.599"}],"sunrise":"08:01","sunset":"17:59"},{"date":"2020-10-26","groups":[{"time":"04:52:00","height":"3.442"},{"time":"17:19:00","height":"3.882"}],"sunrise":"07:03","sunset":"16:57"},{"date":"2020-10-27","groups":[{"time":"05:54:00","height":"3.814"},{"time":"18:11:00","height":"4.250"}],"sunrise":"07:05","sunset":"16:55"},{"date":"2020-10-28","groups":[{"time":"06:37:00","height":"4.192"},{"time":"18:51:00","height":"4.564"}],"sunrise":"07:07","sunset":"16:53"},{"date":"2020-10-29","groups":[{"time":"07:12:00","height":"4.494"},{"time":"19:26:00","height":"4.785"}],"sunrise":"07:09","sunset":"16:51"},{"date":"2020-10-30","groups":[{"time":"07:44:00","height":"4.707"},{"time":"19:57:00","height":"4.917"}],"sunrise":"07:11","sunset":"16:49"},{"date":"2020-10-31","groups":[{"time":"08:12:00","height":"4.841"},{"time":"20:26:00","height":"4.977"}],"sunrise":"07:13","sunset":"16:47"},{"date":"2020-11-01","groups":[{"time":"08:40:00","height":"4.911"},{"time":"20:55:00","height":"4.974"}],"sunrise":"07:14","sunset":"16:45"},{"date":"2020-11-02","groups":[{"time":"09:07:00","height":"4.920"},{"time":"21:22:00","height":"4.907"}],"sunrise":"07:16","sunset":"16:43"},{"date":"2020-11-03","groups":[{"time":"09:34:00","height":"4.863"},{"time":"21:51:00","height":"4.772"}],"sunrise":"07:18","sunset":"16:41"},{"date":"2020-11-04","groups":[{"time":"10:02:00","height":"4.735"},{"time":"22:21:00","height":"4.568"}],"sunrise":"07:20","sunset":"16:39"},{"date":"2020-11-05","groups":[{"time":"10:34:00","height":"4.538"},{"time":"22:57:00","height":"4.300"}],"sunrise":"07:22","sunset":"16:37"},{"date":"2020-11-06","groups":[{"time":"11:13:00","height":"4.279"},{"time":"23:41:00","height":"3.984"}],"sunrise":"07:24","sunset":"16:36"},{"date":"2020-11-07","groups":[{"time":"12:00:00","height":"3.982"}],"sunrise":"07:26","sunset":"16:34"},{"date":"2020-11-08","groups":[{"time":"00:37:00","height":"3.660"},{"time":"13:06:00","height":"3.707"}],"sunrise":"07:27","sunset":"16:32"},{"date":"2020-11-09","groups":[{"time":"01:57:00","height":"3.433"},{"time":"14:38:00","height":"3.605"}],"sunrise":"07:29","sunset":"16:30"},{"date":"2020-11-10","groups":[{"time":"03:35:00","height":"3.490"},{"time":"16:08:00","height":"3.825"}],"sunrise":"07:31","sunset":"16:29"},{"date":"2020-11-11","groups":[{"time":"04:51:00","height":"3.865"},{"time":"17:14:00","height":"4.281"}],"sunrise":"07:33","sunset":"16:27"},{"date":"2020-11-12","groups":[{"time":"05:48:00","height":"4.376"},{"time":"18:08:00","height":"4.785"}],"sunrise":"07:35","sunset":"16:26"},{"date":"2020-11-13","groups":[{"time":"06:36:00","height":"4.869"},{"time":"18:56:00","height":"5.218"}],"sunrise":"07:37","sunset":"16:24"},{"date":"2020-11-14","groups":[{"time":"07:21:00","height":"5.262"},{"time":"19:40:00","height":"5.515"}],"sunrise":"07:39","sunset":"16:23"},{"date":"2020-11-15","groups":[{"time":"08:03:00","height":"5.513"},{"time":"20:24:00","height":"5.642"}],"sunrise":"07:40","sunset":"16:21"},{"date":"2020-11-16","groups":[{"time":"08:46:00","height":"5.606"},{"time":"21:06:00","height":"5.592"}],"sunrise":"07:42","sunset":"16:20"},{"date":"2020-11-17","groups":[{"time":"09:28:00","height":"5.535"},{"time":"21:50:00","height":"5.370"}],"sunrise":"07:44","sunset":"16:18"},{"date":"2020-11-18","groups":[{"time":"10:10:00","height":"5.311"},{"time":"22:36:00","height":"5.004"}],"sunrise":"07:46","sunset":"16:17"},{"date":"2020-11-19","groups":[{"time":"10:58:00","height":"4.965"},{"time":"23:25:00","height":"4.545"}],"sunrise":"07:47","sunset":"16:16"},{"date":"2020-11-20","groups":[{"time":"11:50:00","height":"4.548"}],"sunrise":"07:49","sunset":"16:14"},{"date":"2020-11-21","groups":[{"time":"00:18:00","height":"4.065"},{"time":"12:48:00","height":"4.131"}],"sunrise":"07:51","sunset":"16:13"},{"date":"2020-11-22","groups":[{"time":"01:21:00","height":"3.645"},{"time":"13:58:00","height":"3.803"}],"sunrise":"07:53","sunset":"16:12"},{"date":"2020-11-23","groups":[{"time":"02:39:00","height":"3.388"},{"time":"15:20:00","height":"3.670"}],"sunrise":"07:54","sunset":"16:11"},{"date":"2020-11-24","groups":[{"time":"04:03:00","height":"3.393"},{"time":"16:32:00","height":"3.767"}],"sunrise":"07:56","sunset":"16:10"},{"date":"2020-11-25","groups":[{"time":"05:08:00","height":"3.617"},{"time":"17:28:00","height":"3.998"}],"sunrise":"07:58","sunset":"16:09"},{"date":"2020-11-26","groups":[{"time":"05:57:00","height":"3.920"},{"time":"18:14:00","height":"4.251"}],"sunrise":"07:59","sunset":"16:08"},{"date":"2020-11-27","groups":[{"time":"06:38:00","height":"4.213"},{"time":"18:53:00","height":"4.470"}],"sunrise":"08:01","sunset":"16:07"},{"date":"2020-11-28","groups":[{"time":"07:13:00","height":"4.459"},{"time":"19:28:00","height":"4.636"}],"sunrise":"08:02","sunset":"16:06"},{"date":"2020-11-29","groups":[{"time":"07:45:00","height":"4.647"},{"time":"20:00:00","height":"4.745"}],"sunrise":"08:04","sunset":"16:05"},{"date":"2020-11-30","groups":[{"time":"08:15:00","height":"4.777"},{"time":"20:31:00","height":"4.795"}],"sunrise":"08:05","sunset":"16:04"},{"date":"2020-12-01","groups":[{"time":"08:45:00","height":"4.845"},{"time":"21:03:00","height":"4.787"}],"sunrise":"08:07","sunset":"16:04"},{"date":"2020-12-02","groups":[{"time":"09:16:00","height":"4.850"},{"time":"21:34:00","height":"4.720"}],"sunrise":"08:08","sunset":"16:03"},{"date":"2020-12-03","groups":[{"time":"09:47:00","height":"4.788"},{"time":"22:07:00","height":"4.591"}],"sunrise":"08:10","sunset":"16:02"},{"date":"2020-12-04","groups":[{"time":"10:23:00","height":"4.661"},{"time":"22:47:00","height":"4.403"}],"sunrise":"08:11","sunset":"16:02"},{"date":"2020-12-05","groups":[{"time":"11:05:00","height":"4.477"},{"time":"23:34:00","height":"4.172"}],"sunrise":"08:12","sunset":"16:01"},{"date":"2020-12-06","groups":[{"time":"11:56:00","height":"4.262"}],"sunrise":"08:13","sunset":"16:01"},{"date":"2020-12-07","groups":[{"time":"00:30:00","height":"3.934"},{"time":"12:57:00","height":"4.062"}],"sunrise":"08:15","sunset":"16:01"},{"date":"2020-12-08","groups":[{"time":"01:39:00","height":"3.757"},{"time":"14:11:00","height":"3.957"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2020-12-09","groups":[{"time":"02:58:00","height":"3.732"},{"time":"15:31:00","height":"4.023"}],"sunrise":"08:17","sunset":"16:00"},{"date":"2020-12-10","groups":[{"time":"04:12:00","height":"3.911"},{"time":"16:38:00","height":"4.258"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2020-12-11","groups":[{"time":"05:14:00","height":"4.237"},{"time":"17:38:00","height":"4.574"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2020-12-12","groups":[{"time":"06:09:00","height":"4.606"},{"time":"18:31:00","height":"4.879"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2020-12-13","groups":[{"time":"06:59:00","height":"4.940"},{"time":"19:21:00","height":"5.110"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2020-12-14","groups":[{"time":"07:46:00","height":"5.190"},{"time":"20:09:00","height":"5.235"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2020-12-15","groups":[{"time":"08:32:00","height":"5.326"},{"time":"20:54:00","height":"5.234"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2020-12-16","groups":[{"time":"09:16:00","height":"5.338"},{"time":"21:38:00","height":"5.111"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2020-12-17","groups":[{"time":"09:58:00","height":"5.224"},{"time":"22:23:00","height":"4.878"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2020-12-18","groups":[{"time":"10:45:00","height":"4.998"},{"time":"23:10:00","height":"4.564"}],"sunrise":"08:25","sunset":"16:01"},{"date":"2020-12-19","groups":[{"time":"11:33:00","height":"4.697"},{"time":"23:58:00","height":"4.213"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2020-12-20","groups":[{"time":"12:23:00","height":"4.363"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2020-12-21","groups":[{"time":"00:49:00","height":"3.872"},{"time":"13:17:00","height":"4.043"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2020-12-22","groups":[{"time":"01:45:00","height":"3.585"},{"time":"14:19:00","height":"3.787"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2020-12-23","groups":[{"time":"02:52:00","height":"3.406"},{"time":"15:29:00","height":"3.651"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2020-12-24","groups":[{"time":"04:05:00","height":"3.392"},{"time":"16:32:00","height":"3.668"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2020-12-25","groups":[{"time":"05:05:00","height":"3.543"},{"time":"17:28:00","height":"3.810"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2020-12-26","groups":[{"time":"05:57:00","height":"3.792"},{"time":"18:16:00","height":"4.014"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2020-12-27","groups":[{"time":"06:40:00","height":"4.070"},{"time":"18:59:00","height":"4.228"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2020-12-28","groups":[{"time":"07:18:00","height":"4.334"},{"time":"19:36:00","height":"4.419"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2020-12-29","groups":[{"time":"07:54:00","height":"4.555"},{"time":"20:13:00","height":"4.570"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2020-12-30","groups":[{"time":"08:29:00","height":"4.724"},{"time":"20:48:00","height":"4.673"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2020-12-31","groups":[{"time":"09:03:00","height":"4.834"},{"time":"21:23:00","height":"4.724"}],"sunrise":"08:29","sunset":"16:10"},{"date":"2021-01-01","groups":[{"time":"09:38:00","height":"4.884"},{"time":"21:59:00","height":"4.714"}],"sunrise":"08:29","sunset":"16:11"},{"date":"2021-01-02","groups":[{"time":"10:16:00","height":"4.868"},{"time":"22:42:00","height":"4.639"}],"sunrise":"08:29","sunset":"16:12"},{"date":"2021-01-03","groups":[{"time":"11:00:00","height":"4.787"},{"time":"23:29:00","height":"4.500"}],"sunrise":"08:28","sunset":"16:13"},{"date":"2021-01-04","groups":[{"time":"11:48:00","height":"4.647"}],"sunrise":"08:28","sunset":"16:14"},{"date":"2021-01-05","groups":[{"time":"00:18:00","height":"4.313"},{"time":"12:42:00","height":"4.468"}],"sunrise":"08:28","sunset":"16:15"},{"date":"2021-01-06","groups":[{"time":"01:16:00","height":"4.110"},{"time":"13:43:00","height":"4.281"}],"sunrise":"08:27","sunset":"16:17"},{"date":"2021-01-07","groups":[{"time":"02:21:00","height":"3.943"},{"time":"14:52:00","height":"4.136"}],"sunrise":"08:27","sunset":"16:18"},{"date":"2021-01-08","groups":[{"time":"03:35:00","height":"3.880"},{"time":"16:04:00","height":"4.094"}],"sunrise":"08:26","sunset":"16:20"},{"date":"2021-01-09","groups":[{"time":"04:42:00","height":"3.974"},{"time":"17:10:00","height":"4.187"}],"sunrise":"08:26","sunset":"16:21"},{"date":"2021-01-10","groups":[{"time":"05:46:00","height":"4.207"},{"time":"18:13:00","height":"4.381"}],"sunrise":"08:25","sunset":"16:22"},{"date":"2021-01-11","groups":[{"time":"06:44:00","height":"4.516"},{"time":"19:11:00","height":"4.614"}],"sunrise":"08:24","sunset":"16:24"},{"date":"2021-01-12","groups":[{"time":"07:36:00","height":"4.819"},{"time":"20:02:00","height":"4.816"}],"sunrise":"08:23","sunset":"16:25"},{"date":"2021-01-13","groups":[{"time":"08:24:00","height":"5.053"},{"time":"20:48:00","height":"4.938"}],"sunrise":"08:23","sunset":"16:27"},{"date":"2021-01-14","groups":[{"time":"09:07:00","height":"5.180"},{"time":"21:30:00","height":"4.954"}],"sunrise":"08:22","sunset":"16:29"},{"date":"2021-01-15","groups":[{"time":"09:48:00","height":"5.184"},{"time":"22:09:00","height":"4.864"}],"sunrise":"08:21","sunset":"16:30"},{"date":"2021-01-16","groups":[{"time":"10:29:00","height":"5.071"},{"time":"22:51:00","height":"4.682"}],"sunrise":"08:20","sunset":"16:32"},{"date":"2021-01-17","groups":[{"time":"11:11:00","height":"4.864"},{"time":"23:31:00","height":"4.435"}],"sunrise":"08:19","sunset":"16:34"},{"date":"2021-01-18","groups":[{"time":"11:51:00","height":"4.592"}],"sunrise":"08:18","sunset":"16:35"},{"date":"2021-01-19","groups":[{"time":"00:11:00","height":"4.151"},{"time":"12:33:00","height":"4.283"}],"sunrise":"08:17","sunset":"16:37"},{"date":"2021-01-20","groups":[{"time":"00:52:00","height":"3.854"},{"time":"13:18:00","height":"3.962"}],"sunrise":"08:15","sunset":"16:39"},{"date":"2021-01-21","groups":[{"time":"01:40:00","height":"3.567"},{"time":"14:11:00","height":"3.658"}],"sunrise":"08:14","sunset":"16:41"},{"date":"2021-01-22","groups":[{"time":"02:38:00","height":"3.332"},{"time":"15:18:00","height":"3.431"}],"sunrise":"08:13","sunset":"16:42"},{"date":"2021-01-23","groups":[{"time":"03:55:00","height":"3.235"},{"time":"16:32:00","height":"3.378"}],"sunrise":"08:12","sunset":"16:44"},{"date":"2021-01-24","groups":[{"time":"05:09:00","height":"3.359"},{"time":"17:38:00","height":"3.528"}],"sunrise":"08:10","sunset":"16:46"},{"date":"2021-01-25","groups":[{"time":"06:07:00","height":"3.651"},{"time":"18:31:00","height":"3.802"}],"sunrise":"08:09","sunset":"16:48"},{"date":"2021-01-26","groups":[{"time":"06:55:00","height":"4.006"},{"time":"19:16:00","height":"4.116"}],"sunrise":"08:08","sunset":"16:50"},{"date":"2021-01-27","groups":[{"time":"07:36:00","height":"4.355"},{"time":"19:57:00","height":"4.414"}],"sunrise":"08:06","sunset":"16:51"},{"date":"2021-01-28","groups":[{"time":"08:14:00","height":"4.663"},{"time":"20:35:00","height":"4.670"}],"sunrise":"08:05","sunset":"16:53"},{"date":"2021-01-29","groups":[{"time":"08:50:00","height":"4.914"},{"time":"21:12:00","height":"4.865"}],"sunrise":"08:03","sunset":"16:55"},{"date":"2021-01-30","groups":[{"time":"09:27:00","height":"5.093"},{"time":"21:49:00","height":"4.979"}],"sunrise":"08:02","sunset":"16:57"},{"date":"2021-01-31","groups":[{"time":"10:05:00","height":"5.185"},{"time":"22:29:00","height":"4.994"}],"sunrise":"08:00","sunset":"16:59"},{"date":"2021-02-01","groups":[{"time":"10:49:00","height":"5.172"},{"time":"23:13:00","height":"4.897"}],"sunrise":"07:58","sunset":"17:01"},{"date":"2021-02-02","groups":[{"time":"11:33:00","height":"5.043"},{"time":"23:59:00","height":"4.693"}],"sunrise":"07:57","sunset":"17:03"},{"date":"2021-02-03","groups":[{"time":"12:21:00","height":"4.804"}],"sunrise":"07:55","sunset":"17:05"},{"date":"2021-02-04","groups":[{"time":"00:48:00","height":"4.406"},{"time":"13:13:00","height":"4.478"}],"sunrise":"07:53","sunset":"17:07"},{"date":"2021-02-05","groups":[{"time":"01:45:00","height":"4.081"},{"time":"14:15:00","height":"4.116"}],"sunrise":"07:51","sunset":"17:09"},{"date":"2021-02-06","groups":[{"time":"02:54:00","height":"3.796"},{"time":"15:32:00","height":"3.824"}],"sunrise":"07:50","sunset":"17:11"},{"date":"2021-02-07","groups":[{"time":"04:14:00","height":"3.684"},{"time":"16:51:00","height":"3.746"}],"sunrise":"07:48","sunset":"17:12"},{"date":"2021-02-08","groups":[{"time":"05:31:00","height":"3.840"},{"time":"18:06:00","height":"3.931"}],"sunrise":"07:46","sunset":"17:14"},{"date":"2021-02-09","groups":[{"time":"06:38:00","height":"4.195"},{"time":"19:08:00","height":"4.258"}],"sunrise":"07:44","sunset":"17:16"},{"date":"2021-02-10","groups":[{"time":"07:32:00","height":"4.592"},{"time":"19:58:00","height":"4.577"}],"sunrise":"07:42","sunset":"17:18"},{"date":"2021-02-11","groups":[{"time":"08:17:00","height":"4.913"},{"time":"20:39:00","height":"4.805"}],"sunrise":"07:40","sunset":"17:20"},{"date":"2021-02-12","groups":[{"time":"08:57:00","height":"5.109"},{"time":"21:17:00","height":"4.916"}],"sunrise":"07:38","sunset":"17:22"},{"date":"2021-02-13","groups":[{"time":"09:33:00","height":"5.175"},{"time":"21:51:00","height":"4.915"}],"sunrise":"07:36","sunset":"17:24"},{"date":"2021-02-14","groups":[{"time":"10:07:00","height":"5.124"},{"time":"22:24:00","height":"4.816"}],"sunrise":"07:34","sunset":"17:26"},{"date":"2021-02-15","groups":[{"time":"10:42:00","height":"4.975"},{"time":"22:58:00","height":"4.640"}],"sunrise":"07:32","sunset":"17:28"},{"date":"2021-02-16","groups":[{"time":"11:17:00","height":"4.750"},{"time":"23:31:00","height":"4.405"}],"sunrise":"07:30","sunset":"17:30"},{"date":"2021-02-17","groups":[{"time":"11:50:00","height":"4.462"}],"sunrise":"07:28","sunset":"17:32"},{"date":"2021-02-18","groups":[{"time":"00:04:00","height":"4.122"},{"time":"12:26:00","height":"4.124"}],"sunrise":"07:26","sunset":"17:34"},{"date":"2021-02-19","groups":[{"time":"00:41:00","height":"3.802"},{"time":"13:07:00","height":"3.751"}],"sunrise":"07:24","sunset":"17:36"},{"date":"2021-02-20","groups":[{"time":"01:27:00","height":"3.467"},{"time":"14:01:00","height":"3.380"}],"sunrise":"07:22","sunset":"17:38"},{"date":"2021-02-21","groups":[{"time":"02:31:00","height":"3.173"},{"time":"15:20:00","height":"3.112"}],"sunrise":"07:20","sunset":"17:39"},{"date":"2021-02-22","groups":[{"time":"04:05:00","height":"3.073"},{"time":"16:54:00","height":"3.141"}],"sunrise":"07:18","sunset":"17:41"},{"date":"2021-02-23","groups":[{"time":"05:32:00","height":"3.324"},{"time":"18:05:00","height":"3.475"}],"sunrise":"07:15","sunset":"17:43"},{"date":"2021-02-24","groups":[{"time":"06:30:00","height":"3.769"},{"time":"18:56:00","height":"3.924"}],"sunrise":"07:13","sunset":"17:45"},{"date":"2021-02-25","groups":[{"time":"07:15:00","height":"4.249"},{"time":"19:38:00","height":"4.376"}],"sunrise":"07:11","sunset":"17:47"},{"date":"2021-02-26","groups":[{"time":"07:54:00","height":"4.694"},{"time":"20:17:00","height":"4.775"}],"sunrise":"07:09","sunset":"17:49"},{"date":"2021-02-27","groups":[{"time":"08:33:00","height":"5.070"},{"time":"20:54:00","height":"5.087"}],"sunrise":"07:07","sunset":"17:51"},{"date":"2021-02-28","groups":[{"time":"09:10:00","height":"5.347"},{"time":"21:32:00","height":"5.282"}],"sunrise":"07:04","sunset":"17:53"},{"date":"2021-03-01","groups":[{"time":"09:48:00","height":"5.495"},{"time":"22:09:00","height":"5.334"}],"sunrise":"07:02","sunset":"17:55"},{"date":"2021-03-02","groups":[{"time":"10:28:00","height":"5.488"},{"time":"22:51:00","height":"5.229"}],"sunrise":"07:00","sunset":"17:56"},{"date":"2021-03-03","groups":[{"time":"11:11:00","height":"5.310"},{"time":"23:35:00","height":"4.972"}],"sunrise":"06:57","sunset":"17:58"},{"date":"2021-03-04","groups":[{"time":"11:57:00","height":"4.970"}],"sunrise":"06:55","sunset":"18:00"},{"date":"2021-03-05","groups":[{"time":"00:21:00","height":"4.594"},{"time":"12:46:00","height":"4.504"}],"sunrise":"06:53","sunset":"18:02"},{"date":"2021-03-06","groups":[{"time":"01:14:00","height":"4.144"},{"time":"13:46:00","height":"3.981"}],"sunrise":"06:51","sunset":"18:04"},{"date":"2021-03-07","groups":[{"time":"02:24:00","height":"3.714"},{"time":"15:07:00","height":"3.541"}],"sunrise":"06:48","sunset":"18:06"},{"date":"2021-03-08","groups":[{"time":"03:54:00","height":"3.490"},{"time":"16:40:00","height":"3.419"}],"sunrise":"06:46","sunset":"18:08"},{"date":"2021-03-09","groups":[{"time":"05:24:00","height":"3.656"},{"time":"18:04:00","height":"3.696"}],"sunrise":"06:44","sunset":"18:09"},{"date":"2021-03-10","groups":[{"time":"06:32:00","height":"4.084"},{"time":"19:02:00","height":"4.123"}],"sunrise":"06:41","sunset":"18:11"},{"date":"2021-03-11","groups":[{"time":"07:22:00","height":"4.524"},{"time":"19:46:00","height":"4.498"}],"sunrise":"06:39","sunset":"18:13"},{"date":"2021-03-12","groups":[{"time":"08:03:00","height":"4.853"},{"time":"20:23:00","height":"4.758"}],"sunrise":"06:37","sunset":"18:15"},{"date":"2021-03-13","groups":[{"time":"08:38:00","height":"5.046"},{"time":"20:56:00","height":"4.897"}],"sunrise":"06:34","sunset":"18:17"},{"date":"2021-03-14","groups":[{"time":"09:11:00","height":"5.117"},{"time":"21:26:00","height":"4.934"}],"sunrise":"06:32","sunset":"18:18"},{"date":"2021-03-15","groups":[{"time":"09:41:00","height":"5.091"},{"time":"21:54:00","height":"4.886"}],"sunrise":"06:29","sunset":"18:20"},{"date":"2021-03-16","groups":[{"time":"10:10:00","height":"4.981"},{"time":"22:23:00","height":"4.765"}],"sunrise":"06:27","sunset":"18:22"},{"date":"2021-03-17","groups":[{"time":"10:41:00","height":"4.797"},{"time":"22:53:00","height":"4.575"}],"sunrise":"06:25","sunset":"18:24"},{"date":"2021-03-18","groups":[{"time":"11:11:00","height":"4.539"},{"time":"23:23:00","height":"4.322"}],"sunrise":"06:22","sunset":"18:26"},{"date":"2021-03-19","groups":[{"time":"11:44:00","height":"4.214"},{"time":"23:56:00","height":"4.012"}],"sunrise":"06:20","sunset":"18:28"},{"date":"2021-03-20","groups":[{"time":"12:20:00","height":"3.835"}],"sunrise":"06:18","sunset":"18:29"},{"date":"2021-03-21","groups":[{"time":"00:35:00","height":"3.659"},{"time":"13:06:00","height":"3.429"}],"sunrise":"06:15","sunset":"18:31"},{"date":"2021-03-22","groups":[{"time":"01:29:00","height":"3.300"},{"time":"14:17:00","height":"3.072"}],"sunrise":"06:13","sunset":"18:33"},{"date":"2021-03-23","groups":[{"time":"02:59:00","height":"3.058"},{"time":"16:04:00","height":"2.982"}],"sunrise":"06:10","sunset":"18:35"},{"date":"2021-03-24","groups":[{"time":"04:48:00","height":"3.202"},{"time":"17:33:00","height":"3.330"}],"sunrise":"06:08","sunset":"18:36"},{"date":"2021-03-25","groups":[{"time":"05:58:00","height":"3.682"},{"time":"18:28:00","height":"3.866"}],"sunrise":"06:06","sunset":"18:38"},{"date":"2021-03-26","groups":[{"time":"06:46:00","height":"4.243"},{"time":"19:12:00","height":"4.416"}],"sunrise":"06:03","sunset":"18:40"},{"date":"2021-03-27","groups":[{"time":"07:28:00","height":"4.772"},{"time":"19:51:00","height":"4.898"}],"sunrise":"06:01","sunset":"18:42"},{"date":"2021-03-28","groups":[{"time":"08:08:00","height":"5.211"},{"time":"20:30:00","height":"5.266"}],"sunrise":"05:58","sunset":"18:44"},{"date":"2021-03-29","groups":[{"time":"09:47:00","height":"5.520"},{"time":"22:08:00","height":"5.487"}],"sunrise":"06:56","sunset":"19:45"},{"date":"2021-03-30","groups":[{"time":"10:26:00","height":"5.665"},{"time":"22:46:00","height":"5.537"}],"sunrise":"06:54","sunset":"19:47"},{"date":"2021-03-31","groups":[{"time":"11:05:00","height":"5.616"},{"time":"23:27:00","height":"5.404"}],"sunrise":"06:51","sunset":"19:49"},{"date":"2021-04-01","groups":[{"time":"11:49:00","height":"5.368"}],"sunrise":"06:49","sunset":"19:51"},{"date":"2021-04-02","groups":[{"time":"00:11:00","height":"5.104"},{"time":"12:35:00","height":"4.945"}],"sunrise":"06:47","sunset":"19:53"},{"date":"2021-04-03","groups":[{"time":"00:58:00","height":"4.672"},{"time":"13:25:00","height":"4.400"}],"sunrise":"06:44","sunset":"19:54"},{"date":"2021-04-04","groups":[{"time":"01:53:00","height":"4.170"},{"time":"14:27:00","height":"3.825"}],"sunrise":"06:42","sunset":"19:56"},{"date":"2021-04-05","groups":[{"time":"03:05:00","height":"3.706"},{"time":"15:51:00","height":"3.380"}],"sunrise":"06:39","sunset":"19:58"},{"date":"2021-04-06","groups":[{"time":"04:41:00","height":"3.482"},{"time":"17:31:00","height":"3.314"}],"sunrise":"06:37","sunset":"20:00"},{"date":"2021-04-07","groups":[{"time":"06:09:00","height":"3.665"},{"time":"18:51:00","height":"3.639"}],"sunrise":"06:35","sunset":"20:01"},{"date":"2021-04-08","groups":[{"time":"07:13:00","height":"4.072"},{"time":"19:44:00","height":"4.064"}],"sunrise":"06:32","sunset":"20:03"},{"date":"2021-04-09","groups":[{"time":"08:00:00","height":"4.461"},{"time":"20:24:00","height":"4.420"}],"sunrise":"06:30","sunset":"20:05"},{"date":"2021-04-10","groups":[{"time":"08:39:00","height":"4.740"},{"time":"20:59:00","height":"4.663"}],"sunrise":"06:28","sunset":"20:07"},{"date":"2021-04-11","groups":[{"time":"09:13:00","height":"4.898"},{"time":"21:30:00","height":"4.804"}],"sunrise":"06:26","sunset":"20:08"},{"date":"2021-04-12","groups":[{"time":"09:44:00","height":"4.963"},{"time":"21:58:00","height":"4.863"}],"sunrise":"06:23","sunset":"20:10"},{"date":"2021-04-13","groups":[{"time":"10:13:00","height":"4.954"},{"time":"22:25:00","height":"4.855"}],"sunrise":"06:21","sunset":"20:12"},{"date":"2021-04-14","groups":[{"time":"10:40:00","height":"4.878"},{"time":"22:52:00","height":"4.781"}],"sunrise":"06:19","sunset":"20:14"},{"date":"2021-04-15","groups":[{"time":"11:08:00","height":"4.732"},{"time":"23:18:00","height":"4.638"}],"sunrise":"06:16","sunset":"20:16"},{"date":"2021-04-16","groups":[{"time":"11:38:00","height":"4.513"},{"time":"23:50:00","height":"4.426"}],"sunrise":"06:14","sunset":"20:17"},{"date":"2021-04-17","groups":[{"time":"12:10:00","height":"4.227"}],"sunrise":"06:12","sunset":"20:19"},{"date":"2021-04-18","groups":[{"time":"00:22:00","height":"4.153"},{"time":"12:47:00","height":"3.887"}],"sunrise":"06:10","sunset":"20:21"},{"date":"2021-04-19","groups":[{"time":"01:01:00","height":"3.832"},{"time":"13:33:00","height":"3.521"}],"sunrise":"06:07","sunset":"20:23"},{"date":"2021-04-20","groups":[{"time":"01:55:00","height":"3.499"},{"time":"14:41:00","height":"3.195"}],"sunrise":"06:05","sunset":"20:24"},{"date":"2021-04-21","groups":[{"time":"03:18:00","height":"3.258"},{"time":"16:20:00","height":"3.090"}],"sunrise":"06:03","sunset":"20:26"},{"date":"2021-04-22","groups":[{"time":"05:01:00","height":"3.331"},{"time":"17:51:00","height":"3.381"}],"sunrise":"06:01","sunset":"20:28"},{"date":"2021-04-23","groups":[{"time":"06:16:00","height":"3.751"},{"time":"18:51:00","height":"3.902"}],"sunrise":"05:59","sunset":"20:30"},{"date":"2021-04-24","groups":[{"time":"07:11:00","height":"4.294"},{"time":"19:39:00","height":"4.453"}],"sunrise":"05:57","sunset":"20:32"},{"date":"2021-04-25","groups":[{"time":"07:57:00","height":"4.815"},{"time":"20:22:00","height":"4.936"}],"sunrise":"05:55","sunset":"20:33"},{"date":"2021-04-26","groups":[{"time":"08:39:00","height":"5.238"},{"time":"21:03:00","height":"5.298"}],"sunrise":"05:52","sunset":"20:35"},{"date":"2021-04-27","groups":[{"time":"09:21:00","height":"5.515"},{"time":"21:44:00","height":"5.507"}],"sunrise":"05:50","sunset":"20:37"},{"date":"2021-04-28","groups":[{"time":"10:03:00","height":"5.615"},{"time":"22:24:00","height":"5.544"}],"sunrise":"05:48","sunset":"20:39"},{"date":"2021-04-29","groups":[{"time":"10:44:00","height":"5.521"},{"time":"23:05:00","height":"5.405"}],"sunrise":"05:46","sunset":"20:40"},{"date":"2021-04-30","groups":[{"time":"11:28:00","height":"5.238"},{"time":"23:52:00","height":"5.106"}],"sunrise":"05:44","sunset":"20:42"},{"date":"2021-05-01","groups":[{"time":"12:18:00","height":"4.803"}],"sunrise":"05:42","sunset":"20:44"},{"date":"2021-05-02","groups":[{"time":"00:43:00","height":"4.692"},{"time":"13:12:00","height":"4.284"}],"sunrise":"05:40","sunset":"20:46"},{"date":"2021-05-03","groups":[{"time":"01:40:00","height":"4.231"},{"time":"14:15:00","height":"3.775"}],"sunrise":"05:38","sunset":"20:47"},{"date":"2021-05-04","groups":[{"time":"02:51:00","height":"3.828"},{"time":"15:35:00","height":"3.415"}],"sunrise":"05:36","sunset":"20:49"},{"date":"2021-05-05","groups":[{"time":"04:18:00","height":"3.632"},{"time":"17:06:00","height":"3.362"}],"sunrise":"05:35","sunset":"20:51"},{"date":"2021-05-06","groups":[{"time":"05:38:00","height":"3.731"},{"time":"18:18:00","height":"3.599"}],"sunrise":"05:33","sunset":"20:53"},{"date":"2021-05-07","groups":[{"time":"06:41:00","height":"4.004"},{"time":"19:11:00","height":"3.934"}],"sunrise":"05:31","sunset":"20:54"},{"date":"2021-05-08","groups":[{"time":"07:28:00","height":"4.287"},{"time":"19:52:00","height":"4.233"}],"sunrise":"05:29","sunset":"20:56"},{"date":"2021-05-09","groups":[{"time":"08:08:00","height":"4.504"},{"time":"20:28:00","height":"4.458"}],"sunrise":"05:27","sunset":"20:58"},{"date":"2021-05-10","groups":[{"time":"08:42:00","height":"4.643"},{"time":"20:59:00","height":"4.610"}],"sunrise":"05:26","sunset":"20:59"},{"date":"2021-05-11","groups":[{"time":"09:14:00","height":"4.717"},{"time":"21:29:00","height":"4.700"}],"sunrise":"05:24","sunset":"21:01"},{"date":"2021-05-12","groups":[{"time":"09:45:00","height":"4.735"},{"time":"21:58:00","height":"4.733"}],"sunrise":"05:22","sunset":"21:03"},{"date":"2021-05-13","groups":[{"time":"10:14:00","height":"4.696"},{"time":"22:25:00","height":"4.706"}],"sunrise":"05:21","sunset":"21:04"},{"date":"2021-05-14","groups":[{"time":"10:42:00","height":"4.597"},{"time":"22:54:00","height":"4.615"}],"sunrise":"05:19","sunset":"21:06"},{"date":"2021-05-15","groups":[{"time":"11:13:00","height":"4.435"},{"time":"23:25:00","height":"4.461"}],"sunrise":"05:17","sunset":"21:07"},{"date":"2021-05-16","groups":[{"time":"11:49:00","height":"4.216"}],"sunrise":"05:16","sunset":"21:09"},{"date":"2021-05-17","groups":[{"time":"00:02:00","height":"4.252"},{"time":"12:29:00","height":"3.955"}],"sunrise":"05:14","sunset":"21:11"},{"date":"2021-05-18","groups":[{"time":"00:45:00","height":"4.004"},{"time":"13:17:00","height":"3.680"}],"sunrise":"05:13","sunset":"21:12"},{"date":"2021-05-19","groups":[{"time":"01:40:00","height":"3.757"},{"time":"14:22:00","height":"3.450"}],"sunrise":"05:11","sunset":"21:14"},{"date":"2021-05-20","groups":[{"time":"02:54:00","height":"3.592"},{"time":"15:45:00","height":"3.380"}],"sunrise":"05:10","sunset":"21:15"},{"date":"2021-05-21","groups":[{"time":"04:19:00","height":"3.634"},{"time":"17:06:00","height":"3.570"}],"sunrise":"05:09","sunset":"21:17"},{"date":"2021-05-22","groups":[{"time":"05:33:00","height":"3.916"},{"time":"18:10:00","height":"3.961"}],"sunrise":"05:07","sunset":"21:18"},{"date":"2021-05-23","groups":[{"time":"06:32:00","height":"4.329"},{"time":"19:03:00","height":"4.413"}],"sunrise":"05:06","sunset":"21:20"},{"date":"2021-05-24","groups":[{"time":"07:24:00","height":"4.746"},{"time":"19:51:00","height":"4.828"}],"sunrise":"05:05","sunset":"21:21"},{"date":"2021-05-25","groups":[{"time":"08:12:00","height":"5.084"},{"time":"20:36:00","height":"5.147"}],"sunrise":"05:04","sunset":"21:22"},{"date":"2021-05-26","groups":[{"time":"08:58:00","height":"5.298"},{"time":"21:21:00","height":"5.339"}],"sunrise":"05:02","sunset":"21:24"},{"date":"2021-05-27","groups":[{"time":"09:44:00","height":"5.363"},{"time":"22:06:00","height":"5.389"}],"sunrise":"05:01","sunset":"21:25"},{"date":"2021-05-28","groups":[{"time":"10:29:00","height":"5.271"},{"time":"22:50:00","height":"5.294"}],"sunrise":"05:00","sunset":"21:26"},{"date":"2021-05-29","groups":[{"time":"11:14:00","height":"5.033"},{"time":"23:38:00","height":"5.067"}],"sunrise":"04:59","sunset":"21:28"},{"date":"2021-05-30","groups":[{"time":"12:07:00","height":"4.682"}],"sunrise":"04:58","sunset":"21:29"},{"date":"2021-05-31","groups":[{"time":"00:31:00","height":"4.743"},{"time":"13:01:00","height":"4.277"}],"sunrise":"04:57","sunset":"21:30"},{"date":"2021-06-01","groups":[{"time":"01:27:00","height":"4.381"},{"time":"14:00:00","height":"3.885"}],"sunrise":"04:56","sunset":"21:31"},{"date":"2021-06-02","groups":[{"time":"02:30:00","height":"4.049"},{"time":"15:06:00","height":"3.585"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2021-06-03","groups":[{"time":"03:40:00","height":"3.822"},{"time":"16:22:00","height":"3.453"}],"sunrise":"04:55","sunset":"21:34"},{"date":"2021-06-04","groups":[{"time":"04:53:00","height":"3.758"},{"time":"17:29:00","height":"3.515"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2021-06-05","groups":[{"time":"05:54:00","height":"3.840"},{"time":"18:25:00","height":"3.706"}],"sunrise":"04:54","sunset":"21:36"},{"date":"2021-06-06","groups":[{"time":"06:46:00","height":"3.997"},{"time":"19:12:00","height":"3.939"}],"sunrise":"04:53","sunset":"21:37"},{"date":"2021-06-07","groups":[{"time":"07:30:00","height":"4.164"},{"time":"19:53:00","height":"4.160"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2021-06-08","groups":[{"time":"08:10:00","height":"4.309"},{"time":"20:29:00","height":"4.345"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2021-06-09","groups":[{"time":"08:46:00","height":"4.419"},{"time":"21:02:00","height":"4.485"}],"sunrise":"04:51","sunset":"21:39"},{"date":"2021-06-10","groups":[{"time":"09:19:00","height":"4.486"},{"time":"21:35:00","height":"4.573"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2021-06-11","groups":[{"time":"09:52:00","height":"4.506"},{"time":"22:06:00","height":"4.609"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2021-06-12","groups":[{"time":"10:24:00","height":"4.478"},{"time":"22:38:00","height":"4.591"}],"sunrise":"04:50","sunset":"21:41"},{"date":"2021-06-13","groups":[{"time":"10:57:00","height":"4.404"},{"time":"23:11:00","height":"4.521"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2021-06-14","groups":[{"time":"11:36:00","height":"4.285"},{"time":"23:51:00","height":"4.404"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2021-06-15","groups":[{"time":"12:19:00","height":"4.129"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2021-06-16","groups":[{"time":"00:36:00","height":"4.255"},{"time":"13:08:00","height":"3.956"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2021-06-17","groups":[{"time":"01:29:00","height":"4.100"},{"time":"14:05:00","height":"3.801"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2021-06-18","groups":[{"time":"02:31:00","height":"3.981"},{"time":"15:12:00","height":"3.719"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2021-06-19","groups":[{"time":"03:41:00","height":"3.950"},{"time":"16:26:00","height":"3.764"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2021-06-20","groups":[{"time":"04:53:00","height":"4.044"},{"time":"17:31:00","height":"3.957"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2021-06-21","groups":[{"time":"05:56:00","height":"4.250"},{"time":"18:30:00","height":"4.250"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2021-06-22","groups":[{"time":"06:55:00","height":"4.507"},{"time":"19:25:00","height":"4.570"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2021-06-23","groups":[{"time":"07:49:00","height":"4.750"},{"time":"20:16:00","height":"4.859"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2021-06-24","groups":[{"time":"08:41:00","height":"4.935"},{"time":"21:05:00","height":"5.076"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2021-06-25","groups":[{"time":"09:31:00","height":"5.030"},{"time":"21:53:00","height":"5.193"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2021-06-26","groups":[{"time":"10:19:00","height":"5.019"},{"time":"22:39:00","height":"5.194"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2021-06-27","groups":[{"time":"11:04:00","height":"4.898"},{"time":"23:27:00","height":"5.077"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2021-06-28","groups":[{"time":"11:54:00","height":"4.679"}],"sunrise":"04:53","sunset":"21:45"},{"date":"2021-06-29","groups":[{"time":"00:17:00","height":"4.860"},{"time":"12:44:00","height":"4.394"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2021-06-30","groups":[{"time":"01:07:00","height":"4.576"},{"time":"13:33:00","height":"4.084"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2021-07-01","groups":[{"time":"01:59:00","height":"4.267"},{"time":"14:25:00","height":"3.791"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2021-07-02","groups":[{"time":"02:54:00","height":"3.976"},{"time":"15:23:00","height":"3.558"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2021-07-03","groups":[{"time":"03:54:00","height":"3.749"},{"time":"16:30:00","height":"3.431"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2021-07-04","groups":[{"time":"04:59:00","height":"3.633"},{"time":"17:32:00","height":"3.449"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2021-07-05","groups":[{"time":"05:58:00","height":"3.650"},{"time":"18:28:00","height":"3.599"}],"sunrise":"04:59","sunset":"21:43"},{"date":"2021-07-06","groups":[{"time":"06:52:00","height":"3.771"},{"time":"19:18:00","height":"3.826"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2021-07-07","groups":[{"time":"07:40:00","height":"3.948"},{"time":"20:01:00","height":"4.071"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2021-07-08","groups":[{"time":"08:22:00","height":"4.130"},{"time":"20:40:00","height":"4.293"}],"sunrise":"05:02","sunset":"21:41"},{"date":"2021-07-09","groups":[{"time":"09:00:00","height":"4.288"},{"time":"21:16:00","height":"4.472"}],"sunrise":"05:03","sunset":"21:40"},{"date":"2021-07-10","groups":[{"time":"09:36:00","height":"4.410"},{"time":"21:51:00","height":"4.603"}],"sunrise":"05:04","sunset":"21:39"},{"date":"2021-07-11","groups":[{"time":"10:11:00","height":"4.492"},{"time":"22:25:00","height":"4.685"}],"sunrise":"05:05","sunset":"21:38"},{"date":"2021-07-12","groups":[{"time":"10:46:00","height":"4.531"},{"time":"23:00:00","height":"4.718"}],"sunrise":"05:06","sunset":"21:37"},{"date":"2021-07-13","groups":[{"time":"11:24:00","height":"4.520"},{"time":"23:41:00","height":"4.697"}],"sunrise":"05:07","sunset":"21:36"},{"date":"2021-07-14","groups":[{"time":"12:07:00","height":"4.453"}],"sunrise":"05:08","sunset":"21:35"},{"date":"2021-07-15","groups":[{"time":"00:25:00","height":"4.619"},{"time":"12:52:00","height":"4.331"}],"sunrise":"05:10","sunset":"21:34"},{"date":"2021-07-16","groups":[{"time":"01:12:00","height":"4.492"},{"time":"13:42:00","height":"4.171"}],"sunrise":"05:11","sunset":"21:33"},{"date":"2021-07-17","groups":[{"time":"02:05:00","height":"4.330"},{"time":"14:39:00","height":"4.003"}],"sunrise":"05:12","sunset":"21:32"},{"date":"2021-07-18","groups":[{"time":"03:06:00","height":"4.160"},{"time":"15:45:00","height":"3.875"}],"sunrise":"05:14","sunset":"21:31"},{"date":"2021-07-19","groups":[{"time":"04:16:00","height":"4.033"},{"time":"16:56:00","height":"3.855"}],"sunrise":"05:15","sunset":"21:30"},{"date":"2021-07-20","groups":[{"time":"05:26:00","height":"4.017"},{"time":"18:04:00","height":"3.994"}],"sunrise":"05:16","sunset":"21:28"},{"date":"2021-07-21","groups":[{"time":"06:34:00","height":"4.141"},{"time":"19:08:00","height":"4.265"}],"sunrise":"05:18","sunset":"21:27"},{"date":"2021-07-22","groups":[{"time":"07:37:00","height":"4.365"},{"time":"20:06:00","height":"4.594"}],"sunrise":"05:19","sunset":"21:26"},{"date":"2021-07-23","groups":[{"time":"08:34:00","height":"4.616"},{"time":"20:58:00","height":"4.898"}],"sunrise":"05:21","sunset":"21:24"},{"date":"2021-07-24","groups":[{"time":"09:25:00","height":"4.818"},{"time":"21:46:00","height":"5.114"}],"sunrise":"05:22","sunset":"21:23"},{"date":"2021-07-25","groups":[{"time":"10:10:00","height":"4.924"},{"time":"22:29:00","height":"5.207"}],"sunrise":"05:24","sunset":"21:21"},{"date":"2021-07-26","groups":[{"time":"10:52:00","height":"4.914"},{"time":"23:11:00","height":"5.168"}],"sunrise":"05:25","sunset":"21:20"},{"date":"2021-07-27","groups":[{"time":"11:34:00","height":"4.792"},{"time":"23:54:00","height":"5.008"}],"sunrise":"05:27","sunset":"21:18"},{"date":"2021-07-28","groups":[{"time":"12:16:00","height":"4.580"}],"sunrise":"05:28","sunset":"21:17"},{"date":"2021-07-29","groups":[{"time":"00:36:00","height":"4.756"},{"time":"12:57:00","height":"4.309"}],"sunrise":"05:30","sunset":"21:15"},{"date":"2021-07-30","groups":[{"time":"01:18:00","height":"4.445"},{"time":"13:37:00","height":"4.010"}],"sunrise":"05:32","sunset":"21:13"},{"date":"2021-07-31","groups":[{"time":"02:01:00","height":"4.105"},{"time":"14:21:00","height":"3.710"}],"sunrise":"05:33","sunset":"21:12"},{"date":"2021-08-01","groups":[{"time":"02:49:00","height":"3.768"},{"time":"15:14:00","height":"3.439"}],"sunrise":"05:35","sunset":"21:10"},{"date":"2021-08-02","groups":[{"time":"03:49:00","height":"3.479"},{"time":"16:26:00","height":"3.265"}],"sunrise":"05:36","sunset":"21:08"},{"date":"2021-08-03","groups":[{"time":"05:04:00","height":"3.327"},{"time":"17:42:00","height":"3.292"}],"sunrise":"05:38","sunset":"21:06"},{"date":"2021-08-04","groups":[{"time":"06:15:00","height":"3.392"},{"time":"18:48:00","height":"3.526"}],"sunrise":"05:40","sunset":"21:05"},{"date":"2021-08-05","groups":[{"time":"07:14:00","height":"3.627"},{"time":"19:40:00","height":"3.860"}],"sunrise":"05:41","sunset":"21:03"},{"date":"2021-08-06","groups":[{"time":"08:02:00","height":"3.928"},{"time":"20:22:00","height":"4.201"}],"sunrise":"05:43","sunset":"21:01"},{"date":"2021-08-07","groups":[{"time":"08:43:00","height":"4.223"},{"time":"21:00:00","height":"4.502"}],"sunrise":"05:45","sunset":"20:59"},{"date":"2021-08-08","groups":[{"time":"09:20:00","height":"4.478"},{"time":"21:35:00","height":"4.748"}],"sunrise":"05:46","sunset":"20:57"},{"date":"2021-08-09","groups":[{"time":"09:56:00","height":"4.683"},{"time":"22:10:00","height":"4.936"}],"sunrise":"05:48","sunset":"20:55"},{"date":"2021-08-10","groups":[{"time":"10:31:00","height":"4.825"},{"time":"22:45:00","height":"5.054"}],"sunrise":"05:50","sunset":"20:53"},{"date":"2021-08-11","groups":[{"time":"11:06:00","height":"4.887"},{"time":"23:23:00","height":"5.084"}],"sunrise":"05:51","sunset":"20:51"},{"date":"2021-08-12","groups":[{"time":"11:47:00","height":"4.851"}],"sunrise":"05:53","sunset":"20:49"},{"date":"2021-08-13","groups":[{"time":"00:05:00","height":"5.011"},{"time":"12:30:00","height":"4.712"}],"sunrise":"05:55","sunset":"20:47"},{"date":"2021-08-14","groups":[{"time":"00:49:00","height":"4.830"},{"time":"13:15:00","height":"4.480"}],"sunrise":"05:56","sunset":"20:45"},{"date":"2021-08-15","groups":[{"time":"01:37:00","height":"4.551"},{"time":"14:06:00","height":"4.185"}],"sunrise":"05:58","sunset":"20:43"},{"date":"2021-08-16","groups":[{"time":"02:33:00","height":"4.205"},{"time":"15:09:00","height":"3.883"}],"sunrise":"06:00","sunset":"20:41"},{"date":"2021-08-17","groups":[{"time":"03:44:00","height":"3.869"},{"time":"16:30:00","height":"3.689"}],"sunrise":"06:01","sunset":"20:39"},{"date":"2021-08-18","groups":[{"time":"05:07:00","height":"3.689"},{"time":"17:51:00","height":"3.749"}],"sunrise":"06:03","sunset":"20:37"},{"date":"2021-08-19","groups":[{"time":"06:28:00","height":"3.799"},{"time":"19:04:00","height":"4.076"}],"sunrise":"06:05","sunset":"20:34"},{"date":"2021-08-20","groups":[{"time":"07:38:00","height":"4.130"},{"time":"20:04:00","height":"4.511"}],"sunrise":"06:06","sunset":"20:32"},{"date":"2021-08-21","groups":[{"time":"08:32:00","height":"4.504"},{"time":"20:53:00","height":"4.899"}],"sunrise":"06:08","sunset":"20:30"},{"date":"2021-08-22","groups":[{"time":"09:18:00","height":"4.798"},{"time":"21:35:00","height":"5.161"}],"sunrise":"06:10","sunset":"20:28"},{"date":"2021-08-23","groups":[{"time":"09:57:00","height":"4.966"},{"time":"22:14:00","height":"5.275"}],"sunrise":"06:12","sunset":"20:26"},{"date":"2021-08-24","groups":[{"time":"10:33:00","height":"5.003"},{"time":"22:50:00","height":"5.249"}],"sunrise":"06:13","sunset":"20:23"},{"date":"2021-08-25","groups":[{"time":"11:07:00","height":"4.924"},{"time":"23:25:00","height":"5.105"}],"sunrise":"06:15","sunset":"20:21"},{"date":"2021-08-26","groups":[{"time":"11:42:00","height":"4.751"}],"sunrise":"06:17","sunset":"20:19"},{"date":"2021-08-27","groups":[{"time":"00:00:00","height":"4.867"},{"time":"12:16:00","height":"4.509"}],"sunrise":"06:18","sunset":"20:17"},{"date":"2021-08-28","groups":[{"time":"00:35:00","height":"4.562"},{"time":"12:49:00","height":"4.219"}],"sunrise":"06:20","sunset":"20:14"},{"date":"2021-08-29","groups":[{"time":"01:11:00","height":"4.208"},{"time":"13:25:00","height":"3.894"}],"sunrise":"06:22","sunset":"20:12"},{"date":"2021-08-30","groups":[{"time":"01:50:00","height":"3.819"},{"time":"14:08:00","height":"3.551"}],"sunrise":"06:23","sunset":"20:10"},{"date":"2021-08-31","groups":[{"time":"02:41:00","height":"3.426"},{"time":"15:09:00","height":"3.236"}],"sunrise":"06:25","sunset":"20:07"},{"date":"2021-09-01","groups":[{"time":"03:56:00","height":"3.116"},{"time":"16:45:00","height":"3.091"}],"sunrise":"06:27","sunset":"20:05"},{"date":"2021-09-02","groups":[{"time":"05:38:00","height":"3.092"},{"time":"18:19:00","height":"3.312"}],"sunrise":"06:29","sunset":"20:03"},{"date":"2021-09-03","groups":[{"time":"06:53:00","height":"3.406"},{"time":"19:18:00","height":"3.743"}],"sunrise":"06:30","sunset":"20:00"},{"date":"2021-09-04","groups":[{"time":"07:43:00","height":"3.841"},{"time":"20:00:00","height":"4.205"}],"sunrise":"06:32","sunset":"19:58"},{"date":"2021-09-05","groups":[{"time":"08:23:00","height":"4.276"},{"time":"20:38:00","height":"4.627"}],"sunrise":"06:34","sunset":"19:56"},{"date":"2021-09-06","groups":[{"time":"08:59:00","height":"4.659"},{"time":"21:14:00","height":"4.980"}],"sunrise":"06:35","sunset":"19:53"},{"date":"2021-09-07","groups":[{"time":"09:35:00","height":"4.965"},{"time":"21:50:00","height":"5.246"}],"sunrise":"06:37","sunset":"19:51"},{"date":"2021-09-08","groups":[{"time":"10:09:00","height":"5.173"},{"time":"22:24:00","height":"5.407"}],"sunrise":"06:39","sunset":"19:49"},{"date":"2021-09-09","groups":[{"time":"10:45:00","height":"5.261"},{"time":"23:00:00","height":"5.434"}],"sunrise":"06:40","sunset":"19:46"},{"date":"2021-09-10","groups":[{"time":"11:21:00","height":"5.209"},{"time":"23:41:00","height":"5.309"}],"sunrise":"06:42","sunset":"19:44"},{"date":"2021-09-11","groups":[{"time":"12:04:00","height":"5.012"}],"sunrise":"06:44","sunset":"19:41"},{"date":"2021-09-12","groups":[{"time":"00:24:00","height":"5.027"},{"time":"12:48:00","height":"4.689"}],"sunrise":"06:45","sunset":"19:39"},{"date":"2021-09-13","groups":[{"time":"01:11:00","height":"4.611"},{"time":"13:38:00","height":"4.277"}],"sunrise":"06:47","sunset":"19:37"},{"date":"2021-09-14","groups":[{"time":"02:07:00","height":"4.112"},{"time":"14:43:00","height":"3.849"}],"sunrise":"06:49","sunset":"19:34"},{"date":"2021-09-15","groups":[{"time":"03:23:00","height":"3.644"},{"time":"16:14:00","height":"3.571"}],"sunrise":"06:51","sunset":"19:32"},{"date":"2021-09-16","groups":[{"time":"05:03:00","height":"3.442"},{"time":"17:49:00","height":"3.675"}],"sunrise":"06:52","sunset":"19:29"},{"date":"2021-09-17","groups":[{"time":"06:33:00","height":"3.673"},{"time":"19:04:00","height":"4.105"}],"sunrise":"06:54","sunset":"19:27"},{"date":"2021-09-18","groups":[{"time":"07:37:00","height":"4.126"},{"time":"19:58:00","height":"4.593"}],"sunrise":"06:56","sunset":"19:25"},{"date":"2021-09-19","groups":[{"time":"08:23:00","height":"4.552"},{"time":"20:40:00","height":"4.974"}],"sunrise":"06:57","sunset":"19:22"},{"date":"2021-09-20","groups":[{"time":"09:02:00","height":"4.854"},{"time":"21:18:00","height":"5.200"}],"sunrise":"06:59","sunset":"19:20"},{"date":"2021-09-21","groups":[{"time":"09:37:00","height":"5.018"},{"time":"21:52:00","height":"5.281"}],"sunrise":"07:01","sunset":"19:17"},{"date":"2021-09-22","groups":[{"time":"10:08:00","height":"5.060"},{"time":"22:23:00","height":"5.243"}],"sunrise":"07:02","sunset":"19:15"},{"date":"2021-09-23","groups":[{"time":"10:38:00","height":"5.004"},{"time":"22:53:00","height":"5.112"}],"sunrise":"07:04","sunset":"19:12"},{"date":"2021-09-24","groups":[{"time":"11:06:00","height":"4.869"},{"time":"23:23:00","height":"4.901"}],"sunrise":"07:06","sunset":"19:10"},{"date":"2021-09-25","groups":[{"time":"11:36:00","height":"4.664"},{"time":"23:54:00","height":"4.621"}],"sunrise":"07:08","sunset":"19:08"},{"date":"2021-09-26","groups":[{"time":"12:06:00","height":"4.399"}],"sunrise":"07:09","sunset":"19:05"},{"date":"2021-09-27","groups":[{"time":"00:26:00","height":"4.278"},{"time":"12:38:00","height":"4.081"}],"sunrise":"07:11","sunset":"19:03"},{"date":"2021-09-28","groups":[{"time":"01:02:00","height":"3.884"},{"time":"13:17:00","height":"3.721"}],"sunrise":"07:13","sunset":"19:00"},{"date":"2021-09-29","groups":[{"time":"01:47:00","height":"3.462"},{"time":"14:10:00","height":"3.352"}],"sunrise":"07:14","sunset":"18:58"},{"date":"2021-09-30","groups":[{"time":"02:56:00","height":"3.083"},{"time":"15:40:00","height":"3.094"}],"sunrise":"07:16","sunset":"18:56"},{"date":"2021-10-01","groups":[{"time":"04:51:00","height":"2.968"},{"time":"17:40:00","height":"3.236"}],"sunrise":"07:18","sunset":"18:53"},{"date":"2021-10-02","groups":[{"time":"06:23:00","height":"3.312"},{"time":"18:46:00","height":"3.708"}],"sunrise":"07:20","sunset":"18:51"},{"date":"2021-10-03","groups":[{"time":"07:14:00","height":"3.832"},{"time":"19:31:00","height":"4.245"}],"sunrise":"07:21","sunset":"18:49"},{"date":"2021-10-04","groups":[{"time":"07:55:00","height":"4.361"},{"time":"20:10:00","height":"4.748"}],"sunrise":"07:23","sunset":"18:46"},{"date":"2021-10-05","groups":[{"time":"08:31:00","height":"4.830"},{"time":"20:47:00","height":"5.170"}],"sunrise":"07:25","sunset":"18:44"},{"date":"2021-10-06","groups":[{"time":"09:08:00","height":"5.198"},{"time":"21:23:00","height":"5.476"}],"sunrise":"07:27","sunset":"18:41"},{"date":"2021-10-07","groups":[{"time":"09:45:00","height":"5.435"},{"time":"22:01:00","height":"5.636"}],"sunrise":"07:28","sunset":"18:39"},{"date":"2021-10-08","groups":[{"time":"10:21:00","height":"5.521"},{"time":"22:38:00","height":"5.627"}],"sunrise":"07:30","sunset":"18:37"},{"date":"2021-10-09","groups":[{"time":"10:58:00","height":"5.440"},{"time":"23:17:00","height":"5.432"}],"sunrise":"07:32","sunset":"18:34"},{"date":"2021-10-10","groups":[{"time":"11:40:00","height":"5.194"}],"sunrise":"07:34","sunset":"18:32"},{"date":"2021-10-11","groups":[{"time":"00:03:00","height":"5.061"},{"time":"12:26:00","height":"4.810"}],"sunrise":"07:36","sunset":"18:30"},{"date":"2021-10-12","groups":[{"time":"00:54:00","height":"4.555"},{"time":"13:21:00","height":"4.339"}],"sunrise":"07:37","sunset":"18:28"},{"date":"2021-10-13","groups":[{"time":"01:53:00","height":"3.995"},{"time":"14:31:00","height":"3.881"}],"sunrise":"07:39","sunset":"18:25"},{"date":"2021-10-14","groups":[{"time":"03:15:00","height":"3.529"},{"time":"16:06:00","height":"3.630"}],"sunrise":"07:41","sunset":"18:23"},{"date":"2021-10-15","groups":[{"time":"05:00:00","height":"3.411"},{"time":"17:40:00","height":"3.784"}],"sunrise":"07:43","sunset":"18:21"},{"date":"2021-10-16","groups":[{"time":"06:25:00","height":"3.716"},{"time":"18:49:00","height":"4.203"}],"sunrise":"07:45","sunset":"18:19"},{"date":"2021-10-17","groups":[{"time":"07:21:00","height":"4.164"},{"time":"19:39:00","height":"4.626"}],"sunrise":"07:46","sunset":"18:16"},{"date":"2021-10-18","groups":[{"time":"08:03:00","height":"4.551"},{"time":"20:19:00","height":"4.930"}],"sunrise":"07:48","sunset":"18:14"},{"date":"2021-10-19","groups":[{"time":"08:39:00","height":"4.815"},{"time":"20:54:00","height":"5.096"}],"sunrise":"07:50","sunset":"18:12"},{"date":"2021-10-20","groups":[{"time":"09:12:00","height":"4.960"},{"time":"21:26:00","height":"5.148"}],"sunrise":"07:52","sunset":"18:10"},{"date":"2021-10-21","groups":[{"time":"09:41:00","height":"5.011"},{"time":"21:56:00","height":"5.116"}],"sunrise":"07:54","sunset":"18:08"},{"date":"2021-10-22","groups":[{"time":"10:09:00","height":"4.989"},{"time":"22:24:00","height":"5.015"}],"sunrise":"07:55","sunset":"18:05"},{"date":"2021-10-23","groups":[{"time":"10:36:00","height":"4.899"},{"time":"22:52:00","height":"4.846"}],"sunrise":"07:57","sunset":"18:03"},{"date":"2021-10-24","groups":[{"time":"11:03:00","height":"4.742"},{"time":"23:20:00","height":"4.609"}],"sunrise":"07:59","sunset":"18:01"},{"date":"2021-10-25","groups":[{"time":"11:32:00","height":"4.518"},{"time":"23:53:00","height":"4.306"}],"sunrise":"08:01","sunset":"17:59"},{"date":"2021-10-26","groups":[{"time":"12:06:00","height":"4.236"}],"sunrise":"08:03","sunset":"17:57"},{"date":"2021-10-27","groups":[{"time":"00:29:00","height":"3.952"},{"time":"12:44:00","height":"3.908"}],"sunrise":"08:05","sunset":"17:55"},{"date":"2021-10-28","groups":[{"time":"01:13:00","height":"3.571"},{"time":"13:35:00","height":"3.566"}],"sunrise":"08:07","sunset":"17:53"},{"date":"2021-10-29","groups":[{"time":"02:18:00","height":"3.226"},{"time":"14:55:00","height":"3.306"}],"sunrise":"08:08","sunset":"17:51"},{"date":"2021-10-30","groups":[{"time":"03:57:00","height":"3.084"},{"time":"16:43:00","height":"3.345"}],"sunrise":"08:10","sunset":"17:49"},{"date":"2021-10-31","groups":[{"time":"05:35:00","height":"3.339"},{"time":"18:00:00","height":"3.736"}],"sunrise":"08:12","sunset":"17:47"},{"date":"2021-11-01","groups":[{"time":"05:34:00","height":"3.836"},{"time":"17:52:00","height":"4.255"}],"sunrise":"07:14","sunset":"16:45"},{"date":"2021-11-02","groups":[{"time":"06:19:00","height":"4.376"},{"time":"18:36:00","height":"4.767"}],"sunrise":"07:16","sunset":"16:43"},{"date":"2021-11-03","groups":[{"time":"07:00:00","height":"4.868"},{"time":"19:16:00","height":"5.198"}],"sunrise":"07:18","sunset":"16:41"},{"date":"2021-11-04","groups":[{"time":"07:40:00","height":"5.254"},{"time":"19:57:00","height":"5.500"}],"sunrise":"07:20","sunset":"16:40"},{"date":"2021-11-05","groups":[{"time":"08:19:00","height":"5.501"},{"time":"20:37:00","height":"5.641"}],"sunrise":"07:21","sunset":"16:38"},{"date":"2021-11-06","groups":[{"time":"08:59:00","height":"5.586"},{"time":"21:19:00","height":"5.598"}],"sunrise":"07:23","sunset":"16:36"},{"date":"2021-11-07","groups":[{"time":"09:39:00","height":"5.505"},{"time":"22:00:00","height":"5.373"}],"sunrise":"07:25","sunset":"16:34"},{"date":"2021-11-08","groups":[{"time":"10:23:00","height":"5.263"},{"time":"22:50:00","height":"4.988"}],"sunrise":"07:27","sunset":"16:33"},{"date":"2021-11-09","groups":[{"time":"11:15:00","height":"4.895"},{"time":"23:44:00","height":"4.501"}],"sunrise":"07:29","sunset":"16:31"},{"date":"2021-11-10","groups":[{"time":"12:13:00","height":"4.463"}],"sunrise":"07:31","sunset":"16:29"},{"date":"2021-11-11","groups":[{"time":"00:47:00","height":"4.002"},{"time":"13:22:00","height":"4.066"}],"sunrise":"07:33","sunset":"16:28"},{"date":"2021-11-12","groups":[{"time":"02:05:00","height":"3.621"},{"time":"14:48:00","height":"3.845"}],"sunrise":"07:34","sunset":"16:26"},{"date":"2021-11-13","groups":[{"time":"03:37:00","height":"3.516"},{"time":"16:12:00","height":"3.904"}],"sunrise":"07:36","sunset":"16:24"},{"date":"2021-11-14","groups":[{"time":"04:53:00","height":"3.715"},{"time":"17:17:00","height":"4.158"}],"sunrise":"07:38","sunset":"16:23"},{"date":"2021-11-15","groups":[{"time":"05:50:00","height":"4.043"},{"time":"18:09:00","height":"4.442"}],"sunrise":"07:40","sunset":"16:21"},{"date":"2021-11-16","groups":[{"time":"06:34:00","height":"4.353"},{"time":"18:50:00","height":"4.663"}],"sunrise":"07:42","sunset":"16:20"},{"date":"2021-11-17","groups":[{"time":"07:11:00","height":"4.586"},{"time":"19:26:00","height":"4.798"}],"sunrise":"07:43","sunset":"16:19"},{"date":"2021-11-18","groups":[{"time":"07:44:00","height":"4.740"},{"time":"19:59:00","height":"4.862"}],"sunrise":"07:45","sunset":"16:17"},{"date":"2021-11-19","groups":[{"time":"08:15:00","height":"4.827"},{"time":"20:30:00","height":"4.867"}],"sunrise":"07:47","sunset":"16:16"},{"date":"2021-11-20","groups":[{"time":"08:44:00","height":"4.855"},{"time":"21:00:00","height":"4.818"}],"sunrise":"07:49","sunset":"16:15"},{"date":"2021-11-21","groups":[{"time":"09:13:00","height":"4.823"},{"time":"21:30:00","height":"4.709"}],"sunrise":"07:50","sunset":"16:13"},{"date":"2021-11-22","groups":[{"time":"09:41:00","height":"4.728"},{"time":"21:59:00","height":"4.540"}],"sunrise":"07:52","sunset":"16:12"},{"date":"2021-11-23","groups":[{"time":"10:11:00","height":"4.572"},{"time":"22:32:00","height":"4.315"}],"sunrise":"07:54","sunset":"16:11"},{"date":"2021-11-24","groups":[{"time":"10:46:00","height":"4.361"},{"time":"23:11:00","height":"4.049"}],"sunrise":"07:55","sunset":"16:10"},{"date":"2021-11-25","groups":[{"time":"11:28:00","height":"4.112"},{"time":"23:57:00","height":"3.765"}],"sunrise":"07:57","sunset":"16:09"},{"date":"2021-11-26","groups":[{"time":"12:18:00","height":"3.854"}],"sunrise":"07:59","sunset":"16:08"},{"date":"2021-11-27","groups":[{"time":"00:55:00","height":"3.511"},{"time":"13:25:00","height":"3.655"}],"sunrise":"08:00","sunset":"16:07"},{"date":"2021-11-28","groups":[{"time":"02:12:00","height":"3.381"},{"time":"14:48:00","height":"3.623"}],"sunrise":"08:02","sunset":"16:06"},{"date":"2021-11-29","groups":[{"time":"03:38:00","height":"3.485"},{"time":"16:06:00","height":"3.826"}],"sunrise":"08:03","sunset":"16:05"},{"date":"2021-11-30","groups":[{"time":"04:45:00","height":"3.819"},{"time":"17:07:00","height":"4.199"}],"sunrise":"08:05","sunset":"16:05"},{"date":"2021-12-01","groups":[{"time":"05:40:00","height":"4.260"},{"time":"17:59:00","height":"4.618"}],"sunrise":"08:06","sunset":"16:04"},{"date":"2021-12-02","groups":[{"time":"06:28:00","height":"4.701"},{"time":"18:47:00","height":"4.993"}],"sunrise":"08:08","sunset":"16:03"},{"date":"2021-12-03","groups":[{"time":"07:13:00","height":"5.073"},{"time":"19:33:00","height":"5.267"}],"sunrise":"08:09","sunset":"16:03"},{"date":"2021-12-04","groups":[{"time":"07:58:00","height":"5.335"},{"time":"20:19:00","height":"5.405"}],"sunrise":"08:11","sunset":"16:02"},{"date":"2021-12-05","groups":[{"time":"08:43:00","height":"5.462"},{"time":"21:06:00","height":"5.392"}],"sunrise":"08:12","sunset":"16:02"},{"date":"2021-12-06","groups":[{"time":"09:27:00","height":"5.445"},{"time":"21:52:00","height":"5.227"}],"sunrise":"08:13","sunset":"16:01"},{"date":"2021-12-07","groups":[{"time":"10:14:00","height":"5.291"},{"time":"22:42:00","height":"4.938"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2021-12-08","groups":[{"time":"11:07:00","height":"5.026"},{"time":"23:37:00","height":"4.567"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2021-12-09","groups":[{"time":"12:03:00","height":"4.693"}],"sunrise":"08:17","sunset":"16:00"},{"date":"2021-12-10","groups":[{"time":"00:35:00","height":"4.178"},{"time":"13:05:00","height":"4.355"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2021-12-11","groups":[{"time":"01:39:00","height":"3.842"},{"time":"14:12:00","height":"4.081"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2021-12-12","groups":[{"time":"02:51:00","height":"3.637"},{"time":"15:26:00","height":"3.937"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2021-12-13","groups":[{"time":"04:04:00","height":"3.614"},{"time":"16:31:00","height":"3.944"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2021-12-14","groups":[{"time":"05:05:00","height":"3.749"},{"time":"17:27:00","height":"4.054"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2021-12-15","groups":[{"time":"05:57:00","height":"3.963"},{"time":"18:15:00","height":"4.204"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2021-12-16","groups":[{"time":"06:40:00","height":"4.188"},{"time":"18:58:00","height":"4.350"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2021-12-17","groups":[{"time":"07:18:00","height":"4.387"},{"time":"19:35:00","height":"4.471"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2021-12-18","groups":[{"time":"07:53:00","height":"4.544"},{"time":"20:10:00","height":"4.552"}],"sunrise":"08:25","sunset":"16:00"},{"date":"2021-12-19","groups":[{"time":"08:26:00","height":"4.650"},{"time":"20:44:00","height":"4.586"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2021-12-20","groups":[{"time":"08:58:00","height":"4.700"},{"time":"21:16:00","height":"4.571"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2021-12-21","groups":[{"time":"09:29:00","height":"4.694"},{"time":"21:48:00","height":"4.507"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2021-12-22","groups":[{"time":"10:00:00","height":"4.637"},{"time":"22:21:00","height":"4.398"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2021-12-23","groups":[{"time":"10:37:00","height":"4.532"},{"time":"23:02:00","height":"4.251"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2021-12-24","groups":[{"time":"11:18:00","height":"4.388"},{"time":"23:45:00","height":"4.075"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2021-12-25","groups":[{"time":"12:04:00","height":"4.222"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2021-12-26","groups":[{"time":"00:35:00","height":"3.895"},{"time":"12:59:00","height":"4.061"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2021-12-27","groups":[{"time":"01:33:00","height":"3.747"},{"time":"14:01:00","height":"3.949"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2021-12-28","groups":[{"time":"02:43:00","height":"3.689"},{"time":"15:14:00","height":"3.936"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2021-12-29","groups":[{"time":"03:55:00","height":"3.778"},{"time":"16:22:00","height":"4.059"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2021-12-30","groups":[{"time":"05:00:00","height":"4.021"},{"time":"17:25:00","height":"4.299"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2021-12-31","groups":[{"time":"05:58:00","height":"4.361"},{"time":"18:24:00","height":"4.587"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2022-01-01","groups":[{"time":"06:53:00","height":"4.719"},{"time":"19:18:00","height":"4.858"}],"sunrise":"08:29","sunset":"16:10"},{"date":"2022-01-02","groups":[{"time":"07:44:00","height":"5.038"},{"time":"20:10:00","height":"5.064"}],"sunrise":"08:29","sunset":"16:12"},{"date":"2022-01-03","groups":[{"time":"08:34:00","height":"5.270"},{"time":"20:59:00","height":"5.166"}],"sunrise":"08:28","sunset":"16:13"},{"date":"2022-01-04","groups":[{"time":"09:21:00","height":"5.384"},{"time":"21:46:00","height":"5.145"}],"sunrise":"08:28","sunset":"16:14"},{"date":"2022-01-05","groups":[{"time":"10:06:00","height":"5.365"},{"time":"22:33:00","height":"5.000"}],"sunrise":"08:28","sunset":"16:15"},{"date":"2022-01-06","groups":[{"time":"10:56:00","height":"5.213"},{"time":"23:22:00","height":"4.750"}],"sunrise":"08:27","sunset":"16:16"},{"date":"2022-01-07","groups":[{"time":"11:46:00","height":"4.951"}],"sunrise":"08:27","sunset":"16:18"},{"date":"2022-01-08","groups":[{"time":"00:11:00","height":"4.432"},{"time":"12:36:00","height":"4.618"}],"sunrise":"08:26","sunset":"16:19"},{"date":"2022-01-09","groups":[{"time":"01:01:00","height":"4.089"},{"time":"13:28:00","height":"4.259"}],"sunrise":"08:26","sunset":"16:21"},{"date":"2022-01-10","groups":[{"time":"01:55:00","height":"3.769"},{"time":"14:26:00","height":"3.929"}],"sunrise":"08:25","sunset":"16:22"},{"date":"2022-01-11","groups":[{"time":"02:58:00","height":"3.527"},{"time":"15:32:00","height":"3.687"}],"sunrise":"08:24","sunset":"16:24"},{"date":"2022-01-12","groups":[{"time":"04:06:00","height":"3.426"},{"time":"16:37:00","height":"3.598"}],"sunrise":"08:24","sunset":"16:25"},{"date":"2022-01-13","groups":[{"time":"05:11:00","height":"3.506"},{"time":"17:38:00","height":"3.673"}],"sunrise":"08:23","sunset":"16:27"},{"date":"2022-01-14","groups":[{"time":"06:09:00","height":"3.724"},{"time":"18:31:00","height":"3.857"}],"sunrise":"08:22","sunset":"16:28"},{"date":"2022-01-15","groups":[{"time":"06:57:00","height":"3.998"},{"time":"19:17:00","height":"4.078"}],"sunrise":"08:21","sunset":"16:30"},{"date":"2022-01-16","groups":[{"time":"07:37:00","height":"4.262"},{"time":"19:56:00","height":"4.279"}],"sunrise":"08:20","sunset":"16:31"},{"date":"2022-01-17","groups":[{"time":"08:13:00","height":"4.479"},{"time":"20:32:00","height":"4.436"}],"sunrise":"08:19","sunset":"16:33"},{"date":"2022-01-18","groups":[{"time":"08:47:00","height":"4.640"},{"time":"21:05:00","height":"4.545"}],"sunrise":"08:18","sunset":"16:35"},{"date":"2022-01-19","groups":[{"time":"09:19:00","height":"4.745"},{"time":"21:38:00","height":"4.607"}],"sunrise":"08:17","sunset":"16:37"},{"date":"2022-01-20","groups":[{"time":"09:51:00","height":"4.799"},{"time":"22:10:00","height":"4.619"}],"sunrise":"08:16","sunset":"16:38"},{"date":"2022-01-21","groups":[{"time":"10:25:00","height":"4.799"},{"time":"22:47:00","height":"4.573"}],"sunrise":"08:15","sunset":"16:40"},{"date":"2022-01-22","groups":[{"time":"11:04:00","height":"4.738"},{"time":"23:26:00","height":"4.464"}],"sunrise":"08:13","sunset":"16:42"},{"date":"2022-01-23","groups":[{"time":"11:45:00","height":"4.614"}],"sunrise":"08:12","sunset":"16:44"},{"date":"2022-01-24","groups":[{"time":"00:10:00","height":"4.297"},{"time":"12:30:00","height":"4.433"}],"sunrise":"08:11","sunset":"16:45"},{"date":"2022-01-25","groups":[{"time":"00:57:00","height":"4.088"},{"time":"13:22:00","height":"4.210"}],"sunrise":"08:09","sunset":"16:47"},{"date":"2022-01-26","groups":[{"time":"01:56:00","height":"3.872"},{"time":"14:26:00","height":"3.984"}],"sunrise":"08:08","sunset":"16:49"},{"date":"2022-01-27","groups":[{"time":"03:09:00","height":"3.717"},{"time":"15:44:00","height":"3.839"}],"sunrise":"08:06","sunset":"16:51"},{"date":"2022-01-28","groups":[{"time":"04:25:00","height":"3.737"},{"time":"17:00:00","height":"3.887"}],"sunrise":"08:05","sunset":"16:53"},{"date":"2022-01-29","groups":[{"time":"05:39:00","height":"3.984"},{"time":"18:11:00","height":"4.138"}],"sunrise":"08:03","sunset":"16:55"},{"date":"2022-01-30","groups":[{"time":"06:43:00","height":"4.382"},{"time":"19:14:00","height":"4.491"}],"sunrise":"08:02","sunset":"16:57"},{"date":"2022-01-31","groups":[{"time":"07:39:00","height":"4.812"},{"time":"20:06:00","height":"4.830"}],"sunrise":"08:00","sunset":"16:59"},{"date":"2022-02-01","groups":[{"time":"08:28:00","height":"5.170"},{"time":"20:53:00","height":"5.069"}],"sunrise":"07:59","sunset":"17:00"},{"date":"2022-02-02","groups":[{"time":"09:13:00","height":"5.395"},{"time":"21:36:00","height":"5.169"}],"sunrise":"07:57","sunset":"17:02"},{"date":"2022-02-03","groups":[{"time":"09:54:00","height":"5.458"},{"time":"22:16:00","height":"5.121"}],"sunrise":"07:55","sunset":"17:04"},{"date":"2022-02-04","groups":[{"time":"10:37:00","height":"5.358"},{"time":"22:58:00","height":"4.940"}],"sunrise":"07:54","sunset":"17:06"},{"date":"2022-02-05","groups":[{"time":"11:19:00","height":"5.118"},{"time":"23:38:00","height":"4.656"}],"sunrise":"07:52","sunset":"17:08"},{"date":"2022-02-06","groups":[{"time":"12:00:00","height":"4.774"}],"sunrise":"07:50","sunset":"17:10"},{"date":"2022-02-07","groups":[{"time":"00:17:00","height":"4.309"},{"time":"12:40:00","height":"4.368"}],"sunrise":"07:48","sunset":"17:12"},{"date":"2022-02-08","groups":[{"time":"00:59:00","height":"3.934"},{"time":"13:25:00","height":"3.939"}],"sunrise":"07:46","sunset":"17:14"},{"date":"2022-02-09","groups":[{"time":"01:45:00","height":"3.565"},{"time":"14:19:00","height":"3.534"}],"sunrise":"07:45","sunset":"17:16"},{"date":"2022-02-10","groups":[{"time":"02:48:00","height":"3.256"},{"time":"15:35:00","height":"3.236"}],"sunrise":"07:43","sunset":"17:18"},{"date":"2022-02-11","groups":[{"time":"04:16:00","height":"3.134"},{"time":"16:57:00","height":"3.198"}],"sunrise":"07:41","sunset":"17:20"},{"date":"2022-02-12","groups":[{"time":"05:37:00","height":"3.316"},{"time":"18:09:00","height":"3.431"}],"sunrise":"07:39","sunset":"17:22"},{"date":"2022-02-13","groups":[{"time":"06:37:00","height":"3.676"},{"time":"19:00:00","height":"3.776"}],"sunrise":"07:37","sunset":"17:24"},{"date":"2022-02-14","groups":[{"time":"07:20:00","height":"4.060"},{"time":"19:40:00","height":"4.115"}],"sunrise":"07:35","sunset":"17:26"},{"date":"2022-02-15","groups":[{"time":"07:56:00","height":"4.397"},{"time":"20:15:00","height":"4.406"}],"sunrise":"07:33","sunset":"17:27"},{"date":"2022-02-16","groups":[{"time":"08:30:00","height":"4.670"},{"time":"20:49:00","height":"4.640"}],"sunrise":"07:31","sunset":"17:29"},{"date":"2022-02-17","groups":[{"time":"09:02:00","height":"4.881"},{"time":"21:20:00","height":"4.813"}],"sunrise":"07:29","sunset":"17:31"},{"date":"2022-02-18","groups":[{"time":"09:34:00","height":"5.027"},{"time":"21:52:00","height":"4.914"}],"sunrise":"07:27","sunset":"17:33"},{"date":"2022-02-19","groups":[{"time":"10:06:00","height":"5.095"},{"time":"22:26:00","height":"4.924"}],"sunrise":"07:24","sunset":"17:35"},{"date":"2022-02-20","groups":[{"time":"10:42:00","height":"5.066"},{"time":"23:03:00","height":"4.829"}],"sunrise":"07:22","sunset":"17:37"},{"date":"2022-02-21","groups":[{"time":"11:21:00","height":"4.927"},{"time":"23:43:00","height":"4.629"}],"sunrise":"07:20","sunset":"17:39"},{"date":"2022-02-22","groups":[{"time":"12:02:00","height":"4.675"}],"sunrise":"07:18","sunset":"17:41"},{"date":"2022-02-23","groups":[{"time":"00:26:00","height":"4.337"},{"time":"12:50:00","height":"4.325"}],"sunrise":"07:16","sunset":"17:43"},{"date":"2022-02-24","groups":[{"time":"01:19:00","height":"3.983"},{"time":"13:51:00","height":"3.915"}],"sunrise":"07:14","sunset":"17:45"},{"date":"2022-02-25","groups":[{"time":"02:31:00","height":"3.644"},{"time":"15:14:00","height":"3.571"}],"sunrise":"07:12","sunset":"17:47"},{"date":"2022-02-26","groups":[{"time":"04:04:00","height":"3.509"},{"time":"16:48:00","height":"3.530"}],"sunrise":"07:09","sunset":"17:48"},{"date":"2022-02-27","groups":[{"time":"05:30:00","height":"3.752"},{"time":"18:11:00","height":"3.859"}],"sunrise":"07:07","sunset":"17:50"},{"date":"2022-02-28","groups":[{"time":"06:40:00","height":"4.244"},{"time":"19:12:00","height":"4.336"}],"sunrise":"07:05","sunset":"17:52"},{"date":"2022-03-01","groups":[{"time":"07:33:00","height":"4.758"},{"time":"19:59:00","height":"4.764"}],"sunrise":"07:03","sunset":"17:54"},{"date":"2022-03-02","groups":[{"time":"08:18:00","height":"5.158"},{"time":"20:40:00","height":"5.058"}],"sunrise":"07:00","sunset":"17:56"},{"date":"2022-03-03","groups":[{"time":"08:58:00","height":"5.392"},{"time":"21:18:00","height":"5.194"}],"sunrise":"06:58","sunset":"17:58"},{"date":"2022-03-04","groups":[{"time":"09:35:00","height":"5.454"},{"time":"21:53:00","height":"5.180"}],"sunrise":"06:56","sunset":"18:00"},{"date":"2022-03-05","groups":[{"time":"10:09:00","height":"5.357"},{"time":"22:27:00","height":"5.035"}],"sunrise":"06:53","sunset":"18:02"},{"date":"2022-03-06","groups":[{"time":"10:46:00","height":"5.128"},{"time":"23:02:00","height":"4.787"}],"sunrise":"06:51","sunset":"18:03"},{"date":"2022-03-07","groups":[{"time":"11:21:00","height":"4.798"},{"time":"23:34:00","height":"4.465"}],"sunrise":"06:49","sunset":"18:05"},{"date":"2022-03-08","groups":[{"time":"11:56:00","height":"4.401"}],"sunrise":"06:46","sunset":"18:07"},{"date":"2022-03-09","groups":[{"time":"00:09:00","height":"4.096"},{"time":"12:33:00","height":"3.959"}],"sunrise":"06:44","sunset":"18:09"},{"date":"2022-03-10","groups":[{"time":"00:47:00","height":"3.696"},{"time":"13:17:00","height":"3.499"}],"sunrise":"06:42","sunset":"18:11"},{"date":"2022-03-11","groups":[{"time":"01:38:00","height":"3.294"},{"time":"14:21:00","height":"3.079"}],"sunrise":"06:39","sunset":"18:13"},{"date":"2022-03-12","groups":[{"time":"03:02:00","height":"2.989"},{"time":"16:09:00","height":"2.892"}],"sunrise":"06:37","sunset":"18:14"},{"date":"2022-03-13","groups":[{"time":"04:59:00","height":"3.061"},{"time":"17:41:00","height":"3.146"}],"sunrise":"06:35","sunset":"18:16"},{"date":"2022-03-14","groups":[{"time":"06:10:00","height":"3.467"},{"time":"18:37:00","height":"3.586"}],"sunrise":"06:32","sunset":"18:18"},{"date":"2022-03-15","groups":[{"time":"06:54:00","height":"3.933"},{"time":"19:15:00","height":"4.035"}],"sunrise":"06:30","sunset":"18:20"},{"date":"2022-03-16","groups":[{"time":"07:31:00","height":"4.362"},{"time":"19:50:00","height":"4.435"}],"sunrise":"06:28","sunset":"18:22"},{"date":"2022-03-17","groups":[{"time":"08:04:00","height":"4.726"},{"time":"20:22:00","height":"4.766"}],"sunrise":"06:25","sunset":"18:23"},{"date":"2022-03-18","groups":[{"time":"08:37:00","height":"5.016"},{"time":"20:55:00","height":"5.018"}],"sunrise":"06:23","sunset":"18:25"},{"date":"2022-03-19","groups":[{"time":"09:09:00","height":"5.221"},{"time":"21:28:00","height":"5.169"}],"sunrise":"06:20","sunset":"18:27"},{"date":"2022-03-20","groups":[{"time":"09:42:00","height":"5.317"},{"time":"22:00:00","height":"5.198"}],"sunrise":"06:18","sunset":"18:29"},{"date":"2022-03-21","groups":[{"time":"10:17:00","height":"5.276"},{"time":"22:38:00","height":"5.085"}],"sunrise":"06:16","sunset":"18:31"},{"date":"2022-03-22","groups":[{"time":"10:57:00","height":"5.084"},{"time":"23:18:00","height":"4.836"}],"sunrise":"06:13","sunset":"18:32"},{"date":"2022-03-23","groups":[{"time":"11:39:00","height":"4.744"}],"sunrise":"06:11","sunset":"18:34"},{"date":"2022-03-24","groups":[{"time":"00:02:00","height":"4.470"},{"time":"12:28:00","height":"4.283"}],"sunrise":"06:09","sunset":"18:36"},{"date":"2022-03-25","groups":[{"time":"00:56:00","height":"4.027"},{"time":"13:31:00","height":"3.770"}],"sunrise":"06:06","sunset":"18:38"},{"date":"2022-03-26","groups":[{"time":"02:13:00","height":"3.612"},{"time":"15:04:00","height":"3.379"}],"sunrise":"06:04","sunset":"18:40"},{"date":"2022-03-27","groups":[{"time":"03:55:00","height":"3.472"},{"time":"16:47:00","height":"3.407"}],"sunrise":"06:01","sunset":"18:41"},{"date":"2022-03-28","groups":[{"time":"06:25:00","height":"3.774"},{"time":"19:06:00","height":"3.829"}],"sunrise":"06:59","sunset":"19:43"},{"date":"2022-03-29","groups":[{"time":"07:30:00","height":"4.289"},{"time":"20:00:00","height":"4.329"}],"sunrise":"06:57","sunset":"19:45"},{"date":"2022-03-30","groups":[{"time":"08:18:00","height":"4.763"},{"time":"20:43:00","height":"4.733"}],"sunrise":"06:54","sunset":"19:47"},{"date":"2022-03-31","groups":[{"time":"08:59:00","height":"5.094"},{"time":"21:19:00","height":"4.993"}],"sunrise":"06:52","sunset":"19:49"},{"date":"2022-04-01","groups":[{"time":"09:36:00","height":"5.262"},{"time":"21:54:00","height":"5.110"}],"sunrise":"06:49","sunset":"19:50"},{"date":"2022-04-02","groups":[{"time":"10:10:00","height":"5.285"},{"time":"22:25:00","height":"5.105"}],"sunrise":"06:47","sunset":"19:52"},{"date":"2022-04-03","groups":[{"time":"10:41:00","height":"5.188"},{"time":"22:54:00","height":"4.997"}],"sunrise":"06:45","sunset":"19:54"},{"date":"2022-04-04","groups":[{"time":"11:11:00","height":"4.990"},{"time":"23:25:00","height":"4.800"}],"sunrise":"06:42","sunset":"19:56"},{"date":"2022-04-05","groups":[{"time":"11:44:00","height":"4.708"},{"time":"23:56:00","height":"4.531"}],"sunrise":"06:40","sunset":"19:57"},{"date":"2022-04-06","groups":[{"time":"12:17:00","height":"4.358"}],"sunrise":"06:38","sunset":"19:59"},{"date":"2022-04-07","groups":[{"time":"00:29:00","height":"4.203"},{"time":"12:51:00","height":"3.955"}],"sunrise":"06:35","sunset":"20:01"},{"date":"2022-04-08","groups":[{"time":"01:04:00","height":"3.831"},{"time":"13:33:00","height":"3.520"}],"sunrise":"06:33","sunset":"20:03"},{"date":"2022-04-09","groups":[{"time":"01:51:00","height":"3.435"},{"time":"14:31:00","height":"3.101"}],"sunrise":"06:31","sunset":"20:05"},{"date":"2022-04-10","groups":[{"time":"03:04:00","height":"3.091"},{"time":"16:10:00","height":"2.847"}],"sunrise":"06:28","sunset":"20:06"},{"date":"2022-04-11","groups":[{"time":"05:02:00","height":"3.027"},{"time":"17:58:00","height":"3.031"}],"sunrise":"06:26","sunset":"20:08"},{"date":"2022-04-12","groups":[{"time":"06:25:00","height":"3.376"},{"time":"18:57:00","height":"3.482"}],"sunrise":"06:24","sunset":"20:10"},{"date":"2022-04-13","groups":[{"time":"07:15:00","height":"3.852"},{"time":"19:40:00","height":"3.978"}],"sunrise":"06:21","sunset":"20:12"},{"date":"2022-04-14","groups":[{"time":"07:55:00","height":"4.324"},{"time":"20:16:00","height":"4.441"}],"sunrise":"06:19","sunset":"20:13"},{"date":"2022-04-15","groups":[{"time":"08:31:00","height":"4.741"},{"time":"20:51:00","height":"4.833"}],"sunrise":"06:17","sunset":"20:15"},{"date":"2022-04-16","groups":[{"time":"09:05:00","height":"5.076"},{"time":"21:26:00","height":"5.127"}],"sunrise":"06:15","sunset":"20:17"},{"date":"2022-04-17","groups":[{"time":"09:42:00","height":"5.302"},{"time":"22:02:00","height":"5.299"}],"sunrise":"06:12","sunset":"20:19"},{"date":"2022-04-18","groups":[{"time":"10:18:00","height":"5.390"},{"time":"22:38:00","height":"5.326"}],"sunrise":"06:10","sunset":"20:21"},{"date":"2022-04-19","groups":[{"time":"10:55:00","height":"5.316"},{"time":"23:15:00","height":"5.198"}],"sunrise":"06:08","sunset":"20:22"},{"date":"2022-04-20","groups":[{"time":"11:38:00","height":"5.071"},{"time":"23:59:00","height":"4.921"}],"sunrise":"06:06","sunset":"20:24"},{"date":"2022-04-21","groups":[{"time":"12:25:00","height":"4.677"}],"sunrise":"06:04","sunset":"20:26"},{"date":"2022-04-22","groups":[{"time":"00:49:00","height":"4.531"},{"time":"13:20:00","height":"4.187"}],"sunrise":"06:01","sunset":"20:28"},{"date":"2022-04-23","groups":[{"time":"01:50:00","height":"4.092"},{"time":"14:30:00","height":"3.702"}],"sunrise":"05:59","sunset":"20:29"},{"date":"2022-04-24","groups":[{"time":"03:11:00","height":"3.735"},{"time":"16:02:00","height":"3.411"}],"sunrise":"05:57","sunset":"20:31"},{"date":"2022-04-25","groups":[{"time":"04:47:00","height":"3.663"},{"time":"17:35:00","height":"3.504"}],"sunrise":"05:55","sunset":"20:33"},{"date":"2022-04-26","groups":[{"time":"06:07:00","height":"3.928"},{"time":"18:45:00","height":"3.874"}],"sunrise":"05:53","sunset":"20:35"},{"date":"2022-04-27","groups":[{"time":"07:07:00","height":"4.320"},{"time":"19:36:00","height":"4.278"}],"sunrise":"05:51","sunset":"20:36"},{"date":"2022-04-28","groups":[{"time":"07:54:00","height":"4.658"},{"time":"20:17:00","height":"4.593"}],"sunrise":"05:49","sunset":"20:38"},{"date":"2022-04-29","groups":[{"time":"08:33:00","height":"4.875"},{"time":"20:53:00","height":"4.793"}],"sunrise":"05:47","sunset":"20:40"},{"date":"2022-04-30","groups":[{"time":"09:09:00","height":"4.972"},{"time":"21:26:00","height":"4.890"}],"sunrise":"05:45","sunset":"20:42"},{"date":"2022-05-01","groups":[{"time":"09:42:00","height":"4.975"},{"time":"21:57:00","height":"4.903"}],"sunrise":"05:43","sunset":"20:43"},{"date":"2022-05-02","groups":[{"time":"10:13:00","height":"4.901"},{"time":"22:26:00","height":"4.842"}],"sunrise":"05:41","sunset":"20:45"},{"date":"2022-05-03","groups":[{"time":"10:43:00","height":"4.757"},{"time":"22:54:00","height":"4.710"}],"sunrise":"05:39","sunset":"20:47"},{"date":"2022-05-04","groups":[{"time":"11:13:00","height":"4.544"},{"time":"23:26:00","height":"4.510"}],"sunrise":"05:37","sunset":"20:49"},{"date":"2022-05-05","groups":[{"time":"11:47:00","height":"4.269"},{"time":"23:59:00","height":"4.252"}],"sunrise":"05:35","sunset":"20:50"},{"date":"2022-05-06","groups":[{"time":"12:23:00","height":"3.946"}],"sunrise":"05:33","sunset":"20:52"},{"date":"2022-05-07","groups":[{"time":"00:37:00","height":"3.950"},{"time":"13:05:00","height":"3.596"}],"sunrise":"05:31","sunset":"20:54"},{"date":"2022-05-08","groups":[{"time":"01:24:00","height":"3.630"},{"time":"14:01:00","height":"3.265"}],"sunrise":"05:30","sunset":"20:56"},{"date":"2022-05-09","groups":[{"time":"02:29:00","height":"3.352"},{"time":"15:20:00","height":"3.054"}],"sunrise":"05:28","sunset":"20:57"},{"date":"2022-05-10","groups":[{"time":"03:58:00","height":"3.248"},{"time":"16:55:00","height":"3.121"}],"sunrise":"05:26","sunset":"20:59"},{"date":"2022-05-11","groups":[{"time":"05:24:00","height":"3.440"},{"time":"18:04:00","height":"3.468"}],"sunrise":"05:24","sunset":"21:01"},{"date":"2022-05-12","groups":[{"time":"06:24:00","height":"3.829"},{"time":"18:54:00","height":"3.925"}],"sunrise":"05:23","sunset":"21:02"},{"date":"2022-05-13","groups":[{"time":"07:11:00","height":"4.269"},{"time":"19:36:00","height":"4.386"}],"sunrise":"05:21","sunset":"21:04"},{"date":"2022-05-14","groups":[{"time":"07:53:00","height":"4.680"},{"time":"20:16:00","height":"4.788"}],"sunrise":"05:19","sunset":"21:05"},{"date":"2022-05-15","groups":[{"time":"08:33:00","height":"5.011"},{"time":"20:56:00","height":"5.092"}],"sunrise":"05:18","sunset":"21:07"},{"date":"2022-05-16","groups":[{"time":"09:15:00","height":"5.226"},{"time":"21:36:00","height":"5.273"}],"sunrise":"05:16","sunset":"21:09"},{"date":"2022-05-17","groups":[{"time":"09:57:00","height":"5.297"},{"time":"22:18:00","height":"5.311"}],"sunrise":"05:15","sunset":"21:10"},{"date":"2022-05-18","groups":[{"time":"10:39:00","height":"5.211"},{"time":"23:00:00","height":"5.204"}],"sunrise":"05:13","sunset":"21:12"},{"date":"2022-05-19","groups":[{"time":"11:26:00","height":"4.973"},{"time":"23:50:00","height":"4.967"}],"sunrise":"05:12","sunset":"21:13"},{"date":"2022-05-20","groups":[{"time":"12:19:00","height":"4.616"}],"sunrise":"05:10","sunset":"21:15"},{"date":"2022-05-21","groups":[{"time":"00:46:00","height":"4.641"},{"time":"13:18:00","height":"4.208"}],"sunrise":"05:09","sunset":"21:16"},{"date":"2022-05-22","groups":[{"time":"01:49:00","height":"4.296"},{"time":"14:27:00","height":"3.840"}],"sunrise":"05:08","sunset":"21:18"},{"date":"2022-05-23","groups":[{"time":"03:02:00","height":"4.027"},{"time":"15:46:00","height":"3.622"}],"sunrise":"05:06","sunset":"21:19"},{"date":"2022-05-24","groups":[{"time":"04:24:00","height":"3.928"},{"time":"17:05:00","height":"3.636"}],"sunrise":"05:05","sunset":"21:21"},{"date":"2022-05-25","groups":[{"time":"05:34:00","height":"4.017"},{"time":"18:09:00","height":"3.832"}],"sunrise":"05:04","sunset":"21:22"},{"date":"2022-05-26","groups":[{"time":"06:32:00","height":"4.201"},{"time":"19:02:00","height":"4.086"}],"sunrise":"05:03","sunset":"21:23"},{"date":"2022-05-27","groups":[{"time":"07:21:00","height":"4.381"},{"time":"19:45:00","height":"4.311"}],"sunrise":"05:02","sunset":"21:25"},{"date":"2022-05-28","groups":[{"time":"08:03:00","height":"4.510"},{"time":"20:24:00","height":"4.478"}],"sunrise":"05:00","sunset":"21:26"},{"date":"2022-05-29","groups":[{"time":"08:41:00","height":"4.582"},{"time":"20:59:00","height":"4.586"}],"sunrise":"04:59","sunset":"21:27"},{"date":"2022-05-30","groups":[{"time":"09:16:00","height":"4.606"},{"time":"21:32:00","height":"4.640"}],"sunrise":"04:58","sunset":"21:29"},{"date":"2022-05-31","groups":[{"time":"09:50:00","height":"4.584"},{"time":"22:04:00","height":"4.639"}],"sunrise":"04:58","sunset":"21:30"},{"date":"2022-06-01","groups":[{"time":"10:22:00","height":"4.512"},{"time":"22:34:00","height":"4.580"}],"sunrise":"04:57","sunset":"21:31"},{"date":"2022-06-02","groups":[{"time":"10:53:00","height":"4.388"},{"time":"23:05:00","height":"4.467"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2022-06-03","groups":[{"time":"11:27:00","height":"4.215"},{"time":"23:41:00","height":"4.305"}],"sunrise":"04:55","sunset":"21:33"},{"date":"2022-06-04","groups":[{"time":"12:06:00","height":"4.004"}],"sunrise":"04:54","sunset":"21:34"},{"date":"2022-06-05","groups":[{"time":"00:21:00","height":"4.107"},{"time":"12:48:00","height":"3.774"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2022-06-06","groups":[{"time":"01:07:00","height":"3.895"},{"time":"13:39:00","height":"3.557"}],"sunrise":"04:53","sunset":"21:36"},{"date":"2022-06-07","groups":[{"time":"02:03:00","height":"3.708"},{"time":"14:41:00","height":"3.406"}],"sunrise":"04:52","sunset":"21:37"},{"date":"2022-06-08","groups":[{"time":"03:09:00","height":"3.607"},{"time":"15:53:00","height":"3.390"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2022-06-09","groups":[{"time":"04:24:00","height":"3.654"},{"time":"17:05:00","height":"3.555"}],"sunrise":"04:52","sunset":"21:39"},{"date":"2022-06-10","groups":[{"time":"05:28:00","height":"3.863"},{"time":"18:04:00","height":"3.871"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2022-06-11","groups":[{"time":"06:25:00","height":"4.176"},{"time":"18:56:00","height":"4.249"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2022-06-12","groups":[{"time":"07:16:00","height":"4.510"},{"time":"19:44:00","height":"4.617"}],"sunrise":"04:50","sunset":"21:41"},{"date":"2022-06-13","groups":[{"time":"08:06:00","height":"4.802"},{"time":"20:31:00","height":"4.923"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2022-06-14","groups":[{"time":"08:54:00","height":"5.008"},{"time":"21:18:00","height":"5.136"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2022-06-15","groups":[{"time":"09:42:00","height":"5.103"},{"time":"22:05:00","height":"5.236"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2022-06-16","groups":[{"time":"10:30:00","height":"5.077"},{"time":"22:52:00","height":"5.218"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2022-06-17","groups":[{"time":"11:19:00","height":"4.933"},{"time":"23:44:00","height":"5.088"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2022-06-18","groups":[{"time":"12:15:00","height":"4.694"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2022-06-19","groups":[{"time":"00:41:00","height":"4.869"},{"time":"13:11:00","height":"4.397"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2022-06-20","groups":[{"time":"01:38:00","height":"4.598"},{"time":"14:09:00","height":"4.095"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2022-06-21","groups":[{"time":"02:39:00","height":"4.323"},{"time":"15:12:00","height":"3.843"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2022-06-22","groups":[{"time":"03:45:00","height":"4.094"},{"time":"16:20:00","height":"3.694"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2022-06-23","groups":[{"time":"04:51:00","height":"3.956"},{"time":"17:23:00","height":"3.679"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2022-06-24","groups":[{"time":"05:50:00","height":"3.924"},{"time":"18:21:00","height":"3.777"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2022-06-25","groups":[{"time":"06:44:00","height":"3.975"},{"time":"19:12:00","height":"3.941"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2022-06-26","groups":[{"time":"07:34:00","height":"4.072"},{"time":"19:58:00","height":"4.122"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2022-06-27","groups":[{"time":"08:17:00","height":"4.181"},{"time":"20:37:00","height":"4.286"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2022-06-28","groups":[{"time":"08:56:00","height":"4.277"},{"time":"21:13:00","height":"4.413"}],"sunrise":"04:53","sunset":"21:45"},{"date":"2022-06-29","groups":[{"time":"09:33:00","height":"4.340"},{"time":"21:48:00","height":"4.492"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2022-06-30","groups":[{"time":"10:06:00","height":"4.363"},{"time":"22:21:00","height":"4.523"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2022-07-01","groups":[{"time":"10:39:00","height":"4.346"},{"time":"22:53:00","height":"4.509"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2022-07-02","groups":[{"time":"11:13:00","height":"4.288"},{"time":"23:27:00","height":"4.452"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2022-07-03","groups":[{"time":"11:51:00","height":"4.195"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2022-07-04","groups":[{"time":"00:06:00","height":"4.357"},{"time":"12:31:00","height":"4.071"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2022-07-05","groups":[{"time":"00:48:00","height":"4.232"},{"time":"13:14:00","height":"3.928"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2022-07-06","groups":[{"time":"01:34:00","height":"4.092"},{"time":"14:04:00","height":"3.788"}],"sunrise":"04:59","sunset":"21:42"},{"date":"2022-07-07","groups":[{"time":"02:28:00","height":"3.961"},{"time":"15:02:00","height":"3.685"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2022-07-08","groups":[{"time":"03:30:00","height":"3.874"},{"time":"16:11:00","height":"3.666"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2022-07-09","groups":[{"time":"04:40:00","height":"3.873"},{"time":"17:19:00","height":"3.780"}],"sunrise":"05:02","sunset":"21:40"},{"date":"2022-07-10","groups":[{"time":"05:46:00","height":"3.995"},{"time":"18:22:00","height":"4.032"}],"sunrise":"05:03","sunset":"21:39"},{"date":"2022-07-11","groups":[{"time":"06:49:00","height":"4.225"},{"time":"19:20:00","height":"4.368"}],"sunrise":"05:05","sunset":"21:39"},{"date":"2022-07-12","groups":[{"time":"07:47:00","height":"4.502"},{"time":"20:15:00","height":"4.717"}],"sunrise":"05:06","sunset":"21:38"},{"date":"2022-07-13","groups":[{"time":"08:43:00","height":"4.766"},{"time":"21:07:00","height":"5.024"}],"sunrise":"05:07","sunset":"21:37"},{"date":"2022-07-14","groups":[{"time":"09:35:00","height":"4.966"},{"time":"21:57:00","height":"5.243"}],"sunrise":"05:08","sunset":"21:36"},{"date":"2022-07-15","groups":[{"time":"10:23:00","height":"5.064"},{"time":"22:44:00","height":"5.342"}],"sunrise":"05:09","sunset":"21:35"},{"date":"2022-07-16","groups":[{"time":"11:10:00","height":"5.040"},{"time":"23:33:00","height":"5.306"}],"sunrise":"05:11","sunset":"21:34"},{"date":"2022-07-17","groups":[{"time":"12:00:00","height":"4.894"}],"sunrise":"05:12","sunset":"21:32"},{"date":"2022-07-18","groups":[{"time":"00:23:00","height":"5.135"},{"time":"12:49:00","height":"4.647"}],"sunrise":"05:13","sunset":"21:31"},{"date":"2022-07-19","groups":[{"time":"01:13:00","height":"4.854"},{"time":"13:38:00","height":"4.335"}],"sunrise":"05:15","sunset":"21:30"},{"date":"2022-07-20","groups":[{"time":"02:03:00","height":"4.503"},{"time":"14:29:00","height":"4.003"}],"sunrise":"05:16","sunset":"21:29"},{"date":"2022-07-21","groups":[{"time":"02:57:00","height":"4.130"},{"time":"15:25:00","height":"3.701"}],"sunrise":"05:18","sunset":"21:27"},{"date":"2022-07-22","groups":[{"time":"03:57:00","height":"3.797"},{"time":"16:31:00","height":"3.492"}],"sunrise":"05:19","sunset":"21:26"},{"date":"2022-07-23","groups":[{"time":"05:03:00","height":"3.581"},{"time":"17:38:00","height":"3.447"}],"sunrise":"05:20","sunset":"21:25"},{"date":"2022-07-24","groups":[{"time":"06:08:00","height":"3.540"},{"time":"18:41:00","height":"3.582"}],"sunrise":"05:22","sunset":"21:23"},{"date":"2022-07-25","groups":[{"time":"07:09:00","height":"3.665"},{"time":"19:37:00","height":"3.831"}],"sunrise":"05:23","sunset":"21:22"},{"date":"2022-07-26","groups":[{"time":"08:00:00","height":"3.877"},{"time":"20:21:00","height":"4.101"}],"sunrise":"05:25","sunset":"21:20"},{"date":"2022-07-27","groups":[{"time":"08:43:00","height":"4.095"},{"time":"21:00:00","height":"4.335"}],"sunrise":"05:26","sunset":"21:19"},{"date":"2022-07-28","groups":[{"time":"09:19:00","height":"4.275"},{"time":"21:35:00","height":"4.512"}],"sunrise":"05:28","sunset":"21:17"},{"date":"2022-07-29","groups":[{"time":"09:53:00","height":"4.404"},{"time":"22:06:00","height":"4.630"}],"sunrise":"05:30","sunset":"21:15"},{"date":"2022-07-30","groups":[{"time":"10:25:00","height":"4.487"},{"time":"22:38:00","height":"4.701"}],"sunrise":"05:31","sunset":"21:14"},{"date":"2022-07-31","groups":[{"time":"10:56:00","height":"4.526"},{"time":"23:09:00","height":"4.723"}],"sunrise":"05:33","sunset":"21:12"},{"date":"2022-08-01","groups":[{"time":"11:30:00","height":"4.513"},{"time":"23:45:00","height":"4.689"}],"sunrise":"05:34","sunset":"21:10"},{"date":"2022-08-02","groups":[{"time":"12:07:00","height":"4.442"}],"sunrise":"05:36","sunset":"21:09"},{"date":"2022-08-03","groups":[{"time":"00:22:00","height":"4.593"},{"time":"12:45:00","height":"4.311"}],"sunrise":"05:38","sunset":"21:07"},{"date":"2022-08-04","groups":[{"time":"01:03:00","height":"4.439"},{"time":"13:27:00","height":"4.130"}],"sunrise":"05:39","sunset":"21:05"},{"date":"2022-08-05","groups":[{"time":"01:49:00","height":"4.232"},{"time":"14:18:00","height":"3.920"}],"sunrise":"05:41","sunset":"21:03"},{"date":"2022-08-06","groups":[{"time":"02:44:00","height":"3.995"},{"time":"15:22:00","height":"3.724"}],"sunrise":"05:42","sunset":"21:01"},{"date":"2022-08-07","groups":[{"time":"03:56:00","height":"3.784"},{"time":"16:42:00","height":"3.643"}],"sunrise":"05:44","sunset":"20:59"},{"date":"2022-08-08","groups":[{"time":"05:18:00","height":"3.724"},{"time":"18:00:00","height":"3.797"}],"sunrise":"05:46","sunset":"20:58"},{"date":"2022-08-09","groups":[{"time":"06:34:00","height":"3.911"},{"time":"19:10:00","height":"4.170"}],"sunrise":"05:47","sunset":"20:56"},{"date":"2022-08-10","groups":[{"time":"07:42:00","height":"4.272"},{"time":"20:10:00","height":"4.633"}],"sunrise":"05:49","sunset":"20:54"},{"date":"2022-08-11","groups":[{"time":"08:39:00","height":"4.669"},{"time":"21:02:00","height":"5.062"}],"sunrise":"05:51","sunset":"20:52"},{"date":"2022-08-12","groups":[{"time":"09:29:00","height":"4.992"},{"time":"21:49:00","height":"5.373"}],"sunrise":"05:53","sunset":"20:50"},{"date":"2022-08-13","groups":[{"time":"10:13:00","height":"5.181"},{"time":"22:32:00","height":"5.523"}],"sunrise":"05:54","sunset":"20:48"},{"date":"2022-08-14","groups":[{"time":"10:54:00","height":"5.214"},{"time":"23:13:00","height":"5.496"}],"sunrise":"05:56","sunset":"20:46"},{"date":"2022-08-15","groups":[{"time":"11:36:00","height":"5.094"},{"time":"23:57:00","height":"5.303"}],"sunrise":"05:58","sunset":"20:43"},{"date":"2022-08-16","groups":[{"time":"12:18:00","height":"4.844"}],"sunrise":"05:59","sunset":"20:41"},{"date":"2022-08-17","groups":[{"time":"00:39:00","height":"4.973"},{"time":"12:58:00","height":"4.503"}],"sunrise":"06:01","sunset":"20:39"},{"date":"2022-08-18","groups":[{"time":"01:21:00","height":"4.552"},{"time":"13:39:00","height":"4.116"}],"sunrise":"06:03","sunset":"20:37"},{"date":"2022-08-19","groups":[{"time":"02:04:00","height":"4.092"},{"time":"14:25:00","height":"3.722"}],"sunrise":"06:04","sunset":"20:35"},{"date":"2022-08-20","groups":[{"time":"02:55:00","height":"3.641"},{"time":"15:23:00","height":"3.371"}],"sunrise":"06:06","sunset":"20:33"},{"date":"2022-08-21","groups":[{"time":"04:05:00","height":"3.279"},{"time":"16:49:00","height":"3.178"}],"sunrise":"06:08","sunset":"20:31"},{"date":"2022-08-22","groups":[{"time":"05:33:00","height":"3.160"},{"time":"18:16:00","height":"3.302"}],"sunrise":"06:09","sunset":"20:28"},{"date":"2022-08-23","groups":[{"time":"06:51:00","height":"3.359"},{"time":"19:21:00","height":"3.652"}],"sunrise":"06:11","sunset":"20:26"},{"date":"2022-08-24","groups":[{"time":"07:45:00","height":"3.708"},{"time":"20:06:00","height":"4.042"}],"sunrise":"06:13","sunset":"20:24"},{"date":"2022-08-25","groups":[{"time":"08:27:00","height":"4.058"},{"time":"20:43:00","height":"4.380"}],"sunrise":"06:15","sunset":"20:22"},{"date":"2022-08-26","groups":[{"time":"09:02:00","height":"4.350"},{"time":"21:15:00","height":"4.643"}],"sunrise":"06:16","sunset":"20:19"},{"date":"2022-08-27","groups":[{"time":"09:34:00","height":"4.575"},{"time":"21:47:00","height":"4.835"}],"sunrise":"06:18","sunset":"20:17"},{"date":"2022-08-28","groups":[{"time":"10:04:00","height":"4.736"},{"time":"22:17:00","height":"4.964"}],"sunrise":"06:20","sunset":"20:15"},{"date":"2022-08-29","groups":[{"time":"10:34:00","height":"4.836"},{"time":"22:46:00","height":"5.027"}],"sunrise":"06:21","sunset":"20:13"},{"date":"2022-08-30","groups":[{"time":"11:04:00","height":"4.862"},{"time":"23:18:00","height":"5.009"}],"sunrise":"06:23","sunset":"20:10"},{"date":"2022-08-31","groups":[{"time":"11:38:00","height":"4.797"},{"time":"23:54:00","height":"4.895"}],"sunrise":"06:25","sunset":"20:08"},{"date":"2022-09-01","groups":[{"time":"12:15:00","height":"4.635"}],"sunrise":"06:26","sunset":"20:06"},{"date":"2022-09-02","groups":[{"time":"00:32:00","height":"4.679"},{"time":"12:55:00","height":"4.384"}],"sunrise":"06:28","sunset":"20:03"},{"date":"2022-09-03","groups":[{"time":"01:15:00","height":"4.366"},{"time":"13:42:00","height":"4.062"}],"sunrise":"06:30","sunset":"20:01"},{"date":"2022-09-04","groups":[{"time":"02:09:00","height":"3.979"},{"time":"14:46:00","height":"3.719"}],"sunrise":"06:31","sunset":"19:59"},{"date":"2022-09-05","groups":[{"time":"03:26:00","height":"3.603"},{"time":"16:19:00","height":"3.513"}],"sunrise":"06:33","sunset":"19:56"},{"date":"2022-09-06","groups":[{"time":"05:06:00","height":"3.470"},{"time":"17:53:00","height":"3.682"}],"sunrise":"06:35","sunset":"19:54"},{"date":"2022-09-07","groups":[{"time":"06:36:00","height":"3.751"},{"time":"19:09:00","height":"4.171"}],"sunrise":"06:37","sunset":"19:52"},{"date":"2022-09-08","groups":[{"time":"07:42:00","height":"4.253"},{"time":"20:05:00","height":"4.731"}],"sunrise":"06:38","sunset":"19:49"},{"date":"2022-09-09","groups":[{"time":"08:32:00","height":"4.741"},{"time":"20:51:00","height":"5.197"}],"sunrise":"06:40","sunset":"19:47"},{"date":"2022-09-10","groups":[{"time":"09:16:00","height":"5.100"},{"time":"21:33:00","height":"5.495"}],"sunrise":"06:42","sunset":"19:44"},{"date":"2022-09-11","groups":[{"time":"09:55:00","height":"5.293"},{"time":"22:12:00","height":"5.605"}],"sunrise":"06:43","sunset":"19:42"},{"date":"2022-09-12","groups":[{"time":"10:31:00","height":"5.319"},{"time":"22:48:00","height":"5.535"}],"sunrise":"06:45","sunset":"19:40"},{"date":"2022-09-13","groups":[{"time":"11:05:00","height":"5.195"},{"time":"23:24:00","height":"5.308"}],"sunrise":"06:47","sunset":"19:37"},{"date":"2022-09-14","groups":[{"time":"11:41:00","height":"4.948"}],"sunrise":"06:48","sunset":"19:35"},{"date":"2022-09-15","groups":[{"time":"00:02:00","height":"4.959"},{"time":"12:17:00","height":"4.611"}],"sunrise":"06:50","sunset":"19:32"},{"date":"2022-09-16","groups":[{"time":"00:37:00","height":"4.527"},{"time":"12:51:00","height":"4.219"}],"sunrise":"06:52","sunset":"19:30"},{"date":"2022-09-17","groups":[{"time":"01:15:00","height":"4.052"},{"time":"13:30:00","height":"3.801"}],"sunrise":"06:54","sunset":"19:28"},{"date":"2022-09-18","groups":[{"time":"01:59:00","height":"3.566"},{"time":"14:21:00","height":"3.386"}],"sunrise":"06:55","sunset":"19:25"},{"date":"2022-09-19","groups":[{"time":"03:02:00","height":"3.127"},{"time":"15:46:00","height":"3.073"}],"sunrise":"06:57","sunset":"19:23"},{"date":"2022-09-20","groups":[{"time":"04:55:00","height":"2.926"},{"time":"17:47:00","height":"3.149"}],"sunrise":"06:59","sunset":"19:20"},{"date":"2022-09-21","groups":[{"time":"06:29:00","height":"3.185"},{"time":"18:57:00","height":"3.562"}],"sunrise":"07:00","sunset":"19:18"},{"date":"2022-09-22","groups":[{"time":"07:24:00","height":"3.629"},{"time":"19:41:00","height":"4.024"}],"sunrise":"07:02","sunset":"19:15"},{"date":"2022-09-23","groups":[{"time":"08:02:00","height":"4.069"},{"time":"20:16:00","height":"4.434"}],"sunrise":"07:04","sunset":"19:13"},{"date":"2022-09-24","groups":[{"time":"08:35:00","height":"4.448"},{"time":"20:48:00","height":"4.765"}],"sunrise":"07:05","sunset":"19:11"},{"date":"2022-09-25","groups":[{"time":"09:06:00","height":"4.751"},{"time":"21:19:00","height":"5.016"}],"sunrise":"07:07","sunset":"19:08"},{"date":"2022-09-26","groups":[{"time":"09:36:00","height":"4.977"},{"time":"21:50:00","height":"5.188"}],"sunrise":"07:09","sunset":"19:06"},{"date":"2022-09-27","groups":[{"time":"10:07:00","height":"5.116"},{"time":"22:21:00","height":"5.269"}],"sunrise":"07:11","sunset":"19:03"},{"date":"2022-09-28","groups":[{"time":"10:38:00","height":"5.154"},{"time":"22:53:00","height":"5.239"}],"sunrise":"07:12","sunset":"19:01"},{"date":"2022-09-29","groups":[{"time":"11:10:00","height":"5.072"},{"time":"23:27:00","height":"5.078"}],"sunrise":"07:14","sunset":"18:59"},{"date":"2022-09-30","groups":[{"time":"11:47:00","height":"4.865"}],"sunrise":"07:16","sunset":"18:56"},{"date":"2022-10-01","groups":[{"time":"00:08:00","height":"4.782"},{"time":"12:30:00","height":"4.543"}],"sunrise":"07:18","sunset":"18:54"},{"date":"2022-10-02","groups":[{"time":"00:54:00","height":"4.367"},{"time":"13:21:00","height":"4.138"}],"sunrise":"07:19","sunset":"18:51"},{"date":"2022-10-03","groups":[{"time":"01:52:00","height":"3.880"},{"time":"14:32:00","height":"3.728"}],"sunrise":"07:21","sunset":"18:49"},{"date":"2022-10-04","groups":[{"time":"03:20:00","height":"3.463"},{"time":"16:16:00","height":"3.538"}],"sunrise":"07:23","sunset":"18:47"},{"date":"2022-10-05","groups":[{"time":"05:09:00","height":"3.420"},{"time":"17:52:00","height":"3.800"}],"sunrise":"07:24","sunset":"18:44"},{"date":"2022-10-06","groups":[{"time":"06:35:00","height":"3.822"},{"time":"19:00:00","height":"4.331"}],"sunrise":"07:26","sunset":"18:42"},{"date":"2022-10-07","groups":[{"time":"07:32:00","height":"4.356"},{"time":"19:51:00","height":"4.855"}],"sunrise":"07:28","sunset":"18:40"},{"date":"2022-10-08","groups":[{"time":"08:17:00","height":"4.812"},{"time":"20:34:00","height":"5.240"}],"sunrise":"07:30","sunset":"18:37"},{"date":"2022-10-09","groups":[{"time":"08:56:00","height":"5.119"},{"time":"21:12:00","height":"5.448"}],"sunrise":"07:32","sunset":"18:35"},{"date":"2022-10-10","groups":[{"time":"09:32:00","height":"5.268"},{"time":"21:48:00","height":"5.488"}],"sunrise":"07:33","sunset":"18:33"},{"date":"2022-10-11","groups":[{"time":"10:05:00","height":"5.276"},{"time":"22:22:00","height":"5.385"}],"sunrise":"07:35","sunset":"18:30"},{"date":"2022-10-12","groups":[{"time":"10:36:00","height":"5.165"},{"time":"22:53:00","height":"5.165"}],"sunrise":"07:37","sunset":"18:28"},{"date":"2022-10-13","groups":[{"time":"11:06:00","height":"4.953"},{"time":"23:25:00","height":"4.850"}],"sunrise":"07:39","sunset":"18:26"},{"date":"2022-10-14","groups":[{"time":"11:39:00","height":"4.661"},{"time":"23:59:00","height":"4.465"}],"sunrise":"07:40","sunset":"18:24"},{"date":"2022-10-15","groups":[{"time":"12:12:00","height":"4.310"}],"sunrise":"07:42","sunset":"18:21"},{"date":"2022-10-16","groups":[{"time":"00:35:00","height":"4.035"},{"time":"12:49:00","height":"3.922"}],"sunrise":"07:44","sunset":"18:19"},{"date":"2022-10-17","groups":[{"time":"01:17:00","height":"3.585"},{"time":"13:37:00","height":"3.521"}],"sunrise":"07:46","sunset":"18:17"},{"date":"2022-10-18","groups":[{"time":"02:17:00","height":"3.160"},{"time":"14:52:00","height":"3.182"}],"sunrise":"07:48","sunset":"18:15"},{"date":"2022-10-19","groups":[{"time":"03:58:00","height":"2.911"},{"time":"16:56:00","height":"3.142"}],"sunrise":"07:50","sunset":"18:12"},{"date":"2022-10-20","groups":[{"time":"05:49:00","height":"3.107"},{"time":"18:15:00","height":"3.495"}],"sunrise":"07:51","sunset":"18:10"},{"date":"2022-10-21","groups":[{"time":"06:46:00","height":"3.546"},{"time":"19:03:00","height":"3.951"}],"sunrise":"07:53","sunset":"18:08"},{"date":"2022-10-22","groups":[{"time":"07:27:00","height":"4.018"},{"time":"19:41:00","height":"4.390"}],"sunrise":"07:55","sunset":"18:06"},{"date":"2022-10-23","groups":[{"time":"08:01:00","height":"4.452"},{"time":"20:15:00","height":"4.769"}],"sunrise":"07:57","sunset":"18:04"},{"date":"2022-10-24","groups":[{"time":"08:33:00","height":"4.818"},{"time":"20:47:00","height":"5.070"}],"sunrise":"07:59","sunset":"18:02"},{"date":"2022-10-25","groups":[{"time":"09:06:00","height":"5.096"},{"time":"21:20:00","height":"5.276"}],"sunrise":"08:01","sunset":"18:00"},{"date":"2022-10-26","groups":[{"time":"09:40:00","height":"5.270"},{"time":"21:55:00","height":"5.367"}],"sunrise":"08:02","sunset":"17:58"},{"date":"2022-10-27","groups":[{"time":"10:14:00","height":"5.318"},{"time":"22:31:00","height":"5.318"}],"sunrise":"08:04","sunset":"17:56"},{"date":"2022-10-28","groups":[{"time":"10:50:00","height":"5.228"},{"time":"23:08:00","height":"5.120"}],"sunrise":"08:06","sunset":"17:54"},{"date":"2022-10-29","groups":[{"time":"11:30:00","height":"5.001"},{"time":"23:54:00","height":"4.778"}],"sunrise":"08:08","sunset":"17:52"},{"date":"2022-10-30","groups":[{"time":"12:19:00","height":"4.658"}],"sunrise":"08:10","sunset":"17:50"},{"date":"2022-10-31","groups":[{"time":"00:47:00","height":"4.332"},{"time":"12:17:00","height":"4.253"}],"sunrise":"07:12","sunset":"16:48"},{"date":"2022-11-01","groups":[{"time":"00:53:00","height":"3.867"},{"time":"13:34:00","height":"3.900"}],"sunrise":"07:14","sunset":"16:46"},{"date":"2022-11-02","groups":[{"time":"02:22:00","height":"3.548"},{"time":"15:11:00","height":"3.791"}],"sunrise":"07:15","sunset":"16:44"},{"date":"2022-11-03","groups":[{"time":"04:01:00","height":"3.581"},{"time":"16:35:00","height":"4.021"}],"sunrise":"07:17","sunset":"16:42"},{"date":"2022-11-04","groups":[{"time":"05:15:00","height":"3.928"},{"time":"17:39:00","height":"4.420"}],"sunrise":"07:19","sunset":"16:40"},{"date":"2022-11-05","groups":[{"time":"06:10:00","height":"4.351"},{"time":"18:28:00","height":"4.792"}],"sunrise":"07:21","sunset":"16:38"},{"date":"2022-11-06","groups":[{"time":"06:53:00","height":"4.704"},{"time":"19:10:00","height":"5.044"}],"sunrise":"07:23","sunset":"16:36"},{"date":"2022-11-07","groups":[{"time":"07:31:00","height":"4.938"},{"time":"19:48:00","height":"5.163"}],"sunrise":"07:25","sunset":"16:35"},{"date":"2022-11-08","groups":[{"time":"08:06:00","height":"5.054"},{"time":"20:23:00","height":"5.167"}],"sunrise":"07:27","sunset":"16:33"},{"date":"2022-11-09","groups":[{"time":"08:39:00","height":"5.073"},{"time":"20:56:00","height":"5.080"}],"sunrise":"07:28","sunset":"16:31"},{"date":"2022-11-10","groups":[{"time":"09:10:00","height":"5.007"},{"time":"21:27:00","height":"4.916"}],"sunrise":"07:30","sunset":"16:30"},{"date":"2022-11-11","groups":[{"time":"09:40:00","height":"4.863"},{"time":"21:58:00","height":"4.682"}],"sunrise":"07:32","sunset":"16:28"},{"date":"2022-11-12","groups":[{"time":"10:11:00","height":"4.648"},{"time":"22:32:00","height":"4.389"}],"sunrise":"07:34","sunset":"16:26"},{"date":"2022-11-13","groups":[{"time":"10:46:00","height":"4.379"},{"time":"23:10:00","height":"4.053"}],"sunrise":"07:36","sunset":"16:25"},{"date":"2022-11-14","groups":[{"time":"11:24:00","height":"4.071"},{"time":"23:52:00","height":"3.698"}],"sunrise":"07:38","sunset":"16:23"},{"date":"2022-11-15","groups":[{"time":"12:11:00","height":"3.749"}],"sunrise":"07:39","sunset":"16:22"},{"date":"2022-11-16","groups":[{"time":"00:47:00","height":"3.361"},{"time":"13:14:00","height":"3.465"}],"sunrise":"07:41","sunset":"16:20"},{"date":"2022-11-17","groups":[{"time":"02:01:00","height":"3.129"},{"time":"14:40:00","height":"3.335"}],"sunrise":"07:43","sunset":"16:19"},{"date":"2022-11-18","groups":[{"time":"03:38:00","height":"3.150"},{"time":"16:09:00","height":"3.478"}],"sunrise":"07:45","sunset":"16:18"},{"date":"2022-11-19","groups":[{"time":"04:50:00","height":"3.447"},{"time":"17:09:00","height":"3.818"}],"sunrise":"07:47","sunset":"16:16"},{"date":"2022-11-20","groups":[{"time":"05:39:00","height":"3.865"},{"time":"17:55:00","height":"4.218"}],"sunrise":"07:48","sunset":"16:15"},{"date":"2022-11-21","groups":[{"time":"06:20:00","height":"4.303"},{"time":"18:35:00","height":"4.605"}],"sunrise":"07:50","sunset":"16:14"},{"date":"2022-11-22","groups":[{"time":"06:59:00","height":"4.702"},{"time":"19:15:00","height":"4.934"}],"sunrise":"07:52","sunset":"16:13"},{"date":"2022-11-23","groups":[{"time":"07:37:00","height":"5.023"},{"time":"19:54:00","height":"5.168"}],"sunrise":"07:53","sunset":"16:11"},{"date":"2022-11-24","groups":[{"time":"08:16:00","height":"5.238"},{"time":"20:35:00","height":"5.279"}],"sunrise":"07:55","sunset":"16:10"},{"date":"2022-11-25","groups":[{"time":"08:56:00","height":"5.327"},{"time":"21:16:00","height":"5.252"}],"sunrise":"07:57","sunset":"16:09"},{"date":"2022-11-26","groups":[{"time":"09:38:00","height":"5.281"},{"time":"21:59:00","height":"5.081"}],"sunrise":"07:58","sunset":"16:08"},{"date":"2022-11-27","groups":[{"time":"10:23:00","height":"5.109"},{"time":"22:51:00","height":"4.791"}],"sunrise":"08:00","sunset":"16:07"},{"date":"2022-11-28","groups":[{"time":"11:18:00","height":"4.841"},{"time":"23:49:00","height":"4.429"}],"sunrise":"08:01","sunset":"16:06"},{"date":"2022-11-29","groups":[{"time":"12:18:00","height":"4.531"}],"sunrise":"08:03","sunset":"16:06"},{"date":"2022-11-30","groups":[{"time":"00:54:00","height":"4.073"},{"time":"13:28:00","height":"4.259"}],"sunrise":"08:05","sunset":"16:05"},{"date":"2022-12-01","groups":[{"time":"02:08:00","height":"3.818"},{"time":"14:46:00","height":"4.112"}],"sunrise":"08:06","sunset":"16:04"},{"date":"2022-12-02","groups":[{"time":"03:30:00","height":"3.756"},{"time":"16:02:00","height":"4.137"}],"sunrise":"08:07","sunset":"16:03"},{"date":"2022-12-03","groups":[{"time":"04:38:00","height":"3.890"},{"time":"17:04:00","height":"4.285"}],"sunrise":"08:09","sunset":"16:03"},{"date":"2022-12-04","groups":[{"time":"05:36:00","height":"4.126"},{"time":"17:57:00","height":"4.462"}],"sunrise":"08:10","sunset":"16:02"},{"date":"2022-12-05","groups":[{"time":"06:25:00","height":"4.367"},{"time":"18:44:00","height":"4.605"}],"sunrise":"08:12","sunset":"16:02"},{"date":"2022-12-06","groups":[{"time":"07:06:00","height":"4.560"},{"time":"19:25:00","height":"4.693"}],"sunrise":"08:13","sunset":"16:01"},{"date":"2022-12-07","groups":[{"time":"07:44:00","height":"4.693"},{"time":"20:03:00","height":"4.727"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2022-12-08","groups":[{"time":"08:19:00","height":"4.765"},{"time":"20:37:00","height":"4.712"}],"sunrise":"08:15","sunset":"16:00"},{"date":"2022-12-09","groups":[{"time":"08:52:00","height":"4.776"},{"time":"21:11:00","height":"4.646"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2022-12-10","groups":[{"time":"09:24:00","height":"4.727"},{"time":"21:43:00","height":"4.528"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2022-12-11","groups":[{"time":"09:56:00","height":"4.620"},{"time":"22:16:00","height":"4.360"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2022-12-12","groups":[{"time":"10:31:00","height":"4.464"},{"time":"22:54:00","height":"4.154"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2022-12-13","groups":[{"time":"11:09:00","height":"4.271"},{"time":"23:35:00","height":"3.924"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2022-12-14","groups":[{"time":"11:52:00","height":"4.055"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2022-12-15","groups":[{"time":"00:21:00","height":"3.691"},{"time":"12:42:00","height":"3.843"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2022-12-16","groups":[{"time":"01:16:00","height":"3.493"},{"time":"13:42:00","height":"3.678"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2022-12-17","groups":[{"time":"02:22:00","height":"3.389"},{"time":"14:52:00","height":"3.624"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2022-12-18","groups":[{"time":"03:37:00","height":"3.446"},{"time":"16:03:00","height":"3.728"}],"sunrise":"08:25","sunset":"16:00"},{"date":"2022-12-19","groups":[{"time":"04:40:00","height":"3.680"},{"time":"17:03:00","height":"3.975"}],"sunrise":"08:25","sunset":"16:01"},{"date":"2022-12-20","groups":[{"time":"05:36:00","height":"4.030"},{"time":"17:57:00","height":"4.297"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2022-12-21","groups":[{"time":"06:25:00","height":"4.416"},{"time":"18:46:00","height":"4.621"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2022-12-22","groups":[{"time":"07:12:00","height":"4.776"},{"time":"19:34:00","height":"4.895"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2022-12-23","groups":[{"time":"07:58:00","height":"5.067"},{"time":"20:21:00","height":"5.080"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2022-12-24","groups":[{"time":"08:45:00","height":"5.260"},{"time":"21:09:00","height":"5.155"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2022-12-25","groups":[{"time":"09:31:00","height":"5.340"},{"time":"21:56:00","height":"5.109"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2022-12-26","groups":[{"time":"10:19:00","height":"5.302"},{"time":"22:49:00","height":"4.951"}],"sunrise":"08:28","sunset":"16:05"},{"date":"2022-12-27","groups":[{"time":"11:13:00","height":"5.154"},{"time":"23:43:00","height":"4.703"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2022-12-28","groups":[{"time":"12:09:00","height":"4.917"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2022-12-29","groups":[{"time":"00:38:00","height":"4.402"},{"time":"13:07:00","height":"4.627"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2022-12-30","groups":[{"time":"01:38:00","height":"4.101"},{"time":"14:09:00","height":"4.332"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2022-12-31","groups":[{"time":"02:43:00","height":"3.856"},{"time":"15:16:00","height":"4.092"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2023-01-01","groups":[{"time":"03:50:00","height":"3.728"},{"time":"16:21:00","height":"3.959"}],"sunrise":"08:29","sunset":"16:10"},{"date":"2023-01-02","groups":[{"time":"04:54:00","height":"3.748"},{"time":"17:22:00","height":"3.950"}],"sunrise":"08:29","sunset":"16:11"},{"date":"2023-01-03","groups":[{"time":"05:53:00","height":"3.891"},{"time":"18:17:00","height":"4.041"}],"sunrise":"08:28","sunset":"16:12"},{"date":"2023-01-04","groups":[{"time":"06:44:00","height":"4.098"},{"time":"19:06:00","height":"4.179"}],"sunrise":"08:28","sunset":"16:14"},{"date":"2023-01-05","groups":[{"time":"07:29:00","height":"4.308"},{"time":"19:48:00","height":"4.317"}],"sunrise":"08:28","sunset":"16:15"},{"date":"2023-01-06","groups":[{"time":"08:07:00","height":"4.481"},{"time":"20:26:00","height":"4.424"}],"sunrise":"08:27","sunset":"16:16"},{"date":"2023-01-07","groups":[{"time":"08:42:00","height":"4.600"},{"time":"21:01:00","height":"4.484"}],"sunrise":"08:27","sunset":"16:17"},{"date":"2023-01-08","groups":[{"time":"09:15:00","height":"4.660"},{"time":"21:34:00","height":"4.492"}],"sunrise":"08:26","sunset":"16:19"},{"date":"2023-01-09","groups":[{"time":"09:46:00","height":"4.666"},{"time":"22:05:00","height":"4.452"}],"sunrise":"08:26","sunset":"16:20"},{"date":"2023-01-10","groups":[{"time":"10:18:00","height":"4.621"},{"time":"22:39:00","height":"4.367"}],"sunrise":"08:25","sunset":"16:22"},{"date":"2023-01-11","groups":[{"time":"10:54:00","height":"4.532"},{"time":"23:16:00","height":"4.241"}],"sunrise":"08:25","sunset":"16:23"},{"date":"2023-01-12","groups":[{"time":"11:31:00","height":"4.398"},{"time":"23:54:00","height":"4.079"}],"sunrise":"08:24","sunset":"16:25"},{"date":"2023-01-13","groups":[{"time":"12:11:00","height":"4.227"}],"sunrise":"08:23","sunset":"16:26"},{"date":"2023-01-14","groups":[{"time":"00:36:00","height":"3.894"},{"time":"12:56:00","height":"4.036"}],"sunrise":"08:22","sunset":"16:28"},{"date":"2023-01-15","groups":[{"time":"01:26:00","height":"3.711"},{"time":"13:51:00","height":"3.852"}],"sunrise":"08:21","sunset":"16:29"},{"date":"2023-01-16","groups":[{"time":"02:27:00","height":"3.572"},{"time":"14:58:00","height":"3.722"}],"sunrise":"08:20","sunset":"16:31"},{"date":"2023-01-17","groups":[{"time":"03:42:00","height":"3.550"},{"time":"16:12:00","height":"3.726"}],"sunrise":"08:19","sunset":"16:33"},{"date":"2023-01-18","groups":[{"time":"04:53:00","height":"3.721"},{"time":"17:23:00","height":"3.914"}],"sunrise":"08:18","sunset":"16:34"},{"date":"2023-01-19","groups":[{"time":"05:58:00","height":"4.064"},{"time":"18:27:00","height":"4.239"}],"sunrise":"08:17","sunset":"16:36"},{"date":"2023-01-20","groups":[{"time":"06:56:00","height":"4.490"},{"time":"19:24:00","height":"4.606"}],"sunrise":"08:16","sunset":"16:38"},{"date":"2023-01-21","groups":[{"time":"07:48:00","height":"4.911"},{"time":"20:16:00","height":"4.936"}],"sunrise":"08:15","sunset":"16:40"},{"date":"2023-01-22","groups":[{"time":"08:38:00","height":"5.260"},{"time":"21:04:00","height":"5.167"}],"sunrise":"08:14","sunset":"16:41"},{"date":"2023-01-23","groups":[{"time":"09:24:00","height":"5.487"},{"time":"21:50:00","height":"5.263"}],"sunrise":"08:12","sunset":"16:43"},{"date":"2023-01-24","groups":[{"time":"10:10:00","height":"5.562"},{"time":"22:36:00","height":"5.207"}],"sunrise":"08:11","sunset":"16:45"},{"date":"2023-01-25","groups":[{"time":"10:58:00","height":"5.471"},{"time":"23:23:00","height":"5.008"}],"sunrise":"08:10","sunset":"16:47"},{"date":"2023-01-26","groups":[{"time":"11:47:00","height":"5.222"}],"sunrise":"08:08","sunset":"16:49"},{"date":"2023-01-27","groups":[{"time":"00:10:00","height":"4.695"},{"time":"12:35:00","height":"4.850"}],"sunrise":"08:07","sunset":"16:51"},{"date":"2023-01-28","groups":[{"time":"00:57:00","height":"4.312"},{"time":"13:25:00","height":"4.405"}],"sunrise":"08:05","sunset":"16:52"},{"date":"2023-01-29","groups":[{"time":"01:49:00","height":"3.914"},{"time":"14:22:00","height":"3.954"}],"sunrise":"08:04","sunset":"16:54"},{"date":"2023-01-30","groups":[{"time":"02:51:00","height":"3.567"},{"time":"15:30:00","height":"3.587"}],"sunrise":"08:02","sunset":"16:56"},{"date":"2023-01-31","groups":[{"time":"04:06:00","height":"3.372"},{"time":"16:43:00","height":"3.423"}],"sunrise":"08:01","sunset":"16:58"},{"date":"2023-02-01","groups":[{"time":"05:23:00","height":"3.432"},{"time":"17:56:00","height":"3.519"}],"sunrise":"07:59","sunset":"17:00"},{"date":"2023-02-02","groups":[{"time":"06:28:00","height":"3.701"},{"time":"18:54:00","height":"3.777"}],"sunrise":"07:57","sunset":"17:02"},{"date":"2023-02-03","groups":[{"time":"07:17:00","height":"4.032"},{"time":"19:38:00","height":"4.062"}],"sunrise":"07:56","sunset":"17:04"},{"date":"2023-02-04","groups":[{"time":"07:56:00","height":"4.327"},{"time":"20:15:00","height":"4.301"}],"sunrise":"07:54","sunset":"17:06"},{"date":"2023-02-05","groups":[{"time":"08:31:00","height":"4.550"},{"time":"20:49:00","height":"4.475"}],"sunrise":"07:52","sunset":"17:08"},{"date":"2023-02-06","groups":[{"time":"09:02:00","height":"4.701"},{"time":"21:19:00","height":"4.585"}],"sunrise":"07:51","sunset":"17:10"},{"date":"2023-02-07","groups":[{"time":"09:31:00","height":"4.789"},{"time":"21:47:00","height":"4.639"}],"sunrise":"07:49","sunset":"17:12"},{"date":"2023-02-08","groups":[{"time":"10:00:00","height":"4.822"},{"time":"22:17:00","height":"4.638"}],"sunrise":"07:47","sunset":"17:13"},{"date":"2023-02-09","groups":[{"time":"10:31:00","height":"4.794"},{"time":"22:50:00","height":"4.573"}],"sunrise":"07:45","sunset":"17:15"},{"date":"2023-02-10","groups":[{"time":"11:04:00","height":"4.701"},{"time":"23:23:00","height":"4.442"}],"sunrise":"07:43","sunset":"17:17"},{"date":"2023-02-11","groups":[{"time":"11:38:00","height":"4.538"},{"time":"23:59:00","height":"4.248"}],"sunrise":"07:41","sunset":"17:19"},{"date":"2023-02-12","groups":[{"time":"12:17:00","height":"4.310"}],"sunrise":"07:39","sunset":"17:21"},{"date":"2023-02-13","groups":[{"time":"00:40:00","height":"4.001"},{"time":"13:03:00","height":"4.026"}],"sunrise":"07:37","sunset":"17:23"},{"date":"2023-02-14","groups":[{"time":"01:33:00","height":"3.723"},{"time":"14:05:00","height":"3.714"}],"sunrise":"07:35","sunset":"17:25"},{"date":"2023-02-15","groups":[{"time":"02:47:00","height":"3.485"},{"time":"15:31:00","height":"3.491"}],"sunrise":"07:33","sunset":"17:27"},{"date":"2023-02-16","groups":[{"time":"04:20:00","height":"3.472"},{"time":"17:01:00","height":"3.570"}],"sunrise":"07:31","sunset":"17:29"},{"date":"2023-02-17","groups":[{"time":"05:41:00","height":"3.805"},{"time":"18:18:00","height":"3.961"}],"sunrise":"07:29","sunset":"17:31"},{"date":"2023-02-18","groups":[{"time":"06:47:00","height":"4.339"},{"time":"19:18:00","height":"4.469"}],"sunrise":"07:27","sunset":"17:33"},{"date":"2023-02-19","groups":[{"time":"07:41:00","height":"4.892"},{"time":"20:08:00","height":"4.932"}],"sunrise":"07:25","sunset":"17:35"},{"date":"2023-02-20","groups":[{"time":"08:29:00","height":"5.345"},{"time":"20:53:00","height":"5.262"}],"sunrise":"07:23","sunset":"17:37"},{"date":"2023-02-21","groups":[{"time":"09:12:00","height":"5.633"},{"time":"21:34:00","height":"5.419"}],"sunrise":"07:21","sunset":"17:39"},{"date":"2023-02-22","groups":[{"time":"09:53:00","height":"5.725"},{"time":"22:13:00","height":"5.392"}],"sunrise":"07:19","sunset":"17:40"},{"date":"2023-02-23","groups":[{"time":"10:34:00","height":"5.613"},{"time":"22:55:00","height":"5.195"}],"sunrise":"07:16","sunset":"17:42"},{"date":"2023-02-24","groups":[{"time":"11:17:00","height":"5.316"},{"time":"23:35:00","height":"4.860"}],"sunrise":"07:14","sunset":"17:44"},{"date":"2023-02-25","groups":[{"time":"11:58:00","height":"4.879"}],"sunrise":"07:12","sunset":"17:46"},{"date":"2023-02-26","groups":[{"time":"00:15:00","height":"4.434"},{"time":"12:40:00","height":"4.356"}],"sunrise":"07:10","sunset":"17:48"},{"date":"2023-02-27","groups":[{"time":"00:57:00","height":"3.965"},{"time":"13:27:00","height":"3.810"}],"sunrise":"07:08","sunset":"17:50"},{"date":"2023-02-28","groups":[{"time":"01:48:00","height":"3.504"},{"time":"14:28:00","height":"3.314"}],"sunrise":"07:05","sunset":"17:52"},{"date":"2023-03-01","groups":[{"time":"03:07:00","height":"3.142"},{"time":"16:02:00","height":"3.026"}],"sunrise":"07:03","sunset":"17:54"},{"date":"2023-03-02","groups":[{"time":"04:51:00","height":"3.112"},{"time":"17:37:00","height":"3.155"}],"sunrise":"07:01","sunset":"17:56"},{"date":"2023-03-03","groups":[{"time":"06:11:00","height":"3.448"},{"time":"18:39:00","height":"3.537"}],"sunrise":"06:59","sunset":"17:57"},{"date":"2023-03-04","groups":[{"time":"07:00:00","height":"3.877"},{"time":"19:21:00","height":"3.937"}],"sunrise":"06:56","sunset":"17:59"},{"date":"2023-03-05","groups":[{"time":"07:37:00","height":"4.257"},{"time":"19:55:00","height":"4.272"}],"sunrise":"06:54","sunset":"18:01"},{"date":"2023-03-06","groups":[{"time":"08:09:00","height":"4.550"},{"time":"20:26:00","height":"4.526"}],"sunrise":"06:52","sunset":"18:03"},{"date":"2023-03-07","groups":[{"time":"08:39:00","height":"4.759"},{"time":"20:55:00","height":"4.706"}],"sunrise":"06:49","sunset":"18:05"},{"date":"2023-03-08","groups":[{"time":"09:07:00","height":"4.899"},{"time":"21:23:00","height":"4.823"}],"sunrise":"06:47","sunset":"18:07"},{"date":"2023-03-09","groups":[{"time":"09:36:00","height":"4.976"},{"time":"21:51:00","height":"4.871"}],"sunrise":"06:45","sunset":"18:08"},{"date":"2023-03-10","groups":[{"time":"10:03:00","height":"4.981"},{"time":"22:19:00","height":"4.838"}],"sunrise":"06:42","sunset":"18:10"},{"date":"2023-03-11","groups":[{"time":"10:34:00","height":"4.898"},{"time":"22:52:00","height":"4.713"}],"sunrise":"06:40","sunset":"18:12"},{"date":"2023-03-12","groups":[{"time":"11:08:00","height":"4.719"},{"time":"23:28:00","height":"4.495"}],"sunrise":"06:38","sunset":"18:14"},{"date":"2023-03-13","groups":[{"time":"11:46:00","height":"4.441"}],"sunrise":"06:35","sunset":"18:16"},{"date":"2023-03-14","groups":[{"time":"00:08:00","height":"4.191"},{"time":"12:31:00","height":"4.069"}],"sunrise":"06:33","sunset":"18:18"},{"date":"2023-03-15","groups":[{"time":"00:59:00","height":"3.820"},{"time":"13:32:00","height":"3.639"}],"sunrise":"06:31","sunset":"18:19"},{"date":"2023-03-16","groups":[{"time":"02:17:00","height":"3.465"},{"time":"15:09:00","height":"3.314"}],"sunrise":"06:28","sunset":"18:21"},{"date":"2023-03-17","groups":[{"time":"04:04:00","height":"3.392"},{"time":"16:53:00","height":"3.416"}],"sunrise":"06:26","sunset":"18:23"},{"date":"2023-03-18","groups":[{"time":"05:33:00","height":"3.780"},{"time":"18:12:00","height":"3.911"}],"sunrise":"06:23","sunset":"18:25"},{"date":"2023-03-19","groups":[{"time":"06:38:00","height":"4.382"},{"time":"19:08:00","height":"4.487"}],"sunrise":"06:21","sunset":"18:27"},{"date":"2023-03-20","groups":[{"time":"07:28:00","height":"4.954"},{"time":"19:53:00","height":"4.969"}],"sunrise":"06:19","sunset":"18:28"},{"date":"2023-03-21","groups":[{"time":"08:11:00","height":"5.383"},{"time":"20:34:00","height":"5.290"}],"sunrise":"06:16","sunset":"18:30"},{"date":"2023-03-22","groups":[{"time":"08:52:00","height":"5.621"},{"time":"21:12:00","height":"5.430"}],"sunrise":"06:14","sunset":"18:32"},{"date":"2023-03-23","groups":[{"time":"09:30:00","height":"5.658"},{"time":"21:47:00","height":"5.395"}],"sunrise":"06:12","sunset":"18:34"},{"date":"2023-03-24","groups":[{"time":"10:06:00","height":"5.505"},{"time":"22:23:00","height":"5.201"}],"sunrise":"06:09","sunset":"18:36"},{"date":"2023-03-25","groups":[{"time":"10:44:00","height":"5.188"},{"time":"22:59:00","height":"4.879"}],"sunrise":"06:07","sunset":"18:37"},{"date":"2023-03-26","groups":[{"time":"11:22:00","height":"4.749"},{"time":"23:36:00","height":"4.469"}],"sunrise":"06:04","sunset":"18:39"},{"date":"2023-03-27","groups":[{"time":"13:00:00","height":"4.239"}],"sunrise":"07:02","sunset":"19:41"},{"date":"2023-03-28","groups":[{"time":"01:14:00","height":"4.010"},{"time":"13:42:00","height":"3.705"}],"sunrise":"07:00","sunset":"19:43"},{"date":"2023-03-29","groups":[{"time":"02:00:00","height":"3.539"},{"time":"14:39:00","height":"3.200"}],"sunrise":"06:57","sunset":"19:45"},{"date":"2023-03-30","groups":[{"time":"03:10:00","height":"3.125"},{"time":"16:15:00","height":"2.861"}],"sunrise":"06:55","sunset":"19:46"},{"date":"2023-03-31","groups":[{"time":"05:10:00","height":"3.000"},{"time":"18:05:00","height":"2.976"}],"sunrise":"06:52","sunset":"19:48"},{"date":"2023-04-01","groups":[{"time":"06:37:00","height":"3.316"},{"time":"19:10:00","height":"3.389"}],"sunrise":"06:50","sunset":"19:50"},{"date":"2023-04-02","groups":[{"time":"07:28:00","height":"3.757"},{"time":"19:51:00","height":"3.831"}],"sunrise":"06:48","sunset":"19:52"},{"date":"2023-04-03","groups":[{"time":"08:05:00","height":"4.165"},{"time":"20:25:00","height":"4.216"}],"sunrise":"06:45","sunset":"19:53"},{"date":"2023-04-04","groups":[{"time":"08:38:00","height":"4.495"},{"time":"20:56:00","height":"4.526"}],"sunrise":"06:43","sunset":"19:55"},{"date":"2023-04-05","groups":[{"time":"09:08:00","height":"4.746"},{"time":"21:25:00","height":"4.762"}],"sunrise":"06:41","sunset":"19:57"},{"date":"2023-04-06","groups":[{"time":"09:38:00","height":"4.925"},{"time":"21:54:00","height":"4.926"}],"sunrise":"06:38","sunset":"19:59"},{"date":"2023-04-07","groups":[{"time":"10:07:00","height":"5.033"},{"time":"22:23:00","height":"5.008"}],"sunrise":"06:36","sunset":"20:01"},{"date":"2023-04-08","groups":[{"time":"10:37:00","height":"5.053"},{"time":"22:53:00","height":"4.991"}],"sunrise":"06:34","sunset":"20:02"},{"date":"2023-04-09","groups":[{"time":"11:08:00","height":"4.966"},{"time":"23:26:00","height":"4.862"}],"sunrise":"06:31","sunset":"20:04"},{"date":"2023-04-10","groups":[{"time":"11:45:00","height":"4.757"}],"sunrise":"06:29","sunset":"20:06"},{"date":"2023-04-11","groups":[{"time":"00:05:00","height":"4.620"},{"time":"12:26:00","height":"4.431"}],"sunrise":"06:27","sunset":"20:08"},{"date":"2023-04-12","groups":[{"time":"00:49:00","height":"4.279"},{"time":"13:17:00","height":"4.009"}],"sunrise":"06:24","sunset":"20:09"},{"date":"2023-04-13","groups":[{"time":"01:48:00","height":"3.882"},{"time":"14:27:00","height":"3.569"}],"sunrise":"06:22","sunset":"20:11"},{"date":"2023-04-14","groups":[{"time":"03:12:00","height":"3.556"},{"time":"16:07:00","height":"3.322"}],"sunrise":"06:20","sunset":"20:13"},{"date":"2023-04-15","groups":[{"time":"04:57:00","height":"3.563"},{"time":"17:46:00","height":"3.514"}],"sunrise":"06:17","sunset":"20:15"},{"date":"2023-04-16","groups":[{"time":"06:19:00","height":"3.957"},{"time":"18:57:00","height":"3.998"}],"sunrise":"06:15","sunset":"20:17"},{"date":"2023-04-17","groups":[{"time":"07:18:00","height":"4.479"},{"time":"19:48:00","height":"4.501"}],"sunrise":"06:13","sunset":"20:18"},{"date":"2023-04-18","groups":[{"time":"08:06:00","height":"4.933"},{"time":"20:31:00","height":"4.896"}],"sunrise":"06:11","sunset":"20:20"},{"date":"2023-04-19","groups":[{"time":"08:48:00","height":"5.238"},{"time":"21:10:00","height":"5.143"}],"sunrise":"06:09","sunset":"20:22"},{"date":"2023-04-20","groups":[{"time":"09:28:00","height":"5.375"},{"time":"21:46:00","height":"5.242"}],"sunrise":"06:06","sunset":"20:24"},{"date":"2023-04-21","groups":[{"time":"10:04:00","height":"5.353"},{"time":"22:21:00","height":"5.204"}],"sunrise":"06:04","sunset":"20:25"},{"date":"2023-04-22","groups":[{"time":"10:38:00","height":"5.190"},{"time":"22:54:00","height":"5.042"}],"sunrise":"06:02","sunset":"20:27"},{"date":"2023-04-23","groups":[{"time":"11:13:00","height":"4.909"},{"time":"23:27:00","height":"4.777"}],"sunrise":"06:00","sunset":"20:29"},{"date":"2023-04-24","groups":[{"time":"11:50:00","height":"4.538"}],"sunrise":"05:58","sunset":"20:31"},{"date":"2023-04-25","groups":[{"time":"00:04:00","height":"4.434"},{"time":"12:29:00","height":"4.112"}],"sunrise":"05:56","sunset":"20:32"},{"date":"2023-04-26","groups":[{"time":"00:43:00","height":"4.046"},{"time":"13:11:00","height":"3.667"}],"sunrise":"05:53","sunset":"20:34"},{"date":"2023-04-27","groups":[{"time":"01:28:00","height":"3.644"},{"time":"14:04:00","height":"3.246"}],"sunrise":"05:51","sunset":"20:36"},{"date":"2023-04-28","groups":[{"time":"02:32:00","height":"3.285"},{"time":"15:25:00","height":"2.945"}],"sunrise":"05:49","sunset":"20:38"},{"date":"2023-04-29","groups":[{"time":"04:11:00","height":"3.110"},{"time":"17:11:00","height":"2.963"}],"sunrise":"05:47","sunset":"20:40"},{"date":"2023-04-30","groups":[{"time":"05:42:00","height":"3.281"},{"time":"18:20:00","height":"3.280"}],"sunrise":"05:45","sunset":"20:41"},{"date":"2023-05-01","groups":[{"time":"06:40:00","height":"3.635"},{"time":"19:07:00","height":"3.686"}],"sunrise":"05:43","sunset":"20:43"},{"date":"2023-05-02","groups":[{"time":"07:22:00","height":"4.011"},{"time":"19:44:00","height":"4.082"}],"sunrise":"05:41","sunset":"20:45"},{"date":"2023-05-03","groups":[{"time":"07:58:00","height":"4.351"},{"time":"20:18:00","height":"4.429"}],"sunrise":"05:39","sunset":"20:47"},{"date":"2023-05-04","groups":[{"time":"08:31:00","height":"4.633"},{"time":"20:50:00","height":"4.712"}],"sunrise":"05:37","sunset":"20:48"},{"date":"2023-05-05","groups":[{"time":"09:04:00","height":"4.847"},{"time":"21:23:00","height":"4.918"}],"sunrise":"05:36","sunset":"20:50"},{"date":"2023-05-06","groups":[{"time":"09:39:00","height":"4.980"},{"time":"21:57:00","height":"5.030"}],"sunrise":"05:34","sunset":"20:52"},{"date":"2023-05-07","groups":[{"time":"10:13:00","height":"5.012"},{"time":"22:32:00","height":"5.033"}],"sunrise":"05:32","sunset":"20:53"},{"date":"2023-05-08","groups":[{"time":"10:50:00","height":"4.924"},{"time":"23:09:00","height":"4.916"}],"sunrise":"05:30","sunset":"20:55"},{"date":"2023-05-09","groups":[{"time":"11:31:00","height":"4.711"},{"time":"23:54:00","height":"4.689"}],"sunrise":"05:28","sunset":"20:57"},{"date":"2023-05-10","groups":[{"time":"12:21:00","height":"4.392"}],"sunrise":"05:26","sunset":"20:58"},{"date":"2023-05-11","groups":[{"time":"00:47:00","height":"4.383"},{"time":"13:20:00","height":"4.019"}],"sunrise":"05:25","sunset":"21:00"},{"date":"2023-05-12","groups":[{"time":"01:53:00","height":"4.067"},{"time":"14:33:00","height":"3.693"}],"sunrise":"05:23","sunset":"21:02"},{"date":"2023-05-13","groups":[{"time":"03:14:00","height":"3.862"},{"time":"16:02:00","height":"3.562"}],"sunrise":"05:21","sunset":"21:03"},{"date":"2023-05-14","groups":[{"time":"04:42:00","height":"3.892"},{"time":"17:23:00","height":"3.711"}],"sunrise":"05:20","sunset":"21:05"},{"date":"2023-05-15","groups":[{"time":"05:52:00","height":"4.139"},{"time":"18:27:00","height":"4.036"}],"sunrise":"05:18","sunset":"21:07"},{"date":"2023-05-16","groups":[{"time":"06:50:00","height":"4.455"},{"time":"19:19:00","height":"4.379"}],"sunrise":"05:17","sunset":"21:08"},{"date":"2023-05-17","groups":[{"time":"07:39:00","height":"4.722"},{"time":"20:03:00","height":"4.652"}],"sunrise":"05:15","sunset":"21:10"},{"date":"2023-05-18","groups":[{"time":"08:22:00","height":"4.887"},{"time":"20:44:00","height":"4.827"}],"sunrise":"05:13","sunset":"21:11"},{"date":"2023-05-19","groups":[{"time":"09:03:00","height":"4.946"},{"time":"21:20:00","height":"4.906"}],"sunrise":"05:12","sunset":"21:13"},{"date":"2023-05-20","groups":[{"time":"09:40:00","height":"4.909"},{"time":"21:56:00","height":"4.893"}],"sunrise":"05:11","sunset":"21:15"},{"date":"2023-05-21","groups":[{"time":"10:16:00","height":"4.791"},{"time":"22:30:00","height":"4.796"}],"sunrise":"05:09","sunset":"21:16"},{"date":"2023-05-22","groups":[{"time":"10:51:00","height":"4.600"},{"time":"23:04:00","height":"4.622"}],"sunrise":"05:08","sunset":"21:17"},{"date":"2023-05-23","groups":[{"time":"11:27:00","height":"4.347"},{"time":"23:41:00","height":"4.388"}],"sunrise":"05:07","sunset":"21:19"},{"date":"2023-05-24","groups":[{"time":"12:07:00","height":"4.054"}],"sunrise":"05:05","sunset":"21:20"},{"date":"2023-05-25","groups":[{"time":"00:22:00","height":"4.117"},{"time":"12:49:00","height":"3.744"}],"sunrise":"05:04","sunset":"21:22"},{"date":"2023-05-26","groups":[{"time":"01:07:00","height":"3.835"},{"time":"13:39:00","height":"3.450"}],"sunrise":"05:03","sunset":"21:23"},{"date":"2023-05-27","groups":[{"time":"02:02:00","height":"3.576"},{"time":"14:41:00","height":"3.220"}],"sunrise":"05:02","sunset":"21:25"},{"date":"2023-05-28","groups":[{"time":"03:10:00","height":"3.401"},{"time":"15:58:00","height":"3.136"}],"sunrise":"05:01","sunset":"21:26"},{"date":"2023-05-29","groups":[{"time":"04:30:00","height":"3.390"},{"time":"17:13:00","height":"3.261"}],"sunrise":"05:00","sunset":"21:27"},{"date":"2023-05-30","groups":[{"time":"05:36:00","height":"3.560"},{"time":"18:09:00","height":"3.544"}],"sunrise":"04:59","sunset":"21:28"},{"date":"2023-05-31","groups":[{"time":"06:27:00","height":"3.836"},{"time":"18:56:00","height":"3.894"}],"sunrise":"04:58","sunset":"21:30"},{"date":"2023-06-01","groups":[{"time":"07:12:00","height":"4.143"},{"time":"19:36:00","height":"4.247"}],"sunrise":"04:57","sunset":"21:31"},{"date":"2023-06-02","groups":[{"time":"07:53:00","height":"4.435"},{"time":"20:15:00","height":"4.564"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2023-06-03","groups":[{"time":"08:33:00","height":"4.677"},{"time":"20:55:00","height":"4.813"}],"sunrise":"04:55","sunset":"21:33"},{"date":"2023-06-04","groups":[{"time":"09:15:00","height":"4.843"},{"time":"21:35:00","height":"4.974"}],"sunrise":"04:55","sunset":"21:34"},{"date":"2023-06-05","groups":[{"time":"09:57:00","height":"4.912"},{"time":"22:18:00","height":"5.034"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2023-06-06","groups":[{"time":"10:40:00","height":"4.873"},{"time":"23:01:00","height":"4.989"}],"sunrise":"04:53","sunset":"21:36"},{"date":"2023-06-07","groups":[{"time":"11:28:00","height":"4.730"},{"time":"23:53:00","height":"4.853"}],"sunrise":"04:53","sunset":"21:37"},{"date":"2023-06-08","groups":[{"time":"12:23:00","height":"4.506"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2023-06-09","groups":[{"time":"00:50:00","height":"4.655"},{"time":"13:23:00","height":"4.246"}],"sunrise":"04:52","sunset":"21:39"},{"date":"2023-06-10","groups":[{"time":"01:52:00","height":"4.440"},{"time":"14:27:00","height":"4.008"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2023-06-11","groups":[{"time":"03:00:00","height":"4.259"},{"time":"15:38:00","height":"3.856"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2023-06-12","groups":[{"time":"04:12:00","height":"4.161"},{"time":"16:50:00","height":"3.834"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2023-06-13","groups":[{"time":"05:18:00","height":"4.162"},{"time":"17:51:00","height":"3.934"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2023-06-14","groups":[{"time":"06:16:00","height":"4.231"},{"time":"18:46:00","height":"4.102"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2023-06-15","groups":[{"time":"07:10:00","height":"4.325"},{"time":"19:36:00","height":"4.280"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2023-06-16","groups":[{"time":"07:59:00","height":"4.409"},{"time":"20:21:00","height":"4.434"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2023-06-17","groups":[{"time":"08:42:00","height":"4.466"},{"time":"21:02:00","height":"4.543"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2023-06-18","groups":[{"time":"09:23:00","height":"4.487"},{"time":"21:40:00","height":"4.598"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2023-06-19","groups":[{"time":"10:00:00","height":"4.463"},{"time":"22:16:00","height":"4.592"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2023-06-20","groups":[{"time":"10:36:00","height":"4.395"},{"time":"22:50:00","height":"4.531"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2023-06-21","groups":[{"time":"11:11:00","height":"4.281"},{"time":"23:26:00","height":"4.422"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2023-06-22","groups":[{"time":"11:50:00","height":"4.130"}],"sunrise":"04:50","sunset":"21:46"},{"date":"2023-06-23","groups":[{"time":"00:05:00","height":"4.277"},{"time":"12:29:00","height":"3.952"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2023-06-24","groups":[{"time":"00:46:00","height":"4.106"},{"time":"13:12:00","height":"3.762"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2023-06-25","groups":[{"time":"01:30:00","height":"3.922"},{"time":"13:59:00","height":"3.579"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2023-06-26","groups":[{"time":"02:20:00","height":"3.748"},{"time":"14:54:00","height":"3.437"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2023-06-27","groups":[{"time":"03:19:00","height":"3.621"},{"time":"15:58:00","height":"3.385"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2023-06-28","groups":[{"time":"04:25:00","height":"3.588"},{"time":"17:04:00","height":"3.469"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2023-06-29","groups":[{"time":"05:28:00","height":"3.684"},{"time":"18:03:00","height":"3.695"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2023-06-30","groups":[{"time":"06:25:00","height":"3.897"},{"time":"18:57:00","height":"4.012"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2023-07-01","groups":[{"time":"07:19:00","height":"4.173"},{"time":"19:47:00","height":"4.358"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2023-07-02","groups":[{"time":"08:10:00","height":"4.456"},{"time":"20:35:00","height":"4.680"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2023-07-03","groups":[{"time":"08:59:00","height":"4.699"},{"time":"21:22:00","height":"4.942"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2023-07-04","groups":[{"time":"09:48:00","height":"4.872"},{"time":"22:09:00","height":"5.122"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2023-07-05","groups":[{"time":"10:35:00","height":"4.952"},{"time":"22:56:00","height":"5.204"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2023-07-06","groups":[{"time":"11:24:00","height":"4.929"},{"time":"23:47:00","height":"5.179"}],"sunrise":"04:59","sunset":"21:42"},{"date":"2023-07-07","groups":[{"time":"12:16:00","height":"4.802"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2023-07-08","groups":[{"time":"00:42:00","height":"5.048"},{"time":"13:09:00","height":"4.590"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2023-07-09","groups":[{"time":"01:36:00","height":"4.824"},{"time":"14:04:00","height":"4.327"}],"sunrise":"05:02","sunset":"21:40"},{"date":"2023-07-10","groups":[{"time":"02:32:00","height":"4.540"},{"time":"15:01:00","height":"4.053"}],"sunrise":"05:03","sunset":"21:40"},{"date":"2023-07-11","groups":[{"time":"03:33:00","height":"4.239"},{"time":"16:06:00","height":"3.827"}],"sunrise":"05:04","sunset":"21:39"},{"date":"2023-07-12","groups":[{"time":"04:39:00","height":"3.987"},{"time":"17:11:00","height":"3.711"}],"sunrise":"05:05","sunset":"21:38"},{"date":"2023-07-13","groups":[{"time":"05:42:00","height":"3.848"},{"time":"18:15:00","height":"3.743"}],"sunrise":"05:07","sunset":"21:37"},{"date":"2023-07-14","groups":[{"time":"06:44:00","height":"3.847"},{"time":"19:15:00","height":"3.899"}],"sunrise":"05:08","sunset":"21:36"},{"date":"2023-07-15","groups":[{"time":"07:42:00","height":"3.956"},{"time":"20:07:00","height":"4.113"}],"sunrise":"05:09","sunset":"21:35"},{"date":"2023-07-16","groups":[{"time":"08:31:00","height":"4.109"},{"time":"20:50:00","height":"4.316"}],"sunrise":"05:10","sunset":"21:34"},{"date":"2023-07-17","groups":[{"time":"09:12:00","height":"4.250"},{"time":"21:29:00","height":"4.470"}],"sunrise":"05:12","sunset":"21:33"},{"date":"2023-07-18","groups":[{"time":"09:50:00","height":"4.349"},{"time":"22:05:00","height":"4.564"}],"sunrise":"05:13","sunset":"21:31"},{"date":"2023-07-19","groups":[{"time":"10:23:00","height":"4.395"},{"time":"22:37:00","height":"4.599"}],"sunrise":"05:14","sunset":"21:30"},{"date":"2023-07-20","groups":[{"time":"10:55:00","height":"4.393"},{"time":"23:08:00","height":"4.585"}],"sunrise":"05:16","sunset":"21:29"},{"date":"2023-07-21","groups":[{"time":"11:28:00","height":"4.346"},{"time":"23:42:00","height":"4.525"}],"sunrise":"05:17","sunset":"21:28"},{"date":"2023-07-22","groups":[{"time":"12:03:00","height":"4.254"}],"sunrise":"05:19","sunset":"21:26"},{"date":"2023-07-23","groups":[{"time":"00:18:00","height":"4.417"},{"time":"12:38:00","height":"4.119"}],"sunrise":"05:20","sunset":"21:25"},{"date":"2023-07-24","groups":[{"time":"00:55:00","height":"4.262"},{"time":"13:16:00","height":"3.948"}],"sunrise":"05:22","sunset":"21:24"},{"date":"2023-07-25","groups":[{"time":"01:35:00","height":"4.069"},{"time":"14:00:00","height":"3.758"}],"sunrise":"05:23","sunset":"21:22"},{"date":"2023-07-26","groups":[{"time":"02:21:00","height":"3.860"},{"time":"14:53:00","height":"3.581"}],"sunrise":"05:25","sunset":"21:21"},{"date":"2023-07-27","groups":[{"time":"03:20:00","height":"3.668"},{"time":"16:01:00","height":"3.471"}],"sunrise":"05:26","sunset":"21:19"},{"date":"2023-07-28","groups":[{"time":"04:33:00","height":"3.563"},{"time":"17:16:00","height":"3.523"}],"sunrise":"05:28","sunset":"21:17"},{"date":"2023-07-29","groups":[{"time":"05:48:00","height":"3.641"},{"time":"18:26:00","height":"3.789"}],"sunrise":"05:29","sunset":"21:16"},{"date":"2023-07-30","groups":[{"time":"06:57:00","height":"3.917"},{"time":"19:28:00","height":"4.198"}],"sunrise":"05:31","sunset":"21:14"},{"date":"2023-07-31","groups":[{"time":"07:57:00","height":"4.298"},{"time":"20:23:00","height":"4.648"}],"sunrise":"05:32","sunset":"21:13"},{"date":"2023-08-01","groups":[{"time":"08:50:00","height":"4.683"},{"time":"21:13:00","height":"5.055"}],"sunrise":"05:34","sunset":"21:11"},{"date":"2023-08-02","groups":[{"time":"09:40:00","height":"4.997"},{"time":"22:00:00","height":"5.364"}],"sunrise":"05:36","sunset":"21:09"},{"date":"2023-08-03","groups":[{"time":"10:25:00","height":"5.191"},{"time":"22:45:00","height":"5.534"}],"sunrise":"05:37","sunset":"21:07"},{"date":"2023-08-04","groups":[{"time":"11:09:00","height":"5.238"},{"time":"23:31:00","height":"5.540"}],"sunrise":"05:39","sunset":"21:06"},{"date":"2023-08-05","groups":[{"time":"11:56:00","height":"5.131"}],"sunrise":"05:40","sunset":"21:04"},{"date":"2023-08-06","groups":[{"time":"00:20:00","height":"5.373"},{"time":"12:43:00","height":"4.885"}],"sunrise":"05:42","sunset":"21:02"},{"date":"2023-08-07","groups":[{"time":"01:08:00","height":"5.052"},{"time":"13:30:00","height":"4.536"}],"sunrise":"05:44","sunset":"21:00"},{"date":"2023-08-08","groups":[{"time":"01:56:00","height":"4.620"},{"time":"14:19:00","height":"4.134"}],"sunrise":"05:45","sunset":"20:58"},{"date":"2023-08-09","groups":[{"time":"02:49:00","height":"4.139"},{"time":"15:17:00","height":"3.741"}],"sunrise":"05:47","sunset":"20:56"},{"date":"2023-08-10","groups":[{"time":"03:52:00","height":"3.696"},{"time":"16:30:00","height":"3.454"}],"sunrise":"05:49","sunset":"20:54"},{"date":"2023-08-11","groups":[{"time":"05:09:00","height":"3.419"},{"time":"17:50:00","height":"3.408"}],"sunrise":"05:50","sunset":"20:52"},{"date":"2023-08-12","groups":[{"time":"06:27:00","height":"3.427"},{"time":"19:04:00","height":"3.633"}],"sunrise":"05:52","sunset":"20:50"},{"date":"2023-08-13","groups":[{"time":"07:34:00","height":"3.669"},{"time":"19:59:00","height":"3.973"}],"sunrise":"05:54","sunset":"20:48"},{"date":"2023-08-14","groups":[{"time":"08:22:00","height":"3.974"},{"time":"20:40:00","height":"4.290"}],"sunrise":"05:55","sunset":"20:46"},{"date":"2023-08-15","groups":[{"time":"09:01:00","height":"4.239"},{"time":"21:16:00","height":"4.530"}],"sunrise":"05:57","sunset":"20:44"},{"date":"2023-08-16","groups":[{"time":"09:35:00","height":"4.432"},{"time":"21:48:00","height":"4.688"}],"sunrise":"05:59","sunset":"20:42"},{"date":"2023-08-17","groups":[{"time":"10:05:00","height":"4.553"},{"time":"22:17:00","height":"4.776"}],"sunrise":"06:01","sunset":"20:40"},{"date":"2023-08-18","groups":[{"time":"10:34:00","height":"4.613"},{"time":"22:45:00","height":"4.807"}],"sunrise":"06:02","sunset":"20:38"},{"date":"2023-08-19","groups":[{"time":"11:01:00","height":"4.619"},{"time":"23:14:00","height":"4.782"}],"sunrise":"06:04","sunset":"20:35"},{"date":"2023-08-20","groups":[{"time":"11:31:00","height":"4.566"},{"time":"23:45:00","height":"4.693"}],"sunrise":"06:06","sunset":"20:33"},{"date":"2023-08-21","groups":[{"time":"12:03:00","height":"4.448"}],"sunrise":"06:07","sunset":"20:31"},{"date":"2023-08-22","groups":[{"time":"00:18:00","height":"4.534"},{"time":"12:36:00","height":"4.266"}],"sunrise":"06:09","sunset":"20:29"},{"date":"2023-08-23","groups":[{"time":"00:52:00","height":"4.309"},{"time":"13:14:00","height":"4.030"}],"sunrise":"06:11","sunset":"20:27"},{"date":"2023-08-24","groups":[{"time":"01:34:00","height":"4.027"},{"time":"14:01:00","height":"3.756"}],"sunrise":"06:12","sunset":"20:24"},{"date":"2023-08-25","groups":[{"time":"02:28:00","height":"3.707"},{"time":"15:07:00","height":"3.490"}],"sunrise":"06:14","sunset":"20:22"},{"date":"2023-08-26","groups":[{"time":"03:46:00","height":"3.431"},{"time":"16:42:00","height":"3.394"}],"sunrise":"06:16","sunset":"20:20"},{"date":"2023-08-27","groups":[{"time":"05:24:00","height":"3.417"},{"time":"18:10:00","height":"3.660"}],"sunrise":"06:18","sunset":"20:18"},{"date":"2023-08-28","groups":[{"time":"06:47:00","height":"3.774"},{"time":"19:19:00","height":"4.189"}],"sunrise":"06:19","sunset":"20:15"},{"date":"2023-08-29","groups":[{"time":"07:50:00","height":"4.303"},{"time":"20:14:00","height":"4.772"}],"sunrise":"06:21","sunset":"20:13"},{"date":"2023-08-30","groups":[{"time":"08:41:00","height":"4.815"},{"time":"21:02:00","height":"5.276"}],"sunrise":"06:23","sunset":"20:11"},{"date":"2023-08-31","groups":[{"time":"09:27:00","height":"5.209"},{"time":"21:46:00","height":"5.627"}],"sunrise":"06:24","sunset":"20:09"},{"date":"2023-09-01","groups":[{"time":"10:08:00","height":"5.436"},{"time":"22:27:00","height":"5.787"}],"sunrise":"06:26","sunset":"20:06"},{"date":"2023-09-02","groups":[{"time":"10:48:00","height":"5.479"},{"time":"23:07:00","height":"5.739"}],"sunrise":"06:28","sunset":"20:04"},{"date":"2023-09-03","groups":[{"time":"11:28:00","height":"5.340"},{"time":"23:51:00","height":"5.489"}],"sunrise":"06:29","sunset":"20:02"},{"date":"2023-09-04","groups":[{"time":"12:10:00","height":"5.043"}],"sunrise":"06:31","sunset":"19:59"},{"date":"2023-09-05","groups":[{"time":"00:33:00","height":"5.070"},{"time":"12:51:00","height":"4.629"}],"sunrise":"06:33","sunset":"19:57"},{"date":"2023-09-06","groups":[{"time":"01:16:00","height":"4.539"},{"time":"13:35:00","height":"4.150"}],"sunrise":"06:34","sunset":"19:54"},{"date":"2023-09-07","groups":[{"time":"02:04:00","height":"3.963"},{"time":"14:27:00","height":"3.666"}],"sunrise":"06:36","sunset":"19:52"},{"date":"2023-09-08","groups":[{"time":"03:05:00","height":"3.424"},{"time":"15:43:00","height":"3.271"}],"sunrise":"06:38","sunset":"19:50"},{"date":"2023-09-09","groups":[{"time":"04:38:00","height":"3.085"},{"time":"17:29:00","height":"3.197"}],"sunrise":"06:40","sunset":"19:47"},{"date":"2023-09-10","groups":[{"time":"06:16:00","height":"3.177"},{"time":"18:52:00","height":"3.522"}],"sunrise":"06:41","sunset":"19:45"},{"date":"2023-09-11","groups":[{"time":"07:23:00","height":"3.561"},{"time":"19:44:00","height":"3.959"}],"sunrise":"06:43","sunset":"19:43"},{"date":"2023-09-12","groups":[{"time":"08:05:00","height":"3.973"},{"time":"20:21:00","height":"4.344"}],"sunrise":"06:45","sunset":"19:40"},{"date":"2023-09-13","groups":[{"time":"08:40:00","height":"4.316"},{"time":"20:53:00","height":"4.632"}],"sunrise":"06:46","sunset":"19:38"},{"date":"2023-09-14","groups":[{"time":"09:10:00","height":"4.566"},{"time":"21:23:00","height":"4.825"}],"sunrise":"06:48","sunset":"19:35"},{"date":"2023-09-15","groups":[{"time":"09:39:00","height":"4.733"},{"time":"21:51:00","height":"4.940"}],"sunrise":"06:50","sunset":"19:33"},{"date":"2023-09-16","groups":[{"time":"10:06:00","height":"4.831"},{"time":"22:18:00","height":"4.991"}],"sunrise":"06:51","sunset":"19:31"},{"date":"2023-09-17","groups":[{"time":"10:33:00","height":"4.865"},{"time":"22:45:00","height":"4.975"}],"sunrise":"06:53","sunset":"19:28"},{"date":"2023-09-18","groups":[{"time":"10:59:00","height":"4.828"},{"time":"23:12:00","height":"4.884"}],"sunrise":"06:55","sunset":"19:26"},{"date":"2023-09-19","groups":[{"time":"11:29:00","height":"4.710"},{"time":"23:44:00","height":"4.707"}],"sunrise":"06:56","sunset":"19:23"},{"date":"2023-09-20","groups":[{"time":"12:03:00","height":"4.507"}],"sunrise":"06:58","sunset":"19:21"},{"date":"2023-09-21","groups":[{"time":"00:19:00","height":"4.443"},{"time":"12:39:00","height":"4.226"}],"sunrise":"07:00","sunset":"19:18"},{"date":"2023-09-22","groups":[{"time":"01:00:00","height":"4.093"},{"time":"13:26:00","height":"3.878"}],"sunrise":"07:02","sunset":"19:16"},{"date":"2023-09-23","groups":[{"time":"01:56:00","height":"3.682"},{"time":"14:36:00","height":"3.525"}],"sunrise":"07:03","sunset":"19:14"},{"date":"2023-09-24","groups":[{"time":"03:24:00","height":"3.329"},{"time":"16:26:00","height":"3.393"}],"sunrise":"07:05","sunset":"19:11"},{"date":"2023-09-25","groups":[{"time":"05:18:00","height":"3.356"},{"time":"18:02:00","height":"3.736"}],"sunrise":"07:07","sunset":"19:09"},{"date":"2023-09-26","groups":[{"time":"06:42:00","height":"3.832"},{"time":"19:09:00","height":"4.344"}],"sunrise":"07:08","sunset":"19:06"},{"date":"2023-09-27","groups":[{"time":"07:40:00","height":"4.434"},{"time":"20:00:00","height":"4.953"}],"sunrise":"07:10","sunset":"19:04"},{"date":"2023-09-28","groups":[{"time":"08:26:00","height":"4.962"},{"time":"20:44:00","height":"5.431"}],"sunrise":"07:12","sunset":"19:02"},{"date":"2023-09-29","groups":[{"time":"09:06:00","height":"5.336"},{"time":"21:24:00","height":"5.722"}],"sunrise":"07:14","sunset":"18:59"},{"date":"2023-09-30","groups":[{"time":"09:46:00","height":"5.529"},{"time":"22:04:00","height":"5.806"}],"sunrise":"07:15","sunset":"18:57"},{"date":"2023-10-01","groups":[{"time":"10:22:00","height":"5.537"},{"time":"22:41:00","height":"5.685"}],"sunrise":"07:17","sunset":"18:54"},{"date":"2023-10-02","groups":[{"time":"10:58:00","height":"5.374"},{"time":"23:19:00","height":"5.380"}],"sunrise":"07:19","sunset":"18:52"},{"date":"2023-10-03","groups":[{"time":"11:37:00","height":"5.063"},{"time":"23:59:00","height":"4.931"}],"sunrise":"07:21","sunset":"18:50"},{"date":"2023-10-04","groups":[{"time":"12:16:00","height":"4.644"}],"sunrise":"07:22","sunset":"18:47"},{"date":"2023-10-05","groups":[{"time":"00:41:00","height":"4.391"},{"time":"12:57:00","height":"4.163"}],"sunrise":"07:24","sunset":"18:45"},{"date":"2023-10-06","groups":[{"time":"01:25:00","height":"3.824"},{"time":"13:46:00","height":"3.674"}],"sunrise":"07:26","sunset":"18:43"},{"date":"2023-10-07","groups":[{"time":"02:23:00","height":"3.298"},{"time":"14:58:00","height":"3.258"}],"sunrise":"07:28","sunset":"18:40"},{"date":"2023-10-08","groups":[{"time":"04:01:00","height":"2.960"},{"time":"16:58:00","height":"3.154"}],"sunrise":"07:29","sunset":"18:38"},{"date":"2023-10-09","groups":[{"time":"05:51:00","height":"3.082"},{"time":"18:23:00","height":"3.475"}],"sunrise":"07:31","sunset":"18:36"},{"date":"2023-10-10","groups":[{"time":"06:55:00","height":"3.496"},{"time":"19:13:00","height":"3.913"}],"sunrise":"07:33","sunset":"18:33"},{"date":"2023-10-11","groups":[{"time":"07:36:00","height":"3.936"},{"time":"19:50:00","height":"4.312"}],"sunrise":"07:35","sunset":"18:31"},{"date":"2023-10-12","groups":[{"time":"08:10:00","height":"4.313"},{"time":"20:23:00","height":"4.624"}],"sunrise":"07:36","sunset":"18:29"},{"date":"2023-10-13","groups":[{"time":"08:40:00","height":"4.606"},{"time":"20:52:00","height":"4.845"}],"sunrise":"07:38","sunset":"18:26"},{"date":"2023-10-14","groups":[{"time":"09:08:00","height":"4.816"},{"time":"21:20:00","height":"4.988"}],"sunrise":"07:40","sunset":"18:24"},{"date":"2023-10-15","groups":[{"time":"09:36:00","height":"4.954"},{"time":"21:49:00","height":"5.060"}],"sunrise":"07:42","sunset":"18:22"},{"date":"2023-10-16","groups":[{"time":"10:05:00","height":"5.017"},{"time":"22:18:00","height":"5.056"}],"sunrise":"07:44","sunset":"18:20"},{"date":"2023-10-17","groups":[{"time":"10:33:00","height":"4.996"},{"time":"22:47:00","height":"4.964"}],"sunrise":"07:45","sunset":"18:17"},{"date":"2023-10-18","groups":[{"time":"11:03:00","height":"4.878"},{"time":"23:19:00","height":"4.770"}],"sunrise":"07:47","sunset":"18:15"},{"date":"2023-10-19","groups":[{"time":"11:39:00","height":"4.661"},{"time":"23:58:00","height":"4.474"}],"sunrise":"07:49","sunset":"18:13"},{"date":"2023-10-20","groups":[{"time":"12:21:00","height":"4.353"}],"sunrise":"07:51","sunset":"18:11"},{"date":"2023-10-21","groups":[{"time":"00:45:00","height":"4.090"},{"time":"13:14:00","height":"3.987"}],"sunrise":"07:53","sunset":"18:09"},{"date":"2023-10-22","groups":[{"time":"01:49:00","height":"3.672"},{"time":"14:33:00","height":"3.661"}],"sunrise":"07:55","sunset":"18:06"},{"date":"2023-10-23","groups":[{"time":"03:24:00","height":"3.392"},{"time":"16:19:00","height":"3.615"}],"sunrise":"07:56","sunset":"18:04"},{"date":"2023-10-24","groups":[{"time":"05:10:00","height":"3.515"},{"time":"17:46:00","height":"3.970"}],"sunrise":"07:58","sunset":"18:02"},{"date":"2023-10-25","groups":[{"time":"06:25:00","height":"3.979"},{"time":"18:48:00","height":"4.501"}],"sunrise":"08:00","sunset":"18:00"},{"date":"2023-10-26","groups":[{"time":"07:18:00","height":"4.507"},{"time":"19:38:00","height":"4.996"}],"sunrise":"08:02","sunset":"17:58"},{"date":"2023-10-27","groups":[{"time":"08:03:00","height":"4.949"},{"time":"20:21:00","height":"5.352"}],"sunrise":"08:04","sunset":"17:56"},{"date":"2023-10-28","groups":[{"time":"08:44:00","height":"5.247"},{"time":"21:02:00","height":"5.536"}],"sunrise":"08:06","sunset":"17:54"},{"date":"2023-10-29","groups":[{"time":"09:21:00","height":"5.390"},{"time":"21:40:00","height":"5.546"}],"sunrise":"08:08","sunset":"17:52"},{"date":"2023-10-30","groups":[{"time":"08:58:00","height":"5.384"},{"time":"21:18:00","height":"5.398"}],"sunrise":"07:09","sunset":"16:50"},{"date":"2023-10-31","groups":[{"time":"09:34:00","height":"5.239"},{"time":"21:54:00","height":"5.112"}],"sunrise":"07:11","sunset":"16:48"},{"date":"2023-11-01","groups":[{"time":"10:08:00","height":"4.973"},{"time":"22:31:00","height":"4.721"}],"sunrise":"07:13","sunset":"16:46"},{"date":"2023-11-02","groups":[{"time":"10:47:00","height":"4.616"},{"time":"23:13:00","height":"4.267"}],"sunrise":"07:15","sunset":"16:44"},{"date":"2023-11-03","groups":[{"time":"11:30:00","height":"4.209"},{"time":"23:58:00","height":"3.799"}],"sunrise":"07:17","sunset":"16:42"},{"date":"2023-11-04","groups":[{"time":"12:17:00","height":"3.795"}],"sunrise":"07:19","sunset":"16:40"},{"date":"2023-11-05","groups":[{"time":"00:53:00","height":"3.371"},{"time":"13:22:00","height":"3.440"}],"sunrise":"07:21","sunset":"16:39"},{"date":"2023-11-06","groups":[{"time":"02:13:00","height":"3.075"},{"time":"14:59:00","height":"3.275"}],"sunrise":"07:22","sunset":"16:37"},{"date":"2023-11-07","groups":[{"time":"03:56:00","height":"3.084"},{"time":"16:28:00","height":"3.431"}],"sunrise":"07:24","sunset":"16:35"},{"date":"2023-11-08","groups":[{"time":"05:06:00","height":"3.380"},{"time":"17:25:00","height":"3.761"}],"sunrise":"07:26","sunset":"16:33"},{"date":"2023-11-09","groups":[{"time":"05:54:00","height":"3.766"},{"time":"18:09:00","height":"4.113"}],"sunrise":"07:28","sunset":"16:32"},{"date":"2023-11-10","groups":[{"time":"06:31:00","height":"4.141"},{"time":"18:44:00","height":"4.426"}],"sunrise":"07:30","sunset":"16:30"},{"date":"2023-11-11","groups":[{"time":"07:04:00","height":"4.467"},{"time":"19:17:00","height":"4.678"}],"sunrise":"07:32","sunset":"16:28"},{"date":"2023-11-12","groups":[{"time":"07:35:00","height":"4.730"},{"time":"19:49:00","height":"4.863"}],"sunrise":"07:34","sunset":"16:27"},{"date":"2023-11-13","groups":[{"time":"08:07:00","height":"4.922"},{"time":"20:21:00","height":"4.977"}],"sunrise":"07:35","sunset":"16:25"},{"date":"2023-11-14","groups":[{"time":"08:39:00","height":"5.032"},{"time":"20:55:00","height":"5.007"}],"sunrise":"07:37","sunset":"16:24"},{"date":"2023-11-15","groups":[{"time":"09:12:00","height":"5.048"},{"time":"21:29:00","height":"4.939"}],"sunrise":"07:39","sunset":"16:22"},{"date":"2023-11-16","groups":[{"time":"09:48:00","height":"4.963"},{"time":"22:07:00","height":"4.767"}],"sunrise":"07:41","sunset":"16:21"},{"date":"2023-11-17","groups":[{"time":"10:28:00","height":"4.778"},{"time":"22:53:00","height":"4.498"}],"sunrise":"07:43","sunset":"16:19"},{"date":"2023-11-18","groups":[{"time":"11:19:00","height":"4.515"},{"time":"23:48:00","height":"4.167"}],"sunrise":"07:44","sunset":"16:18"},{"date":"2023-11-19","groups":[{"time":"12:20:00","height":"4.226"}],"sunrise":"07:46","sunset":"16:17"},{"date":"2023-11-20","groups":[{"time":"00:56:00","height":"3.851"},{"time":"13:35:00","height":"4.008"}],"sunrise":"07:48","sunset":"16:15"},{"date":"2023-11-21","groups":[{"time":"02:19:00","height":"3.674"},{"time":"15:01:00","height":"3.979"}],"sunrise":"07:50","sunset":"16:14"},{"date":"2023-11-22","groups":[{"time":"03:46:00","height":"3.744"},{"time":"16:17:00","height":"4.170"}],"sunrise":"07:51","sunset":"16:13"},{"date":"2023-11-23","groups":[{"time":"04:53:00","height":"4.026"},{"time":"17:18:00","height":"4.476"}],"sunrise":"07:53","sunset":"16:12"},{"date":"2023-11-24","groups":[{"time":"05:49:00","height":"4.376"},{"time":"18:11:00","height":"4.770"}],"sunrise":"07:55","sunset":"16:11"},{"date":"2023-11-25","groups":[{"time":"06:37:00","height":"4.689"},{"time":"18:58:00","height":"4.982"}],"sunrise":"07:56","sunset":"16:10"},{"date":"2023-11-26","groups":[{"time":"07:20:00","height":"4.916"},{"time":"19:40:00","height":"5.084"}],"sunrise":"07:58","sunset":"16:09"},{"date":"2023-11-27","groups":[{"time":"08:01:00","height":"5.043"},{"time":"20:20:00","height":"5.082"}],"sunrise":"08:00","sunset":"16:08"},{"date":"2023-11-28","groups":[{"time":"08:39:00","height":"5.068"},{"time":"21:00:00","height":"4.983"}],"sunrise":"08:01","sunset":"16:07"},{"date":"2023-11-29","groups":[{"time":"09:16:00","height":"4.995"},{"time":"21:37:00","height":"4.798"}],"sunrise":"08:03","sunset":"16:06"},{"date":"2023-11-30","groups":[{"time":"09:52:00","height":"4.832"},{"time":"22:14:00","height":"4.543"}],"sunrise":"08:04","sunset":"16:05"},{"date":"2023-12-01","groups":[{"time":"10:30:00","height":"4.597"},{"time":"22:55:00","height":"4.242"}],"sunrise":"08:06","sunset":"16:04"},{"date":"2023-12-02","groups":[{"time":"11:12:00","height":"4.321"},{"time":"23:38:00","height":"3.925"}],"sunrise":"08:07","sunset":"16:04"},{"date":"2023-12-03","groups":[{"time":"11:57:00","height":"4.032"}],"sunrise":"08:09","sunset":"16:03"},{"date":"2023-12-04","groups":[{"time":"00:27:00","height":"3.623"},{"time":"12:49:00","height":"3.763"}],"sunrise":"08:10","sunset":"16:02"},{"date":"2023-12-05","groups":[{"time":"01:25:00","height":"3.374"},{"time":"13:53:00","height":"3.558"}],"sunrise":"08:11","sunset":"16:02"},{"date":"2023-12-06","groups":[{"time":"02:35:00","height":"3.238"},{"time":"15:09:00","height":"3.482"}],"sunrise":"08:13","sunset":"16:01"},{"date":"2023-12-07","groups":[{"time":"03:53:00","height":"3.286"},{"time":"16:19:00","height":"3.577"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2023-12-08","groups":[{"time":"04:54:00","height":"3.507"},{"time":"17:13:00","height":"3.795"}],"sunrise":"08:15","sunset":"16:01"},{"date":"2023-12-09","groups":[{"time":"05:42:00","height":"3.818"},{"time":"17:59:00","height":"4.064"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2023-12-10","groups":[{"time":"06:25:00","height":"4.154"},{"time":"18:41:00","height":"4.338"}],"sunrise":"08:17","sunset":"16:00"},{"date":"2023-12-11","groups":[{"time":"07:03:00","height":"4.471"},{"time":"19:20:00","height":"4.582"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2023-12-12","groups":[{"time":"07:41:00","height":"4.739"},{"time":"20:00:00","height":"4.771"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2023-12-13","groups":[{"time":"08:20:00","height":"4.936"},{"time":"20:40:00","height":"4.885"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2023-12-14","groups":[{"time":"09:00:00","height":"5.048"},{"time":"21:22:00","height":"4.909"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2023-12-15","groups":[{"time":"09:41:00","height":"5.066"},{"time":"22:04:00","height":"4.839"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2023-12-16","groups":[{"time":"10:28:00","height":"4.996"},{"time":"22:55:00","height":"4.682"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2023-12-17","groups":[{"time":"11:21:00","height":"4.850"},{"time":"23:50:00","height":"4.463"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2023-12-18","groups":[{"time":"12:18:00","height":"4.657"}],"sunrise":"08:25","sunset":"16:00"},{"date":"2023-12-19","groups":[{"time":"00:50:00","height":"4.224"},{"time":"13:21:00","height":"4.456"}],"sunrise":"08:25","sunset":"16:01"},{"date":"2023-12-20","groups":[{"time":"01:55:00","height":"4.017"},{"time":"14:30:00","height":"4.291"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2023-12-21","groups":[{"time":"03:06:00","height":"3.900"},{"time":"15:41:00","height":"4.207"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2023-12-22","groups":[{"time":"04:15:00","height":"3.913"},{"time":"16:43:00","height":"4.218"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2023-12-23","groups":[{"time":"05:16:00","height":"4.045"},{"time":"17:42:00","height":"4.301"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2023-12-24","groups":[{"time":"06:12:00","height":"4.243"},{"time":"18:37:00","height":"4.419"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2023-12-25","groups":[{"time":"07:02:00","height":"4.453"},{"time":"19:26:00","height":"4.530"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2023-12-26","groups":[{"time":"07:47:00","height":"4.628"},{"time":"20:10:00","height":"4.605"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2023-12-27","groups":[{"time":"08:29:00","height":"4.744"},{"time":"20:50:00","height":"4.631"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2023-12-28","groups":[{"time":"09:06:00","height":"4.786"},{"time":"21:27:00","height":"4.595"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2023-12-29","groups":[{"time":"09:42:00","height":"4.754"},{"time":"22:02:00","height":"4.501"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2023-12-30","groups":[{"time":"10:17:00","height":"4.658"},{"time":"22:40:00","height":"4.357"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2023-12-31","groups":[{"time":"10:55:00","height":"4.514"},{"time":"23:18:00","height":"4.177"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2024-01-01","groups":[{"time":"11:34:00","height":"4.334"},{"time":"23:57:00","height":"3.971"}],"sunrise":"08:29","sunset":"16:10"},{"date":"2024-01-02","groups":[{"time":"12:14:00","height":"4.126"}],"sunrise":"08:29","sunset":"16:11"},{"date":"2024-01-03","groups":[{"time":"00:39:00","height":"3.753"},{"time":"12:59:00","height":"3.904"}],"sunrise":"08:28","sunset":"16:12"},{"date":"2024-01-04","groups":[{"time":"01:27:00","height":"3.543"},{"time":"13:51:00","height":"3.691"}],"sunrise":"08:28","sunset":"16:13"},{"date":"2024-01-05","groups":[{"time":"02:25:00","height":"3.384"},{"time":"14:53:00","height":"3.538"}],"sunrise":"08:28","sunset":"16:15"},{"date":"2024-01-06","groups":[{"time":"03:36:00","height":"3.340"},{"time":"16:03:00","height":"3.511"}],"sunrise":"08:27","sunset":"16:16"},{"date":"2024-01-07","groups":[{"time":"04:43:00","height":"3.473"},{"time":"17:09:00","height":"3.651"}],"sunrise":"08:27","sunset":"16:17"},{"date":"2024-01-08","groups":[{"time":"05:43:00","height":"3.761"},{"time":"18:06:00","height":"3.919"}],"sunrise":"08:27","sunset":"16:19"},{"date":"2024-01-09","groups":[{"time":"06:35:00","height":"4.129"},{"time":"18:58:00","height":"4.243"}],"sunrise":"08:26","sunset":"16:20"},{"date":"2024-01-10","groups":[{"time":"07:22:00","height":"4.509"},{"time":"19:46:00","height":"4.561"}],"sunrise":"08:25","sunset":"16:21"},{"date":"2024-01-11","groups":[{"time":"08:08:00","height":"4.851"},{"time":"20:31:00","height":"4.828"}],"sunrise":"08:25","sunset":"16:23"},{"date":"2024-01-12","groups":[{"time":"08:52:00","height":"5.122"},{"time":"21:16:00","height":"5.010"}],"sunrise":"08:24","sunset":"16:24"},{"date":"2024-01-13","groups":[{"time":"09:37:00","height":"5.298"},{"time":"22:00:00","height":"5.083"}],"sunrise":"08:23","sunset":"16:26"},{"date":"2024-01-14","groups":[{"time":"10:21:00","height":"5.358"},{"time":"22:49:00","height":"5.035"}],"sunrise":"08:22","sunset":"16:27"},{"date":"2024-01-15","groups":[{"time":"11:12:00","height":"5.291"},{"time":"23:38:00","height":"4.869"}],"sunrise":"08:21","sunset":"16:29"},{"date":"2024-01-16","groups":[{"time":"12:03:00","height":"5.098"}],"sunrise":"08:21","sunset":"16:31"},{"date":"2024-01-17","groups":[{"time":"00:28:00","height":"4.605"},{"time":"12:55:00","height":"4.798"}],"sunrise":"08:20","sunset":"16:32"},{"date":"2024-01-18","groups":[{"time":"01:21:00","height":"4.282"},{"time":"13:52:00","height":"4.432"}],"sunrise":"08:19","sunset":"16:34"},{"date":"2024-01-19","groups":[{"time":"02:21:00","height":"3.956"},{"time":"14:57:00","height":"4.070"}],"sunrise":"08:17","sunset":"16:36"},{"date":"2024-01-20","groups":[{"time":"03:31:00","height":"3.707"},{"time":"16:06:00","height":"3.806"}],"sunrise":"08:16","sunset":"16:37"},{"date":"2024-01-21","groups":[{"time":"04:42:00","height":"3.633"},{"time":"17:18:00","height":"3.738"}],"sunrise":"08:15","sunset":"16:39"},{"date":"2024-01-22","groups":[{"time":"05:54:00","height":"3.774"},{"time":"18:25:00","height":"3.869"}],"sunrise":"08:14","sunset":"16:41"},{"date":"2024-01-23","groups":[{"time":"06:54:00","height":"4.052"},{"time":"19:20:00","height":"4.099"}],"sunrise":"08:13","sunset":"16:43"},{"date":"2024-01-24","groups":[{"time":"07:42:00","height":"4.344"},{"time":"20:04:00","height":"4.322"}],"sunrise":"08:11","sunset":"16:45"},{"date":"2024-01-25","groups":[{"time":"08:22:00","height":"4.575"},{"time":"20:42:00","height":"4.486"}],"sunrise":"08:10","sunset":"16:46"},{"date":"2024-01-26","groups":[{"time":"08:58:00","height":"4.723"},{"time":"21:16:00","height":"4.578"}],"sunrise":"08:09","sunset":"16:48"},{"date":"2024-01-27","groups":[{"time":"09:30:00","height":"4.790"},{"time":"21:47:00","height":"4.601"}],"sunrise":"08:07","sunset":"16:50"},{"date":"2024-01-28","groups":[{"time":"10:00:00","height":"4.789"},{"time":"22:18:00","height":"4.561"}],"sunrise":"08:06","sunset":"16:52"},{"date":"2024-01-29","groups":[{"time":"10:32:00","height":"4.729"},{"time":"22:51:00","height":"4.466"}],"sunrise":"08:04","sunset":"16:54"},{"date":"2024-01-30","groups":[{"time":"11:05:00","height":"4.612"},{"time":"23:23:00","height":"4.317"}],"sunrise":"08:03","sunset":"16:56"},{"date":"2024-01-31","groups":[{"time":"11:37:00","height":"4.435"},{"time":"23:57:00","height":"4.115"}],"sunrise":"08:01","sunset":"16:58"},{"date":"2024-02-01","groups":[{"time":"12:13:00","height":"4.201"}],"sunrise":"07:59","sunset":"17:00"},{"date":"2024-02-02","groups":[{"time":"00:34:00","height":"3.873"},{"time":"12:52:00","height":"3.925"}],"sunrise":"07:58","sunset":"17:01"},{"date":"2024-02-03","groups":[{"time":"01:17:00","height":"3.612"},{"time":"13:42:00","height":"3.632"}],"sunrise":"07:56","sunset":"17:03"},{"date":"2024-02-04","groups":[{"time":"02:18:00","height":"3.372"},{"time":"14:51:00","height":"3.383"}],"sunrise":"07:54","sunset":"17:05"},{"date":"2024-02-05","groups":[{"time":"03:40:00","height":"3.261"},{"time":"16:17:00","height":"3.319"}],"sunrise":"07:53","sunset":"17:07"},{"date":"2024-02-06","groups":[{"time":"05:04:00","height":"3.432"},{"time":"17:38:00","height":"3.558"}],"sunrise":"07:51","sunset":"17:09"},{"date":"2024-02-07","groups":[{"time":"06:13:00","height":"3.856"},{"time":"18:43:00","height":"3.997"}],"sunrise":"07:49","sunset":"17:11"},{"date":"2024-02-08","groups":[{"time":"07:09:00","height":"4.378"},{"time":"19:35:00","height":"4.482"}],"sunrise":"07:47","sunset":"17:13"},{"date":"2024-02-09","groups":[{"time":"07:57:00","height":"4.886"},{"time":"20:21:00","height":"4.913"}],"sunrise":"07:45","sunset":"17:15"},{"date":"2024-02-10","groups":[{"time":"08:42:00","height":"5.306"},{"time":"21:06:00","height":"5.226"}],"sunrise":"07:44","sunset":"17:17"},{"date":"2024-02-11","groups":[{"time":"09:24:00","height":"5.590"},{"time":"21:47:00","height":"5.387"}],"sunrise":"07:42","sunset":"17:19"},{"date":"2024-02-12","groups":[{"time":"10:06:00","height":"5.702"},{"time":"22:29:00","height":"5.375"}],"sunrise":"07:40","sunset":"17:21"},{"date":"2024-02-13","groups":[{"time":"10:52:00","height":"5.622"},{"time":"23:15:00","height":"5.191"}],"sunrise":"07:38","sunset":"17:23"},{"date":"2024-02-14","groups":[{"time":"11:37:00","height":"5.351"},{"time":"23:58:00","height":"4.860"}],"sunrise":"07:36","sunset":"17:25"},{"date":"2024-02-15","groups":[{"time":"12:24:00","height":"4.920"}],"sunrise":"07:34","sunset":"17:27"},{"date":"2024-02-16","groups":[{"time":"00:44:00","height":"4.426"},{"time":"13:13:00","height":"4.387"}],"sunrise":"07:32","sunset":"17:28"},{"date":"2024-02-17","groups":[{"time":"01:35:00","height":"3.949"},{"time":"14:11:00","height":"3.832"}],"sunrise":"07:30","sunset":"17:30"},{"date":"2024-02-18","groups":[{"time":"02:43:00","height":"3.514"},{"time":"15:30:00","height":"3.391"}],"sunrise":"07:28","sunset":"17:32"},{"date":"2024-02-19","groups":[{"time":"04:12:00","height":"3.289"},{"time":"16:59:00","height":"3.269"}],"sunrise":"07:25","sunset":"17:34"},{"date":"2024-02-20","groups":[{"time":"05:42:00","height":"3.450"},{"time":"18:20:00","height":"3.520"}],"sunrise":"07:23","sunset":"17:36"},{"date":"2024-02-21","groups":[{"time":"06:47:00","height":"3.843"},{"time":"19:13:00","height":"3.897"}],"sunrise":"07:21","sunset":"17:38"},{"date":"2024-02-22","groups":[{"time":"07:31:00","height":"4.235"},{"time":"19:52:00","height":"4.236"}],"sunrise":"07:19","sunset":"17:40"},{"date":"2024-02-23","groups":[{"time":"08:08:00","height":"4.538"},{"time":"20:26:00","height":"4.486"}],"sunrise":"07:17","sunset":"17:42"},{"date":"2024-02-24","groups":[{"time":"08:41:00","height":"4.738"},{"time":"20:57:00","height":"4.645"}],"sunrise":"07:15","sunset":"17:44"},{"date":"2024-02-25","groups":[{"time":"09:10:00","height":"4.850"},{"time":"21:25:00","height":"4.727"}],"sunrise":"07:13","sunset":"17:46"},{"date":"2024-02-26","groups":[{"time":"09:38:00","height":"4.892"},{"time":"21:52:00","height":"4.743"}],"sunrise":"07:10","sunset":"17:48"},{"date":"2024-02-27","groups":[{"time":"10:04:00","height":"4.870"},{"time":"22:18:00","height":"4.694"}],"sunrise":"07:08","sunset":"17:49"},{"date":"2024-02-28","groups":[{"time":"10:32:00","height":"4.782"},{"time":"22:47:00","height":"4.577"}],"sunrise":"07:06","sunset":"17:51"},{"date":"2024-02-29","groups":[{"time":"11:02:00","height":"4.618"},{"time":"23:18:00","height":"4.389"}],"sunrise":"07:04","sunset":"17:53"},{"date":"2024-03-01","groups":[{"time":"11:33:00","height":"4.382"},{"time":"23:50:00","height":"4.138"}],"sunrise":"07:01","sunset":"17:55"},{"date":"2024-03-02","groups":[{"time":"12:08:00","height":"4.080"}],"sunrise":"06:59","sunset":"17:57"},{"date":"2024-03-03","groups":[{"time":"00:28:00","height":"3.833"},{"time":"12:51:00","height":"3.721"}],"sunrise":"06:57","sunset":"17:59"},{"date":"2024-03-04","groups":[{"time":"01:21:00","height":"3.494"},{"time":"13:56:00","height":"3.347"}],"sunrise":"06:55","sunset":"18:01"},{"date":"2024-03-05","groups":[{"time":"02:46:00","height":"3.220"},{"time":"15:39:00","height":"3.140"}],"sunrise":"06:52","sunset":"18:02"},{"date":"2024-03-06","groups":[{"time":"04:34:00","height":"3.293"},{"time":"17:19:00","height":"3.388"}],"sunrise":"06:50","sunset":"18:04"},{"date":"2024-03-07","groups":[{"time":"05:56:00","height":"3.781"},{"time":"18:29:00","height":"3.944"}],"sunrise":"06:48","sunset":"18:06"},{"date":"2024-03-08","groups":[{"time":"06:53:00","height":"4.410"},{"time":"19:20:00","height":"4.540"}],"sunrise":"06:45","sunset":"18:08"},{"date":"2024-03-09","groups":[{"time":"07:40:00","height":"5.005"},{"time":"20:05:00","height":"5.047"}],"sunrise":"06:43","sunset":"18:10"},{"date":"2024-03-10","groups":[{"time":"08:24:00","height":"5.473"},{"time":"20:47:00","height":"5.399"}],"sunrise":"06:41","sunset":"18:12"},{"date":"2024-03-11","groups":[{"time":"09:05:00","height":"5.760"},{"time":"21:26:00","height":"5.566"}],"sunrise":"06:38","sunset":"18:14"},{"date":"2024-03-12","groups":[{"time":"09:45:00","height":"5.835"},{"time":"22:04:00","height":"5.537"}],"sunrise":"06:36","sunset":"18:15"},{"date":"2024-03-13","groups":[{"time":"10:25:00","height":"5.689"},{"time":"22:45:00","height":"5.319"}],"sunrise":"06:34","sunset":"18:17"},{"date":"2024-03-14","groups":[{"time":"11:08:00","height":"5.336"},{"time":"23:26:00","height":"4.943"}],"sunrise":"06:31","sunset":"18:19"},{"date":"2024-03-15","groups":[{"time":"11:51:00","height":"4.823"}],"sunrise":"06:29","sunset":"18:21"},{"date":"2024-03-16","groups":[{"time":"00:09:00","height":"4.457"},{"time":"12:38:00","height":"4.217"}],"sunrise":"06:26","sunset":"18:23"},{"date":"2024-03-17","groups":[{"time":"00:56:00","height":"3.920"},{"time":"13:33:00","height":"3.601"}],"sunrise":"06:24","sunset":"18:24"},{"date":"2024-03-18","groups":[{"time":"02:01:00","height":"3.413"},{"time":"14:54:00","height":"3.113"}],"sunrise":"06:22","sunset":"18:26"},{"date":"2024-03-19","groups":[{"time":"03:45:00","height":"3.131"},{"time":"16:42:00","height":"3.025"}],"sunrise":"06:19","sunset":"18:28"},{"date":"2024-03-20","groups":[{"time":"05:25:00","height":"3.321"},{"time":"18:04:00","height":"3.367"}],"sunrise":"06:17","sunset":"18:30"},{"date":"2024-03-21","groups":[{"time":"06:28:00","height":"3.755"},{"time":"18:53:00","height":"3.809"}],"sunrise":"06:14","sunset":"18:32"},{"date":"2024-03-22","groups":[{"time":"07:09:00","height":"4.169"},{"time":"19:29:00","height":"4.190"}],"sunrise":"06:12","sunset":"18:33"},{"date":"2024-03-23","groups":[{"time":"07:43:00","height":"4.486"},{"time":"20:01:00","height":"4.473"}],"sunrise":"06:10","sunset":"18:35"},{"date":"2024-03-24","groups":[{"time":"08:14:00","height":"4.701"},{"time":"20:30:00","height":"4.665"}],"sunrise":"06:07","sunset":"18:37"},{"date":"2024-03-25","groups":[{"time":"08:42:00","height":"4.831"},{"time":"20:57:00","height":"4.780"}],"sunrise":"06:05","sunset":"18:39"},{"date":"2024-03-26","groups":[{"time":"09:09:00","height":"4.892"},{"time":"21:23:00","height":"4.830"}],"sunrise":"06:03","sunset":"18:41"},{"date":"2024-03-27","groups":[{"time":"09:35:00","height":"4.889"},{"time":"21:49:00","height":"4.812"}],"sunrise":"06:00","sunset":"18:42"},{"date":"2024-03-28","groups":[{"time":"10:00:00","height":"4.817"},{"time":"22:15:00","height":"4.719"}],"sunrise":"05:58","sunset":"18:44"},{"date":"2024-03-29","groups":[{"time":"10:29:00","height":"4.666"},{"time":"22:45:00","height":"4.546"}],"sunrise":"05:55","sunset":"18:46"},{"date":"2024-03-30","groups":[{"time":"11:02:00","height":"4.433"},{"time":"23:19:00","height":"4.296"}],"sunrise":"05:53","sunset":"18:48"},{"date":"2024-03-31","groups":[{"time":"11:38:00","height":"4.122"},{"time":"23:59:00","height":"3.975"}],"sunrise":"05:51","sunset":"18:49"},{"date":"2024-04-01","groups":[{"time":"13:24:00","height":"3.741"}],"sunrise":"06:48","sunset":"19:51"},{"date":"2024-04-02","groups":[{"time":"01:54:00","height":"3.609"},{"time":"14:33:00","height":"3.346"}],"sunrise":"06:46","sunset":"19:53"},{"date":"2024-04-03","groups":[{"time":"03:23:00","height":"3.321"},{"time":"16:22:00","height":"3.159"}],"sunrise":"06:44","sunset":"19:55"},{"date":"2024-04-04","groups":[{"time":"05:13:00","height":"3.411"},{"time":"18:01:00","height":"3.455"}],"sunrise":"06:41","sunset":"19:57"},{"date":"2024-04-05","groups":[{"time":"06:33:00","height":"3.909"},{"time":"19:08:00","height":"4.028"}],"sunrise":"06:39","sunset":"19:58"},{"date":"2024-04-06","groups":[{"time":"07:29:00","height":"4.522"},{"time":"19:58:00","height":"4.609"}],"sunrise":"06:36","sunset":"20:00"},{"date":"2024-04-07","groups":[{"time":"08:17:00","height":"5.071"},{"time":"20:42:00","height":"5.079"}],"sunrise":"06:34","sunset":"20:02"},{"date":"2024-04-08","groups":[{"time":"09:00:00","height":"5.469"},{"time":"21:22:00","height":"5.388"}],"sunrise":"06:32","sunset":"20:04"},{"date":"2024-04-09","groups":[{"time":"09:41:00","height":"5.676"},{"time":"22:01:00","height":"5.518"}],"sunrise":"06:29","sunset":"20:05"},{"date":"2024-04-10","groups":[{"time":"10:21:00","height":"5.677"},{"time":"22:38:00","height":"5.465"}],"sunrise":"06:27","sunset":"20:07"},{"date":"2024-04-11","groups":[{"time":"10:59:00","height":"5.477"},{"time":"23:16:00","height":"5.242"}],"sunrise":"06:25","sunset":"20:09"},{"date":"2024-04-12","groups":[{"time":"11:41:00","height":"5.100"},{"time":"23:57:00","height":"4.876"}],"sunrise":"06:23","sunset":"20:11"},{"date":"2024-04-13","groups":[{"time":"12:24:00","height":"4.595"}],"sunrise":"06:20","sunset":"20:13"},{"date":"2024-04-14","groups":[{"time":"00:41:00","height":"4.413"},{"time":"13:10:00","height":"4.029"}],"sunrise":"06:18","sunset":"20:14"},{"date":"2024-04-15","groups":[{"time":"01:29:00","height":"3.912"},{"time":"14:05:00","height":"3.480"}],"sunrise":"06:16","sunset":"20:16"},{"date":"2024-04-16","groups":[{"time":"02:33:00","height":"3.450"},{"time":"15:24:00","height":"3.064"}],"sunrise":"06:14","sunset":"20:18"},{"date":"2024-04-17","groups":[{"time":"04:11:00","height":"3.187"},{"time":"17:08:00","height":"2.992"}],"sunrise":"06:11","sunset":"20:20"},{"date":"2024-04-18","groups":[{"time":"05:45:00","height":"3.311"},{"time":"18:26:00","height":"3.285"}],"sunrise":"06:09","sunset":"20:21"},{"date":"2024-04-19","groups":[{"time":"06:48:00","height":"3.662"},{"time":"19:16:00","height":"3.687"}],"sunrise":"06:07","sunset":"20:23"},{"date":"2024-04-20","groups":[{"time":"07:32:00","height":"4.027"},{"time":"19:54:00","height":"4.056"}],"sunrise":"06:05","sunset":"20:25"},{"date":"2024-04-21","groups":[{"time":"08:08:00","height":"4.328"},{"time":"20:27:00","height":"4.351"}],"sunrise":"06:03","sunset":"20:27"},{"date":"2024-04-22","groups":[{"time":"08:40:00","height":"4.547"},{"time":"20:56:00","height":"4.569"}],"sunrise":"06:00","sunset":"20:29"},{"date":"2024-04-23","groups":[{"time":"09:09:00","height":"4.693"},{"time":"21:25:00","height":"4.718"}],"sunrise":"05:58","sunset":"20:30"},{"date":"2024-04-24","groups":[{"time":"09:38:00","height":"4.774"},{"time":"21:53:00","height":"4.802"}],"sunrise":"05:56","sunset":"20:32"},{"date":"2024-04-25","groups":[{"time":"10:06:00","height":"4.794"},{"time":"22:22:00","height":"4.817"}],"sunrise":"05:54","sunset":"20:34"},{"date":"2024-04-26","groups":[{"time":"10:35:00","height":"4.743"},{"time":"22:50:00","height":"4.752"}],"sunrise":"05:52","sunset":"20:36"},{"date":"2024-04-27","groups":[{"time":"11:05:00","height":"4.613"},{"time":"23:23:00","height":"4.603"}],"sunrise":"05:50","sunset":"20:37"},{"date":"2024-04-28","groups":[{"time":"11:41:00","height":"4.399"}],"sunrise":"05:48","sunset":"20:39"},{"date":"2024-04-29","groups":[{"time":"00:02:00","height":"4.373"},{"time":"12:24:00","height":"4.108"}],"sunrise":"05:46","sunset":"20:41"},{"date":"2024-04-30","groups":[{"time":"00:49:00","height":"4.082"},{"time":"13:18:00","height":"3.768"}],"sunrise":"05:44","sunset":"20:43"},{"date":"2024-05-01","groups":[{"time":"01:52:00","height":"3.779"},{"time":"14:33:00","height":"3.469"}],"sunrise":"05:42","sunset":"20:44"},{"date":"2024-05-02","groups":[{"time":"03:19:00","height":"3.604"},{"time":"16:11:00","height":"3.397"}],"sunrise":"05:40","sunset":"20:46"},{"date":"2024-05-03","groups":[{"time":"04:52:00","height":"3.726"},{"time":"17:35:00","height":"3.660"}],"sunrise":"05:38","sunset":"20:48"},{"date":"2024-05-04","groups":[{"time":"06:04:00","height":"4.110"},{"time":"18:38:00","height":"4.108"}],"sunrise":"05:36","sunset":"20:50"},{"date":"2024-05-05","groups":[{"time":"07:00:00","height":"4.566"},{"time":"19:29:00","height":"4.560"}],"sunrise":"05:34","sunset":"20:51"},{"date":"2024-05-06","groups":[{"time":"07:49:00","height":"4.959"},{"time":"20:14:00","height":"4.922"}],"sunrise":"05:32","sunset":"20:53"},{"date":"2024-05-07","groups":[{"time":"08:34:00","height":"5.222"},{"time":"20:56:00","height":"5.157"}],"sunrise":"05:30","sunset":"20:55"},{"date":"2024-05-08","groups":[{"time":"09:17:00","height":"5.331"},{"time":"21:36:00","height":"5.252"}],"sunrise":"05:29","sunset":"20:56"},{"date":"2024-05-09","groups":[{"time":"09:58:00","height":"5.283"},{"time":"22:16:00","height":"5.205"}],"sunrise":"05:27","sunset":"20:58"},{"date":"2024-05-10","groups":[{"time":"10:38:00","height":"5.090"},{"time":"22:54:00","height":"5.026"}],"sunrise":"05:25","sunset":"21:00"},{"date":"2024-05-11","groups":[{"time":"11:18:00","height":"4.775"},{"time":"23:36:00","height":"4.735"}],"sunrise":"05:23","sunset":"21:01"},{"date":"2024-05-12","groups":[{"time":"12:04:00","height":"4.376"}],"sunrise":"05:22","sunset":"21:03"},{"date":"2024-05-13","groups":[{"time":"00:21:00","height":"4.372"},{"time":"12:51:00","height":"3.946"}],"sunrise":"05:20","sunset":"21:05"},{"date":"2024-05-14","groups":[{"time":"01:11:00","height":"3.986"},{"time":"13:44:00","height":"3.543"}],"sunrise":"05:18","sunset":"21:06"},{"date":"2024-05-15","groups":[{"time":"02:09:00","height":"3.638"},{"time":"14:51:00","height":"3.235"}],"sunrise":"05:17","sunset":"21:08"},{"date":"2024-05-16","groups":[{"time":"03:24:00","height":"3.407"},{"time":"16:14:00","height":"3.117"}],"sunrise":"05:15","sunset":"21:09"},{"date":"2024-05-17","groups":[{"time":"04:48:00","height":"3.386"},{"time":"17:28:00","height":"3.242"}],"sunrise":"05:14","sunset":"21:11"},{"date":"2024-05-18","groups":[{"time":"05:52:00","height":"3.557"},{"time":"18:25:00","height":"3.514"}],"sunrise":"05:12","sunset":"21:13"},{"date":"2024-05-19","groups":[{"time":"06:42:00","height":"3.810"},{"time":"19:08:00","height":"3.824"}],"sunrise":"05:11","sunset":"21:14"},{"date":"2024-05-20","groups":[{"time":"07:24:00","height":"4.062"},{"time":"19:45:00","height":"4.115"}],"sunrise":"05:10","sunset":"21:16"},{"date":"2024-05-21","groups":[{"time":"08:00:00","height":"4.281"},{"time":"20:20:00","height":"4.363"}],"sunrise":"05:08","sunset":"21:17"},{"date":"2024-05-22","groups":[{"time":"08:34:00","height":"4.452"},{"time":"20:53:00","height":"4.557"}],"sunrise":"05:07","sunset":"21:19"},{"date":"2024-05-23","groups":[{"time":"09:08:00","height":"4.573"},{"time":"21:25:00","height":"4.692"}],"sunrise":"05:06","sunset":"21:20"},{"date":"2024-05-24","groups":[{"time":"09:42:00","height":"4.636"},{"time":"21:59:00","height":"4.758"}],"sunrise":"05:04","sunset":"21:21"},{"date":"2024-05-25","groups":[{"time":"10:16:00","height":"4.635"},{"time":"22:34:00","height":"4.748"}],"sunrise":"05:03","sunset":"21:23"},{"date":"2024-05-26","groups":[{"time":"10:53:00","height":"4.560"},{"time":"23:11:00","height":"4.661"}],"sunrise":"05:02","sunset":"21:24"},{"date":"2024-05-27","groups":[{"time":"11:34:00","height":"4.410"},{"time":"23:58:00","height":"4.506"}],"sunrise":"05:01","sunset":"21:26"},{"date":"2024-05-28","groups":[{"time":"12:25:00","height":"4.201"}],"sunrise":"05:00","sunset":"21:27"},{"date":"2024-05-29","groups":[{"time":"00:52:00","height":"4.312"},{"time":"13:24:00","height":"3.973"}],"sunrise":"04:59","sunset":"21:28"},{"date":"2024-05-30","groups":[{"time":"01:55:00","height":"4.131"},{"time":"14:32:00","height":"3.791"}],"sunrise":"04:58","sunset":"21:29"},{"date":"2024-05-31","groups":[{"time":"03:08:00","height":"4.028"},{"time":"15:48:00","height":"3.734"}],"sunrise":"04:57","sunset":"21:31"},{"date":"2024-06-01","groups":[{"time":"04:25:00","height":"4.060"},{"time":"17:02:00","height":"3.842"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2024-06-02","groups":[{"time":"05:30:00","height":"4.218"},{"time":"18:03:00","height":"4.074"}],"sunrise":"04:55","sunset":"21:33"},{"date":"2024-06-03","groups":[{"time":"06:28:00","height":"4.433"},{"time":"18:58:00","height":"4.346"}],"sunrise":"04:55","sunset":"21:34"},{"date":"2024-06-04","groups":[{"time":"07:22:00","height":"4.632"},{"time":"19:47:00","height":"4.592"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2024-06-05","groups":[{"time":"08:11:00","height":"4.773"},{"time":"20:34:00","height":"4.777"}],"sunrise":"04:53","sunset":"21:36"},{"date":"2024-06-06","groups":[{"time":"08:58:00","height":"4.838"},{"time":"21:18:00","height":"4.880"}],"sunrise":"04:53","sunset":"21:37"},{"date":"2024-06-07","groups":[{"time":"09:42:00","height":"4.818"},{"time":"22:00:00","height":"4.891"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2024-06-08","groups":[{"time":"10:24:00","height":"4.713"},{"time":"22:40:00","height":"4.807"}],"sunrise":"04:52","sunset":"21:39"},{"date":"2024-06-09","groups":[{"time":"11:04:00","height":"4.534"},{"time":"23:21:00","height":"4.643"}],"sunrise":"04:51","sunset":"21:39"},{"date":"2024-06-10","groups":[{"time":"11:49:00","height":"4.298"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2024-06-11","groups":[{"time":"00:06:00","height":"4.420"},{"time":"12:33:00","height":"4.033"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2024-06-12","groups":[{"time":"00:51:00","height":"4.171"},{"time":"13:20:00","height":"3.769"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2024-06-13","groups":[{"time":"01:39:00","height":"3.924"},{"time":"14:09:00","height":"3.535"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2024-06-14","groups":[{"time":"02:33:00","height":"3.707"},{"time":"15:08:00","height":"3.360"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2024-06-15","groups":[{"time":"03:34:00","height":"3.553"},{"time":"16:15:00","height":"3.290"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2024-06-16","groups":[{"time":"04:42:00","height":"3.504"},{"time":"17:19:00","height":"3.361"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2024-06-17","groups":[{"time":"05:41:00","height":"3.575"},{"time":"18:14:00","height":"3.553"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2024-06-18","groups":[{"time":"06:34:00","height":"3.737"},{"time":"19:01:00","height":"3.812"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2024-06-19","groups":[{"time":"07:20:00","height":"3.944"},{"time":"19:44:00","height":"4.091"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2024-06-20","groups":[{"time":"08:02:00","height":"4.158"},{"time":"20:24:00","height":"4.352"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2024-06-21","groups":[{"time":"08:43:00","height":"4.353"},{"time":"21:03:00","height":"4.572"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2024-06-22","groups":[{"time":"09:24:00","height":"4.509"},{"time":"21:44:00","height":"4.736"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2024-06-23","groups":[{"time":"10:05:00","height":"4.611"},{"time":"22:24:00","height":"4.835"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2024-06-24","groups":[{"time":"10:47:00","height":"4.648"},{"time":"23:07:00","height":"4.866"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2024-06-25","groups":[{"time":"11:32:00","height":"4.612"},{"time":"23:56:00","height":"4.826"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2024-06-26","groups":[{"time":"12:23:00","height":"4.507"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2024-06-27","groups":[{"time":"00:49:00","height":"4.723"},{"time":"13:17:00","height":"4.348"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2024-06-28","groups":[{"time":"01:44:00","height":"4.573"},{"time":"14:15:00","height":"4.166"}],"sunrise":"04:53","sunset":"21:45"},{"date":"2024-06-29","groups":[{"time":"02:45:00","height":"4.399"},{"time":"15:17:00","height":"3.997"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2024-06-30","groups":[{"time":"03:50:00","height":"4.233"},{"time":"16:25:00","height":"3.890"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2024-07-01","groups":[{"time":"04:57:00","height":"4.122"},{"time":"17:29:00","height":"3.891"}],"sunrise":"04:56","sunset":"21:45"},{"date":"2024-07-02","groups":[{"time":"05:59:00","height":"4.097"},{"time":"18:31:00","height":"4.005"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2024-07-03","groups":[{"time":"07:00:00","height":"4.158"},{"time":"19:29:00","height":"4.196"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2024-07-04","groups":[{"time":"07:58:00","height":"4.277"},{"time":"20:22:00","height":"4.410"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2024-07-05","groups":[{"time":"08:48:00","height":"4.404"},{"time":"21:09:00","height":"4.590"}],"sunrise":"04:59","sunset":"21:43"},{"date":"2024-07-06","groups":[{"time":"09:34:00","height":"4.495"},{"time":"21:51:00","height":"4.702"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2024-07-07","groups":[{"time":"10:15:00","height":"4.527"},{"time":"22:31:00","height":"4.732"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2024-07-08","groups":[{"time":"10:53:00","height":"4.491"},{"time":"23:07:00","height":"4.684"}],"sunrise":"05:02","sunset":"21:41"},{"date":"2024-07-09","groups":[{"time":"11:30:00","height":"4.394"},{"time":"23:46:00","height":"4.575"}],"sunrise":"05:03","sunset":"21:40"},{"date":"2024-07-10","groups":[{"time":"12:08:00","height":"4.250"}],"sunrise":"05:04","sunset":"21:39"},{"date":"2024-07-11","groups":[{"time":"00:24:00","height":"4.419"},{"time":"12:46:00","height":"4.072"}],"sunrise":"05:05","sunset":"21:38"},{"date":"2024-07-12","groups":[{"time":"01:02:00","height":"4.227"},{"time":"13:25:00","height":"3.871"}],"sunrise":"05:06","sunset":"21:37"},{"date":"2024-07-13","groups":[{"time":"01:43:00","height":"4.007"},{"time":"14:08:00","height":"3.657"}],"sunrise":"05:08","sunset":"21:36"},{"date":"2024-07-14","groups":[{"time":"02:29:00","height":"3.771"},{"time":"14:59:00","height":"3.457"}],"sunrise":"05:09","sunset":"21:35"},{"date":"2024-07-15","groups":[{"time":"03:23:00","height":"3.552"},{"time":"16:01:00","height":"3.322"}],"sunrise":"05:10","sunset":"21:34"},{"date":"2024-07-16","groups":[{"time":"04:30:00","height":"3.410"},{"time":"17:11:00","height":"3.327"}],"sunrise":"05:11","sunset":"21:33"},{"date":"2024-07-17","groups":[{"time":"05:38:00","height":"3.422"},{"time":"18:17:00","height":"3.515"}],"sunrise":"05:13","sunset":"21:32"},{"date":"2024-07-18","groups":[{"time":"06:42:00","height":"3.608"},{"time":"19:14:00","height":"3.834"}],"sunrise":"05:14","sunset":"21:31"},{"date":"2024-07-19","groups":[{"time":"07:38:00","height":"3.901"},{"time":"20:03:00","height":"4.203"}],"sunrise":"05:15","sunset":"21:29"},{"date":"2024-07-20","groups":[{"time":"08:27:00","height":"4.228"},{"time":"20:48:00","height":"4.563"}],"sunrise":"05:17","sunset":"21:28"},{"date":"2024-07-21","groups":[{"time":"09:12:00","height":"4.535"},{"time":"21:32:00","height":"4.874"}],"sunrise":"05:18","sunset":"21:27"},{"date":"2024-07-22","groups":[{"time":"09:55:00","height":"4.783"},{"time":"22:15:00","height":"5.112"}],"sunrise":"05:20","sunset":"21:25"},{"date":"2024-07-23","groups":[{"time":"10:38:00","height":"4.943"},{"time":"22:57:00","height":"5.252"}],"sunrise":"05:21","sunset":"21:24"},{"date":"2024-07-24","groups":[{"time":"11:21:00","height":"4.993"},{"time":"23:44:00","height":"5.274"}],"sunrise":"05:23","sunset":"21:22"},{"date":"2024-07-25","groups":[{"time":"12:09:00","height":"4.922"}],"sunrise":"05:24","sunset":"21:21"},{"date":"2024-07-26","groups":[{"time":"00:33:00","height":"5.163"},{"time":"12:57:00","height":"4.734"}],"sunrise":"05:26","sunset":"21:19"},{"date":"2024-07-27","groups":[{"time":"01:22:00","height":"4.925"},{"time":"13:47:00","height":"4.455"}],"sunrise":"05:27","sunset":"21:18"},{"date":"2024-07-28","groups":[{"time":"02:15:00","height":"4.585"},{"time":"14:41:00","height":"4.126"}],"sunrise":"05:29","sunset":"21:16"},{"date":"2024-07-29","groups":[{"time":"03:13:00","height":"4.195"},{"time":"15:45:00","height":"3.815"}],"sunrise":"05:30","sunset":"21:15"},{"date":"2024-07-30","groups":[{"time":"04:24:00","height":"3.845"},{"time":"16:59:00","height":"3.627"}],"sunrise":"05:32","sunset":"21:13"},{"date":"2024-07-31","groups":[{"time":"05:37:00","height":"3.661"},{"time":"18:15:00","height":"3.668"}],"sunrise":"05:34","sunset":"21:11"},{"date":"2024-08-01","groups":[{"time":"06:52:00","height":"3.722"},{"time":"19:25:00","height":"3.922"}],"sunrise":"05:35","sunset":"21:10"},{"date":"2024-08-02","groups":[{"time":"07:55:00","height":"3.960"},{"time":"20:19:00","height":"4.251"}],"sunrise":"05:37","sunset":"21:08"},{"date":"2024-08-03","groups":[{"time":"08:45:00","height":"4.228"},{"time":"21:03:00","height":"4.534"}],"sunrise":"05:38","sunset":"21:06"},{"date":"2024-08-04","groups":[{"time":"09:26:00","height":"4.441"},{"time":"21:42:00","height":"4.723"}],"sunrise":"05:40","sunset":"21:04"},{"date":"2024-08-05","groups":[{"time":"10:02:00","height":"4.569"},{"time":"22:16:00","height":"4.815"}],"sunrise":"05:42","sunset":"21:02"},{"date":"2024-08-06","groups":[{"time":"10:34:00","height":"4.617"},{"time":"22:47:00","height":"4.826"}],"sunrise":"05:43","sunset":"21:00"},{"date":"2024-08-07","groups":[{"time":"11:04:00","height":"4.594"},{"time":"23:18:00","height":"4.771"}],"sunrise":"05:45","sunset":"20:58"},{"date":"2024-08-08","groups":[{"time":"11:37:00","height":"4.512"},{"time":"23:51:00","height":"4.657"}],"sunrise":"05:47","sunset":"20:57"},{"date":"2024-08-09","groups":[{"time":"12:08:00","height":"4.373"}],"sunrise":"05:48","sunset":"20:55"},{"date":"2024-08-10","groups":[{"time":"00:22:00","height":"4.483"},{"time":"12:41:00","height":"4.181"}],"sunrise":"05:50","sunset":"20:53"},{"date":"2024-08-11","groups":[{"time":"00:56:00","height":"4.248"},{"time":"13:15:00","height":"3.940"}],"sunrise":"05:52","sunset":"20:51"},{"date":"2024-08-12","groups":[{"time":"01:33:00","height":"3.960"},{"time":"13:55:00","height":"3.667"}],"sunrise":"05:53","sunset":"20:49"},{"date":"2024-08-13","groups":[{"time":"02:17:00","height":"3.641"},{"time":"14:49:00","height":"3.396"}],"sunrise":"05:55","sunset":"20:47"},{"date":"2024-08-14","groups":[{"time":"03:19:00","height":"3.341"},{"time":"16:06:00","height":"3.216"}],"sunrise":"05:57","sunset":"20:44"},{"date":"2024-08-15","groups":[{"time":"04:46:00","height":"3.188"},{"time":"17:38:00","height":"3.300"}],"sunrise":"05:58","sunset":"20:42"},{"date":"2024-08-16","groups":[{"time":"06:14:00","height":"3.355"},{"time":"18:52:00","height":"3.684"}],"sunrise":"06:00","sunset":"20:40"},{"date":"2024-08-17","groups":[{"time":"07:21:00","height":"3.776"},{"time":"19:47:00","height":"4.198"}],"sunrise":"06:02","sunset":"20:38"},{"date":"2024-08-18","groups":[{"time":"08:14:00","height":"4.270"},{"time":"20:34:00","height":"4.712"}],"sunrise":"06:04","sunset":"20:36"},{"date":"2024-08-19","groups":[{"time":"08:59:00","height":"4.727"},{"time":"21:18:00","height":"5.154"}],"sunrise":"06:05","sunset":"20:34"},{"date":"2024-08-20","groups":[{"time":"09:41:00","height":"5.086"},{"time":"21:59:00","height":"5.479"}],"sunrise":"06:07","sunset":"20:32"},{"date":"2024-08-21","groups":[{"time":"10:22:00","height":"5.309"},{"time":"22:40:00","height":"5.650"}],"sunrise":"06:09","sunset":"20:29"},{"date":"2024-08-22","groups":[{"time":"11:01:00","height":"5.370"},{"time":"23:21:00","height":"5.640"}],"sunrise":"06:10","sunset":"20:27"},{"date":"2024-08-23","groups":[{"time":"11:44:00","height":"5.261"}],"sunrise":"06:12","sunset":"20:25"},{"date":"2024-08-24","groups":[{"time":"00:07:00","height":"5.438"},{"time":"12:28:00","height":"4.994"}],"sunrise":"06:14","sunset":"20:23"},{"date":"2024-08-25","groups":[{"time":"00:52:00","height":"5.062"},{"time":"13:13:00","height":"4.602"}],"sunrise":"06:15","sunset":"20:21"},{"date":"2024-08-26","groups":[{"time":"01:41:00","height":"4.556"},{"time":"14:03:00","height":"4.139"}],"sunrise":"06:17","sunset":"20:18"},{"date":"2024-08-27","groups":[{"time":"02:38:00","height":"3.995"},{"time":"15:07:00","height":"3.680"}],"sunrise":"06:19","sunset":"20:16"},{"date":"2024-08-28","groups":[{"time":"03:51:00","height":"3.499"},{"time":"16:37:00","height":"3.386"}],"sunrise":"06:21","sunset":"20:14"},{"date":"2024-08-29","groups":[{"time":"05:26:00","height":"3.291"},{"time":"18:11:00","height":"3.477"}],"sunrise":"06:22","sunset":"20:11"},{"date":"2024-08-30","groups":[{"time":"06:54:00","height":"3.500"},{"time":"19:23:00","height":"3.870"}],"sunrise":"06:24","sunset":"20:09"},{"date":"2024-08-31","groups":[{"time":"07:51:00","height":"3.896"},{"time":"20:12:00","height":"4.292"}],"sunrise":"06:26","sunset":"20:07"},{"date":"2024-09-01","groups":[{"time":"08:33:00","height":"4.264"},{"time":"20:49:00","height":"4.618"}],"sunrise":"06:27","sunset":"20:04"},{"date":"2024-09-02","groups":[{"time":"09:09:00","height":"4.533"},{"time":"21:23:00","height":"4.824"}],"sunrise":"06:29","sunset":"20:02"},{"date":"2024-09-03","groups":[{"time":"09:40:00","height":"4.699"},{"time":"21:53:00","height":"4.928"}],"sunrise":"06:31","sunset":"20:00"},{"date":"2024-09-04","groups":[{"time":"10:09:00","height":"4.778"},{"time":"22:22:00","height":"4.955"}],"sunrise":"06:32","sunset":"19:57"},{"date":"2024-09-05","groups":[{"time":"10:36:00","height":"4.787"},{"time":"22:48:00","height":"4.918"}],"sunrise":"06:34","sunset":"19:55"},{"date":"2024-09-06","groups":[{"time":"11:02:00","height":"4.734"},{"time":"23:14:00","height":"4.818"}],"sunrise":"06:36","sunset":"19:53"},{"date":"2024-09-07","groups":[{"time":"11:30:00","height":"4.614"},{"time":"23:43:00","height":"4.645"}],"sunrise":"06:37","sunset":"19:50"},{"date":"2024-09-08","groups":[{"time":"11:59:00","height":"4.425"}],"sunrise":"06:39","sunset":"19:48"},{"date":"2024-09-09","groups":[{"time":"00:13:00","height":"4.399"},{"time":"12:31:00","height":"4.172"}],"sunrise":"06:41","sunset":"19:46"},{"date":"2024-09-10","groups":[{"time":"00:46:00","height":"4.087"},{"time":"13:07:00","height":"3.864"}],"sunrise":"06:43","sunset":"19:43"},{"date":"2024-09-11","groups":[{"time":"01:27:00","height":"3.721"},{"time":"13:55:00","height":"3.523"}],"sunrise":"06:44","sunset":"19:41"},{"date":"2024-09-12","groups":[{"time":"02:26:00","height":"3.337"},{"time":"15:13:00","height":"3.230"}],"sunrise":"06:46","sunset":"19:38"},{"date":"2024-09-13","groups":[{"time":"04:04:00","height":"3.086"},{"time":"17:07:00","height":"3.250"}],"sunrise":"06:48","sunset":"19:36"},{"date":"2024-09-14","groups":[{"time":"05:54:00","height":"3.281"},{"time":"18:32:00","height":"3.710"}],"sunrise":"06:49","sunset":"19:34"},{"date":"2024-09-15","groups":[{"time":"07:06:00","height":"3.825"},{"time":"19:28:00","height":"4.332"}],"sunrise":"06:51","sunset":"19:31"},{"date":"2024-09-16","groups":[{"time":"07:56:00","height":"4.429"},{"time":"20:15:00","height":"4.932"}],"sunrise":"06:53","sunset":"19:29"},{"date":"2024-09-17","groups":[{"time":"08:39:00","height":"4.958"},{"time":"20:57:00","height":"5.419"}],"sunrise":"06:54","sunset":"19:26"},{"date":"2024-09-18","groups":[{"time":"09:19:00","height":"5.348"},{"time":"21:37:00","height":"5.741"}],"sunrise":"06:56","sunset":"19:24"},{"date":"2024-09-19","groups":[{"time":"09:59:00","height":"5.564"},{"time":"22:18:00","height":"5.865"}],"sunrise":"06:58","sunset":"19:21"},{"date":"2024-09-20","groups":[{"time":"10:37:00","height":"5.592"},{"time":"22:56:00","height":"5.774"}],"sunrise":"06:59","sunset":"19:19"},{"date":"2024-09-21","groups":[{"time":"11:15:00","height":"5.430"},{"time":"23:39:00","height":"5.472"}],"sunrise":"07:01","sunset":"19:17"},{"date":"2024-09-22","groups":[{"time":"11:58:00","height":"5.099"}],"sunrise":"07:03","sunset":"19:14"},{"date":"2024-09-23","groups":[{"time":"00:24:00","height":"4.991"},{"time":"12:43:00","height":"4.640"}],"sunrise":"07:05","sunset":"19:12"},{"date":"2024-09-24","groups":[{"time":"01:12:00","height":"4.395"},{"time":"13:33:00","height":"4.111"}],"sunrise":"07:06","sunset":"19:09"},{"date":"2024-09-25","groups":[{"time":"02:08:00","height":"3.772"},{"time":"14:38:00","height":"3.601"}],"sunrise":"07:08","sunset":"19:07"},{"date":"2024-09-26","groups":[{"time":"03:28:00","height":"3.263"},{"time":"16:20:00","height":"3.304"}],"sunrise":"07:10","sunset":"19:05"},{"date":"2024-09-27","groups":[{"time":"05:18:00","height":"3.138"},{"time":"18:02:00","height":"3.472"}],"sunrise":"07:11","sunset":"19:02"},{"date":"2024-09-28","groups":[{"time":"06:43:00","height":"3.465"},{"time":"19:07:00","height":"3.906"}],"sunrise":"07:13","sunset":"19:00"},{"date":"2024-09-29","groups":[{"time":"07:33:00","height":"3.912"},{"time":"19:50:00","height":"4.326"}],"sunrise":"07:15","sunset":"18:57"},{"date":"2024-09-30","groups":[{"time":"08:11:00","height":"4.300"},{"time":"20:25:00","height":"4.642"}],"sunrise":"07:17","sunset":"18:55"},{"date":"2024-10-01","groups":[{"time":"08:43:00","height":"4.583"},{"time":"20:56:00","height":"4.843"}],"sunrise":"07:18","sunset":"18:53"},{"date":"2024-10-02","groups":[{"time":"09:12:00","height":"4.765"},{"time":"21:25:00","height":"4.950"}],"sunrise":"07:20","sunset":"18:50"},{"date":"2024-10-03","groups":[{"time":"09:40:00","height":"4.865"},{"time":"21:52:00","height":"4.986"}],"sunrise":"07:22","sunset":"18:48"},{"date":"2024-10-04","groups":[{"time":"10:06:00","height":"4.898"},{"time":"22:18:00","height":"4.959"}],"sunrise":"07:24","sunset":"18:46"},{"date":"2024-10-05","groups":[{"time":"10:32:00","height":"4.866"},{"time":"22:43:00","height":"4.865"}],"sunrise":"07:25","sunset":"18:43"},{"date":"2024-10-06","groups":[{"time":"10:57:00","height":"4.763"},{"time":"23:09:00","height":"4.699"}],"sunrise":"07:27","sunset":"18:41"},{"date":"2024-10-07","groups":[{"time":"11:25:00","height":"4.585"},{"time":"23:40:00","height":"4.456"}],"sunrise":"07:29","sunset":"18:38"},{"date":"2024-10-08","groups":[{"time":"11:57:00","height":"4.335"}],"sunrise":"07:31","sunset":"18:36"},{"date":"2024-10-09","groups":[{"time":"00:15:00","height":"4.144"},{"time":"12:36:00","height":"4.022"}],"sunrise":"07:32","sunset":"18:34"},{"date":"2024-10-10","groups":[{"time":"00:58:00","height":"3.773"},{"time":"13:27:00","height":"3.670"}],"sunrise":"07:34","sunset":"18:32"},{"date":"2024-10-11","groups":[{"time":"02:01:00","height":"3.388"},{"time":"14:49:00","height":"3.377"}],"sunrise":"07:36","sunset":"18:29"},{"date":"2024-10-12","groups":[{"time":"03:43:00","height":"3.167"},{"time":"16:43:00","height":"3.418"}],"sunrise":"07:38","sunset":"18:27"},{"date":"2024-10-13","groups":[{"time":"05:32:00","height":"3.405"},{"time":"18:06:00","height":"3.881"}],"sunrise":"07:40","sunset":"18:25"},{"date":"2024-10-14","groups":[{"time":"06:41:00","height":"3.961"},{"time":"19:02:00","height":"4.488"}],"sunrise":"07:41","sunset":"18:22"},{"date":"2024-10-15","groups":[{"time":"07:30:00","height":"4.553"},{"time":"19:49:00","height":"5.055"}],"sunrise":"07:43","sunset":"18:20"},{"date":"2024-10-16","groups":[{"time":"08:14:00","height":"5.056"},{"time":"20:31:00","height":"5.488"}],"sunrise":"07:45","sunset":"18:18"},{"date":"2024-10-17","groups":[{"time":"08:54:00","height":"5.409"},{"time":"21:13:00","height":"5.741"}],"sunrise":"07:47","sunset":"18:16"},{"date":"2024-10-18","groups":[{"time":"09:35:00","height":"5.590"},{"time":"21:54:00","height":"5.791"}],"sunrise":"07:49","sunset":"18:14"},{"date":"2024-10-19","groups":[{"time":"10:13:00","height":"5.588"},{"time":"22:34:00","height":"5.635"}],"sunrise":"07:50","sunset":"18:11"},{"date":"2024-10-20","groups":[{"time":"10:51:00","height":"5.410"},{"time":"23:14:00","height":"5.292"}],"sunrise":"07:52","sunset":"18:09"},{"date":"2024-10-21","groups":[{"time":"11:33:00","height":"5.075"}],"sunrise":"07:54","sunset":"18:07"},{"date":"2024-10-22","groups":[{"time":"00:00:00","height":"4.803"},{"time":"12:19:00","height":"4.628"}],"sunrise":"07:56","sunset":"18:05"},{"date":"2024-10-23","groups":[{"time":"00:50:00","height":"4.235"},{"time":"13:12:00","height":"4.130"}],"sunrise":"07:58","sunset":"18:03"},{"date":"2024-10-24","groups":[{"time":"01:48:00","height":"3.678"},{"time":"14:18:00","height":"3.673"}],"sunrise":"08:00","sunset":"18:01"},{"date":"2024-10-25","groups":[{"time":"03:07:00","height":"3.258"},{"time":"15:52:00","height":"3.414"}],"sunrise":"08:01","sunset":"17:59"},{"date":"2024-10-26","groups":[{"time":"04:49:00","height":"3.167"},{"time":"17:26:00","height":"3.518"}],"sunrise":"08:03","sunset":"17:57"},{"date":"2024-10-27","groups":[{"time":"06:07:00","height":"3.433"},{"time":"18:30:00","height":"3.846"}],"sunrise":"08:05","sunset":"17:54"},{"date":"2024-10-28","groups":[{"time":"05:59:00","height":"3.820"},{"time":"18:15:00","height":"4.196"}],"sunrise":"07:07","sunset":"16:52"},{"date":"2024-10-29","groups":[{"time":"06:38:00","height":"4.181"},{"time":"18:52:00","height":"4.482"}],"sunrise":"07:09","sunset":"16:50"},{"date":"2024-10-30","groups":[{"time":"07:11:00","height":"4.468"},{"time":"19:24:00","height":"4.684"}],"sunrise":"07:11","sunset":"16:49"},{"date":"2024-10-31","groups":[{"time":"07:41:00","height":"4.676"},{"time":"19:54:00","height":"4.810"}],"sunrise":"07:13","sunset":"16:47"},{"date":"2024-11-01","groups":[{"time":"08:09:00","height":"4.811"},{"time":"20:22:00","height":"4.869"}],"sunrise":"07:15","sunset":"16:45"},{"date":"2024-11-02","groups":[{"time":"08:37:00","height":"4.880"},{"time":"20:50:00","height":"4.865"}],"sunrise":"07:16","sunset":"16:43"},{"date":"2024-11-03","groups":[{"time":"09:06:00","height":"4.882"},{"time":"21:19:00","height":"4.798"}],"sunrise":"07:18","sunset":"16:41"},{"date":"2024-11-04","groups":[{"time":"09:34:00","height":"4.812"},{"time":"21:48:00","height":"4.660"}],"sunrise":"07:20","sunset":"16:39"},{"date":"2024-11-05","groups":[{"time":"10:04:00","height":"4.667"},{"time":"22:20:00","height":"4.453"}],"sunrise":"07:22","sunset":"16:37"},{"date":"2024-11-06","groups":[{"time":"10:40:00","height":"4.451"},{"time":"23:00:00","height":"4.181"}],"sunrise":"07:24","sunset":"16:36"},{"date":"2024-11-07","groups":[{"time":"11:24:00","height":"4.179"},{"time":"23:50:00","height":"3.865"}],"sunrise":"07:26","sunset":"16:34"},{"date":"2024-11-08","groups":[{"time":"12:22:00","height":"3.893"}],"sunrise":"07:28","sunset":"16:32"},{"date":"2024-11-09","groups":[{"time":"00:59:00","height":"3.571"},{"time":"13:42:00","height":"3.696"}],"sunrise":"07:29","sunset":"16:30"},{"date":"2024-11-10","groups":[{"time":"02:28:00","height":"3.445"},{"time":"15:15:00","height":"3.749"}],"sunrise":"07:31","sunset":"16:29"},{"date":"2024-11-11","groups":[{"time":"03:59:00","height":"3.627"},{"time":"16:31:00","height":"4.076"}],"sunrise":"07:33","sunset":"16:27"},{"date":"2024-11-12","groups":[{"time":"05:06:00","height":"4.040"},{"time":"17:30:00","height":"4.523"}],"sunrise":"07:35","sunset":"16:26"},{"date":"2024-11-13","groups":[{"time":"05:59:00","height":"4.504"},{"time":"18:20:00","height":"4.946"}],"sunrise":"07:37","sunset":"16:24"},{"date":"2024-11-14","groups":[{"time":"06:46:00","height":"4.911"},{"time":"19:07:00","height":"5.261"}],"sunrise":"07:39","sunset":"16:22"},{"date":"2024-11-15","groups":[{"time":"07:30:00","height":"5.203"},{"time":"19:51:00","height":"5.428"}],"sunrise":"07:40","sunset":"16:21"},{"date":"2024-11-16","groups":[{"time":"08:12:00","height":"5.360"},{"time":"20:34:00","height":"5.439"}],"sunrise":"07:42","sunset":"16:20"},{"date":"2024-11-17","groups":[{"time":"08:53:00","height":"5.373"},{"time":"21:17:00","height":"5.295"}],"sunrise":"07:44","sunset":"16:18"},{"date":"2024-11-18","groups":[{"time":"09:35:00","height":"5.244"},{"time":"21:59:00","height":"5.014"}],"sunrise":"07:46","sunset":"16:17"},{"date":"2024-11-19","groups":[{"time":"10:17:00","height":"4.988"},{"time":"22:45:00","height":"4.633"}],"sunrise":"07:47","sunset":"16:16"},{"date":"2024-11-20","groups":[{"time":"11:06:00","height":"4.643"},{"time":"23:36:00","height":"4.204"}],"sunrise":"07:49","sunset":"16:14"},{"date":"2024-11-21","groups":[{"time":"11:57:00","height":"4.261"}],"sunrise":"07:51","sunset":"16:13"},{"date":"2024-11-22","groups":[{"time":"00:30:00","height":"3.791"},{"time":"12:55:00","height":"3.905"}],"sunrise":"07:53","sunset":"16:12"},{"date":"2024-11-23","groups":[{"time":"01:34:00","height":"3.463"},{"time":"14:06:00","height":"3.649"}],"sunrise":"07:54","sunset":"16:11"},{"date":"2024-11-24","groups":[{"time":"02:51:00","height":"3.301"},{"time":"15:27:00","height":"3.572"}],"sunrise":"07:56","sunset":"16:10"},{"date":"2024-11-25","groups":[{"time":"04:07:00","height":"3.363"},{"time":"16:33:00","height":"3.683"}],"sunrise":"07:58","sunset":"16:09"},{"date":"2024-11-26","groups":[{"time":"05:07:00","height":"3.588"},{"time":"17:26:00","height":"3.893"}],"sunrise":"07:59","sunset":"16:08"},{"date":"2024-11-27","groups":[{"time":"05:54:00","height":"3.875"},{"time":"18:10:00","height":"4.122"}],"sunrise":"08:01","sunset":"16:07"},{"date":"2024-11-28","groups":[{"time":"06:33:00","height":"4.156"},{"time":"18:48:00","height":"4.329"}],"sunrise":"08:02","sunset":"16:06"},{"date":"2024-11-29","groups":[{"time":"07:08:00","height":"4.402"},{"time":"19:23:00","height":"4.493"}],"sunrise":"08:04","sunset":"16:05"},{"date":"2024-11-30","groups":[{"time":"07:42:00","height":"4.596"},{"time":"19:57:00","height":"4.607"}],"sunrise":"08:05","sunset":"16:04"},{"date":"2024-12-01","groups":[{"time":"08:14:00","height":"4.731"},{"time":"20:29:00","height":"4.667"}],"sunrise":"08:07","sunset":"16:04"},{"date":"2024-12-02","groups":[{"time":"08:47:00","height":"4.803"},{"time":"21:03:00","height":"4.672"}],"sunrise":"08:08","sunset":"16:03"},{"date":"2024-12-03","groups":[{"time":"09:20:00","height":"4.809"},{"time":"21:37:00","height":"4.618"}],"sunrise":"08:10","sunset":"16:02"},{"date":"2024-12-04","groups":[{"time":"09:54:00","height":"4.749"},{"time":"22:14:00","height":"4.503"}],"sunrise":"08:11","sunset":"16:02"},{"date":"2024-12-05","groups":[{"time":"10:37:00","height":"4.628"},{"time":"23:00:00","height":"4.333"}],"sunrise":"08:12","sunset":"16:01"},{"date":"2024-12-06","groups":[{"time":"11:25:00","height":"4.462"},{"time":"23:52:00","height":"4.128"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2024-12-07","groups":[{"time":"12:22:00","height":"4.283"}],"sunrise":"08:15","sunset":"16:01"},{"date":"2024-12-08","groups":[{"time":"00:53:00","height":"3.933"},{"time":"13:28:00","height":"4.142"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2024-12-09","groups":[{"time":"02:04:00","height":"3.810"},{"time":"14:40:00","height":"4.095"}],"sunrise":"08:17","sunset":"16:00"},{"date":"2024-12-10","groups":[{"time":"03:19:00","height":"3.821"},{"time":"15:52:00","height":"4.172"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2024-12-11","groups":[{"time":"04:27:00","height":"3.983"},{"time":"16:55:00","height":"4.352"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2024-12-12","groups":[{"time":"05:26:00","height":"4.245"},{"time":"17:53:00","height":"4.571"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2024-12-13","groups":[{"time":"06:21:00","height":"4.533"},{"time":"18:45:00","height":"4.771"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2024-12-14","groups":[{"time":"07:11:00","height":"4.792"},{"time":"19:36:00","height":"4.914"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2024-12-15","groups":[{"time":"07:58:00","height":"4.980"},{"time":"20:23:00","height":"4.973"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2024-12-16","groups":[{"time":"08:43:00","height":"5.076"},{"time":"21:08:00","height":"4.940"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2024-12-17","groups":[{"time":"09:26:00","height":"5.065"},{"time":"21:51:00","height":"4.813"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2024-12-18","groups":[{"time":"10:08:00","height":"4.949"},{"time":"22:34:00","height":"4.604"}],"sunrise":"08:25","sunset":"16:01"},{"date":"2024-12-19","groups":[{"time":"10:53:00","height":"4.747"},{"time":"23:20:00","height":"4.340"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2024-12-20","groups":[{"time":"11:38:00","height":"4.490"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2024-12-21","groups":[{"time":"00:04:00","height":"4.056"},{"time":"12:25:00","height":"4.212"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2024-12-22","groups":[{"time":"00:52:00","height":"3.781"},{"time":"13:14:00","height":"3.943"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2024-12-23","groups":[{"time":"01:44:00","height":"3.544"},{"time":"14:10:00","height":"3.712"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2024-12-24","groups":[{"time":"02:47:00","height":"3.383"},{"time":"15:16:00","height":"3.562"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2024-12-25","groups":[{"time":"03:56:00","height":"3.354"},{"time":"16:22:00","height":"3.542"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2024-12-26","groups":[{"time":"04:58:00","height":"3.479"},{"time":"17:21:00","height":"3.651"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2024-12-27","groups":[{"time":"05:51:00","height":"3.716"},{"time":"18:12:00","height":"3.844"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2024-12-28","groups":[{"time":"06:37:00","height":"4.001"},{"time":"18:56:00","height":"4.069"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2024-12-29","groups":[{"time":"07:18:00","height":"4.285"},{"time":"19:36:00","height":"4.288"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2024-12-30","groups":[{"time":"07:57:00","height":"4.535"},{"time":"20:15:00","height":"4.478"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2024-12-31","groups":[{"time":"08:35:00","height":"4.737"},{"time":"20:53:00","height":"4.624"}],"sunrise":"08:29","sunset":"16:10"},{"date":"2025-01-01","groups":[{"time":"09:12:00","height":"4.881"},{"time":"21:32:00","height":"4.714"}],"sunrise":"08:29","sunset":"16:11"},{"date":"2025-01-02","groups":[{"time":"09:50:00","height":"4.960"},{"time":"22:11:00","height":"4.736"}],"sunrise":"08:28","sunset":"16:12"},{"date":"2025-01-03","groups":[{"time":"10:33:00","height":"4.967"},{"time":"22:56:00","height":"4.679"}],"sunrise":"08:28","sunset":"16:13"},{"date":"2025-01-04","groups":[{"time":"11:20:00","height":"4.898"},{"time":"23:45:00","height":"4.546"}],"sunrise":"08:28","sunset":"16:14"},{"date":"2025-01-05","groups":[{"time":"12:10:00","height":"4.754"}],"sunrise":"08:28","sunset":"16:16"},{"date":"2025-01-06","groups":[{"time":"00:36:00","height":"4.352"},{"time":"13:04:00","height":"4.551"}],"sunrise":"08:27","sunset":"16:17"},{"date":"2025-01-07","groups":[{"time":"01:31:00","height":"4.127"},{"time":"14:04:00","height":"4.317"}],"sunrise":"08:27","sunset":"16:18"},{"date":"2025-01-08","groups":[{"time":"02:35:00","height":"3.921"},{"time":"15:12:00","height":"4.106"}],"sunrise":"08:26","sunset":"16:20"},{"date":"2025-01-09","groups":[{"time":"03:48:00","height":"3.807"},{"time":"16:22:00","height":"3.995"}],"sunrise":"08:25","sunset":"16:21"},{"date":"2025-01-10","groups":[{"time":"04:57:00","height":"3.855"},{"time":"17:31:00","height":"4.035"}],"sunrise":"08:25","sunset":"16:22"},{"date":"2025-01-11","groups":[{"time":"06:04:00","height":"4.067"},{"time":"18:35:00","height":"4.210"}],"sunrise":"08:24","sunset":"16:24"},{"date":"2025-01-12","groups":[{"time":"07:03:00","height":"4.371"},{"time":"19:31:00","height":"4.440"}],"sunrise":"08:23","sunset":"16:25"},{"date":"2025-01-13","groups":[{"time":"07:54:00","height":"4.668"},{"time":"20:19:00","height":"4.641"}],"sunrise":"08:23","sunset":"16:27"},{"date":"2025-01-14","groups":[{"time":"08:39:00","height":"4.888"},{"time":"21:03:00","height":"4.761"}],"sunrise":"08:22","sunset":"16:29"},{"date":"2025-01-15","groups":[{"time":"09:20:00","height":"4.999"},{"time":"21:40:00","height":"4.783"}],"sunrise":"08:21","sunset":"16:30"},{"date":"2025-01-16","groups":[{"time":"09:56:00","height":"4.997"},{"time":"22:17:00","height":"4.712"}],"sunrise":"08:20","sunset":"16:32"},{"date":"2025-01-17","groups":[{"time":"10:34:00","height":"4.898"},{"time":"22:55:00","height":"4.564"}],"sunrise":"08:19","sunset":"16:34"},{"date":"2025-01-18","groups":[{"time":"11:11:00","height":"4.723"},{"time":"23:32:00","height":"4.360"}],"sunrise":"08:18","sunset":"16:35"},{"date":"2025-01-19","groups":[{"time":"11:48:00","height":"4.494"}],"sunrise":"08:17","sunset":"16:37"},{"date":"2025-01-20","groups":[{"time":"00:08:00","height":"4.117"},{"time":"12:25:00","height":"4.223"}],"sunrise":"08:15","sunset":"16:39"},{"date":"2025-01-21","groups":[{"time":"00:46:00","height":"3.847"},{"time":"13:05:00","height":"3.918"}],"sunrise":"08:14","sunset":"16:41"},{"date":"2025-01-22","groups":[{"time":"01:30:00","height":"3.565"},{"time":"13:54:00","height":"3.603"}],"sunrise":"08:13","sunset":"16:42"},{"date":"2025-01-23","groups":[{"time":"02:27:00","height":"3.312"},{"time":"14:58:00","height":"3.333"}],"sunrise":"08:12","sunset":"16:44"},{"date":"2025-01-24","groups":[{"time":"03:45:00","height":"3.178"},{"time":"16:18:00","height":"3.221"}],"sunrise":"08:10","sunset":"16:46"},{"date":"2025-01-25","groups":[{"time":"05:04:00","height":"3.286"},{"time":"17:34:00","height":"3.364"}],"sunrise":"08:09","sunset":"16:48"},{"date":"2025-01-26","groups":[{"time":"06:09:00","height":"3.606"},{"time":"18:34:00","height":"3.683"}],"sunrise":"08:08","sunset":"16:50"},{"date":"2025-01-27","groups":[{"time":"06:59:00","height":"4.013"},{"time":"19:21:00","height":"4.060"}],"sunrise":"08:06","sunset":"16:52"},{"date":"2025-01-28","groups":[{"time":"07:42:00","height":"4.421"},{"time":"20:03:00","height":"4.426"}],"sunrise":"08:05","sunset":"16:53"},{"date":"2025-01-29","groups":[{"time":"08:22:00","height":"4.788"},{"time":"20:43:00","height":"4.740"}],"sunrise":"08:03","sunset":"16:55"},{"date":"2025-01-30","groups":[{"time":"09:01:00","height":"5.086"},{"time":"21:21:00","height":"4.973"}],"sunrise":"08:01","sunset":"16:57"},{"date":"2025-01-31","groups":[{"time":"09:39:00","height":"5.292"},{"time":"21:59:00","height":"5.098"}],"sunrise":"08:00","sunset":"16:59"},{"date":"2025-02-01","groups":[{"time":"10:18:00","height":"5.379"},{"time":"22:41:00","height":"5.093"}],"sunrise":"07:58","sunset":"17:01"},{"date":"2025-02-02","groups":[{"time":"11:03:00","height":"5.325"},{"time":"23:24:00","height":"4.952"}],"sunrise":"07:57","sunset":"17:03"},{"date":"2025-02-03","groups":[{"time":"11:48:00","height":"5.123"}],"sunrise":"07:55","sunset":"17:05"},{"date":"2025-02-04","groups":[{"time":"00:09:00","height":"4.687"},{"time":"12:36:00","height":"4.786"}],"sunrise":"07:53","sunset":"17:07"},{"date":"2025-02-05","groups":[{"time":"00:57:00","height":"4.330"},{"time":"13:28:00","height":"4.352"}],"sunrise":"07:51","sunset":"17:09"},{"date":"2025-02-06","groups":[{"time":"01:54:00","height":"3.932"},{"time":"14:34:00","height":"3.895"}],"sunrise":"07:50","sunset":"17:11"},{"date":"2025-02-07","groups":[{"time":"03:09:00","height":"3.592"},{"time":"15:55:00","height":"3.565"}],"sunrise":"07:48","sunset":"17:13"},{"date":"2025-02-08","groups":[{"time":"04:37:00","height":"3.493"},{"time":"17:21:00","height":"3.550"}],"sunrise":"07:46","sunset":"17:14"},{"date":"2025-02-09","groups":[{"time":"06:00:00","height":"3.736"},{"time":"18:36:00","height":"3.840"}],"sunrise":"07:44","sunset":"17:16"},{"date":"2025-02-10","groups":[{"time":"07:03:00","height":"4.160"},{"time":"19:31:00","height":"4.219"}],"sunrise":"07:42","sunset":"17:18"},{"date":"2025-02-11","groups":[{"time":"07:50:00","height":"4.559"},{"time":"20:13:00","height":"4.538"}],"sunrise":"07:40","sunset":"17:20"},{"date":"2025-02-12","groups":[{"time":"08:31:00","height":"4.846"},{"time":"20:50:00","height":"4.746"}],"sunrise":"07:38","sunset":"17:22"},{"date":"2025-02-13","groups":[{"time":"09:06:00","height":"5.003"},{"time":"21:23:00","height":"4.841"}],"sunrise":"07:36","sunset":"17:24"},{"date":"2025-02-14","groups":[{"time":"09:38:00","height":"5.045"},{"time":"21:54:00","height":"4.839"}],"sunrise":"07:34","sunset":"17:26"},{"date":"2025-02-15","groups":[{"time":"10:07:00","height":"4.994"},{"time":"22:24:00","height":"4.755"}],"sunrise":"07:32","sunset":"17:28"},{"date":"2025-02-16","groups":[{"time":"10:39:00","height":"4.866"},{"time":"22:55:00","height":"4.602"}],"sunrise":"07:30","sunset":"17:30"},{"date":"2025-02-17","groups":[{"time":"11:09:00","height":"4.669"},{"time":"23:25:00","height":"4.385"}],"sunrise":"07:28","sunset":"17:32"},{"date":"2025-02-18","groups":[{"time":"11:41:00","height":"4.404"},{"time":"23:57:00","height":"4.110"}],"sunrise":"07:26","sunset":"17:34"},{"date":"2025-02-19","groups":[{"time":"12:13:00","height":"4.076"}],"sunrise":"07:24","sunset":"17:36"},{"date":"2025-02-20","groups":[{"time":"00:31:00","height":"3.788"},{"time":"12:51:00","height":"3.697"}],"sunrise":"07:22","sunset":"17:38"},{"date":"2025-02-21","groups":[{"time":"01:16:00","height":"3.437"},{"time":"13:43:00","height":"3.302"}],"sunrise":"07:20","sunset":"17:39"},{"date":"2025-02-22","groups":[{"time":"02:24:00","height":"3.119"},{"time":"15:06:00","height":"2.995"}],"sunrise":"07:17","sunset":"17:41"},{"date":"2025-02-23","groups":[{"time":"04:08:00","height":"3.028"},{"time":"16:56:00","height":"3.038"}],"sunrise":"07:15","sunset":"17:43"},{"date":"2025-02-24","groups":[{"time":"05:40:00","height":"3.354"},{"time":"18:12:00","height":"3.458"}],"sunrise":"07:13","sunset":"17:45"},{"date":"2025-02-25","groups":[{"time":"06:38:00","height":"3.880"},{"time":"19:03:00","height":"3.990"}],"sunrise":"07:11","sunset":"17:47"},{"date":"2025-02-26","groups":[{"time":"07:22:00","height":"4.430"},{"time":"19:45:00","height":"4.504"}],"sunrise":"07:09","sunset":"17:49"},{"date":"2025-02-27","groups":[{"time":"08:03:00","height":"4.925"},{"time":"20:23:00","height":"4.937"}],"sunrise":"07:06","sunset":"17:51"},{"date":"2025-02-28","groups":[{"time":"08:41:00","height":"5.321"},{"time":"21:02:00","height":"5.249"}],"sunrise":"07:04","sunset":"17:53"},{"date":"2025-03-01","groups":[{"time":"09:20:00","height":"5.581"},{"time":"21:38:00","height":"5.409"}],"sunrise":"07:02","sunset":"17:55"},{"date":"2025-03-02","groups":[{"time":"09:57:00","height":"5.669"},{"time":"22:16:00","height":"5.397"}],"sunrise":"07:00","sunset":"17:56"},{"date":"2025-03-03","groups":[{"time":"10:39:00","height":"5.564"},{"time":"22:58:00","height":"5.209"}],"sunrise":"06:57","sunset":"17:58"},{"date":"2025-03-04","groups":[{"time":"11:22:00","height":"5.263"},{"time":"23:41:00","height":"4.866"}],"sunrise":"06:55","sunset":"18:00"},{"date":"2025-03-05","groups":[{"time":"12:08:00","height":"4.795"}],"sunrise":"06:53","sunset":"18:02"},{"date":"2025-03-06","groups":[{"time":"00:27:00","height":"4.406"},{"time":"12:59:00","height":"4.218"}],"sunrise":"06:50","sunset":"18:04"},{"date":"2025-03-07","groups":[{"time":"01:22:00","height":"3.890"},{"time":"14:05:00","height":"3.630"}],"sunrise":"06:48","sunset":"18:06"},{"date":"2025-03-08","groups":[{"time":"02:40:00","height":"3.436"},{"time":"15:40:00","height":"3.235"}],"sunrise":"06:46","sunset":"18:08"},{"date":"2025-03-09","groups":[{"time":"04:27:00","height":"3.316"},{"time":"17:20:00","height":"3.311"}],"sunrise":"06:44","sunset":"18:09"},{"date":"2025-03-10","groups":[{"time":"05:57:00","height":"3.653"},{"time":"18:31:00","height":"3.731"}],"sunrise":"06:41","sunset":"18:11"},{"date":"2025-03-11","groups":[{"time":"06:53:00","height":"4.134"},{"time":"19:18:00","height":"4.175"}],"sunrise":"06:39","sunset":"18:13"},{"date":"2025-03-12","groups":[{"time":"07:35:00","height":"4.537"},{"time":"19:55:00","height":"4.519"}],"sunrise":"06:36","sunset":"18:15"},{"date":"2025-03-13","groups":[{"time":"08:10:00","height":"4.807"},{"time":"20:28:00","height":"4.740"}],"sunrise":"06:34","sunset":"18:17"},{"date":"2025-03-14","groups":[{"time":"08:43:00","height":"4.951"},{"time":"20:58:00","height":"4.855"}],"sunrise":"06:32","sunset":"18:19"},{"date":"2025-03-15","groups":[{"time":"09:11:00","height":"4.998"},{"time":"21:26:00","height":"4.884"}],"sunrise":"06:29","sunset":"18:20"},{"date":"2025-03-16","groups":[{"time":"09:38:00","height":"4.969"},{"time":"21:52:00","height":"4.840"}],"sunrise":"06:27","sunset":"18:22"},{"date":"2025-03-17","groups":[{"time":"10:04:00","height":"4.871"},{"time":"22:18:00","height":"4.724"}],"sunrise":"06:25","sunset":"18:24"},{"date":"2025-03-18","groups":[{"time":"10:32:00","height":"4.699"},{"time":"22:47:00","height":"4.536"}],"sunrise":"06:22","sunset":"18:26"},{"date":"2025-03-19","groups":[{"time":"11:02:00","height":"4.451"},{"time":"23:17:00","height":"4.279"}],"sunrise":"06:20","sunset":"18:28"},{"date":"2025-03-20","groups":[{"time":"11:32:00","height":"4.133"},{"time":"23:49:00","height":"3.960"}],"sunrise":"06:17","sunset":"18:29"},{"date":"2025-03-21","groups":[{"time":"12:08:00","height":"3.757"}],"sunrise":"06:15","sunset":"18:31"},{"date":"2025-03-22","groups":[{"time":"00:29:00","height":"3.597"},{"time":"12:55:00","height":"3.346"}],"sunrise":"06:13","sunset":"18:33"},{"date":"2025-03-23","groups":[{"time":"01:32:00","height":"3.231"},{"time":"14:15:00","height":"2.988"}],"sunrise":"06:10","sunset":"18:35"},{"date":"2025-03-24","groups":[{"time":"03:18:00","height":"3.046"},{"time":"16:17:00","height":"2.975"}],"sunrise":"06:08","sunset":"18:37"},{"date":"2025-03-25","groups":[{"time":"05:04:00","height":"3.334"},{"time":"17:42:00","height":"3.434"}],"sunrise":"06:05","sunset":"18:38"},{"date":"2025-03-26","groups":[{"time":"06:07:00","height":"3.902"},{"time":"18:35:00","height":"4.033"}],"sunrise":"06:03","sunset":"18:40"},{"date":"2025-03-27","groups":[{"time":"06:53:00","height":"4.505"},{"time":"19:17:00","height":"4.603"}],"sunrise":"06:01","sunset":"18:42"},{"date":"2025-03-28","groups":[{"time":"07:35:00","height":"5.039"},{"time":"19:58:00","height":"5.069"}],"sunrise":"05:58","sunset":"18:44"},{"date":"2025-03-29","groups":[{"time":"08:16:00","height":"5.445"},{"time":"20:36:00","height":"5.389"}],"sunrise":"05:56","sunset":"18:45"},{"date":"2025-03-30","groups":[{"time":"08:55:00","height":"5.680"},{"time":"21:14:00","height":"5.536"}],"sunrise":"05:54","sunset":"18:47"},{"date":"2025-03-31","groups":[{"time":"10:34:00","height":"5.715"},{"time":"22:52:00","height":"5.495"}],"sunrise":"06:51","sunset":"19:49"},{"date":"2025-04-01","groups":[{"time":"11:14:00","height":"5.538"},{"time":"23:32:00","height":"5.271"}],"sunrise":"06:49","sunset":"19:51"},{"date":"2025-04-02","groups":[{"time":"11:58:00","height":"5.162"}],"sunrise":"06:46","sunset":"19:53"},{"date":"2025-04-03","groups":[{"time":"00:17:00","height":"4.889"},{"time":"12:46:00","height":"4.632"}],"sunrise":"06:44","sunset":"19:54"},{"date":"2025-04-04","groups":[{"time":"01:05:00","height":"4.396"},{"time":"13:39:00","height":"4.026"}],"sunrise":"06:42","sunset":"19:56"},{"date":"2025-04-05","groups":[{"time":"02:04:00","height":"3.868"},{"time":"14:49:00","height":"3.460"}],"sunrise":"06:39","sunset":"19:58"},{"date":"2025-04-06","groups":[{"time":"03:27:00","height":"3.442"},{"time":"16:29:00","height":"3.147"}],"sunrise":"06:37","sunset":"20:00"},{"date":"2025-04-07","groups":[{"time":"05:12:00","height":"3.371"},{"time":"18:03:00","height":"3.292"}],"sunrise":"06:35","sunset":"20:01"},{"date":"2025-04-08","groups":[{"time":"06:34:00","height":"3.684"},{"time":"19:08:00","height":"3.699"}],"sunrise":"06:32","sunset":"20:03"},{"date":"2025-04-09","groups":[{"time":"07:27:00","height":"4.092"},{"time":"19:52:00","height":"4.104"}],"sunrise":"06:30","sunset":"20:05"},{"date":"2025-04-10","groups":[{"time":"08:07:00","height":"4.428"},{"time":"20:28:00","height":"4.419"}],"sunrise":"06:28","sunset":"20:07"},{"date":"2025-04-11","groups":[{"time":"08:42:00","height":"4.651"},{"time":"20:59:00","height":"4.629"}],"sunrise":"06:25","sunset":"20:09"},{"date":"2025-04-12","groups":[{"time":"09:13:00","height":"4.776"},{"time":"21:28:00","height":"4.754"}],"sunrise":"06:23","sunset":"20:10"},{"date":"2025-04-13","groups":[{"time":"09:41:00","height":"4.827"},{"time":"21:56:00","height":"4.808"}],"sunrise":"06:21","sunset":"20:12"},{"date":"2025-04-14","groups":[{"time":"10:08:00","height":"4.817"},{"time":"22:22:00","height":"4.798"}],"sunrise":"06:19","sunset":"20:14"},{"date":"2025-04-15","groups":[{"time":"10:35:00","height":"4.744"},{"time":"22:48:00","height":"4.718"}],"sunrise":"06:16","sunset":"20:16"},{"date":"2025-04-16","groups":[{"time":"11:01:00","height":"4.602"},{"time":"23:15:00","height":"4.567"}],"sunrise":"06:14","sunset":"20:17"},{"date":"2025-04-17","groups":[{"time":"11:31:00","height":"4.389"},{"time":"23:47:00","height":"4.347"}],"sunrise":"06:12","sunset":"20:19"},{"date":"2025-04-18","groups":[{"time":"12:04:00","height":"4.112"}],"sunrise":"06:10","sunset":"20:21"},{"date":"2025-04-19","groups":[{"time":"00:22:00","height":"4.067"},{"time":"12:44:00","height":"3.784"}],"sunrise":"06:07","sunset":"20:23"},{"date":"2025-04-20","groups":[{"time":"01:08:00","height":"3.747"},{"time":"13:36:00","height":"3.436"}],"sunrise":"06:05","sunset":"20:25"},{"date":"2025-04-21","groups":[{"time":"02:12:00","height":"3.441"},{"time":"14:55:00","height":"3.158"}],"sunrise":"06:03","sunset":"20:26"},{"date":"2025-04-22","groups":[{"time":"03:47:00","height":"3.308"},{"time":"16:40:00","height":"3.175"}],"sunrise":"06:01","sunset":"20:28"},{"date":"2025-04-23","groups":[{"time":"05:22:00","height":"3.539"},{"time":"18:01:00","height":"3.563"}],"sunrise":"05:59","sunset":"20:30"},{"date":"2025-04-24","groups":[{"time":"06:27:00","height":"4.024"},{"time":"18:57:00","height":"4.099"}],"sunrise":"05:57","sunset":"20:32"},{"date":"2025-04-25","groups":[{"time":"07:18:00","height":"4.558"},{"time":"19:44:00","height":"4.617"}],"sunrise":"05:54","sunset":"20:33"},{"date":"2025-04-26","groups":[{"time":"08:04:00","height":"5.024"},{"time":"20:28:00","height":"5.036"}],"sunrise":"05:52","sunset":"20:35"},{"date":"2025-04-27","groups":[{"time":"08:47:00","height":"5.358"},{"time":"21:09:00","height":"5.317"}],"sunrise":"05:50","sunset":"20:37"},{"date":"2025-04-28","groups":[{"time":"09:30:00","height":"5.524"},{"time":"21:50:00","height":"5.437"}],"sunrise":"05:48","sunset":"20:39"},{"date":"2025-04-29","groups":[{"time":"10:12:00","height":"5.502"},{"time":"22:31:00","height":"5.388"}],"sunrise":"05:46","sunset":"20:40"},{"date":"2025-04-30","groups":[{"time":"10:54:00","height":"5.293"},{"time":"23:12:00","height":"5.174"}],"sunrise":"05:44","sunset":"20:42"},{"date":"2025-05-01","groups":[{"time":"11:41:00","height":"4.924"}],"sunrise":"05:42","sunset":"20:44"},{"date":"2025-05-02","groups":[{"time":"00:00:00","height":"4.827"},{"time":"12:32:00","height":"4.447"}],"sunrise":"05:40","sunset":"20:46"},{"date":"2025-05-03","groups":[{"time":"00:54:00","height":"4.398"},{"time":"13:28:00","height":"3.940"}],"sunrise":"05:38","sunset":"20:47"},{"date":"2025-05-04","groups":[{"time":"01:54:00","height":"3.964"},{"time":"14:36:00","height":"3.507"}],"sunrise":"05:36","sunset":"20:49"},{"date":"2025-05-05","groups":[{"time":"03:10:00","height":"3.633"},{"time":"16:01:00","height":"3.277"}],"sunrise":"05:35","sunset":"20:51"},{"date":"2025-05-06","groups":[{"time":"04:39:00","height":"3.537"},{"time":"17:22:00","height":"3.342"}],"sunrise":"05:33","sunset":"20:53"},{"date":"2025-05-07","groups":[{"time":"05:50:00","height":"3.686"},{"time":"18:25:00","height":"3.607"}],"sunrise":"05:31","sunset":"20:54"},{"date":"2025-05-08","groups":[{"time":"06:45:00","height":"3.938"},{"time":"19:12:00","height":"3.916"}],"sunrise":"05:29","sunset":"20:56"},{"date":"2025-05-09","groups":[{"time":"07:28:00","height":"4.178"},{"time":"19:51:00","height":"4.187"}],"sunrise":"05:27","sunset":"20:58"},{"date":"2025-05-10","groups":[{"time":"08:06:00","height":"4.364"},{"time":"20:25:00","height":"4.396"}],"sunrise":"05:26","sunset":"20:59"},{"date":"2025-05-11","groups":[{"time":"08:39:00","height":"4.489"},{"time":"20:56:00","height":"4.544"}],"sunrise":"05:24","sunset":"21:01"},{"date":"2025-05-12","groups":[{"time":"09:10:00","height":"4.560"},{"time":"21:26:00","height":"4.633"}],"sunrise":"05:22","sunset":"21:03"},{"date":"2025-05-13","groups":[{"time":"09:41:00","height":"4.579"},{"time":"21:56:00","height":"4.664"}],"sunrise":"05:20","sunset":"21:04"},{"date":"2025-05-14","groups":[{"time":"10:10:00","height":"4.545"},{"time":"22:25:00","height":"4.633"}],"sunrise":"05:19","sunset":"21:06"},{"date":"2025-05-15","groups":[{"time":"10:40:00","height":"4.454"},{"time":"22:55:00","height":"4.539"}],"sunrise":"05:17","sunset":"21:08"},{"date":"2025-05-16","groups":[{"time":"11:11:00","height":"4.308"},{"time":"23:30:00","height":"4.387"}],"sunrise":"05:16","sunset":"21:09"},{"date":"2025-05-17","groups":[{"time":"11:50:00","height":"4.112"}],"sunrise":"05:14","sunset":"21:11"},{"date":"2025-05-18","groups":[{"time":"00:11:00","height":"4.187"},{"time":"12:35:00","height":"3.882"}],"sunrise":"05:13","sunset":"21:12"},{"date":"2025-05-19","groups":[{"time":"01:01:00","height":"3.967"},{"time":"13:31:00","height":"3.652"}],"sunrise":"05:11","sunset":"21:14"},{"date":"2025-05-20","groups":[{"time":"02:05:00","height":"3.780"},{"time":"14:42:00","height":"3.496"}],"sunrise":"05:10","sunset":"21:15"},{"date":"2025-05-21","groups":[{"time":"03:22:00","height":"3.718"},{"time":"16:04:00","height":"3.513"}],"sunrise":"05:09","sunset":"21:17"},{"date":"2025-05-22","groups":[{"time":"04:41:00","height":"3.849"},{"time":"17:18:00","height":"3.742"}],"sunrise":"05:07","sunset":"21:18"},{"date":"2025-05-23","groups":[{"time":"05:46:00","height":"4.144"},{"time":"18:18:00","height":"4.103"}],"sunrise":"05:06","sunset":"21:20"},{"date":"2025-05-24","groups":[{"time":"06:42:00","height":"4.498"},{"time":"19:11:00","height":"4.485"}],"sunrise":"05:05","sunset":"21:21"},{"date":"2025-05-25","groups":[{"time":"07:33:00","height":"4.818"},{"time":"19:59:00","height":"4.816"}],"sunrise":"05:04","sunset":"21:22"},{"date":"2025-05-26","groups":[{"time":"08:22:00","height":"5.047"},{"time":"20:45:00","height":"5.053"}],"sunrise":"05:02","sunset":"21:24"},{"date":"2025-05-27","groups":[{"time":"09:09:00","height":"5.157"},{"time":"21:30:00","height":"5.174"}],"sunrise":"05:01","sunset":"21:25"},{"date":"2025-05-28","groups":[{"time":"09:56:00","height":"5.136"},{"time":"22:16:00","height":"5.169"}],"sunrise":"05:00","sunset":"21:27"},{"date":"2025-05-29","groups":[{"time":"10:42:00","height":"4.987"},{"time":"23:00:00","height":"5.040"}],"sunrise":"04:59","sunset":"21:28"},{"date":"2025-05-30","groups":[{"time":"11:30:00","height":"4.727"},{"time":"23:51:00","height":"4.805"}],"sunrise":"04:58","sunset":"21:29"},{"date":"2025-05-31","groups":[{"time":"12:22:00","height":"4.396"}],"sunrise":"04:57","sunset":"21:30"},{"date":"2025-06-01","groups":[{"time":"00:44:00","height":"4.504"},{"time":"13:15:00","height":"4.044"}],"sunrise":"04:56","sunset":"21:31"},{"date":"2025-06-02","groups":[{"time":"01:39:00","height":"4.185"},{"time":"14:13:00","height":"3.728"}],"sunrise":"04:56","sunset":"21:33"},{"date":"2025-06-03","groups":[{"time":"02:39:00","height":"3.904"},{"time":"15:17:00","height":"3.501"}],"sunrise":"04:55","sunset":"21:34"},{"date":"2025-06-04","groups":[{"time":"03:46:00","height":"3.714"},{"time":"16:27:00","height":"3.413"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2025-06-05","groups":[{"time":"04:53:00","height":"3.653"},{"time":"17:28:00","height":"3.477"}],"sunrise":"04:54","sunset":"21:36"},{"date":"2025-06-06","groups":[{"time":"05:52:00","height":"3.710"},{"time":"18:22:00","height":"3.647"}],"sunrise":"04:53","sunset":"21:37"},{"date":"2025-06-07","groups":[{"time":"06:42:00","height":"3.837"},{"time":"19:09:00","height":"3.863"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2025-06-08","groups":[{"time":"07:27:00","height":"3.989"},{"time":"19:49:00","height":"4.081"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2025-06-09","groups":[{"time":"08:06:00","height":"4.134"},{"time":"20:27:00","height":"4.274"}],"sunrise":"04:51","sunset":"21:39"},{"date":"2025-06-10","groups":[{"time":"08:44:00","height":"4.253"},{"time":"21:02:00","height":"4.424"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2025-06-11","groups":[{"time":"09:19:00","height":"4.335"},{"time":"21:36:00","height":"4.524"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2025-06-12","groups":[{"time":"09:53:00","height":"4.379"},{"time":"22:09:00","height":"4.575"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2025-06-13","groups":[{"time":"10:27:00","height":"4.383"},{"time":"22:44:00","height":"4.576"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2025-06-14","groups":[{"time":"11:03:00","height":"4.346"},{"time":"23:23:00","height":"4.531"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2025-06-15","groups":[{"time":"11:44:00","height":"4.267"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2025-06-16","groups":[{"time":"00:07:00","height":"4.445"},{"time":"12:31:00","height":"4.153"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2025-06-17","groups":[{"time":"00:57:00","height":"4.332"},{"time":"13:23:00","height":"4.019"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2025-06-18","groups":[{"time":"01:52:00","height":"4.214"},{"time":"14:21:00","height":"3.896"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2025-06-19","groups":[{"time":"02:54:00","height":"4.121"},{"time":"15:26:00","height":"3.824"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2025-06-20","groups":[{"time":"04:01:00","height":"4.085"},{"time":"16:37:00","height":"3.846"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2025-06-21","groups":[{"time":"05:08:00","height":"4.129"},{"time":"17:40:00","height":"3.981"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2025-06-22","groups":[{"time":"06:10:00","height":"4.254"},{"time":"18:41:00","height":"4.206"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2025-06-23","groups":[{"time":"07:09:00","height":"4.425"},{"time":"19:37:00","height":"4.467"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2025-06-24","groups":[{"time":"08:05:00","height":"4.601"},{"time":"20:31:00","height":"4.714"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2025-06-25","groups":[{"time":"08:59:00","height":"4.743"},{"time":"21:20:00","height":"4.905"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2025-06-26","groups":[{"time":"09:49:00","height":"4.817"},{"time":"22:08:00","height":"5.005"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2025-06-27","groups":[{"time":"10:35:00","height":"4.803"},{"time":"22:53:00","height":"4.998"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2025-06-28","groups":[{"time":"11:18:00","height":"4.694"},{"time":"23:39:00","height":"4.884"}],"sunrise":"04:53","sunset":"21:45"},{"date":"2025-06-29","groups":[{"time":"12:06:00","height":"4.505"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2025-06-30","groups":[{"time":"00:25:00","height":"4.684"},{"time":"12:51:00","height":"4.262"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2025-07-01","groups":[{"time":"01:11:00","height":"4.428"},{"time":"13:36:00","height":"3.998"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2025-07-02","groups":[{"time":"01:56:00","height":"4.148"},{"time":"14:23:00","height":"3.742"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2025-07-03","groups":[{"time":"02:46:00","height":"3.873"},{"time":"15:17:00","height":"3.522"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2025-07-04","groups":[{"time":"03:43:00","height":"3.635"},{"time":"16:20:00","height":"3.381"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2025-07-05","groups":[{"time":"04:48:00","height":"3.484"},{"time":"17:24:00","height":"3.373"}],"sunrise":"04:59","sunset":"21:43"},{"date":"2025-07-06","groups":[{"time":"05:50:00","height":"3.468"},{"time":"18:25:00","height":"3.512"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2025-07-07","groups":[{"time":"06:48:00","height":"3.582"},{"time":"19:17:00","height":"3.750"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2025-07-08","groups":[{"time":"07:39:00","height":"3.777"},{"time":"20:03:00","height":"4.021"}],"sunrise":"05:02","sunset":"21:41"},{"date":"2025-07-09","groups":[{"time":"08:23:00","height":"3.994"},{"time":"20:44:00","height":"4.278"}],"sunrise":"05:03","sunset":"21:40"},{"date":"2025-07-10","groups":[{"time":"09:03:00","height":"4.199"},{"time":"21:21:00","height":"4.496"}],"sunrise":"05:04","sunset":"21:39"},{"date":"2025-07-11","groups":[{"time":"09:40:00","height":"4.374"},{"time":"21:58:00","height":"4.669"}],"sunrise":"05:05","sunset":"21:38"},{"date":"2025-07-12","groups":[{"time":"10:17:00","height":"4.509"},{"time":"22:35:00","height":"4.792"}],"sunrise":"05:06","sunset":"21:37"},{"date":"2025-07-13","groups":[{"time":"10:54:00","height":"4.595"},{"time":"23:12:00","height":"4.857"}],"sunrise":"05:07","sunset":"21:36"},{"date":"2025-07-14","groups":[{"time":"11:33:00","height":"4.614"},{"time":"23:55:00","height":"4.852"}],"sunrise":"05:09","sunset":"21:35"},{"date":"2025-07-15","groups":[{"time":"12:18:00","height":"4.558"}],"sunrise":"05:10","sunset":"21:34"},{"date":"2025-07-16","groups":[{"time":"00:41:00","height":"4.769"},{"time":"13:03:00","height":"4.427"}],"sunrise":"05:11","sunset":"21:33"},{"date":"2025-07-17","groups":[{"time":"01:29:00","height":"4.610"},{"time":"13:53:00","height":"4.236"}],"sunrise":"05:12","sunset":"21:32"},{"date":"2025-07-18","groups":[{"time":"02:22:00","height":"4.389"},{"time":"14:49:00","height":"4.016"}],"sunrise":"05:14","sunset":"21:31"},{"date":"2025-07-19","groups":[{"time":"03:23:00","height":"4.139"},{"time":"15:57:00","height":"3.823"}],"sunrise":"05:15","sunset":"21:30"},{"date":"2025-07-20","groups":[{"time":"04:35:00","height":"3.931"},{"time":"17:10:00","height":"3.751"}],"sunrise":"05:17","sunset":"21:28"},{"date":"2025-07-21","groups":[{"time":"05:47:00","height":"3.867"},{"time":"18:23:00","height":"3.876"}],"sunrise":"05:18","sunset":"21:27"},{"date":"2025-07-22","groups":[{"time":"06:58:00","height":"3.992"},{"time":"19:30:00","height":"4.168"}],"sunrise":"05:19","sunset":"21:26"},{"date":"2025-07-23","groups":[{"time":"08:02:00","height":"4.247"},{"time":"20:28:00","height":"4.519"}],"sunrise":"05:21","sunset":"21:24"},{"date":"2025-07-24","groups":[{"time":"08:56:00","height":"4.521"},{"time":"21:17:00","height":"4.822"}],"sunrise":"05:22","sunset":"21:23"},{"date":"2025-07-25","groups":[{"time":"09:42:00","height":"4.725"},{"time":"22:00:00","height":"5.015"}],"sunrise":"05:24","sunset":"21:21"},{"date":"2025-07-26","groups":[{"time":"10:23:00","height":"4.822"},{"time":"22:39:00","height":"5.079"}],"sunrise":"05:25","sunset":"21:20"},{"date":"2025-07-27","groups":[{"time":"11:01:00","height":"4.807"},{"time":"23:17:00","height":"5.021"}],"sunrise":"05:27","sunset":"21:18"},{"date":"2025-07-28","groups":[{"time":"11:39:00","height":"4.692"},{"time":"23:56:00","height":"4.861"}],"sunrise":"05:28","sunset":"21:17"},{"date":"2025-07-29","groups":[{"time":"12:17:00","height":"4.503"}],"sunrise":"05:30","sunset":"21:15"},{"date":"2025-07-30","groups":[{"time":"00:33:00","height":"4.629"},{"time":"12:52:00","height":"4.260"}],"sunrise":"05:32","sunset":"21:13"},{"date":"2025-07-31","groups":[{"time":"01:10:00","height":"4.343"},{"time":"13:30:00","height":"3.982"}],"sunrise":"05:33","sunset":"21:12"},{"date":"2025-08-01","groups":[{"time":"01:48:00","height":"4.020"},{"time":"14:12:00","height":"3.686"}],"sunrise":"05:35","sunset":"21:10"},{"date":"2025-08-02","groups":[{"time":"02:32:00","height":"3.676"},{"time":"15:02:00","height":"3.399"}],"sunrise":"05:36","sunset":"21:08"},{"date":"2025-08-03","groups":[{"time":"03:30:00","height":"3.354"},{"time":"16:14:00","height":"3.193"}],"sunrise":"05:38","sunset":"21:06"},{"date":"2025-08-04","groups":[{"time":"04:50:00","height":"3.153"},{"time":"17:40:00","height":"3.210"}],"sunrise":"05:40","sunset":"21:05"},{"date":"2025-08-05","groups":[{"time":"06:14:00","height":"3.219"},{"time":"18:52:00","height":"3.484"}],"sunrise":"05:41","sunset":"21:03"},{"date":"2025-08-06","groups":[{"time":"07:19:00","height":"3.510"},{"time":"19:44:00","height":"3.875"}],"sunrise":"05:43","sunset":"21:01"},{"date":"2025-08-07","groups":[{"time":"08:07:00","height":"3.879"},{"time":"20:27:00","height":"4.274"}],"sunrise":"05:45","sunset":"20:59"},{"date":"2025-08-08","groups":[{"time":"08:47:00","height":"4.242"},{"time":"21:04:00","height":"4.632"}],"sunrise":"05:46","sunset":"20:57"},{"date":"2025-08-09","groups":[{"time":"09:25:00","height":"4.560"},{"time":"21:42:00","height":"4.928"}],"sunrise":"05:48","sunset":"20:55"},{"date":"2025-08-10","groups":[{"time":"10:01:00","height":"4.812"},{"time":"22:18:00","height":"5.147"}],"sunrise":"05:50","sunset":"20:53"},{"date":"2025-08-11","groups":[{"time":"10:37:00","height":"4.976"},{"time":"22:54:00","height":"5.269"}],"sunrise":"05:51","sunset":"20:51"},{"date":"2025-08-12","groups":[{"time":"11:13:00","height":"5.029"},{"time":"23:34:00","height":"5.268"}],"sunrise":"05:53","sunset":"20:49"},{"date":"2025-08-13","groups":[{"time":"11:54:00","height":"4.955"}],"sunrise":"05:55","sunset":"20:47"},{"date":"2025-08-14","groups":[{"time":"00:17:00","height":"5.128"},{"time":"12:37:00","height":"4.756"}],"sunrise":"05:56","sunset":"20:45"},{"date":"2025-08-15","groups":[{"time":"01:01:00","height":"4.850"},{"time":"13:22:00","height":"4.450"}],"sunrise":"05:58","sunset":"20:43"},{"date":"2025-08-16","groups":[{"time":"01:51:00","height":"4.458"},{"time":"14:15:00","height":"4.075"}],"sunrise":"06:00","sunset":"20:41"},{"date":"2025-08-17","groups":[{"time":"02:51:00","height":"4.005"},{"time":"15:22:00","height":"3.706"}],"sunrise":"06:01","sunset":"20:39"},{"date":"2025-08-18","groups":[{"time":"04:10:00","height":"3.612"},{"time":"16:53:00","height":"3.510"}],"sunrise":"06:03","sunset":"20:37"},{"date":"2025-08-19","groups":[{"time":"05:40:00","height":"3.499"},{"time":"18:23:00","height":"3.676"}],"sunrise":"06:05","sunset":"20:34"},{"date":"2025-08-20","groups":[{"time":"07:03:00","height":"3.751"},{"time":"19:33:00","height":"4.106"}],"sunrise":"06:07","sunset":"20:32"},{"date":"2025-08-21","groups":[{"time":"08:04:00","height":"4.165"},{"time":"20:25:00","height":"4.560"}],"sunrise":"06:08","sunset":"20:30"},{"date":"2025-08-22","groups":[{"time":"08:50:00","height":"4.540"},{"time":"21:07:00","height":"4.904"}],"sunrise":"06:10","sunset":"20:28"},{"date":"2025-08-23","groups":[{"time":"09:30:00","height":"4.798"},{"time":"21:45:00","height":"5.101"}],"sunrise":"06:12","sunset":"20:26"},{"date":"2025-08-24","groups":[{"time":"10:05:00","height":"4.925"},{"time":"22:19:00","height":"5.160"}],"sunrise":"06:13","sunset":"20:23"},{"date":"2025-08-25","groups":[{"time":"10:37:00","height":"4.936"},{"time":"22:50:00","height":"5.106"}],"sunrise":"06:15","sunset":"20:21"},{"date":"2025-08-26","groups":[{"time":"11:06:00","height":"4.853"},{"time":"23:20:00","height":"4.962"}],"sunrise":"06:17","sunset":"20:19"},{"date":"2025-08-27","groups":[{"time":"11:38:00","height":"4.692"},{"time":"23:53:00","height":"4.744"}],"sunrise":"06:18","sunset":"20:17"},{"date":"2025-08-28","groups":[{"time":"12:09:00","height":"4.469"}],"sunrise":"06:20","sunset":"20:14"},{"date":"2025-08-29","groups":[{"time":"00:23:00","height":"4.464"},{"time":"12:41:00","height":"4.188"}],"sunrise":"06:22","sunset":"20:12"},{"date":"2025-08-30","groups":[{"time":"00:56:00","height":"4.123"},{"time":"13:15:00","height":"3.860"}],"sunrise":"06:23","sunset":"20:10"},{"date":"2025-08-31","groups":[{"time":"01:34:00","height":"3.732"},{"time":"13:59:00","height":"3.500"}],"sunrise":"06:25","sunset":"20:07"},{"date":"2025-09-01","groups":[{"time":"02:22:00","height":"3.321"},{"time":"15:02:00","height":"3.166"}],"sunrise":"06:27","sunset":"20:05"},{"date":"2025-09-02","groups":[{"time":"03:41:00","height":"2.983"},{"time":"16:50:00","height":"3.041"}],"sunrise":"06:29","sunset":"20:03"},{"date":"2025-09-03","groups":[{"time":"05:41:00","height":"2.987"},{"time":"18:26:00","height":"3.347"}],"sunrise":"06:30","sunset":"20:00"},{"date":"2025-09-04","groups":[{"time":"06:58:00","height":"3.391"},{"time":"19:22:00","height":"3.852"}],"sunrise":"06:32","sunset":"19:58"},{"date":"2025-09-05","groups":[{"time":"07:46:00","height":"3.902"},{"time":"20:04:00","height":"4.373"}],"sunrise":"06:34","sunset":"19:56"},{"date":"2025-09-06","groups":[{"time":"08:25:00","height":"4.396"},{"time":"20:42:00","height":"4.842"}],"sunrise":"06:35","sunset":"19:53"},{"date":"2025-09-07","groups":[{"time":"09:02:00","height":"4.819"},{"time":"21:18:00","height":"5.221"}],"sunrise":"06:37","sunset":"19:51"},{"date":"2025-09-08","groups":[{"time":"09:38:00","height":"5.138"},{"time":"21:55:00","height":"5.482"}],"sunrise":"06:39","sunset":"19:48"},{"date":"2025-09-09","groups":[{"time":"10:13:00","height":"5.327"},{"time":"22:31:00","height":"5.598"}],"sunrise":"06:40","sunset":"19:46"},{"date":"2025-09-10","groups":[{"time":"10:49:00","height":"5.363"},{"time":"23:08:00","height":"5.542"}],"sunrise":"06:42","sunset":"19:44"},{"date":"2025-09-11","groups":[{"time":"11:27:00","height":"5.236"},{"time":"23:51:00","height":"5.302"}],"sunrise":"06:44","sunset":"19:41"},{"date":"2025-09-12","groups":[{"time":"12:09:00","height":"4.954"}],"sunrise":"06:46","sunset":"19:39"},{"date":"2025-09-13","groups":[{"time":"00:35:00","height":"4.893"},{"time":"12:55:00","height":"4.545"}],"sunrise":"06:47","sunset":"19:36"},{"date":"2025-09-14","groups":[{"time":"01:26:00","height":"4.360"},{"time":"13:49:00","height":"4.060"}],"sunrise":"06:49","sunset":"19:34"},{"date":"2025-09-15","groups":[{"time":"02:29:00","height":"3.787"},{"time":"15:04:00","height":"3.606"}],"sunrise":"06:51","sunset":"19:32"},{"date":"2025-09-16","groups":[{"time":"04:00:00","height":"3.357"},{"time":"16:50:00","height":"3.430"}],"sunrise":"06:52","sunset":"19:29"},{"date":"2025-09-17","groups":[{"time":"05:45:00","height":"3.365"},{"time":"18:25:00","height":"3.728"}],"sunrise":"06:54","sunset":"19:27"},{"date":"2025-09-18","groups":[{"time":"07:03:00","height":"3.772"},{"time":"19:27:00","height":"4.226"}],"sunrise":"06:56","sunset":"19:24"},{"date":"2025-09-19","groups":[{"time":"07:54:00","height":"4.244"},{"time":"20:12:00","height":"4.664"}],"sunrise":"06:57","sunset":"19:22"},{"date":"2025-09-20","groups":[{"time":"08:33:00","height":"4.618"},{"time":"20:48:00","height":"4.958"}],"sunrise":"06:59","sunset":"19:20"},{"date":"2025-09-21","groups":[{"time":"09:07:00","height":"4.857"},{"time":"21:22:00","height":"5.106"}],"sunrise":"07:01","sunset":"19:17"},{"date":"2025-09-22","groups":[{"time":"09:39:00","height":"4.973"},{"time":"21:52:00","height":"5.138"}],"sunrise":"07:02","sunset":"19:15"},{"date":"2025-09-23","groups":[{"time":"10:07:00","height":"4.992"},{"time":"22:21:00","height":"5.085"}],"sunrise":"07:04","sunset":"19:12"},{"date":"2025-09-24","groups":[{"time":"10:35:00","height":"4.934"},{"time":"22:47:00","height":"4.960"}],"sunrise":"07:06","sunset":"19:10"},{"date":"2025-09-25","groups":[{"time":"11:01:00","height":"4.805"},{"time":"23:14:00","height":"4.766"}],"sunrise":"07:08","sunset":"19:08"},{"date":"2025-09-26","groups":[{"time":"11:29:00","height":"4.606"},{"time":"23:43:00","height":"4.502"}],"sunrise":"07:09","sunset":"19:05"},{"date":"2025-09-27","groups":[{"time":"11:59:00","height":"4.341"}],"sunrise":"07:11","sunset":"19:03"},{"date":"2025-09-28","groups":[{"time":"00:15:00","height":"4.172"},{"time":"12:33:00","height":"4.017"}],"sunrise":"07:13","sunset":"19:00"},{"date":"2025-09-29","groups":[{"time":"00:49:00","height":"3.786"},{"time":"13:13:00","height":"3.650"}],"sunrise":"07:15","sunset":"18:58"},{"date":"2025-09-30","groups":[{"time":"01:36:00","height":"3.369"},{"time":"14:13:00","height":"3.286"}],"sunrise":"07:16","sunset":"18:56"},{"date":"2025-10-01","groups":[{"time":"02:53:00","height":"3.006"},{"time":"15:59:00","height":"3.096"}],"sunrise":"07:18","sunset":"18:53"},{"date":"2025-10-02","groups":[{"time":"04:59:00","height":"2.971"},{"time":"17:49:00","height":"3.367"}],"sunrise":"07:20","sunset":"18:51"},{"date":"2025-10-03","groups":[{"time":"06:25:00","height":"3.406"},{"time":"18:48:00","height":"3.904"}],"sunrise":"07:21","sunset":"18:48"},{"date":"2025-10-04","groups":[{"time":"07:15:00","height":"3.978"},{"time":"19:32:00","height":"4.477"}],"sunrise":"07:23","sunset":"18:46"},{"date":"2025-10-05","groups":[{"time":"07:56:00","height":"4.532"},{"time":"20:12:00","height":"4.991"}],"sunrise":"07:25","sunset":"18:44"},{"date":"2025-10-06","groups":[{"time":"08:33:00","height":"4.998"},{"time":"20:50:00","height":"5.394"}],"sunrise":"07:27","sunset":"18:41"},{"date":"2025-10-07","groups":[{"time":"09:10:00","height":"5.334"},{"time":"21:28:00","height":"5.644"}],"sunrise":"07:28","sunset":"18:39"},{"date":"2025-10-08","groups":[{"time":"09:48:00","height":"5.516"},{"time":"22:07:00","height":"5.716"}],"sunrise":"07:30","sunset":"18:37"},{"date":"2025-10-09","groups":[{"time":"10:25:00","height":"5.525"},{"time":"22:46:00","height":"5.592"}],"sunrise":"07:32","sunset":"18:34"},{"date":"2025-10-10","groups":[{"time":"11:03:00","height":"5.358"},{"time":"23:28:00","height":"5.274"}],"sunrise":"07:34","sunset":"18:32"},{"date":"2025-10-11","groups":[{"time":"11:47:00","height":"5.031"}],"sunrise":"07:36","sunset":"18:30"},{"date":"2025-10-12","groups":[{"time":"00:17:00","height":"4.795"},{"time":"12:37:00","height":"4.582"}],"sunrise":"07:37","sunset":"18:28"},{"date":"2025-10-13","groups":[{"time":"01:12:00","height":"4.224"},{"time":"13:37:00","height":"4.085"}],"sunrise":"07:39","sunset":"18:25"},{"date":"2025-10-14","groups":[{"time":"02:20:00","height":"3.674"},{"time":"14:58:00","height":"3.672"}],"sunrise":"07:41","sunset":"18:23"},{"date":"2025-10-15","groups":[{"time":"03:54:00","height":"3.342"},{"time":"16:43:00","height":"3.574"}],"sunrise":"07:43","sunset":"18:21"},{"date":"2025-10-16","groups":[{"time":"05:34:00","height":"3.437"},{"time":"18:06:00","height":"3.858"}],"sunrise":"07:45","sunset":"18:18"},{"date":"2025-10-17","groups":[{"time":"06:42:00","height":"3.825"},{"time":"19:03:00","height":"4.266"}],"sunrise":"07:46","sunset":"18:16"},{"date":"2025-10-18","groups":[{"time":"07:29:00","height":"4.237"},{"time":"19:46:00","height":"4.608"}],"sunrise":"07:48","sunset":"18:14"},{"date":"2025-10-19","groups":[{"time":"08:07:00","height":"4.560"},{"time":"20:22:00","height":"4.831"}],"sunrise":"07:50","sunset":"18:12"},{"date":"2025-10-20","groups":[{"time":"08:40:00","height":"4.771"},{"time":"20:54:00","height":"4.943"}],"sunrise":"07:52","sunset":"18:10"},{"date":"2025-10-21","groups":[{"time":"09:10:00","height":"4.888"},{"time":"21:23:00","height":"4.973"}],"sunrise":"07:54","sunset":"18:08"},{"date":"2025-10-22","groups":[{"time":"09:39:00","height":"4.930"},{"time":"21:51:00","height":"4.940"}],"sunrise":"07:56","sunset":"18:05"},{"date":"2025-10-23","groups":[{"time":"10:06:00","height":"4.907"},{"time":"22:19:00","height":"4.847"}],"sunrise":"07:57","sunset":"18:03"},{"date":"2025-10-24","groups":[{"time":"10:33:00","height":"4.818"},{"time":"22:46:00","height":"4.690"}],"sunrise":"07:59","sunset":"18:01"},{"date":"2025-10-25","groups":[{"time":"11:00:00","height":"4.659"},{"time":"23:14:00","height":"4.466"}],"sunrise":"08:01","sunset":"17:59"},{"date":"2025-10-26","groups":[{"time":"11:30:00","height":"4.434"},{"time":"23:47:00","height":"4.182"}],"sunrise":"08:03","sunset":"17:57"},{"date":"2025-10-27","groups":[{"time":"11:06:00","height":"4.155"},{"time":"23:25:00","height":"3.853"}],"sunrise":"07:05","sunset":"16:55"},{"date":"2025-10-28","groups":[{"time":"11:49:00","height":"3.838"}],"sunrise":"07:07","sunset":"16:53"},{"date":"2025-10-29","groups":[{"time":"00:14:00","height":"3.506"},{"time":"12:50:00","height":"3.533"}],"sunrise":"07:08","sunset":"16:51"},{"date":"2025-10-30","groups":[{"time":"01:28:00","height":"3.221"},{"time":"14:20:00","height":"3.377"}],"sunrise":"07:10","sunset":"16:49"},{"date":"2025-10-31","groups":[{"time":"03:10:00","height":"3.186"},{"time":"15:56:00","height":"3.547"}],"sunrise":"07:12","sunset":"16:47"},{"date":"2025-11-01","groups":[{"time":"04:37:00","height":"3.511"},{"time":"17:03:00","height":"3.982"}],"sunrise":"07:14","sunset":"16:45"},{"date":"2025-11-02","groups":[{"time":"05:34:00","height":"4.016"},{"time":"17:54:00","height":"4.494"}],"sunrise":"07:16","sunset":"16:43"},{"date":"2025-11-03","groups":[{"time":"06:20:00","height":"4.534"},{"time":"18:39:00","height":"4.966"}],"sunrise":"07:18","sunset":"16:41"},{"date":"2025-11-04","groups":[{"time":"07:02:00","height":"4.979"},{"time":"19:22:00","height":"5.329"}],"sunrise":"07:20","sunset":"16:40"},{"date":"2025-11-05","groups":[{"time":"07:44:00","height":"5.303"},{"time":"20:04:00","height":"5.541"}],"sunrise":"07:22","sunset":"16:38"},{"date":"2025-11-06","groups":[{"time":"08:25:00","height":"5.476"},{"time":"20:47:00","height":"5.576"}],"sunrise":"07:23","sunset":"16:36"},{"date":"2025-11-07","groups":[{"time":"09:06:00","height":"5.489"},{"time":"21:30:00","height":"5.432"}],"sunrise":"07:25","sunset":"16:34"},{"date":"2025-11-08","groups":[{"time":"09:48:00","height":"5.340"},{"time":"22:15:00","height":"5.125"}],"sunrise":"07:27","sunset":"16:32"},{"date":"2025-11-09","groups":[{"time":"10:36:00","height":"5.051"},{"time":"23:08:00","height":"4.696"}],"sunrise":"07:29","sunset":"16:31"},{"date":"2025-11-10","groups":[{"time":"11:30:00","height":"4.667"}],"sunrise":"07:31","sunset":"16:29"},{"date":"2025-11-11","groups":[{"time":"00:05:00","height":"4.219"},{"time":"12:31:00","height":"4.259"}],"sunrise":"07:33","sunset":"16:27"},{"date":"2025-11-12","groups":[{"time":"01:12:00","height":"3.790"},{"time":"13:44:00","height":"3.929"}],"sunrise":"07:34","sunset":"16:26"},{"date":"2025-11-13","groups":[{"time":"02:31:00","height":"3.526"},{"time":"15:10:00","height":"3.789"}],"sunrise":"07:36","sunset":"16:24"},{"date":"2025-11-14","groups":[{"time":"03:55:00","height":"3.524"},{"time":"16:24:00","height":"3.879"}],"sunrise":"07:38","sunset":"16:23"},{"date":"2025-11-15","groups":[{"time":"05:00:00","height":"3.737"},{"time":"17:23:00","height":"4.091"}],"sunrise":"07:40","sunset":"16:21"},{"date":"2025-11-16","groups":[{"time":"05:52:00","height":"4.025"},{"time":"18:10:00","height":"4.313"}],"sunrise":"07:42","sunset":"16:20"},{"date":"2025-11-17","groups":[{"time":"06:33:00","height":"4.291"},{"time":"18:49:00","height":"4.486"}],"sunrise":"07:43","sunset":"16:19"},{"date":"2025-11-18","groups":[{"time":"07:09:00","height":"4.500"},{"time":"19:25:00","height":"4.604"}],"sunrise":"07:45","sunset":"16:17"},{"date":"2025-11-19","groups":[{"time":"07:42:00","height":"4.650"},{"time":"19:57:00","height":"4.669"}],"sunrise":"07:47","sunset":"16:16"},{"date":"2025-11-20","groups":[{"time":"08:13:00","height":"4.741"},{"time":"20:28:00","height":"4.684"}],"sunrise":"07:49","sunset":"16:15"},{"date":"2025-11-21","groups":[{"time":"08:44:00","height":"4.774"},{"time":"20:58:00","height":"4.647"}],"sunrise":"07:50","sunset":"16:13"},{"date":"2025-11-22","groups":[{"time":"09:13:00","height":"4.745"},{"time":"21:28:00","height":"4.556"}],"sunrise":"07:52","sunset":"16:12"},{"date":"2025-11-23","groups":[{"time":"09:43:00","height":"4.655"},{"time":"21:58:00","height":"4.413"}],"sunrise":"07:54","sunset":"16:11"},{"date":"2025-11-24","groups":[{"time":"10:16:00","height":"4.511"},{"time":"22:34:00","height":"4.225"}],"sunrise":"07:56","sunset":"16:10"},{"date":"2025-11-25","groups":[{"time":"10:55:00","height":"4.321"},{"time":"23:16:00","height":"4.004"}],"sunrise":"07:57","sunset":"16:09"},{"date":"2025-11-26","groups":[{"time":"11:41:00","height":"4.107"}],"sunrise":"07:59","sunset":"16:08"},{"date":"2025-11-27","groups":[{"time":"00:05:00","height":"3.777"},{"time":"12:37:00","height":"3.907"}],"sunrise":"08:00","sunset":"16:07"},{"date":"2025-11-28","groups":[{"time":"01:08:00","height":"3.591"},{"time":"13:46:00","height":"3.788"}],"sunrise":"08:02","sunset":"16:06"},{"date":"2025-11-29","groups":[{"time":"02:24:00","height":"3.529"},{"time":"15:04:00","height":"3.826"}],"sunrise":"08:03","sunset":"16:05"},{"date":"2025-11-30","groups":[{"time":"03:43:00","height":"3.660"},{"time":"16:14:00","height":"4.040"}],"sunrise":"08:05","sunset":"16:05"},{"date":"2025-12-01","groups":[{"time":"04:47:00","height":"3.965"},{"time":"17:13:00","height":"4.365"}],"sunrise":"08:06","sunset":"16:04"},{"date":"2025-12-02","groups":[{"time":"05:42:00","height":"4.349"},{"time":"18:07:00","height":"4.708"}],"sunrise":"08:08","sunset":"16:03"},{"date":"2025-12-03","groups":[{"time":"06:33:00","height":"4.724"},{"time":"18:57:00","height":"4.997"}],"sunrise":"08:09","sunset":"16:03"},{"date":"2025-12-04","groups":[{"time":"07:21:00","height":"5.032"},{"time":"19:46:00","height":"5.188"}],"sunrise":"08:11","sunset":"16:02"},{"date":"2025-12-05","groups":[{"time":"08:08:00","height":"5.240"},{"time":"20:34:00","height":"5.257"}],"sunrise":"08:12","sunset":"16:02"},{"date":"2025-12-06","groups":[{"time":"08:54:00","height":"5.325"},{"time":"21:22:00","height":"5.196"}],"sunrise":"08:13","sunset":"16:01"},{"date":"2025-12-07","groups":[{"time":"09:40:00","height":"5.283"},{"time":"22:08:00","height":"5.013"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2025-12-08","groups":[{"time":"10:29:00","height":"5.120"},{"time":"23:00:00","height":"4.734"}],"sunrise":"08:16","sunset":"16:00"},{"date":"2025-12-09","groups":[{"time":"11:22:00","height":"4.862"},{"time":"23:54:00","height":"4.399"}],"sunrise":"08:17","sunset":"16:00"},{"date":"2025-12-10","groups":[{"time":"12:17:00","height":"4.551"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2025-12-11","groups":[{"time":"00:49:00","height":"4.061"},{"time":"13:15:00","height":"4.236"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2025-12-12","groups":[{"time":"01:49:00","height":"3.775"},{"time":"14:18:00","height":"3.972"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2025-12-13","groups":[{"time":"02:56:00","height":"3.594"},{"time":"15:27:00","height":"3.811"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2025-12-14","groups":[{"time":"04:03:00","height":"3.560"},{"time":"16:28:00","height":"3.777"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2025-12-15","groups":[{"time":"05:02:00","height":"3.666"},{"time":"17:25:00","height":"3.853"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2025-12-16","groups":[{"time":"05:54:00","height":"3.862"},{"time":"18:14:00","height":"3.992"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2025-12-17","groups":[{"time":"06:39:00","height":"4.089"},{"time":"18:58:00","height":"4.149"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2025-12-18","groups":[{"time":"07:18:00","height":"4.305"},{"time":"19:36:00","height":"4.291"}],"sunrise":"08:25","sunset":"16:00"},{"date":"2025-12-19","groups":[{"time":"07:55:00","height":"4.483"},{"time":"20:12:00","height":"4.398"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2025-12-20","groups":[{"time":"08:29:00","height":"4.608"},{"time":"20:46:00","height":"4.463"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2025-12-21","groups":[{"time":"09:02:00","height":"4.680"},{"time":"21:19:00","height":"4.486"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2025-12-22","groups":[{"time":"09:35:00","height":"4.700"},{"time":"21:52:00","height":"4.468"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2025-12-23","groups":[{"time":"10:09:00","height":"4.673"},{"time":"22:28:00","height":"4.410"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2025-12-24","groups":[{"time":"10:49:00","height":"4.602"},{"time":"23:09:00","height":"4.310"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2025-12-25","groups":[{"time":"11:32:00","height":"4.490"},{"time":"23:54:00","height":"4.173"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2025-12-26","groups":[{"time":"12:20:00","height":"4.350"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2025-12-27","groups":[{"time":"00:43:00","height":"4.016"},{"time":"13:14:00","height":"4.201"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2025-12-28","groups":[{"time":"01:42:00","height":"3.871"},{"time":"14:17:00","height":"4.075"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2025-12-29","groups":[{"time":"02:50:00","height":"3.785"},{"time":"15:28:00","height":"4.018"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2025-12-30","groups":[{"time":"04:03:00","height":"3.821"},{"time":"16:36:00","height":"4.078"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2025-12-31","groups":[{"time":"05:09:00","height":"4.011"},{"time":"17:41:00","height":"4.259"}],"sunrise":"08:29","sunset":"16:09"},{"date":"2026-01-01","groups":[{"time":"06:12:00","height":"4.315"},{"time":"18:42:00","height":"4.510"}],"sunrise":"08:29","sunset":"16:10"},{"date":"2026-01-02","groups":[{"time":"07:09:00","height":"4.660"},{"time":"19:38:00","height":"4.767"}],"sunrise":"08:29","sunset":"16:12"},{"date":"2026-01-03","groups":[{"time":"08:02:00","height":"4.973"},{"time":"20:29:00","height":"4.966"}],"sunrise":"08:28","sunset":"16:13"},{"date":"2026-01-04","groups":[{"time":"08:50:00","height":"5.198"},{"time":"21:17:00","height":"5.063"}],"sunrise":"08:28","sunset":"16:14"},{"date":"2026-01-05","groups":[{"time":"09:36:00","height":"5.297"},{"time":"22:00:00","height":"5.038"}],"sunrise":"08:28","sunset":"16:15"},{"date":"2026-01-06","groups":[{"time":"10:19:00","height":"5.257"},{"time":"22:46:00","height":"4.893"}],"sunrise":"08:27","sunset":"16:17"},{"date":"2026-01-07","groups":[{"time":"11:06:00","height":"5.087"},{"time":"23:31:00","height":"4.652"}],"sunrise":"08:27","sunset":"16:18"},{"date":"2026-01-08","groups":[{"time":"11:51:00","height":"4.816"}],"sunrise":"08:26","sunset":"16:19"},{"date":"2026-01-09","groups":[{"time":"00:15:00","height":"4.350"},{"time":"12:36:00","height":"4.480"}],"sunrise":"08:26","sunset":"16:21"},{"date":"2026-01-10","groups":[{"time":"01:00:00","height":"4.024"},{"time":"13:21:00","height":"4.120"}],"sunrise":"08:25","sunset":"16:22"},{"date":"2026-01-11","groups":[{"time":"01:48:00","height":"3.711"},{"time":"14:13:00","height":"3.773"}],"sunrise":"08:24","sunset":"16:24"},{"date":"2026-01-12","groups":[{"time":"02:48:00","height":"3.451"},{"time":"15:18:00","height":"3.496"}],"sunrise":"08:24","sunset":"16:25"},{"date":"2026-01-13","groups":[{"time":"03:59:00","height":"3.322"},{"time":"16:30:00","height":"3.377"}],"sunrise":"08:23","sunset":"16:27"},{"date":"2026-01-14","groups":[{"time":"05:09:00","height":"3.398"},{"time":"17:38:00","height":"3.461"}],"sunrise":"08:22","sunset":"16:28"},{"date":"2026-01-15","groups":[{"time":"06:12:00","height":"3.645"},{"time":"18:36:00","height":"3.687"}],"sunrise":"08:21","sunset":"16:30"},{"date":"2026-01-16","groups":[{"time":"07:00:00","height":"3.961"},{"time":"19:21:00","height":"3.955"}],"sunrise":"08:20","sunset":"16:32"},{"date":"2026-01-17","groups":[{"time":"07:41:00","height":"4.265"},{"time":"20:00:00","height":"4.205"}],"sunrise":"08:19","sunset":"16:33"},{"date":"2026-01-18","groups":[{"time":"08:17:00","height":"4.521"},{"time":"20:35:00","height":"4.413"}],"sunrise":"08:18","sunset":"16:35"},{"date":"2026-01-19","groups":[{"time":"08:51:00","height":"4.720"},{"time":"21:08:00","height":"4.574"}],"sunrise":"08:17","sunset":"16:37"},{"date":"2026-01-20","groups":[{"time":"09:24:00","height":"4.865"},{"time":"21:40:00","height":"4.686"}],"sunrise":"08:16","sunset":"16:38"},{"date":"2026-01-21","groups":[{"time":"09:57:00","height":"4.952"},{"time":"22:14:00","height":"4.735"}],"sunrise":"08:15","sunset":"16:40"},{"date":"2026-01-22","groups":[{"time":"10:34:00","height":"4.968"},{"time":"22:53:00","height":"4.705"}],"sunrise":"08:13","sunset":"16:42"},{"date":"2026-01-23","groups":[{"time":"11:13:00","height":"4.900"},{"time":"23:33:00","height":"4.589"}],"sunrise":"08:12","sunset":"16:44"},{"date":"2026-01-24","groups":[{"time":"11:56:00","height":"4.743"}],"sunrise":"08:11","sunset":"16:46"},{"date":"2026-01-25","groups":[{"time":"00:15:00","height":"4.391"},{"time":"12:41:00","height":"4.502"}],"sunrise":"08:09","sunset":"16:47"},{"date":"2026-01-26","groups":[{"time":"01:04:00","height":"4.131"},{"time":"13:35:00","height":"4.197"}],"sunrise":"08:08","sunset":"16:49"},{"date":"2026-01-27","groups":[{"time":"02:04:00","height":"3.846"},{"time":"14:44:00","height":"3.883"}],"sunrise":"08:06","sunset":"16:51"},{"date":"2026-01-28","groups":[{"time":"03:22:00","height":"3.632"},{"time":"16:06:00","height":"3.698"}],"sunrise":"08:05","sunset":"16:53"},{"date":"2026-01-29","groups":[{"time":"04:46:00","height":"3.652"},{"time":"17:27:00","height":"3.788"}],"sunrise":"08:03","sunset":"16:55"},{"date":"2026-01-30","groups":[{"time":"06:04:00","height":"3.960"},{"time":"18:40:00","height":"4.117"}],"sunrise":"08:02","sunset":"16:57"},{"date":"2026-01-31","groups":[{"time":"07:07:00","height":"4.420"},{"time":"19:37:00","height":"4.520"}],"sunrise":"08:00","sunset":"16:59"},{"date":"2026-02-01","groups":[{"time":"07:59:00","height":"4.861"},{"time":"20:25:00","height":"4.858"}],"sunrise":"07:59","sunset":"17:01"},{"date":"2026-02-02","groups":[{"time":"08:44:00","height":"5.185"},{"time":"21:06:00","height":"5.067"}],"sunrise":"07:57","sunset":"17:02"},{"date":"2026-02-03","groups":[{"time":"09:24:00","height":"5.351"},{"time":"21:45:00","height":"5.127"}],"sunrise":"07:55","sunset":"17:04"},{"date":"2026-02-04","groups":[{"time":"10:01:00","height":"5.354"},{"time":"22:21:00","height":"5.049"}],"sunrise":"07:54","sunset":"17:06"},{"date":"2026-02-05","groups":[{"time":"10:40:00","height":"5.212"},{"time":"22:59:00","height":"4.855"}],"sunrise":"07:52","sunset":"17:08"},{"date":"2026-02-06","groups":[{"time":"11:17:00","height":"4.954"},{"time":"23:35:00","height":"4.576"}],"sunrise":"07:50","sunset":"17:10"},{"date":"2026-02-07","groups":[{"time":"11:52:00","height":"4.614"}],"sunrise":"07:48","sunset":"17:12"},{"date":"2026-02-08","groups":[{"time":"00:11:00","height":"4.242"},{"time":"12:28:00","height":"4.223"}],"sunrise":"07:46","sunset":"17:14"},{"date":"2026-02-09","groups":[{"time":"00:48:00","height":"3.875"},{"time":"13:08:00","height":"3.802"}],"sunrise":"07:44","sunset":"17:16"},{"date":"2026-02-10","groups":[{"time":"01:33:00","height":"3.499"},{"time":"13:59:00","height":"3.380"}],"sunrise":"07:43","sunset":"17:18"},{"date":"2026-02-11","groups":[{"time":"02:37:00","height":"3.165"},{"time":"15:17:00","height":"3.044"}],"sunrise":"07:41","sunset":"17:20"},{"date":"2026-02-12","groups":[{"time":"04:17:00","height":"3.041"},{"time":"17:01:00","height":"3.020"}],"sunrise":"07:39","sunset":"17:22"},{"date":"2026-02-13","groups":[{"time":"05:44:00","height":"3.286"},{"time":"18:16:00","height":"3.331"}],"sunrise":"07:37","sunset":"17:24"},{"date":"2026-02-14","groups":[{"time":"06:42:00","height":"3.707"},{"time":"19:05:00","height":"3.741"}],"sunrise":"07:35","sunset":"17:26"},{"date":"2026-02-15","groups":[{"time":"07:23:00","height":"4.138"},{"time":"19:43:00","height":"4.136"}],"sunrise":"07:33","sunset":"17:28"},{"date":"2026-02-16","groups":[{"time":"07:58:00","height":"4.519"},{"time":"20:17:00","height":"4.480"}],"sunrise":"07:31","sunset":"17:29"},{"date":"2026-02-17","groups":[{"time":"08:32:00","height":"4.834"},{"time":"20:50:00","height":"4.760"}],"sunrise":"07:29","sunset":"17:31"},{"date":"2026-02-18","groups":[{"time":"09:05:00","height":"5.078"},{"time":"21:22:00","height":"4.964"}],"sunrise":"07:27","sunset":"17:33"},{"date":"2026-02-19","groups":[{"time":"09:38:00","height":"5.236"},{"time":"21:54:00","height":"5.069"}],"sunrise":"07:24","sunset":"17:35"},{"date":"2026-02-20","groups":[{"time":"10:11:00","height":"5.285"},{"time":"22:29:00","height":"5.054"}],"sunrise":"07:22","sunset":"17:37"},{"date":"2026-02-21","groups":[{"time":"10:50:00","height":"5.201"},{"time":"23:07:00","height":"4.909"}],"sunrise":"07:20","sunset":"17:39"},{"date":"2026-02-22","groups":[{"time":"11:30:00","height":"4.975"},{"time":"23:47:00","height":"4.640"}],"sunrise":"07:18","sunset":"17:41"},{"date":"2026-02-23","groups":[{"time":"12:13:00","height":"4.614"}],"sunrise":"07:16","sunset":"17:43"},{"date":"2026-02-24","groups":[{"time":"00:33:00","height":"4.267"},{"time":"13:05:00","height":"4.148"}],"sunrise":"07:14","sunset":"17:45"},{"date":"2026-02-25","groups":[{"time":"01:30:00","height":"3.835"},{"time":"14:14:00","height":"3.659"}],"sunrise":"07:11","sunset":"17:47"},{"date":"2026-02-26","groups":[{"time":"02:54:00","height":"3.467"},{"time":"15:52:00","height":"3.364"}],"sunrise":"07:09","sunset":"17:49"},{"date":"2026-02-27","groups":[{"time":"04:38:00","height":"3.445"},{"time":"17:29:00","height":"3.521"}],"sunrise":"07:07","sunset":"17:50"},{"date":"2026-02-28","groups":[{"time":"06:04:00","height":"3.853"},{"time":"18:41:00","height":"3.990"}],"sunrise":"07:05","sunset":"17:52"},{"date":"2026-03-01","groups":[{"time":"07:03:00","height":"4.399"},{"time":"19:31:00","height":"4.478"}],"sunrise":"07:02","sunset":"17:54"},{"date":"2026-03-02","groups":[{"time":"07:48:00","height":"4.862"},{"time":"20:12:00","height":"4.849"}],"sunrise":"07:00","sunset":"17:56"},{"date":"2026-03-03","groups":[{"time":"08:29:00","height":"5.168"},{"time":"20:49:00","height":"5.069"}],"sunrise":"06:58","sunset":"17:58"},{"date":"2026-03-04","groups":[{"time":"09:05:00","height":"5.307"},{"time":"21:22:00","height":"5.143"}],"sunrise":"06:56","sunset":"18:00"},{"date":"2026-03-05","groups":[{"time":"09:37:00","height":"5.298"},{"time":"21:53:00","height":"5.091"}],"sunrise":"06:53","sunset":"18:02"},{"date":"2026-03-06","groups":[{"time":"10:08:00","height":"5.166"},{"time":"22:24:00","height":"4.935"}],"sunrise":"06:51","sunset":"18:03"},{"date":"2026-03-07","groups":[{"time":"10:40:00","height":"4.934"},{"time":"22:56:00","height":"4.693"}],"sunrise":"06:49","sunset":"18:05"},{"date":"2026-03-08","groups":[{"time":"11:11:00","height":"4.624"},{"time":"23:26:00","height":"4.384"}],"sunrise":"06:46","sunset":"18:07"},{"date":"2026-03-09","groups":[{"time":"11:43:00","height":"4.251"}],"sunrise":"06:44","sunset":"18:09"},{"date":"2026-03-10","groups":[{"time":"00:00:00","height":"4.022"},{"time":"12:17:00","height":"3.826"}],"sunrise":"06:42","sunset":"18:11"},{"date":"2026-03-11","groups":[{"time":"00:38:00","height":"3.620"},{"time":"13:01:00","height":"3.370"}],"sunrise":"06:39","sunset":"18:13"},{"date":"2026-03-12","groups":[{"time":"01:32:00","height":"3.212"},{"time":"14:08:00","height":"2.945"}],"sunrise":"06:37","sunset":"18:14"},{"date":"2026-03-13","groups":[{"time":"03:09:00","height":"2.930"},{"time":"16:13:00","height":"2.787"}],"sunrise":"06:35","sunset":"18:16"},{"date":"2026-03-14","groups":[{"time":"05:08:00","height":"3.097"},{"time":"17:47:00","height":"3.131"}],"sunrise":"06:32","sunset":"18:18"},{"date":"2026-03-15","groups":[{"time":"06:11:00","height":"3.563"},{"time":"18:36:00","height":"3.629"}],"sunrise":"06:30","sunset":"18:20"},{"date":"2026-03-16","groups":[{"time":"06:53:00","height":"4.069"},{"time":"19:15:00","height":"4.124"}],"sunrise":"06:28","sunset":"18:22"},{"date":"2026-03-17","groups":[{"time":"07:30:00","height":"4.534"},{"time":"19:48:00","height":"4.563"}],"sunrise":"06:25","sunset":"18:24"},{"date":"2026-03-18","groups":[{"time":"08:03:00","height":"4.927"},{"time":"20:21:00","height":"4.919"}],"sunrise":"06:23","sunset":"18:25"},{"date":"2026-03-19","groups":[{"time":"08:38:00","height":"5.228"},{"time":"20:55:00","height":"5.171"}],"sunrise":"06:20","sunset":"18:27"},{"date":"2026-03-20","groups":[{"time":"09:12:00","height":"5.411"},{"time":"21:29:00","height":"5.292"}],"sunrise":"06:18","sunset":"18:29"},{"date":"2026-03-21","groups":[{"time":"09:47:00","height":"5.445"},{"time":"22:03:00","height":"5.263"}],"sunrise":"06:16","sunset":"18:31"},{"date":"2026-03-22","groups":[{"time":"10:25:00","height":"5.311"},{"time":"22:42:00","height":"5.077"}],"sunrise":"06:13","sunset":"18:33"},{"date":"2026-03-23","groups":[{"time":"11:07:00","height":"5.004"},{"time":"23:24:00","height":"4.746"}],"sunrise":"06:11","sunset":"18:34"},{"date":"2026-03-24","groups":[{"time":"11:54:00","height":"4.547"}],"sunrise":"06:08","sunset":"18:36"},{"date":"2026-03-25","groups":[{"time":"00:13:00","height":"4.303"},{"time":"12:50:00","height":"3.999"}],"sunrise":"06:06","sunset":"18:38"},{"date":"2026-03-26","groups":[{"time":"01:16:00","height":"3.816"},{"time":"14:07:00","height":"3.484"}],"sunrise":"06:04","sunset":"18:40"},{"date":"2026-03-27","groups":[{"time":"02:49:00","height":"3.456"},{"time":"15:51:00","height":"3.267"}],"sunrise":"06:01","sunset":"18:41"},{"date":"2026-03-28","groups":[{"time":"04:35:00","height":"3.514"},{"time":"17:24:00","height":"3.531"}],"sunrise":"05:59","sunset":"18:43"},{"date":"2026-03-29","groups":[{"time":"05:53:00","height":"3.944"},{"time":"18:26:00","height":"4.012"}],"sunrise":"05:57","sunset":"18:45"},{"date":"2026-03-30","groups":[{"time":"07:46:00","height":"4.426"},{"time":"20:11:00","height":"4.454"}],"sunrise":"06:54","sunset":"19:47"},{"date":"2026-03-31","groups":[{"time":"08:28:00","height":"4.796"},{"time":"20:49:00","height":"4.772"}],"sunrise":"06:52","sunset":"19:49"},{"date":"2026-04-01","groups":[{"time":"09:04:00","height":"5.014"},{"time":"21:23:00","height":"4.952"}],"sunrise":"06:49","sunset":"19:50"},{"date":"2026-04-02","groups":[{"time":"09:38:00","height":"5.097"},{"time":"21:54:00","height":"5.018"}],"sunrise":"06:47","sunset":"19:52"},{"date":"2026-04-03","groups":[{"time":"10:08:00","height":"5.074"},{"time":"22:23:00","height":"4.990"}],"sunrise":"06:45","sunset":"19:54"},{"date":"2026-04-04","groups":[{"time":"10:38:00","height":"4.966"},{"time":"22:52:00","height":"4.879"}],"sunrise":"06:42","sunset":"19:56"},{"date":"2026-04-05","groups":[{"time":"11:05:00","height":"4.780"},{"time":"23:19:00","height":"4.689"}],"sunrise":"06:40","sunset":"19:57"},{"date":"2026-04-06","groups":[{"time":"11:36:00","height":"4.522"},{"time":"23:51:00","height":"4.430"}],"sunrise":"06:38","sunset":"19:59"},{"date":"2026-04-07","groups":[{"time":"12:07:00","height":"4.199"}],"sunrise":"06:35","sunset":"20:01"},{"date":"2026-04-08","groups":[{"time":"00:24:00","height":"4.111"},{"time":"12:42:00","height":"3.823"}],"sunrise":"06:33","sunset":"20:03"},{"date":"2026-04-09","groups":[{"time":"01:02:00","height":"3.747"},{"time":"13:24:00","height":"3.415"}],"sunrise":"06:31","sunset":"20:05"},{"date":"2026-04-10","groups":[{"time":"01:53:00","height":"3.371"},{"time":"14:27:00","height":"3.034"}],"sunrise":"06:28","sunset":"20:06"},{"date":"2026-04-11","groups":[{"time":"03:17:00","height":"3.088"},{"time":"16:12:00","height":"2.851"}],"sunrise":"06:26","sunset":"20:08"},{"date":"2026-04-12","groups":[{"time":"05:09:00","height":"3.137"},{"time":"17:55:00","height":"3.104"}],"sunrise":"06:24","sunset":"20:10"},{"date":"2026-04-13","groups":[{"time":"06:22:00","height":"3.534"},{"time":"18:52:00","height":"3.589"}],"sunrise":"06:21","sunset":"20:12"},{"date":"2026-04-14","groups":[{"time":"07:11:00","height":"4.032"},{"time":"19:35:00","height":"4.108"}],"sunrise":"06:19","sunset":"20:13"},{"date":"2026-04-15","groups":[{"time":"07:51:00","height":"4.517"},{"time":"20:13:00","height":"4.581"}],"sunrise":"06:17","sunset":"20:15"},{"date":"2026-04-16","groups":[{"time":"08:30:00","height":"4.932"},{"time":"20:49:00","height":"4.964"}],"sunrise":"06:15","sunset":"20:17"},{"date":"2026-04-17","groups":[{"time":"09:07:00","height":"5.240"},{"time":"21:27:00","height":"5.227"}],"sunrise":"06:12","sunset":"20:19"},{"date":"2026-04-18","groups":[{"time":"09:47:00","height":"5.408"},{"time":"22:05:00","height":"5.347"}],"sunrise":"06:10","sunset":"20:21"},{"date":"2026-04-19","groups":[{"time":"10:25:00","height":"5.410"},{"time":"22:42:00","height":"5.306"}],"sunrise":"06:08","sunset":"20:22"},{"date":"2026-04-20","groups":[{"time":"11:05:00","height":"5.233"},{"time":"23:24:00","height":"5.106"}],"sunrise":"06:06","sunset":"20:24"},{"date":"2026-04-21","groups":[{"time":"11:53:00","height":"4.891"}],"sunrise":"06:04","sunset":"20:26"},{"date":"2026-04-22","groups":[{"time":"00:12:00","height":"4.770"},{"time":"12:46:00","height":"4.430"}],"sunrise":"06:01","sunset":"20:28"},{"date":"2026-04-23","groups":[{"time":"01:08:00","height":"4.348"},{"time":"13:48:00","height":"3.933"}],"sunrise":"05:59","sunset":"20:29"},{"date":"2026-04-24","groups":[{"time":"02:17:00","height":"3.933"},{"time":"15:06:00","height":"3.536"}],"sunrise":"05:57","sunset":"20:31"},{"date":"2026-04-25","groups":[{"time":"03:44:00","height":"3.679"},{"time":"16:39:00","height":"3.417"}],"sunrise":"05:55","sunset":"20:33"},{"date":"2026-04-26","groups":[{"time":"05:14:00","height":"3.731"},{"time":"17:57:00","height":"3.625"}],"sunrise":"05:53","sunset":"20:35"},{"date":"2026-04-27","groups":[{"time":"06:23:00","height":"4.012"},{"time":"18:56:00","height":"3.978"}],"sunrise":"05:51","sunset":"20:36"},{"date":"2026-04-28","groups":[{"time":"07:15:00","height":"4.325"},{"time":"19:41:00","height":"4.307"}],"sunrise":"05:49","sunset":"20:38"},{"date":"2026-04-29","groups":[{"time":"07:59:00","height":"4.561"},{"time":"20:19:00","height":"4.549"}],"sunrise":"05:47","sunset":"20:40"},{"date":"2026-04-30","groups":[{"time":"08:35:00","height":"4.698"},{"time":"20:53:00","height":"4.700"}],"sunrise":"05:45","sunset":"20:42"},{"date":"2026-05-01","groups":[{"time":"09:09:00","height":"4.752"},{"time":"21:25:00","height":"4.774"}],"sunrise":"05:43","sunset":"20:44"},{"date":"2026-05-02","groups":[{"time":"09:40:00","height":"4.743"},{"time":"21:55:00","height":"4.781"}],"sunrise":"05:41","sunset":"20:45"},{"date":"2026-05-03","groups":[{"time":"10:10:00","height":"4.678"},{"time":"22:24:00","height":"4.724"}],"sunrise":"05:39","sunset":"20:47"},{"date":"2026-05-04","groups":[{"time":"10:39:00","height":"4.553"},{"time":"22:54:00","height":"4.599"}],"sunrise":"05:37","sunset":"20:49"},{"date":"2026-05-05","groups":[{"time":"11:09:00","height":"4.367"},{"time":"23:25:00","height":"4.412"}],"sunrise":"05:35","sunset":"20:50"},{"date":"2026-05-06","groups":[{"time":"11:43:00","height":"4.127"}],"sunrise":"05:33","sunset":"20:52"},{"date":"2026-05-07","groups":[{"time":"00:02:00","height":"4.173"},{"time":"12:21:00","height":"3.847"}],"sunrise":"05:31","sunset":"20:54"},{"date":"2026-05-08","groups":[{"time":"00:43:00","height":"3.899"},{"time":"13:05:00","height":"3.551"}],"sunrise":"05:29","sunset":"20:56"},{"date":"2026-05-09","groups":[{"time":"01:35:00","height":"3.626"},{"time":"14:05:00","height":"3.288"}],"sunrise":"05:28","sunset":"20:57"},{"date":"2026-05-10","groups":[{"time":"02:44:00","height":"3.426"},{"time":"15:24:00","height":"3.160"}],"sunrise":"05:26","sunset":"20:59"},{"date":"2026-05-11","groups":[{"time":"04:09:00","height":"3.417"},{"time":"16:50:00","height":"3.280"}],"sunrise":"05:24","sunset":"21:01"},{"date":"2026-05-12","groups":[{"time":"05:22:00","height":"3.649"},{"time":"17:56:00","height":"3.627"}],"sunrise":"05:23","sunset":"21:02"},{"date":"2026-05-13","groups":[{"time":"06:21:00","height":"4.030"},{"time":"18:48:00","height":"4.067"}],"sunrise":"05:21","sunset":"21:04"},{"date":"2026-05-14","groups":[{"time":"07:10:00","height":"4.444"},{"time":"19:34:00","height":"4.499"}],"sunrise":"05:19","sunset":"21:06"},{"date":"2026-05-15","groups":[{"time":"07:55:00","height":"4.812"},{"time":"20:17:00","height":"4.862"}],"sunrise":"05:18","sunset":"21:07"},{"date":"2026-05-16","groups":[{"time":"08:39:00","height":"5.083"},{"time":"21:01:00","height":"5.119"}],"sunrise":"05:16","sunset":"21:09"},{"date":"2026-05-17","groups":[{"time":"09:24:00","height":"5.226"},{"time":"21:44:00","height":"5.248"}],"sunrise":"05:15","sunset":"21:10"},{"date":"2026-05-18","groups":[{"time":"10:08:00","height":"5.223"},{"time":"22:28:00","height":"5.238"}],"sunrise":"05:13","sunset":"21:12"},{"date":"2026-05-19","groups":[{"time":"10:54:00","height":"5.073"},{"time":"23:14:00","height":"5.095"}],"sunrise":"05:12","sunset":"21:13"},{"date":"2026-05-20","groups":[{"time":"11:46:00","height":"4.798"}],"sunrise":"05:10","sunset":"21:15"},{"date":"2026-05-21","groups":[{"time":"00:08:00","height":"4.844"},{"time":"12:43:00","height":"4.445"}],"sunrise":"05:09","sunset":"21:16"},{"date":"2026-05-22","groups":[{"time":"01:07:00","height":"4.532"},{"time":"13:43:00","height":"4.081"}],"sunrise":"05:08","sunset":"21:18"},{"date":"2026-05-23","groups":[{"time":"02:10:00","height":"4.224"},{"time":"14:51:00","height":"3.786"}],"sunrise":"05:06","sunset":"21:19"},{"date":"2026-05-24","groups":[{"time":"03:22:00","height":"3.995"},{"time":"16:05:00","height":"3.636"}],"sunrise":"05:05","sunset":"21:21"},{"date":"2026-05-25","groups":[{"time":"04:37:00","height":"3.905"},{"time":"17:14:00","height":"3.665"}],"sunrise":"05:04","sunset":"21:22"},{"date":"2026-05-26","groups":[{"time":"05:40:00","height":"3.949"},{"time":"18:13:00","height":"3.822"}],"sunrise":"05:03","sunset":"21:24"},{"date":"2026-05-27","groups":[{"time":"06:36:00","height":"4.062"},{"time":"19:03:00","height":"4.025"}],"sunrise":"05:02","sunset":"21:25"},{"date":"2026-05-28","groups":[{"time":"07:23:00","height":"4.185"},{"time":"19:46:00","height":"4.215"}],"sunrise":"05:00","sunset":"21:26"},{"date":"2026-05-29","groups":[{"time":"08:04:00","height":"4.287"},{"time":"20:25:00","height":"4.371"}],"sunrise":"04:59","sunset":"21:27"},{"date":"2026-05-30","groups":[{"time":"08:42:00","height":"4.360"},{"time":"21:00:00","height":"4.483"}],"sunrise":"04:58","sunset":"21:29"},{"date":"2026-05-31","groups":[{"time":"09:17:00","height":"4.399"},{"time":"21:33:00","height":"4.547"}],"sunrise":"04:58","sunset":"21:30"},{"date":"2026-06-01","groups":[{"time":"09:50:00","height":"4.399"},{"time":"22:06:00","height":"4.558"}],"sunrise":"04:57","sunset":"21:31"},{"date":"2026-06-02","groups":[{"time":"10:22:00","height":"4.356"},{"time":"22:38:00","height":"4.517"}],"sunrise":"04:56","sunset":"21:32"},{"date":"2026-06-03","groups":[{"time":"10:54:00","height":"4.269"},{"time":"23:10:00","height":"4.428"}],"sunrise":"04:55","sunset":"21:33"},{"date":"2026-06-04","groups":[{"time":"11:29:00","height":"4.144"},{"time":"23:49:00","height":"4.299"}],"sunrise":"04:54","sunset":"21:34"},{"date":"2026-06-05","groups":[{"time":"12:08:00","height":"3.991"}],"sunrise":"04:54","sunset":"21:35"},{"date":"2026-06-06","groups":[{"time":"00:31:00","height":"4.142"},{"time":"12:52:00","height":"3.823"}],"sunrise":"04:53","sunset":"21:36"},{"date":"2026-06-07","groups":[{"time":"01:18:00","height":"3.979"},{"time":"13:43:00","height":"3.667"}],"sunrise":"04:52","sunset":"21:37"},{"date":"2026-06-08","groups":[{"time":"02:15:00","height":"3.845"},{"time":"14:44:00","height":"3.563"}],"sunrise":"04:52","sunset":"21:38"},{"date":"2026-06-09","groups":[{"time":"03:19:00","height":"3.784"},{"time":"15:53:00","height":"3.563"}],"sunrise":"04:52","sunset":"21:39"},{"date":"2026-06-10","groups":[{"time":"04:29:00","height":"3.837"},{"time":"17:03:00","height":"3.705"}],"sunrise":"04:51","sunset":"21:40"},{"date":"2026-06-11","groups":[{"time":"05:32:00","height":"4.013"},{"time":"18:03:00","height":"3.972"}],"sunrise":"04:51","sunset":"21:41"},{"date":"2026-06-12","groups":[{"time":"06:30:00","height":"4.271"},{"time":"18:59:00","height":"4.302"}],"sunrise":"04:50","sunset":"21:41"},{"date":"2026-06-13","groups":[{"time":"07:26:00","height":"4.547"},{"time":"19:51:00","height":"4.629"}],"sunrise":"04:50","sunset":"21:42"},{"date":"2026-06-14","groups":[{"time":"08:18:00","height":"4.787"},{"time":"20:42:00","height":"4.906"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2026-06-15","groups":[{"time":"09:09:00","height":"4.956"},{"time":"21:31:00","height":"5.100"}],"sunrise":"04:50","sunset":"21:43"},{"date":"2026-06-16","groups":[{"time":"10:00:00","height":"5.028"},{"time":"22:20:00","height":"5.191"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2026-06-17","groups":[{"time":"10:48:00","height":"4.993"},{"time":"23:08:00","height":"5.168"}],"sunrise":"04:50","sunset":"21:44"},{"date":"2026-06-18","groups":[{"time":"11:39:00","height":"4.852"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2026-06-19","groups":[{"time":"00:02:00","height":"5.034"},{"time":"12:32:00","height":"4.626"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2026-06-20","groups":[{"time":"00:55:00","height":"4.810"},{"time":"13:25:00","height":"4.345"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2026-06-21","groups":[{"time":"01:49:00","height":"4.525"},{"time":"14:19:00","height":"4.055"}],"sunrise":"04:50","sunset":"21:45"},{"date":"2026-06-22","groups":[{"time":"02:45:00","height":"4.224"},{"time":"15:19:00","height":"3.802"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2026-06-23","groups":[{"time":"03:46:00","height":"3.955"},{"time":"16:23:00","height":"3.633"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2026-06-24","groups":[{"time":"04:50:00","height":"3.768"},{"time":"17:23:00","height":"3.588"}],"sunrise":"04:51","sunset":"21:46"},{"date":"2026-06-25","groups":[{"time":"05:49:00","height":"3.698"},{"time":"18:22:00","height":"3.670"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2026-06-26","groups":[{"time":"06:45:00","height":"3.741"},{"time":"19:14:00","height":"3.841"}],"sunrise":"04:52","sunset":"21:46"},{"date":"2026-06-27","groups":[{"time":"07:37:00","height":"3.860"},{"time":"20:00:00","height":"4.046"}],"sunrise":"04:53","sunset":"21:46"},{"date":"2026-06-28","groups":[{"time":"08:21:00","height":"4.006"},{"time":"20:41:00","height":"4.239"}],"sunrise":"04:53","sunset":"21:45"},{"date":"2026-06-29","groups":[{"time":"09:01:00","height":"4.140"},{"time":"21:18:00","height":"4.393"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2026-06-30","groups":[{"time":"09:36:00","height":"4.241"},{"time":"21:52:00","height":"4.499"}],"sunrise":"04:54","sunset":"21:45"},{"date":"2026-07-01","groups":[{"time":"10:10:00","height":"4.305"},{"time":"22:25:00","height":"4.558"}],"sunrise":"04:55","sunset":"21:45"},{"date":"2026-07-02","groups":[{"time":"10:42:00","height":"4.333"},{"time":"22:58:00","height":"4.574"}],"sunrise":"04:56","sunset":"21:44"},{"date":"2026-07-03","groups":[{"time":"11:15:00","height":"4.327"},{"time":"23:34:00","height":"4.549"}],"sunrise":"04:57","sunset":"21:44"},{"date":"2026-07-04","groups":[{"time":"11:54:00","height":"4.281"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2026-07-05","groups":[{"time":"00:15:00","height":"4.480"},{"time":"12:33:00","height":"4.193"}],"sunrise":"04:58","sunset":"21:43"},{"date":"2026-07-06","groups":[{"time":"00:57:00","height":"4.372"},{"time":"13:17:00","height":"4.071"}],"sunrise":"04:59","sunset":"21:42"},{"date":"2026-07-07","groups":[{"time":"01:42:00","height":"4.233"},{"time":"14:06:00","height":"3.930"}],"sunrise":"05:00","sunset":"21:42"},{"date":"2026-07-08","groups":[{"time":"02:36:00","height":"4.082"},{"time":"15:05:00","height":"3.799"}],"sunrise":"05:01","sunset":"21:41"},{"date":"2026-07-09","groups":[{"time":"03:39:00","height":"3.948"},{"time":"16:14:00","height":"3.729"}],"sunrise":"05:02","sunset":"21:40"},{"date":"2026-07-10","groups":[{"time":"04:51:00","height":"3.892"},{"time":"17:25:00","height":"3.796"}],"sunrise":"05:04","sunset":"21:39"},{"date":"2026-07-11","groups":[{"time":"06:01:00","height":"3.976"},{"time":"18:34:00","height":"4.029"}],"sunrise":"05:05","sunset":"21:39"},{"date":"2026-07-12","groups":[{"time":"07:07:00","height":"4.198"},{"time":"19:37:00","height":"4.374"}],"sunrise":"05:06","sunset":"21:38"},{"date":"2026-07-13","groups":[{"time":"08:08:00","height":"4.492"},{"time":"20:33:00","height":"4.744"}],"sunrise":"05:07","sunset":"21:37"},{"date":"2026-07-14","groups":[{"time":"09:03:00","height":"4.776"},{"time":"21:25:00","height":"5.063"}],"sunrise":"05:08","sunset":"21:36"},{"date":"2026-07-15","groups":[{"time":"09:53:00","height":"4.984"},{"time":"22:13:00","height":"5.272"}],"sunrise":"05:09","sunset":"21:35"},{"date":"2026-07-16","groups":[{"time":"10:39:00","height":"5.072"},{"time":"22:57:00","height":"5.339"}],"sunrise":"05:11","sunset":"21:33"},{"date":"2026-07-17","groups":[{"time":"11:24:00","height":"5.026"},{"time":"23:44:00","height":"5.256"}],"sunrise":"05:12","sunset":"21:32"},{"date":"2026-07-18","groups":[{"time":"12:10:00","height":"4.855"}],"sunrise":"05:13","sunset":"21:31"},{"date":"2026-07-19","groups":[{"time":"00:30:00","height":"5.035"},{"time":"12:55:00","height":"4.588"}],"sunrise":"05:15","sunset":"21:30"},{"date":"2026-07-20","groups":[{"time":"01:14:00","height":"4.713"},{"time":"13:38:00","height":"4.261"}],"sunrise":"05:16","sunset":"21:29"},{"date":"2026-07-21","groups":[{"time":"02:00:00","height":"4.328"},{"time":"14:25:00","height":"3.916"}],"sunrise":"05:18","sunset":"21:27"},{"date":"2026-07-22","groups":[{"time":"02:48:00","height":"3.930"},{"time":"15:18:00","height":"3.597"}],"sunrise":"05:19","sunset":"21:26"},{"date":"2026-07-23","groups":[{"time":"03:46:00","height":"3.571"},{"time":"16:26:00","height":"3.370"}],"sunrise":"05:21","sunset":"21:25"},{"date":"2026-07-24","groups":[{"time":"04:58:00","height":"3.337"},{"time":"17:39:00","height":"3.334"}],"sunrise":"05:22","sunset":"21:23"},{"date":"2026-07-25","groups":[{"time":"06:11:00","height":"3.324"},{"time":"18:48:00","height":"3.518"}],"sunrise":"05:23","sunset":"21:22"},{"date":"2026-07-26","groups":[{"time":"07:16:00","height":"3.514"},{"time":"19:44:00","height":"3.823"}],"sunrise":"05:25","sunset":"21:20"},{"date":"2026-07-27","groups":[{"time":"08:07:00","height":"3.790"},{"time":"20:27:00","height":"4.137"}],"sunrise":"05:27","sunset":"21:19"},{"date":"2026-07-28","groups":[{"time":"08:47:00","height":"4.056"},{"time":"21:03:00","height":"4.404"}],"sunrise":"05:28","sunset":"21:17"},{"date":"2026-07-29","groups":[{"time":"09:22:00","height":"4.277"},{"time":"21:37:00","height":"4.609"}],"sunrise":"05:30","sunset":"21:15"},{"date":"2026-07-30","groups":[{"time":"09:54:00","height":"4.448"},{"time":"22:09:00","height":"4.756"}],"sunrise":"05:31","sunset":"21:14"},{"date":"2026-07-31","groups":[{"time":"10:25:00","height":"4.573"},{"time":"22:41:00","height":"4.851"}],"sunrise":"05:33","sunset":"21:12"},{"date":"2026-08-01","groups":[{"time":"10:56:00","height":"4.645"},{"time":"23:13:00","height":"4.885"}],"sunrise":"05:34","sunset":"21:10"},{"date":"2026-08-02","groups":[{"time":"11:30:00","height":"4.651"},{"time":"23:50:00","height":"4.846"}],"sunrise":"05:36","sunset":"21:09"},{"date":"2026-08-03","groups":[{"time":"12:07:00","height":"4.578"}],"sunrise":"05:38","sunset":"21:07"},{"date":"2026-08-04","groups":[{"time":"00:29:00","height":"4.723"},{"time":"12:46:00","height":"4.424"}],"sunrise":"05:39","sunset":"21:05"},{"date":"2026-08-05","groups":[{"time":"01:10:00","height":"4.517"},{"time":"13:29:00","height":"4.201"}],"sunrise":"05:41","sunset":"21:03"},{"date":"2026-08-06","groups":[{"time":"01:59:00","height":"4.237"},{"time":"14:22:00","height":"3.929"}],"sunrise":"05:43","sunset":"21:01"},{"date":"2026-08-07","groups":[{"time":"02:59:00","height":"3.916"},{"time":"15:33:00","height":"3.672"}],"sunrise":"05:44","sunset":"20:59"},{"date":"2026-08-08","groups":[{"time":"04:20:00","height":"3.657"},{"time":"17:02:00","height":"3.585"}],"sunrise":"05:46","sunset":"20:57"},{"date":"2026-08-09","groups":[{"time":"05:47:00","height":"3.651"},{"time":"18:25:00","height":"3.818"}],"sunrise":"05:48","sunset":"20:56"},{"date":"2026-08-10","groups":[{"time":"07:05:00","height":"3.947"},{"time":"19:35:00","height":"4.276"}],"sunrise":"05:49","sunset":"20:54"},{"date":"2026-08-11","groups":[{"time":"08:08:00","height":"4.385"},{"time":"20:31:00","height":"4.772"}],"sunrise":"05:51","sunset":"20:52"},{"date":"2026-08-12","groups":[{"time":"08:58:00","height":"4.794"},{"time":"21:18:00","height":"5.171"}],"sunrise":"05:53","sunset":"20:50"},{"date":"2026-08-13","groups":[{"time":"09:43:00","height":"5.080"},{"time":"22:00:00","height":"5.412"}],"sunrise":"05:54","sunset":"20:48"},{"date":"2026-08-14","groups":[{"time":"10:22:00","height":"5.210"},{"time":"22:39:00","height":"5.477"}],"sunrise":"05:56","sunset":"20:45"},{"date":"2026-08-15","groups":[{"time":"11:00:00","height":"5.184"},{"time":"23:17:00","height":"5.371"}],"sunrise":"05:58","sunset":"20:43"},{"date":"2026-08-16","groups":[{"time":"11:39:00","height":"5.019"},{"time":"23:56:00","height":"5.122"}],"sunrise":"05:59","sunset":"20:41"},{"date":"2026-08-17","groups":[{"time":"12:17:00","height":"4.745"}],"sunrise":"06:01","sunset":"20:39"},{"date":"2026-08-18","groups":[{"time":"00:34:00","height":"4.766"},{"time":"12:54:00","height":"4.399"}],"sunrise":"06:03","sunset":"20:37"},{"date":"2026-08-19","groups":[{"time":"01:11:00","height":"4.346"},{"time":"13:31:00","height":"4.013"}],"sunrise":"06:04","sunset":"20:35"},{"date":"2026-08-20","groups":[{"time":"01:51:00","height":"3.893"},{"time":"14:15:00","height":"3.616"}],"sunrise":"06:06","sunset":"20:33"},{"date":"2026-08-21","groups":[{"time":"02:40:00","height":"3.444"},{"time":"15:17:00","height":"3.259"}],"sunrise":"06:08","sunset":"20:31"},{"date":"2026-08-22","groups":[{"time":"03:53:00","height":"3.074"},{"time":"16:54:00","height":"3.089"}],"sunrise":"06:10","sunset":"20:28"},{"date":"2026-08-23","groups":[{"time":"05:40:00","height":"3.001"},{"time":"18:26:00","height":"3.301"}],"sunrise":"06:11","sunset":"20:26"},{"date":"2026-08-24","groups":[{"time":"07:00:00","height":"3.296"},{"time":"19:26:00","height":"3.715"}],"sunrise":"06:13","sunset":"20:24"},{"date":"2026-08-25","groups":[{"time":"07:50:00","height":"3.705"},{"time":"20:07:00","height":"4.139"}],"sunrise":"06:15","sunset":"20:22"},{"date":"2026-08-26","groups":[{"time":"08:28:00","height":"4.092"},{"time":"20:43:00","height":"4.502"}],"sunrise":"06:16","sunset":"20:19"},{"date":"2026-08-27","groups":[{"time":"09:01:00","height":"4.419"},{"time":"21:15:00","height":"4.789"}],"sunrise":"06:18","sunset":"20:17"},{"date":"2026-08-28","groups":[{"time":"09:32:00","height":"4.677"},{"time":"21:46:00","height":"5.003"}],"sunrise":"06:20","sunset":"20:15"},{"date":"2026-08-29","groups":[{"time":"10:02:00","height":"4.868"},{"time":"22:17:00","height":"5.143"}],"sunrise":"06:21","sunset":"20:13"},{"date":"2026-08-30","groups":[{"time":"10:32:00","height":"4.979"},{"time":"22:49:00","height":"5.194"}],"sunrise":"06:23","sunset":"20:10"},{"date":"2026-08-31","groups":[{"time":"11:03:00","height":"4.992"},{"time":"23:23:00","height":"5.136"}],"sunrise":"06:25","sunset":"20:08"},{"date":"2026-09-01","groups":[{"time":"11:39:00","height":"4.890"}],"sunrise":"06:26","sunset":"20:06"},{"date":"2026-09-02","groups":[{"time":"00:00:00","height":"4.953"},{"time":"12:17:00","height":"4.673"}],"sunrise":"06:28","sunset":"20:03"},{"date":"2026-09-03","groups":[{"time":"00:42:00","height":"4.645"},{"time":"13:00:00","height":"4.353"}],"sunrise":"06:30","sunset":"20:01"},{"date":"2026-09-04","groups":[{"time":"01:29:00","height":"4.229"},{"time":"13:53:00","height":"3.959"}],"sunrise":"06:32","sunset":"19:59"},{"date":"2026-09-05","groups":[{"time":"02:33:00","height":"3.762"},{"time":"15:10:00","height":"3.584"}],"sunrise":"06:33","sunset":"19:56"},{"date":"2026-09-06","groups":[{"time":"04:07:00","height":"3.420"},{"time":"16:56:00","height":"3.481"}],"sunrise":"06:35","sunset":"19:54"},{"date":"2026-09-07","groups":[{"time":"05:49:00","height":"3.495"},{"time":"18:27:00","height":"3.834"}],"sunrise":"06:37","sunset":"19:51"},{"date":"2026-09-08","groups":[{"time":"07:07:00","height":"3.945"},{"time":"19:32:00","height":"4.394"}],"sunrise":"06:38","sunset":"19:49"},{"date":"2026-09-09","groups":[{"time":"08:01:00","height":"4.469"},{"time":"20:21:00","height":"4.907"}],"sunrise":"06:40","sunset":"19:47"},{"date":"2026-09-10","groups":[{"time":"08:46:00","height":"4.893"},{"time":"21:03:00","height":"5.268"}],"sunrise":"06:42","sunset":"19:44"},{"date":"2026-09-11","groups":[{"time":"09:24:00","height":"5.160"},{"time":"21:40:00","height":"5.447"}],"sunrise":"06:43","sunset":"19:42"},{"date":"2026-09-12","groups":[{"time":"10:00:00","height":"5.267"},{"time":"22:15:00","height":"5.456"}],"sunrise":"06:45","sunset":"19:39"},{"date":"2026-09-13","groups":[{"time":"10:33:00","height":"5.230"},{"time":"22:48:00","height":"5.320"}],"sunrise":"06:47","sunset":"19:37"},{"date":"2026-09-14","groups":[{"time":"11:04:00","height":"5.073"},{"time":"23:19:00","height":"5.067"}],"sunrise":"06:48","sunset":"19:35"},{"date":"2026-09-15","groups":[{"time":"11:37:00","height":"4.817"},{"time":"23:53:00","height":"4.725"}],"sunrise":"06:50","sunset":"19:32"},{"date":"2026-09-16","groups":[{"time":"12:10:00","height":"4.488"}],"sunrise":"06:52","sunset":"19:30"},{"date":"2026-09-17","groups":[{"time":"00:26:00","height":"4.321"},{"time":"12:45:00","height":"4.111"}],"sunrise":"06:54","sunset":"19:27"},{"date":"2026-09-18","groups":[{"time":"01:02:00","height":"3.878"},{"time":"13:24:00","height":"3.701"}],"sunrise":"06:55","sunset":"19:25"},{"date":"2026-09-19","groups":[{"time":"01:47:00","height":"3.416"},{"time":"14:20:00","height":"3.297"}],"sunrise":"06:57","sunset":"19:23"},{"date":"2026-09-20","groups":[{"time":"02:54:00","height":"2.995"},{"time":"15:58:00","height":"3.031"}],"sunrise":"06:59","sunset":"19:20"},{"date":"2026-09-21","groups":[{"time":"05:02:00","height":"2.850"},{"time":"17:54:00","height":"3.210"}],"sunrise":"07:00","sunset":"19:18"},{"date":"2026-09-22","groups":[{"time":"06:33:00","height":"3.190"},{"time":"18:56:00","height":"3.661"}],"sunrise":"07:02","sunset":"19:15"},{"date":"2026-09-23","groups":[{"time":"07:21:00","height":"3.668"},{"time":"19:37:00","height":"4.140"}],"sunrise":"07:04","sunset":"19:13"},{"date":"2026-09-24","groups":[{"time":"07:58:00","height":"4.134"},{"time":"20:12:00","height":"4.567"}],"sunrise":"07:05","sunset":"19:11"},{"date":"2026-09-25","groups":[{"time":"08:31:00","height":"4.540"},{"time":"20:45:00","height":"4.917"}],"sunrise":"07:07","sunset":"19:08"},{"date":"2026-09-26","groups":[{"time":"09:02:00","height":"4.867"},{"time":"21:17:00","height":"5.180"}],"sunrise":"07:09","sunset":"19:06"},{"date":"2026-09-27","groups":[{"time":"09:34:00","height":"5.103"},{"time":"21:50:00","height":"5.344"}],"sunrise":"07:11","sunset":"19:03"},{"date":"2026-09-28","groups":[{"time":"10:06:00","height":"5.231"},{"time":"22:23:00","height":"5.387"}],"sunrise":"07:12","sunset":"19:01"},{"date":"2026-09-29","groups":[{"time":"10:38:00","height":"5.232"},{"time":"22:57:00","height":"5.287"}],"sunrise":"07:14","sunset":"18:59"},{"date":"2026-09-30","groups":[{"time":"11:13:00","height":"5.093"},{"time":"23:38:00","height":"5.032"}],"sunrise":"07:16","sunset":"18:56"},{"date":"2026-10-01","groups":[{"time":"11:55:00","height":"4.818"}],"sunrise":"07:18","sunset":"18:54"},{"date":"2026-10-02","groups":[{"time":"00:22:00","height":"4.636"},{"time":"12:42:00","height":"4.429"}],"sunrise":"07:19","sunset":"18:51"},{"date":"2026-10-03","groups":[{"time":"01:16:00","height":"4.140"},{"time":"13:42:00","height":"3.984"}],"sunrise":"07:21","sunset":"18:49"},{"date":"2026-10-04","groups":[{"time":"02:29:00","height":"3.649"},{"time":"15:09:00","height":"3.626"}],"sunrise":"07:23","sunset":"18:47"},{"date":"2026-10-05","groups":[{"time":"04:11:00","height":"3.392"},{"time":"16:57:00","height":"3.627"}],"sunrise":"07:25","sunset":"18:44"},{"date":"2026-10-06","groups":[{"time":"05:48:00","height":"3.591"},{"time":"18:20:00","height":"4.024"}],"sunrise":"07:26","sunset":"18:42"},{"date":"2026-10-07","groups":[{"time":"06:56:00","height":"4.063"},{"time":"19:17:00","height":"4.525"}],"sunrise":"07:28","sunset":"18:40"},{"date":"2026-10-08","groups":[{"time":"07:44:00","height":"4.533"},{"time":"20:01:00","height":"4.932"}],"sunrise":"07:30","sunset":"18:37"},{"date":"2026-10-09","groups":[{"time":"08:24:00","height":"4.886"},{"time":"20:41:00","height":"5.183"}],"sunrise":"07:32","sunset":"18:35"},{"date":"2026-10-10","groups":[{"time":"09:00:00","height":"5.094"},{"time":"21:16:00","height":"5.279"}],"sunrise":"07:33","sunset":"18:33"},{"date":"2026-10-11","groups":[{"time":"09:34:00","height":"5.171"},{"time":"21:49:00","height":"5.249"}],"sunrise":"07:35","sunset":"18:30"},{"date":"2026-10-12","groups":[{"time":"10:05:00","height":"5.140"},{"time":"22:20:00","height":"5.120"}],"sunrise":"07:37","sunset":"18:28"},{"date":"2026-10-13","groups":[{"time":"10:35:00","height":"5.017"},{"time":"22:49:00","height":"4.907"}],"sunrise":"07:39","sunset":"18:26"},{"date":"2026-10-14","groups":[{"time":"11:03:00","height":"4.812"},{"time":"23:18:00","height":"4.623"}],"sunrise":"07:41","sunset":"18:24"},{"date":"2026-10-15","groups":[{"time":"11:36:00","height":"4.536"},{"time":"23:52:00","height":"4.280"}],"sunrise":"07:42","sunset":"18:21"},{"date":"2026-10-16","groups":[{"time":"12:10:00","height":"4.207"}],"sunrise":"07:44","sunset":"18:19"},{"date":"2026-10-17","groups":[{"time":"00:28:00","height":"3.895"},{"time":"12:49:00","height":"3.843"}],"sunrise":"07:46","sunset":"18:17"},{"date":"2026-10-18","groups":[{"time":"01:11:00","height":"3.489"},{"time":"13:42:00","height":"3.476"}],"sunrise":"07:48","sunset":"18:15"},{"date":"2026-10-19","groups":[{"time":"02:14:00","height":"3.116"},{"time":"15:05:00","height":"3.207"}],"sunrise":"07:50","sunset":"18:12"},{"date":"2026-10-20","groups":[{"time":"03:57:00","height":"2.935"},{"time":"16:57:00","height":"3.253"}],"sunrise":"07:51","sunset":"18:10"},{"date":"2026-10-21","groups":[{"time":"05:41:00","height":"3.164"},{"time":"18:08:00","height":"3.618"}],"sunrise":"07:53","sunset":"18:08"},{"date":"2026-10-22","groups":[{"time":"06:37:00","height":"3.612"},{"time":"18:55:00","height":"4.073"}],"sunrise":"07:55","sunset":"18:06"},{"date":"2026-10-23","groups":[{"time":"07:18:00","height":"4.095"},{"time":"19:33:00","height":"4.518"}],"sunrise":"07:57","sunset":"18:04"},{"date":"2026-10-24","groups":[{"time":"07:54:00","height":"4.543"},{"time":"20:10:00","height":"4.904"}],"sunrise":"07:59","sunset":"18:02"},{"date":"2026-10-25","groups":[{"time":"08:29:00","height":"4.916"},{"time":"20:47:00","height":"5.198"}],"sunrise":"08:01","sunset":"18:00"},{"date":"2026-10-26","groups":[{"time":"08:04:00","height":"5.187"},{"time":"20:23:00","height":"5.375"}],"sunrise":"07:02","sunset":"16:58"},{"date":"2026-10-27","groups":[{"time":"08:41:00","height":"5.333"},{"time":"21:02:00","height":"5.409"}],"sunrise":"07:04","sunset":"16:55"},{"date":"2026-10-28","groups":[{"time":"09:19:00","height":"5.337"},{"time":"21:40:00","height":"5.286"}],"sunrise":"07:06","sunset":"16:53"},{"date":"2026-10-29","groups":[{"time":"09:57:00","height":"5.194"},{"time":"22:24:00","height":"5.009"}],"sunrise":"07:08","sunset":"16:51"},{"date":"2026-10-30","groups":[{"time":"10:44:00","height":"4.919"},{"time":"23:17:00","height":"4.610"}],"sunrise":"07:10","sunset":"16:49"},{"date":"2026-10-31","groups":[{"time":"11:38:00","height":"4.551"}],"sunrise":"07:12","sunset":"16:48"},{"date":"2026-11-01","groups":[{"time":"00:16:00","height":"4.159"},{"time":"12:46:00","height":"4.170"}],"sunrise":"07:14","sunset":"16:46"},{"date":"2026-11-02","groups":[{"time":"01:31:00","height":"3.770"},{"time":"14:08:00","height":"3.909"}],"sunrise":"07:15","sunset":"16:44"},{"date":"2026-11-03","groups":[{"time":"03:00:00","height":"3.602"},{"time":"15:39:00","height":"3.907"}],"sunrise":"07:17","sunset":"16:42"},{"date":"2026-11-04","groups":[{"time":"04:23:00","height":"3.743"},{"time":"16:52:00","height":"4.146"}],"sunrise":"07:19","sunset":"16:40"},{"date":"2026-11-05","groups":[{"time":"05:26:00","height":"4.068"},{"time":"17:48:00","height":"4.456"}],"sunrise":"07:21","sunset":"16:38"},{"date":"2026-11-06","groups":[{"time":"06:16:00","height":"4.408"},{"time":"18:35:00","height":"4.709"}],"sunrise":"07:23","sunset":"16:36"},{"date":"2026-11-07","groups":[{"time":"06:58:00","height":"4.673"},{"time":"19:15:00","height":"4.862"}],"sunrise":"07:25","sunset":"16:35"},{"date":"2026-11-08","groups":[{"time":"07:34:00","height":"4.842"},{"time":"19:50:00","height":"4.920"}],"sunrise":"07:27","sunset":"16:33"},{"date":"2026-11-09","groups":[{"time":"08:08:00","height":"4.925"},{"time":"20:24:00","height":"4.903"}],"sunrise":"07:29","sunset":"16:31"},{"date":"2026-11-10","groups":[{"time":"08:40:00","height":"4.933"},{"time":"20:56:00","height":"4.826"}],"sunrise":"07:30","sunset":"16:30"},{"date":"2026-11-11","groups":[{"time":"09:11:00","height":"4.872"},{"time":"21:26:00","height":"4.690"}],"sunrise":"07:32","sunset":"16:28"},{"date":"2026-11-12","groups":[{"time":"09:41:00","height":"4.744"},{"time":"21:56:00","height":"4.497"}],"sunrise":"07:34","sunset":"16:26"},{"date":"2026-11-13","groups":[{"time":"10:13:00","height":"4.555"},{"time":"22:30:00","height":"4.254"}],"sunrise":"07:36","sunset":"16:25"},{"date":"2026-11-14","groups":[{"time":"10:50:00","height":"4.318"},{"time":"23:08:00","height":"3.976"}],"sunrise":"07:38","sunset":"16:23"},{"date":"2026-11-15","groups":[{"time":"11:31:00","height":"4.048"},{"time":"23:51:00","height":"3.682"}],"sunrise":"07:39","sunset":"16:22"},{"date":"2026-11-16","groups":[{"time":"12:20:00","height":"3.776"}],"sunrise":"07:41","sunset":"16:20"},{"date":"2026-11-17","groups":[{"time":"00:47:00","height":"3.412"},{"time":"13:25:00","height":"3.557"}],"sunrise":"07:43","sunset":"16:19"},{"date":"2026-11-18","groups":[{"time":"01:59:00","height":"3.243"},{"time":"14:44:00","height":"3.487"}],"sunrise":"07:45","sunset":"16:18"},{"date":"2026-11-19","groups":[{"time":"03:25:00","height":"3.282"},{"time":"16:01:00","height":"3.637"}],"sunrise":"07:47","sunset":"16:16"},{"date":"2026-11-20","groups":[{"time":"04:36:00","height":"3.557"},{"time":"17:00:00","height":"3.955"}],"sunrise":"07:48","sunset":"16:15"},{"date":"2026-11-21","groups":[{"time":"05:28:00","height":"3.958"},{"time":"17:50:00","height":"4.338"}],"sunrise":"07:50","sunset":"16:14"},{"date":"2026-11-22","groups":[{"time":"06:14:00","height":"4.385"},{"time":"18:34:00","height":"4.708"}],"sunrise":"07:52","sunset":"16:13"},{"date":"2026-11-23","groups":[{"time":"06:57:00","height":"4.772"},{"time":"19:18:00","height":"5.011"}],"sunrise":"07:53","sunset":"16:11"},{"date":"2026-11-24","groups":[{"time":"07:39:00","height":"5.075"},{"time":"20:02:00","height":"5.208"}],"sunrise":"07:55","sunset":"16:10"},{"date":"2026-11-25","groups":[{"time":"08:22:00","height":"5.266"},{"time":"20:47:00","height":"5.277"}],"sunrise":"07:57","sunset":"16:09"},{"date":"2026-11-26","groups":[{"time":"09:06:00","height":"5.331"},{"time":"21:32:00","height":"5.209"}],"sunrise":"07:58","sunset":"16:08"},{"date":"2026-11-27","groups":[{"time":"09:51:00","height":"5.266"},{"time":"22:19:00","height":"5.014"}],"sunrise":"08:00","sunset":"16:07"},{"date":"2026-11-28","groups":[{"time":"10:42:00","height":"5.087"},{"time":"23:16:00","height":"4.724"}],"sunrise":"08:02","sunset":"16:06"},{"date":"2026-11-29","groups":[{"time":"11:39:00","height":"4.827"}],"sunrise":"08:03","sunset":"16:06"},{"date":"2026-11-30","groups":[{"time":"00:14:00","height":"4.390"},{"time":"12:40:00","height":"4.536"}],"sunrise":"08:05","sunset":"16:05"},{"date":"2026-12-01","groups":[{"time":"01:18:00","height":"4.079"},{"time":"13:47:00","height":"4.278"}],"sunrise":"08:06","sunset":"16:04"},{"date":"2026-12-02","groups":[{"time":"02:28:00","height":"3.863"},{"time":"15:01:00","height":"4.115"}],"sunrise":"08:07","sunset":"16:03"},{"date":"2026-12-03","groups":[{"time":"03:42:00","height":"3.802"},{"time":"16:10:00","height":"4.080"}],"sunrise":"08:09","sunset":"16:03"},{"date":"2026-12-04","groups":[{"time":"04:45:00","height":"3.892"},{"time":"17:09:00","height":"4.145"}],"sunrise":"08:10","sunset":"16:02"},{"date":"2026-12-05","groups":[{"time":"05:41:00","height":"4.071"},{"time":"18:02:00","height":"4.256"}],"sunrise":"08:12","sunset":"16:02"},{"date":"2026-12-06","groups":[{"time":"06:28:00","height":"4.273"},{"time":"18:48:00","height":"4.367"}],"sunrise":"08:13","sunset":"16:01"},{"date":"2026-12-07","groups":[{"time":"07:11:00","height":"4.454"},{"time":"19:30:00","height":"4.457"}],"sunrise":"08:14","sunset":"16:01"},{"date":"2026-12-08","groups":[{"time":"07:48:00","height":"4.592"},{"time":"20:06:00","height":"4.515"}],"sunrise":"08:15","sunset":"16:00"},{"date":"2026-12-09","groups":[{"time":"08:24:00","height":"4.680"},{"time":"20:41:00","height":"4.533"}],"sunrise":"08:17","sunset":"16:00"},{"date":"2026-12-10","groups":[{"time":"08:57:00","height":"4.711"},{"time":"21:14:00","height":"4.505"}],"sunrise":"08:18","sunset":"16:00"},{"date":"2026-12-11","groups":[{"time":"09:29:00","height":"4.686"},{"time":"21:45:00","height":"4.432"}],"sunrise":"08:19","sunset":"16:00"},{"date":"2026-12-12","groups":[{"time":"10:01:00","height":"4.609"},{"time":"22:18:00","height":"4.317"}],"sunrise":"08:20","sunset":"16:00"},{"date":"2026-12-13","groups":[{"time":"10:37:00","height":"4.489"},{"time":"22:55:00","height":"4.169"}],"sunrise":"08:21","sunset":"16:00"},{"date":"2026-12-14","groups":[{"time":"11:17:00","height":"4.333"},{"time":"23:35:00","height":"3.994"}],"sunrise":"08:22","sunset":"16:00"},{"date":"2026-12-15","groups":[{"time":"11:59:00","height":"4.152"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2026-12-16","groups":[{"time":"00:21:00","height":"3.811"},{"time":"12:49:00","height":"3.972"}],"sunrise":"08:23","sunset":"16:00"},{"date":"2026-12-17","groups":[{"time":"01:13:00","height":"3.647"},{"time":"13:46:00","height":"3.827"}],"sunrise":"08:24","sunset":"16:00"},{"date":"2026-12-18","groups":[{"time":"02:17:00","height":"3.549"},{"time":"14:53:00","height":"3.769"}],"sunrise":"08:25","sunset":"16:00"},{"date":"2026-12-19","groups":[{"time":"03:29:00","height":"3.577"},{"time":"16:02:00","height":"3.844"}],"sunrise":"08:25","sunset":"16:01"},{"date":"2026-12-20","groups":[{"time":"04:36:00","height":"3.769"},{"time":"17:05:00","height":"4.057"}],"sunrise":"08:26","sunset":"16:01"},{"date":"2026-12-21","groups":[{"time":"05:36:00","height":"4.091"},{"time":"18:03:00","height":"4.355"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2026-12-22","groups":[{"time":"06:30:00","height":"4.467"},{"time":"18:58:00","height":"4.667"}],"sunrise":"08:27","sunset":"16:02"},{"date":"2026-12-23","groups":[{"time":"07:22:00","height":"4.829"},{"time":"19:49:00","height":"4.937"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2026-12-24","groups":[{"time":"08:11:00","height":"5.128"},{"time":"20:39:00","height":"5.123"}],"sunrise":"08:28","sunset":"16:03"},{"date":"2026-12-25","groups":[{"time":"09:00:00","height":"5.328"},{"time":"21:27:00","height":"5.197"}],"sunrise":"08:28","sunset":"16:04"},{"date":"2026-12-26","groups":[{"time":"09:47:00","height":"5.410"},{"time":"22:14:00","height":"5.150"}],"sunrise":"08:28","sunset":"16:05"},{"date":"2026-12-27","groups":[{"time":"10:37:00","height":"5.357"},{"time":"23:06:00","height":"4.981"}],"sunrise":"08:29","sunset":"16:05"},{"date":"2026-12-28","groups":[{"time":"11:29:00","height":"5.177"},{"time":"23:58:00","height":"4.716"}],"sunrise":"08:29","sunset":"16:06"},{"date":"2026-12-29","groups":[{"time":"12:21:00","height":"4.894"}],"sunrise":"08:29","sunset":"16:07"},{"date":"2026-12-30","groups":[{"time":"00:50:00","height":"4.395"},{"time":"13:14:00","height":"4.546"}],"sunrise":"08:29","sunset":"16:08"},{"date":"2026-12-31","groups":[{"time":"01:44:00","height":"4.065"},{"time":"14:12:00","height":"4.186"}],"sunrise":"08:29","sunset":"16:09"}],"pdfs":[{"name":"September 2014","date":"2014-09-01","filename":"2014\/09.pdf","htmlfilename":"2014\/09.html","url":"2014\/09"},{"name":"October 2014","date":"2014-10-01","filename":"2014\/10.pdf","htmlfilename":"2014\/10.html","url":"2014\/10"},{"name":"November 2014","date":"2014-11-01","filename":"2014\/11.pdf","htmlfilename":"2014\/11.html","url":"2014\/11"},{"name":"December 2014","date":"2014-12-01","filename":"2014\/12.pdf","htmlfilename":"2014\/12.html","url":"2014\/12"},{"name":"January 2015","date":"2015-01-01","filename":"2015\/01.pdf","htmlfilename":"2015\/01.html","url":"2015\/01"},{"name":"February 2015","date":"2015-02-01","filename":"2015\/02.pdf","htmlfilename":"2015\/02.html","url":"2015\/02"},{"name":"March 2015","date":"2015-03-01","filename":"2015\/03.pdf","htmlfilename":"2015\/03.html","url":"2015\/03"},{"name":"April 2015","date":"2015-04-01","filename":"2015\/04.pdf","htmlfilename":"2015\/04.html","url":"2015\/04"},{"name":"May 2015","date":"2015-05-01","filename":"2015\/05.pdf","htmlfilename":"2015\/05.html","url":"2015\/05"},{"name":"June 2015","date":"2015-06-01","filename":"2015\/06.pdf","htmlfilename":"2015\/06.html","url":"2015\/06"},{"name":"July 2015","date":"2015-07-01","filename":"2015\/07.pdf","htmlfilename":"2015\/07.html","url":"2015\/07"},{"name":"August 2015","date":"2015-08-01","filename":"2015\/08.pdf","htmlfilename":"2015\/08.html","url":"2015\/08"},{"name":"September 2015","date":"2015-09-01","filename":"2015\/09.pdf","htmlfilename":"2015\/09.html","url":"2015\/09"},{"name":"October 2015","date":"2015-10-01","filename":"2015\/10.pdf","htmlfilename":"2015\/10.html","url":"2015\/10"},{"name":"November 2015","date":"2015-11-01","filename":"2015\/11.pdf","htmlfilename":"2015\/11.html","url":"2015\/11"},{"name":"December 2015","date":"2015-12-01","filename":"2015\/12.pdf","htmlfilename":"2015\/12.html","url":"2015\/12"},{"name":"January 2016","date":"2016-01-01","filename":"2016\/01.pdf","htmlfilename":"2016\/01.html","url":"2016\/01"},{"name":"February 2016","date":"2016-02-01","filename":"2016\/02.pdf","htmlfilename":"2016\/02.html","url":"2016\/02"},{"name":"March 2016","date":"2016-03-01","filename":"2016\/03.pdf","htmlfilename":"2016\/03.html","url":"2016\/03"},{"name":"April 2016","date":"2016-04-01","filename":"2016\/04.pdf","htmlfilename":"2016\/04.html","url":"2016\/04"},{"name":"May 2016","date":"2016-05-01","filename":"2016\/05.pdf","htmlfilename":"2016\/05.html","url":"2016\/05"},{"name":"June 2016","date":"2016-06-01","filename":"2016\/06.pdf","htmlfilename":"2016\/06.html","url":"2016\/06"},{"name":"July 2016","date":"2016-07-01","filename":"2016\/07.pdf","htmlfilename":"2016\/07.html","url":"2016\/07"},{"name":"August 2016","date":"2016-08-01","filename":"2016\/08.pdf","htmlfilename":"2016\/08.html","url":"2016\/08"},{"name":"January 2017","date":"2017-01-01","filename":"2017\/01.pdf","htmlfilename":"2017\/01.html","url":"2017\/01"},{"name":"February 2017","date":"2017-02-01","filename":"2017\/02.pdf","htmlfilename":"2017\/02.html","url":"2017\/02"},{"name":"March 2017","date":"2017-03-01","filename":"2017\/03.pdf","htmlfilename":"2017\/03.html","url":"2017\/03"},{"name":"April 2017","date":"2017-04-01","filename":"2017\/04.pdf","htmlfilename":"2017\/04.html","url":"2017\/04"},{"name":"May 2017","date":"2017-05-01","filename":"2017\/05.pdf","htmlfilename":"2017\/05.html","url":"2017\/05"},{"name":"June 2017","date":"2017-06-01","filename":"2017\/06.pdf","htmlfilename":"2017\/06.html","url":"2017\/06"},{"name":"July 2017","date":"2017-07-01","filename":"2017\/07.pdf","htmlfilename":"2017\/07.html","url":"2017\/07"},{"name":"August 2017","date":"2017-08-01","filename":"2017\/08.pdf","htmlfilename":"2017\/08.html","url":"2017\/08"},{"name":"September 2017","date":"2017-09-01","filename":"2017\/09.pdf","htmlfilename":"2017\/09.html","url":"2017\/09"},{"name":"October 2017","date":"2017-10-01","filename":"2017\/10.pdf","htmlfilename":"2017\/10.html","url":"2017\/10"},{"name":"November 2017","date":"2017-11-01","filename":"2017\/11.pdf","htmlfilename":"2017\/11.html","url":"2017\/11"},{"name":"December 2017","date":"2017-12-01","filename":"2017\/12.pdf","htmlfilename":"2017\/12.html","url":"2017\/12"},{"name":"January 2018","date":"2018-01-01","filename":"2018\/01.pdf","htmlfilename":"2018\/01.html","url":"2018\/01"},{"name":"February 2018","date":"2018-02-01","filename":"2018\/02.pdf","htmlfilename":"2018\/02.html","url":"2018\/02"},{"name":"March 2018","date":"2018-03-01","filename":"2018\/03.pdf","htmlfilename":"2018\/03.html","url":"2018\/03"},{"name":"April 2018","date":"2018-04-01","filename":"2018\/04.pdf","htmlfilename":"2018\/04.html","url":"2018\/04"},{"name":"May 2018","date":"2018-05-01","filename":"2018\/05.pdf","htmlfilename":"2018\/05.html","url":"2018\/05"},{"name":"June 2018","date":"2018-06-01","filename":"2018\/06.pdf","htmlfilename":"2018\/06.html","url":"2018\/06"},{"name":"July 2018","date":"2018-07-01","filename":"2018\/07.pdf","htmlfilename":"2018\/07.html","url":"2018\/07"},{"name":"August 2018","date":"2018-08-01","filename":"2018\/08.pdf","htmlfilename":"2018\/08.html","url":"2018\/08"},{"name":"September 2018","date":"2018-09-01","filename":"2018\/09.pdf","htmlfilename":"2018\/09.html","url":"2018\/09"},{"name":"October 2018","date":"2018-10-01","filename":"2018\/10.pdf","htmlfilename":"2018\/10.html","url":"2018\/10"},{"name":"November 2018","date":"2018-11-01","filename":"2018\/11.pdf","htmlfilename":"2018\/11.html","url":"2018\/11"},{"name":"December 2018","date":"2018-12-01","filename":"2018\/12.pdf","htmlfilename":"2018\/12.html","url":"2018\/12"},{"name":"March 2019","date":"2019-03-01","filename":"2019\/03.pdf","htmlfilename":"2019\/03.html","url":"2019\/03"},{"name":"April 2019","date":"2019-04-01","filename":"2019\/04.pdf","htmlfilename":"2019\/04.html","url":"2019\/04"},{"name":"May 2019","date":"2019-05-01","filename":"2019\/05.pdf","htmlfilename":"2019\/05.html","url":"2019\/05"},{"name":"June 2019","date":"2019-06-01","filename":"2019\/06.pdf","htmlfilename":"2019\/06.html","url":"2019\/06"},{"name":"July 2019","date":"2019-07-01","filename":"2019\/07.pdf","htmlfilename":"2019\/07.html","url":"2019\/07"},{"name":"August 2019","date":"2019-08-01","filename":"2019\/08.pdf","htmlfilename":"2019\/08.html","url":"2019\/08"},{"name":"September 2019","date":"2019-09-01","filename":"2019\/09.pdf","htmlfilename":"2019\/09.html","url":"2019\/09"},{"name":"October 2019","date":"2019-10-01","filename":"2019\/10.pdf","htmlfilename":"2019\/10.html","url":"2019\/10"},{"name":"November 2019","date":"2019-11-01","filename":"2019\/11.pdf","htmlfilename":"2019\/11.html","url":"2019\/11"},{"name":"December 2019","date":"2019-12-01","filename":"2019\/12.pdf","htmlfilename":"2019\/12.html","url":"2019\/12"},{"name":"January 2020","date":"2020-01-01","filename":"2020\/01.pdf","htmlfilename":"2020\/01.html","url":"2020\/01"},{"name":"February 2020","date":"2020-02-01","filename":"2020\/02.pdf","htmlfilename":"2020\/02.html","url":"2020\/02"},{"name":"June 2020","date":"2020-06-01","filename":"2020\/06.pdf","htmlfilename":"2020\/06.html","url":"2020\/06"},{"name":"July 2020","date":"2020-07-01","filename":"2020\/07.pdf","htmlfilename":"2020\/07.html","url":"2020\/07"},{"name":"August 2020","date":"2020-08-01","filename":"2020\/08.pdf","htmlfilename":"2020\/08.html","url":"2020\/08"},{"name":"September 2020","date":"2020-09-01","filename":"2020\/09.pdf","htmlfilename":"2020\/09.html","url":"2020\/09"},{"name":"October 2020","date":"2020-10-01","filename":"2020\/10.pdf","htmlfilename":"2020\/10.html","url":"2020\/10"},{"name":"November 2020","date":"2020-11-01","filename":"2020\/11.pdf","htmlfilename":"2020\/11.html","url":"2020\/11"},{"name":"December 2020","date":"2020-12-01","filename":"2020\/12.pdf","htmlfilename":"2020\/12.html","url":"2020\/12"},{"name":"January 2021","date":"2021-01-01","filename":"2021\/01.pdf","htmlfilename":"2021\/01.html","url":"2021\/01"},{"name":"February 2021","date":"2021-02-01","filename":"2021\/02.pdf","htmlfilename":"2021\/02.html","url":"2021\/02"},{"name":"March 2021","date":"2021-03-01","filename":"2021\/03.pdf","htmlfilename":"2021\/03.html","url":"2021\/03"},{"name":"April 2021","date":"2021-04-01","filename":"2021\/04.pdf","htmlfilename":"2021\/04.html","url":"2021\/04"},{"name":"May 2021","date":"2021-05-01","filename":"2021\/05.pdf","htmlfilename":"2021\/05.html","url":"2021\/05"},{"name":"June 2021","date":"2021-06-01","filename":"2021\/06.pdf","htmlfilename":"2021\/06.html","url":"2021\/06"},{"name":"July 2021","date":"2021-07-01","filename":"2021\/07.pdf","htmlfilename":"2021\/07.html","url":"2021\/07"},{"name":"August 2021","date":"2021-08-01","filename":"2021\/08.pdf","htmlfilename":"2021\/08.html","url":"2021\/08"},{"name":"September 2021","date":"2021-09-01","filename":"2021\/09.pdf","htmlfilename":"2021\/09.html","url":"2021\/09"},{"name":"October 2021","date":"2021-10-01","filename":"2021\/10.pdf","htmlfilename":"2021\/10.html","url":"2021\/10"},{"name":"November 2021","date":"2021-11-01","filename":"2021\/11.pdf","htmlfilename":"2021\/11.html","url":"2021\/11"},{"name":"December 2021","date":"2021-12-01","filename":"2021\/12.pdf","htmlfilename":"2021\/12.html","url":"2021\/12"},{"name":"January 2022","date":"2022-01-01","filename":"2022\/01.pdf","htmlfilename":"2022\/01.html","url":"2022\/01"},{"name":"February 2022","date":"2022-02-01","filename":"2022\/02.pdf","htmlfilename":"2022\/02.html","url":"2022\/02"},{"name":"March 2022","date":"2022-03-01","filename":"2022\/03.pdf","htmlfilename":"2022\/03.html","url":"2022\/03"},{"name":"April 2022","date":"2022-04-01","filename":"2022\/04.pdf","htmlfilename":"2022\/04.html","url":"2022\/04"},{"name":"May 2022","date":"2022-05-01","filename":"2022\/05.pdf","htmlfilename":"2022\/05.html","url":"2022\/05"},{"name":"June 2022","date":"2022-06-01","filename":"2022\/06.pdf","htmlfilename":"2022\/06.html","url":"2022\/06"},{"name":"July 2022","date":"2022-07-01","filename":"2022\/07.pdf","htmlfilename":"2022\/07.html","url":"2022\/07"},{"name":"August 2022","date":"2022-08-01","filename":"2022\/08.pdf","htmlfilename":"2022\/08.html","url":"2022\/08"},{"name":"September 2022","date":"2022-09-01","filename":"2022\/09.pdf","htmlfilename":"2022\/09.html","url":"2022\/09"},{"name":"October 2022","date":"2022-10-01","filename":"2022\/10.pdf","htmlfilename":"2022\/10.html","url":"2022\/10"},{"name":"November 2022","date":"2022-11-01","filename":"2022\/11.pdf","htmlfilename":"2022\/11.html","url":"2022\/11"},{"name":"December 2022","date":"2022-12-01","filename":"2022\/12.pdf","htmlfilename":"2022\/12.html","url":"2022\/12"},{"name":"January 2023","date":"2023-01-01","filename":"2023\/01.pdf","htmlfilename":"2023\/01.html","url":"2023\/01"},{"name":"February 2023","date":"2023-02-01","filename":"2023\/02.pdf","htmlfilename":"2023\/02.html","url":"2023\/02"},{"name":"March 2023","date":"2023-03-01","filename":"2023\/03.pdf","htmlfilename":"2023\/03.html","url":"2023\/03"},{"name":"April 2023","date":"2023-04-01","filename":"2023\/04.pdf","htmlfilename":"2023\/04.html","url":"2023\/04"},{"name":"May 2023","date":"2023-05-01","filename":"2023\/05.pdf","htmlfilename":"2023\/05.html","url":"2023\/05"},{"name":"June 2023","date":"2023-06-01","filename":"2023\/06.pdf","htmlfilename":"2023\/06.html","url":"2023\/06"},{"name":"July 2023","date":"2023-07-01","filename":"2023\/07.pdf","htmlfilename":"2023\/07.html","url":"2023\/07"},{"name":"August 2023","date":"2023-08-01","filename":"2023\/08.pdf","htmlfilename":"2023\/08.html","url":"2023\/08"},{"name":"September 2023","date":"2023-09-01","filename":"2023\/09.pdf","htmlfilename":"2023\/09.html","url":"2023\/09"},{"name":"October 2023","date":"2023-10-01","filename":"2023\/10.pdf","htmlfilename":"2023\/10.html","url":"2023\/10"},{"name":"November 2023","date":"2023-11-01","filename":"2023\/11.pdf","htmlfilename":"2023\/11.html","url":"2023\/11"},{"name":"December 2023","date":"2023-12-01","filename":"2023\/12.pdf","htmlfilename":"2023\/12.html","url":"2023\/12"},{"name":"January 2024","date":"2024-01-01","filename":"2024\/01.pdf","htmlfilename":"2024\/01.html","url":"2024\/01"},{"name":"February 2024","date":"2024-02-01","filename":"2024\/02.pdf","htmlfilename":"2024\/02.html","url":"2024\/02"},{"name":"March 2024","date":"2024-03-01","filename":"2024\/03.pdf","htmlfilename":"2024\/03.html","url":"2024\/03"},{"name":"April 2024","date":"2024-04-01","filename":"2024\/04.pdf","htmlfilename":"2024\/04.html","url":"2024\/04"},{"name":"May 2024","date":"2024-05-01","filename":"2024\/05.pdf","htmlfilename":"2024\/05.html","url":"2024\/05"},{"name":"June 2024","date":"2024-06-01","filename":"2024\/06.pdf","htmlfilename":"2024\/06.html","url":"2024\/06"},{"name":"July 2024","date":"2024-07-01","filename":"2024\/07.pdf","htmlfilename":"2024\/07.html","url":"2024\/07"},{"name":"August 2024","date":"2024-08-01","filename":"2024\/08.pdf","htmlfilename":"2024\/08.html","url":"2024\/08"},{"name":"September 2024","date":"2024-09-01","filename":"2024\/09.pdf","htmlfilename":"2024\/09.html","url":"2024\/09"},{"name":"October 2024","date":"2024-10-01","filename":"2024\/10.pdf","htmlfilename":"2024\/10.html","url":"2024\/10"},{"name":"November 2024","date":"2024-11-01","filename":"2024\/11.pdf","htmlfilename":"2024\/11.html","url":"2024\/11"},{"name":"December 2024","date":"2024-12-01","filename":"2024\/12.pdf","htmlfilename":"2024\/12.html","url":"2024\/12"},{"name":"January 2025","date":"2025-01-01","filename":"2025\/01.pdf","htmlfilename":"2025\/01.html","url":"2025\/01"},{"name":"February 2025","date":"2025-02-01","filename":"2025\/02.pdf","htmlfilename":"2025\/02.html","url":"2025\/02"},{"name":"March 2025","date":"2025-03-01","filename":"2025\/03.pdf","htmlfilename":"2025\/03.html","url":"2025\/03"},{"name":"April 2025","date":"2025-04-01","filename":"2025\/04.pdf","htmlfilename":"2025\/04.html","url":"2025\/04"},{"name":"May 2025","date":"2025-05-01","filename":"2025\/05.pdf","htmlfilename":"2025\/05.html","url":"2025\/05"},{"name":"June 2025","date":"2025-06-01","filename":"2025\/06.pdf","htmlfilename":"2025\/06.html","url":"2025\/06"},{"name":"July 2025","date":"2025-07-01","filename":"2025\/07.pdf","htmlfilename":"2025\/07.html","url":"2025\/07"},{"name":"August 2025","date":"2025-08-01","filename":"2025\/08.pdf","htmlfilename":"2025\/08.html","url":"2025\/08"},{"name":"September 2025","date":"2025-09-01","filename":"2025\/09.pdf","htmlfilename":"2025\/09.html","url":"2025\/09"},{"name":"October 2025","date":"2025-10-01","filename":"2025\/10.pdf","htmlfilename":"2025\/10.html","url":"2025\/10"},{"name":"November 2025","date":"2025-11-01","filename":"2025\/11.pdf","htmlfilename":"2025\/11.html","url":"2025\/11"},{"name":"December 2025","date":"2025-12-01","filename":"2025\/12.pdf","htmlfilename":"2025\/12.html","url":"2025\/12"},{"name":"January 2026","date":"2026-01-01","filename":"2026\/01.pdf","htmlfilename":"2026\/01.html","url":"2026\/01"},{"name":"February 2026","date":"2026-02-01","filename":"2026\/02.pdf","htmlfilename":"2026\/02.html","url":"2026\/02"},{"name":"March 2026","date":"2026-03-01","filename":"2026\/03.pdf","htmlfilename":"2026\/03.html","url":"2026\/03"},{"name":"April 2026","date":"2026-04-01","filename":"2026\/04.pdf","htmlfilename":"2026\/04.html","url":"2026\/04"},{"name":"May 2026","date":"2026-05-01","filename":"2026\/05.pdf","htmlfilename":"2026\/05.html","url":"2026\/05"},{"name":"June 2026","date":"2026-06-01","filename":"2026\/06.pdf","htmlfilename":"2026\/06.html","url":"2026\/06"},{"name":"July 2026","date":"2026-07-01","filename":"2026\/07.pdf","htmlfilename":"2026\/07.html","url":"2026\/07"},{"name":"August 2026","date":"2026-08-01","filename":"2026\/08.pdf","htmlfilename":"2026\/08.html","url":"2026\/08"},{"name":"September 2026","date":"2026-09-01","filename":"2026\/09.pdf","htmlfilename":"2026\/09.html","url":"2026\/09"},{"name":"October 2026","date":"2026-10-01","filename":"2026\/10.pdf","htmlfilename":"2026\/10.html","url":"2026\/10"},{"name":"November 2026","date":"2026-11-01","filename":"2026\/11.pdf","htmlfilename":"2026\/11.html","url":"2026\/11"},{"name":"December 2026","date":"2026-12-01","filename":"2026\/12.pdf","htmlfilename":"2026\/12.html","url":"2026\/12"}]}
\ No newline at end of file
diff --git a/src/types.ts b/src/types.ts
index 7f45832..a8823eb 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -27,6 +27,8 @@ export interface TidesJson_ScheduleObject {
time: string;
height: string;
}>;
+ sunrise: string;
+ sunset: string;
}
export interface TidesJson_PDFObject {
name: string;