Hi,
In charts with extra axes the y axes labels are rotated so that they are shown horizontally, if there is only one value axis then this does not happen.
This behavior seems a bit inconsistent and I don't see any properties on the chart to control value axis label rotation, so I think this might be a bug.
A second issue is that when the chart has label collapse mode TIME enabled then in certain cases all labels disappear from the x axis.
Strange thing is that resizing the chart vertically can make the labels appear, as can be seen from the two attached screenshots and in the test case below.
If you run the test case and reduce the vertical size of your browser window then the labels appear, making it bigger again causes the labels to disappear.
Tested using Version v12.1p_2026-02-25/Pro Deployment (2026-02-25)
Using latest version of Chrome browser.
Apologies for the big size of the test case, the second issue was difficult to reproduce so I had to put in a big set of test data (also could not upload it due to size limitations).
In charts with extra axes the y axes labels are rotated so that they are shown horizontally, if there is only one value axis then this does not happen.
This behavior seems a bit inconsistent and I don't see any properties on the chart to control value axis label rotation, so I think this might be a bug.
A second issue is that when the chart has label collapse mode TIME enabled then in certain cases all labels disappear from the x axis.
Strange thing is that resizing the chart vertically can make the labels appear, as can be seen from the two attached screenshots and in the test case below.
If you run the test case and reduce the vertical size of your browser window then the labels appear, making it bigger again causes the labels to disappear.
Tested using Version v12.1p_2026-02-25/Pro Deployment (2026-02-25)
Using latest version of Chrome browser.
Apologies for the big size of the test case, the second issue was difficult to reproduce so I had to put in a big set of test data (also could not upload it due to size limitations).
Code:
@Override
public void onModuleLoad()
{
FacetChart chart = new FacetChart();
chart.setRotateLabels(LabelRotationMode.NEVER);
chart.setLabelCollapseMode(LabelCollapseMode.TIME);
chart.setChartType(ChartType.LINE);
chart.setWidth100();
chart.setHeight100();
chart.setShowLegend(true);
chart.setValueTitle("Vol. Forecast");
chart.setShowValueAxisLabel(true);
List<Facet> facets = new ArrayList<>();
facets.add(new Facet("ScheduledCompletedDate"));
Facet metricFacet = new Facet();
metricFacet.setId(chart.getMetricFacetId());
metricFacet.setInlinedValues(true);
facets.add(metricFacet);
List<MetricSettings> extraAxisMetrics = new ArrayList<>();
List<FacetValue> metricFacetValues = new ArrayList<>();
metricFacetValues.add(new FacetValue("Volume_Forecast", "Vol. Forecast"));
MetricSettings maxVolSettings = new MetricSettings();
maxVolSettings.setShowAxis(false);
maxVolSettings.setChartType(ChartType.LINE);
maxVolSettings.setMatchGradations("Volume_Forecast");
extraAxisMetrics.add(maxVolSettings);
metricFacetValues.add(new FacetValue("Maximum_Volume", "Max. Vol."));
MetricSettings minVolSettings = new MetricSettings();
minVolSettings.setShowAxis(false);
minVolSettings.setChartType(ChartType.LINE);
minVolSettings.setMatchGradations("Volume_Forecast");
extraAxisMetrics.add(minVolSettings);
metricFacetValues.add(new FacetValue("Minimum_Volume", "Min. Vol."));
metricFacet.setValues(metricFacetValues.toArray(new FacetValue[0]));
chart.setExtraAxisMetrics(metricFacetValues.stream().skip(1).map((v) -> v.getId().toString()).toArray(String[]::new));
chart.setExtraAxisSettings(extraAxisMetrics.toArray(new MetricSettings[0]));
chart.setFacets(facets.toArray(new Facet[0]));
chart.setData(parseSampleData());
chart.draw();
}
private Record[] parseSampleData()
{
String rawData = "2026-01-10T02:00:00|389756.696|81579.1842|1063789.3314$2026-01-10T02:49:40|389756.696|81579.1842|1063789.3314$2026-01-10T03:39:20|389756.696|81579.1842|1063789.3314$2026-01-10T04:29:00|389756.696|81579.1842|1063789.3314$2026-01-10T05:18:40|389756.696|81579.1842|1063789.3314$2026-01-10T06:08:20|389756.696|81579.1842|1063789.3314$2026-01-10T06:58:00|389756.696|81579.1842|1063789.3314$2026-01-10T07:47:40|389756.696|81579.1842|1063789.3314$2026-01-10T08:37:20|389756.696|81579.1842|1063789.3314$2026-01-10T09:27:00|389756.696|81579.1842|1063789.3314$2026-01-10T10:16:40|389756.696|81579.1842|1063789.3314$2026-01-10T11:06:20|389756.696|81579.1842|1063789.3314$2026-01-10T11:56:00|389756.696|81579.1842|1063789.3314$2026-01-10T12:45:40|389756.696|81579.1842|1063789.3314$2026-01-10T13:35:20|389756.696|81579.1842|1063789.3314$2026-01-10T14:25:00|389756.696|81579.1842|1063789.3314$2026-01-10T15:14:40|389756.696|81579.1842|1063789.3314$2026-01-10T16:04:20|389756.696|81579.1842|1063789.3314$2026-01-10T16:54:00|389756.696|81579.1842|1063789.3314$2026-01-10T17:43:40|389756.696|81579.1842|1063789.3314$2026-01-10T18:33:20|389756.696|81579.1842|1063789.3314$2026-01-10T19:23:00|389756.696|81579.1842|1063789.3314$2026-01-10T20:12:40|389756.696|81579.1842|1063789.3314$2026-01-10T21:02:20|389756.696|81579.1842|1063789.3314$2026-01-10T21:52:00|389756.696|81579.1842|1063789.3314$2026-01-10T22:41:40|389756.696|81579.1842|1063789.3314$2026-01-10T23:31:20|389756.696|81579.1842|1063789.3314$2026-01-11T00:21:00|389756.696|81579.1842|1063789.3314$2026-01-11T01:10:40|389756.696|81579.1842|1063789.3314$2026-01-11T02:00:20|389756.696|81579.1842|1063789.3314$2026-01-11T02:50:00|389756.696|81579.1842|1063789.3314$2026-01-11T03:39:40|389756.696|81579.1842|1063789.3314$2026-01-11T04:29:20|389756.696|81579.1842|1063789.3314$2026-01-11T05:19:00|389756.696|81579.1842|1063789.3314$2026-01-11T06:08:40|389756.696|81579.1842|1063789.3314$2026-01-11T06:58:20|389756.696|81579.1842|1063789.3314$2026-01-11T07:48:00|389756.696|81579.1842|1063789.3314$2026-01-11T08:37:40|389756.696|81579.1842|1063789.3314$2026-01-11T09:27:20|389756.696|81579.1842|1063789.3314$2026-01-11T10:17:00|389756.696|81579.1842|1063789.3314$2026-01-11T11:06:40|389756.696|81579.1842|1063789.3314$2026-01-11T11:56:20|389756.696|81579.1842|1063789.3314$2026-01-11T12:46:00|389756.696|81579.1842|1063789.3314$2026-01-11T13:35:40|389756.696|81579.1842|1063789.3314$2026-01-11T14:25:20|389756.696|81579.1842|1063789.3314$2026-01-11T15:15:00|389756.696|81579.1842|1063789.3314$2026-01-11T16:04:40|389756.696|81579.1842|1063789.3314$2026-01-11T16:54:20|389756.696|81579.1842|1063789.3314$2026-01-11T17:44:00|389756.696|81579.1842|1063789.3314$2026-01-11T18:33:40|389756.696|81579.1842|1063789.3314$2026-01-11T19:23:20|389756.696|81579.1842|1063789.3314$2026-01-11T20:13:00|389756.696|81579.1842|1063789.3314$2026-01-11T21:02:40|389756.696|81579.1842|1063789.3314$2026-01-11T21:52:20|389756.696|81579.1842|1063789.3314$2026-01-11T22:42:00|389756.696|81579.1842|1063789.3314$2026-01-11T23:31:40|389756.696|81579.1842|1063789.3314$2026-01-12T00:21:20|389756.696|81579.1842|1063789.3314$2026-01-12T01:11:00|389756.696|81579.1842|1063789.3314$2026-01-12T02:00:40|389756.696|81579.1842|1063789.3314$2026-01-12T02:50:20|389756.696|81579.1842|1063789.3314$2026-01-12T03:40:00|389756.696|81579.1842|1063789.3314$2026-01-12T04:29:40|389756.696|81579.1842|1063789.3314$2026-01-12T05:19:20|389756.696|81579.1842|1063789.3314$2026-01-12T06:09:00|389756.696|81579.1842|1063789.3314$2026-01-12T06:58:40|389756.696|81579.1842|1063789.3314$2026-01-12T07:48:20|389756.696|81579.1842|1063789.3314$2026-01-12T08:38:00|389756.696|81579.1842|1063789.3314$2026-01-12T09:27:40|389756.696|81579.1842|1063789.3314$2026-01-12T10:17:20|389756.696|81579.1842|1063789.3314$2026-01-12T11:07:00|389756.696|81579.1842|1063789.3314$2026-01-12T11:56:40|389756.696|81579.1842|1063789.3314$2026-01-12T12:46:20|389756.696|81579.1842|1063789.3314$2026-01-12T13:36:00|389756.696|81579.1842|1063789.3314$2026-01-12T14:25:40|389756.696|81579.1842|1063789.3314$2026-01-12T15:15:20|389756.696|81579.1842|1063789.3314$2026-01-12T16:05:00|389756.696|81579.1842|1063789.3314$2026-01-12T16:54:40|389756.696|81579.1842|1063789.3314$2026-01-12T17:44:20|389756.696|81579.1842|1063789.3314$2026-01-12T18:34:00|389756.696|81579.1842|1063789.3314$2026-01-12T19:23:40|389756.696|81579.1842|1063789.3314$2026-01-12T20:13:20|389756.696|81579.1842|1063789.3314$2026-01-12T21:03:00|389756.696|81579.1842|1063789.3314$2026-01-12T21:52:40|389756.696|81579.1842|1063789.3314$2026-01-12T22:42:20|389756.696|81579.1842|1063789.3314$2026-01-12T23:32:00|389756.696|81579.1842|1063789.3314$2026-01-13T00:21:40|389756.696|81579.1842|1063789.3314$2026-01-13T01:11:20|389756.696|81579.1842|1063789.3314$2026-01-13T02:01:00|389756.696|81579.1842|1063789.3314$2026-01-13T02:50:40|389756.696|81579.1842|1063789.3314$2026-01-13T03:40:20|389756.696|81579.1842|1063789.3314$2026-01-13T04:30:00|389756.696|81579.1842|1063789.3314$2026-01-13T05:19:40|389756.696|81579.1842|1063789.3314$2026-01-13T06:09:20|389756.696|81579.1842|1063789.3314$2026-01-13T06:59:00|389756.696|81579.1842|1063789.3314$2026-01-13T07:48:40|389756.696|81579.1842|1063789.3314$2026-01-13T08:38:20|389756.696|81579.1842|1063789.3314$2026-01-13T09:28:00|389756.696|81579.1842|1063789.3314$2026-01-13T10:17:40|389756.696|81579.1842|1063789.3314$2026-01-13T11:07:20|389756.696|81579.1842|1063789.3314$2026-01-13T11:57:00|389756.696|81579.1842|1063789.3314$2026-01-13T12:46:40|389756.696|81579.1842|1063789.3314$2026-01-13T13:36:20|389756.696|81579.1842|1063789.3314$2026-01-13T14:26:00|389756.696|81579.1842|1063789.3314$2026-01-13T15:15:40|389756.696|81579.1842|1063789.3314$2026-01-13T16:05:20|389756.696|81579.1842|1063789.3314$2026-01-13T16:55:00|389756.696|81579.1842|1063789.3314$2026-01-13T17:44:40|389756.696|81579.1842|1063789.3314$2026-01-13T18:34:20|389756.696|81579.1842|1063789.3314$2026-01-13T19:24:00|389756.696|81579.1842|1063789.3314$2026-01-13T20:13:40|389756.696|81579.1842|1063789.3314$2026-01-13T21:03:20|389756.696|81579.1842|1063789.3314$2026-01-13T21:53:00|389756.696|81579.1842|1063789.3314$2026-01-13T22:42:40|389756.696|81579.1842|1063789.3314$2026-01-13T23:32:20|389756.696|81579.1842|1063789.3314$2026-01-14T00:22:00|389756.696|81579.1842|1063789.3314$2026-01-14T01:11:40|389756.696|81579.1842|1063789.3314$2026-01-14T02:01:20|389756.696|81579.1842|1063789.3314$2026-01-14T02:51:00|389756.696|81579.1842|1063789.3314$2026-01-14T03:40:40|389756.696|81579.1842|1063789.3314$2026-01-14T04:30:20|389756.696|81579.1842|1063789.3314$2026-01-14T05:20:00|389756.696|81579.1842|1063789.3314$2026-01-14T06:09:40|389756.696|81579.1842|1063789.3314$2026-01-14T06:59:20|389756.696|81579.1842|1063789.3314$2026-01-14T07:49:00|389756.696|81579.1842|1063789.3314$2026-01-14T08:38:40|389756.696|81579.1842|1063789.3314$2026-01-14T09:28:20|389756.696|81579.1842|1063789.3314$2026-01-14T10:18:00|389756.696|81579.1842|1063789.3314$2026-01-14T11:07:40|389756.696|81579.1842|1063789.3314$2026-01-14T11:57:20|389756.696|81579.1842|1063789.3314$2026-01-14T12:47:00|389756.696|81579.1842|1063789.3314$2026-01-14T13:36:40|389756.696|81579.1842|1063789.3314$2026-01-14T14:26:20|389756.696|81579.1842|1063789.3314$2026-01-14T15:16:00|389756.696|81579.1842|1063789.3314$2026-01-14T16:05:40|389756.696|81579.1842|1063789.3314$2026-01-14T16:55:20|389756.696|81579.1842|1063789.3314$2026-01-14T17:45:00|389756.696|81579.1842|1063789.3314$2026-01-14T18:34:40|389756.696|81579.1842|1063789.3314$2026-01-14T19:24:20|389756.696|81579.1842|1063789.3314$2026-01-14T20:14:00|389756.696|81579.1842|1063789.3314$2026-01-14T21:03:40|389756.696|81579.1842|1063789.3314$2026-01-14T21:53:20|389756.696|81579.1842|1063789.3314$2026-01-14T22:43:00|389756.696|81579.1842|1063789.3314$2026-01-14T23:32:40|389756.696|81579.1842|1063789.3314$2026-01-15T00:22:20|389756.696|81579.1842|1063789.3314$2026-01-15T01:12:00|389756.696|81579.1842|1063789.3314$2026-01-15T02:01:40|389756.696|81579.1842|1063789.3314$2026-01-15T02:51:20|389756.696|81579.1842|1063789.3314$2026-01-15T03:41:00|389756.696|81579.1842|1063789.3314$2026-01-15T04:30:40|389756.696|81579.1842|1063789.3314$2026-01-15T05:20:20|389756.696|81579.1842|1063789.3314$2026-01-15T06:10:00|389756.696|81579.1842|1063789.3314$2026-01-15T06:59:40|389756.696|81579.1842|1063789.3314$2026-01-15T07:49:20|389756.696|81579.1842|1063789.3314$2026-01-15T08:39:00|389756.696|81579.1842|1063789.3314$2026-01-15T09:28:40|389756.696|81579.1842|1063789.3314$2026-01-15T10:18:20|389756.696|81579.1842|1063789.3314$2026-01-15T11:08:00|389756.696|81579.1842|1063789.3314$2026-01-15T11:57:40|389756.696|81579.1842|1063789.3314$2026-01-15T12:47:20|389756.696|81579.1842|1063789.3314$2026-01-15T13:37:00|389756.696|81579.1842|1063789.3314$2026-01-15T14:26:40|389756.696|81579.1842|1063789.3314$2026-01-15T15:16:20|389756.696|81579.1842|1063789.3314$2026-01-15T16:06:00|389756.696|81579.1842|1063789.3314$2026-01-15T16:55:40|389756.696|81579.1842|1063789.3314$2026-01-15T17:45:20|389756.696|81579.1842|1063789.3314$2026-01-15T18:35:00|389756.696|81579.1842|1063789.3314$2026-01-15T19:24:40|389756.696|81579.1842|1063789.3314$2026-01-15T20:14:20|389756.696|81579.1842|1063789.3314$2026-01-15T21:04:00|389756.696|81579.1842|1063789.3314$2026-01-15T21:53:40|389756.696|81579.1842|1063789.3314$2026-01-15T22:43:20|389756.696|81579.1842|1063789.3314$2026-01-15T23:33:00|389756.696|81579.1842|1063789.3314$2026-01-16T00:22:40|389756.696|81579.1842|1063789.3314$2026-01-16T01:12:20|389756.696|81579.1842|1063789.3314$2026-01-16T02:02:00|389756.696|81579.1842|1063789.3314$2026-01-16T02:51:40|389756.696|81579.1842|1063789.3314$2026-01-16T03:41:20|389756.696|81579.1842|1063789.3314$2026-01-16T04:31:00|389756.696|81579.1842|1063789.3314$2026-01-16T05:20:40|389756.696|81579.1842|1063789.3314$2026-01-16T06:10:20|389756.696|81579.1842|1063789.3314$2026-01-16T07:00:00|389756.696|81579.1842|1063789.3314$2026-01-16T07:49:40|389756.696|81579.1842|1063789.3314$2026-01-16T08:39:20|389756.696|81579.1842|1063789.3314$2026-01-16T09:29:00|389756.696|81579.1842|1063789.3314$2026-01-16T10:18:40|389756.696|81579.1842|1063789.3314$2026-01-16T11:08:20|389756.696|81579.1842|1063789.3314$2026-01-16T11:58:00|389756.696|81579.1842|1063789.3314$2026-01-16T12:47:40|389756.696|81579.1842|1063789.3314$2026-01-16T13:37:20|389756.696|81579.1842|1063789.3314$2026-01-16T14:27:00|389756.696|81579.1842|1063789.3314$2026-01-16T15:16:40|389756.696|81579.1842|1063789.3314$2026-01-16T16:06:20|389756.696|81579.1842|1063789.3314$2026-01-16T16:56:00|389756.696|81579.1842|1063789.3314$2026-01-16T17:45:40|389756.696|81579.1842|1063789.3314$2026-01-16T18:35:20|389756.696|81579.1842|1063789.3314$2026-01-16T19:25:00|389756.696|81579.1842|1063789.3314$2026-01-16T20:14:40|389756.696|81579.1842|1063789.3314$2026-01-16T21:04:20|389756.696|81579.1842|1063789.3314$2026-01-16T21:54:00|389756.696|81579.1842|1063789.3314$2026-01-16T22:43:40|389756.696|81579.1842|1063789.3314$2026-01-16T23:33:20|389756.696|81579.1842|1063789.3314$2026-01-17T00:23:00|389756.696|81579.1842|1063789.3314$2026-01-17T01:12:40|389756.696|81579.1842|1063789.3314$2026-01-17T02:02:20|389756.696|81579.1842|1063789.3314$2026-01-17T02:52:00|389756.696|81579.1842|1063789.3314$2026-01-17T03:41:40|389756.696|81579.1842|1063789.3314$2026-01-17T04:31:20|389756.696|81579.1842|1063789.3314$2026-01-17T05:21:00|389756.696|81579.1842|1063789.3314$2026-01-17T06:10:40|389756.696|81579.1842|1063789.3314$2026-01-17T07:00:20|389756.696|81579.1842|1063789.3314$2026-01-17T07:50:00|389756.696|81579.1842|1063789.3314$2026-01-17T08:39:40|389756.696|81579.1842|1063789.3314$2026-01-17T09:29:20|389756.696|81579.1842|1063789.3314$2026-01-17T10:19:00|389756.696|81579.1842|1063789.3314$2026-01-17T11:08:40|389756.696|81579.1842|1063789.3314$2026-01-17T11:58:20|389756.696|81579.1842|1063789.3314$2026-01-17T12:48:00|389756.696|81579.1842|1063789.3314$2026-01-17T13:37:40|389756.696|81579.1842|1063789.3314$2026-01-17T14:27:20|389756.696|81579.1842|1063789.3314$2026-01-17T15:17:00|389756.696|81579.1842|1063789.3314$2026-01-17T16:06:40|389756.696|81579.1842|1063789.3314$2026-01-17T16:56:20|389756.696|81579.1842|1063789.3314$2026-01-17T17:46:00|389756.696|81579.1842|1063789.3314$2026-01-17T18:35:40|389756.696|81579.1842|1063789.3314$2026-01-17T19:25:20|389756.696|81579.1842|1063789.3314$2026-01-17T20:15:00|389756.696|81579.1842|1063789.3314$2026-01-17T21:04:40|389756.696|81579.1842|1063789.3314$2026-01-17T21:54:20|389756.696|81579.1842|1063789.3314$2026-01-17T22:44:00|389756.696|81579.1842|1063789.3314$2026-01-17T23:33:40|389756.696|81579.1842|1063789.3314$2026-01-18T00:23:20|389756.696|81579.1842|1063789.3314$2026-01-18T01:13:00|389756.696|81579.1842|1063789.3314$2026-01-18T02:02:40|389756.696|81579.1842|1063789.3314$2026-01-18T02:52:20|389756.696|81579.1842|1063789.3314$2026-01-18T03:42:00|389756.696|81579.1842|1063789.3314$2026-01-18T04:31:40|389756.696|81579.1842|1063789.3314$2026-01-18T05:21:20|389756.696|81579.1842|1063789.3314$2026-01-18T06:11:00|389756.696|81579.1842|1063789.3314$2026-01-18T07:00:40|389756.696|81579.1842|1063789.3314$2026-01-18T07:50:20|389756.696|81579.1842|1063789.3314$2026-01-18T08:40:00|389756.696|81579.1842|1063789.3314$2026-01-18T09:29:40|389756.696|81579.1842|1063789.3314$2026-01-18T10:19:20|389756.696|81579.1842|1063789.3314$2026-01-18T11:09:00|389756.696|81579.1842|1063789.3314$2026-01-18T11:58:40|389756.696|81579.1842|1063789.3314$2026-01-18T12:48:20|389756.696|81579.1842|1063789.3314$2026-01-18T13:38:00|389756.696|81579.1842|1063789.3314$2026-01-18T14:27:40|389756.696|81579.1842|1063789.3314$2026-01-18T15:17:20|389756.696|81579.1842|1063789.3314$2026-01-18T16:07:00|389756.696|81579.1842|1063789.3314$2026-01-18T16:56:40|389756.696|81579.1842|1063789.3314$2026-01-18T17:46:20|389756.696|81579.1842|1063789.3314$2026-01-18T18:36:00|389756.696|81579.1842|1063789.3314$2026-01-18T19:25:40|389756.696|81579.1842|1063789.3314$2026-01-18T20:15:20|389756.696|81579.1842|1063789.3314$2026-01-18T21:05:00|389756.696|81579.1842|1063789.3314$2026-01-18T21:54:40|389756.696|81579.1842|1063789.3314$2026-01-18T22:44:20|389756.696|81579.1842|1063789.3314$2026-01-18T23:34:00|389756.696|81579.1842|1063789.3314$2026-01-19T00:23:40|389756.696|81579.1842|1063789.3314$2026-01-19T01:13:20|389756.696|81579.1842|1063789.3314$2026-01-19T02:03:00|389756.696|81579.1842|1063789.3314$2026-01-19T02:52:40|389756.696|81579.1842|1063789.3314$2026-01-19T03:42:20|389756.696|81579.1842|1063789.3314$2026-01-19T04:32:00|389756.696|81579.1842|1063789.3314$2026-01-19T05:21:40|389756.696|81579.1842|1063789.3314$2026-01-19T06:11:20|389756.696|81579.1842|1063789.3314$2026-01-19T07:01:00|389756.696|81579.1842|1063789.3314$2026-01-19T07:50:40|389756.696|81579.1842|1063789.3314$2026-01-19T08:40:20|389756.696|81579.1842|1063789.3314$2026-01-19T09:30:00|389756.696|81579.1842|1063789.3314$2026-01-19T10:19:40|389756.696|81579.1842|1063789.3314$2026-01-19T11:09:20|389756.696|81579.1842|1063789.3314$2026-01-19T11:59:00|389756.696|81579.1842|1063789.3314$2026-01-19T12:48:40|389756.696|81579.1842|1063789.3314$2026-01-19T13:38:20|389756.696|81579.1842|1063789.3314$2026-01-19T14:28:00|389756.696|81579.1842|1063789.3314$2026-01-19T15:17:40|389756.696|81579.1842|1063789.3314$2026-01-19T16:07:20|389756.696|81579.1842|1063789.3314$2026-01-19T16:57:00|389756.696|81579.1842|1063789.3314$2026-01-19T17:46:40|389756.696|81579.1842|1063789.3314$2026-01-19T18:36:20|389756.696|81579.1842|1063789.3314$2026-01-19T19:26:00|389756.696|81579.1842|1063789.3314$2026-01-19T20:15:40|389756.696|81579.1842|1063789.3314$2026-01-19T21:05:20|389756.696|81579.1842|1063789.3314$2026-01-19T21:55:00|389756.696|81579.1842|1063789.3314$2026-01-19T22:44:40|389756.696|81579.1842|1063789.3314$2026-01-19T23:34:20|389756.696|81579.1842|1063789.3314$2026-01-20T00:24:00|389756.696|81579.1842|1063789.3314$2026-01-20T01:13:40|389756.696|81579.1842|1063789.3314$2026-01-20T02:03:20|389756.696|81579.1842|1063789.3314$2026-01-20T02:53:00|389756.696|81579.1842|1063789.3314$2026-01-20T03:42:40|389756.696|81579.1842|1063789.3314$2026-01-20T04:32:20|389756.696|81579.1842|1063789.3314$2026-01-20T05:22:00|389756.696|81579.1842|1063789.3314$2026-01-20T06:11:40|389756.696|81579.1842|1063789.3314$2026-01-20T07:01:20|389756.696|81579.1842|1063789.3314$2026-01-20T07:51:00|389756.696|81579.1842|1063789.3314$2026-01-20T08:40:40|389756.696|81579.1842|1063789.3314$2026-01-20T09:30:20|389756.696|81579.1842|1063789.3314$2026-01-20T10:20:00|389756.696|81579.1842|1063789.3314$2026-01-20T11:09:40|389756.696|81579.1842|1063789.3314$2026-01-20T11:59:20|389756.696|81579.1842|1063789.3314$2026-01-20T12:49:00|389756.696|81579.1842|1063789.3314$2026-01-20T13:38:40|389756.696|81579.1842|1063789.3314$2026-01-20T14:28:20|389756.696|81579.1842|1063789.3314$2026-01-20T15:18:00|389756.696|81579.1842|1063789.3314$2026-01-20T16:07:40|389756.696|81579.1842|1063789.3314$2026-01-20T16:57:20|389756.696|81579.1842|1063789.3314$2026-01-20T17:47:00|389756.696|81579.1842|1063789.3314$2026-01-20T18:36:40|389756.696|81579.1842|1063789.3314$2026-01-20T19:26:20|389756.696|81579.1842|1063789.3314$2026-01-20T20:16:00|389756.696|81579.1842|1063789.3314$2026-01-20T21:05:40|389756.696|81579.1842|1063789.3314$2026-01-20T21:55:20|389756.696|81579.1842|1063789.3314$2026-01-20T22:45:00|389756.696|81579.1842|1063789.3314$2026-01-20T23:34:40|389756.696|81579.1842|1063789.3314$2026-01-21T00:24:20|389756.696|81579.1842|1063789.3314$2026-01-21T01:14:00|389756.696|81579.1842|1063789.3314$2026-01-21T02:03:40|389756.696|81579.1842|1063789.3314$2026-01-21T02:53:20|389756.696|81579.1842|1063789.3314$2026-01-21T03:43:00|389756.696|81579.1842|1063789.3314$2026-01-21T04:32:40|389756.696|81579.1842|1063789.3314$2026-01-21T05:22:20|389756.696|81579.1842|1063789.3314$2026-01-21T06:12:00|389756.696|81579.1842|1063789.3314$2026-01-21T07:01:40|389756.696|81579.1842|1063789.3314$2026-01-21T07:51:20|389756.696|81579.1842|1063789.3314$2026-01-21T08:41:00|389756.696|81579.1842|1063789.3314$2026-01-21T09:30:40|389756.696|81579.1842|1063789.3314$2026-01-21T10:20:20|389756.696|81579.1842|1063789.3314$2026-01-21T11:10:00|389756.696|81579.1842|1063789.3314$2026-01-21T11:59:40|389756.696|81579.1842|1063789.3314$2026-01-21T12:49:20|389756.696|81579.1842|1063789.3314$2026-01-21T13:39:00|389756.696|81579.1842|1063789.3314$2026-01-21T14:28:40|389756.696|81579.1842|1063789.3314$2026-01-21T15:18:20|389756.696|81579.1842|1063789.3314$2026-01-21T16:08:00|389756.696|81579.1842|1063789.3314$2026-01-21T16:57:40|389756.696|81579.1842|1063789.3314$2026-01-21T17:47:20|389756.696|81579.1842|1063789.3314$2026-01-21T18:37:00|389756.696|81579.1842|1063789.3314$2026-01-21T19:26:40|389756.696|81579.1842|1063789.3314$2026-01-21T20:16:20|389756.696|81579.1842|1063789.3314$2026-01-21T21:06:00|389756.696|81579.1842|1063789.3314$2026-01-21T21:55:40|389756.696|81579.1842|1063789.3314$2026-01-21T22:45:20|389756.696|81579.1842|1063789.3314$2026-01-21T23:35:00|389756.696|81579.1842|1063789.3314$2026-01-22T00:24:40|389756.696|81579.1842|1063789.3314$2026-01-22T01:14:20|389756.696|81579.1842|1063789.3314$2026-01-22T02:04:00|389756.696|81579.1842|1063789.3314$2026-01-22T02:53:40|389756.696|81579.1842|1063789.3314$2026-01-22T03:43:20|389756.696|81579.1842|1063789.3314$2026-01-22T04:33:00|389756.696|81579.1842|1063789.3314$2026-01-22T05:22:40|389756.696|81579.1842|1063789.3314$2026-01-22T06:12:20|389756.696|81579.1842|1063789.3314$2026-01-22T07:02:00|389756.696|81579.1842|1063789.3314$2026-01-22T07:51:40|389756.696|81579.1842|1063789.3314$2026-01-22T08:41:20|389756.696|81579.1842|1063789.3314$2026-01-22T09:31:00|389756.696|81579.1842|1063789.3314$2026-01-22T10:20:40|389756.696|81579.1842|1063789.3314$2026-01-22T11:10:20|389756.696|81579.1842|1063789.3314$2026-01-22T12:00:00|389756.696|81579.1842|1063789.3314$2026-01-22T12:49:40|389756.696|81579.1842|1063789.3314$2026-01-22T13:39:20|389756.696|81579.1842|1063789.3314$2026-01-22T14:29:00|389756.696|81579.1842|1063789.3314$2026-01-22T15:18:40|389756.696|81579.1842|1063789.3314$2026-01-22T16:08:20|389756.696|81579.1842|1063789.3314$2026-01-22T16:58:00|389756.696|81579.1842|1063789.3314$2026-01-22T17:47:40|389756.696|81579.1842|1063789.3314$2026-01-22T18:37:20|389756.696|81579.1842|1063789.3314$2026-01-22T19:27:00|389756.696|81579.1842|1063789.3314$2026-01-22T20:16:40|389756.696|81579.1842|1063789.3314$2026-01-22T21:06:20|389756.696|81579.1842|1063789.3314$2026-01-22T21:56:00|389756.696|81579.1842|1063789.3314$2026-01-22T22:45:40|389756.696|81579.1842|1063789.3314$2026-01-22T23:35:20|389756.696|81579.1842|1063789.3314$2026-01-23T00:25:00|389756.696|81579.1842|1063789.3314$2026-01-23T01:14:40|389756.696|81579.1842|1063789.3314$2026-01-23T02:04:20|389756.696|81579.1842|1063789.3314$2026-01-23T02:54:00|389756.696|81579.1842|1063789.3314$2026-01-23T03:43:40|389756.696|81579.1842|1063789.3314$2026-01-23T04:33:20|389756.696|81579.1842|1063789.3314$2026-01-23T05:23:00|389756.696|81579.1842|1063789.3314$2026-01-23T06:12:40|389756.696|81579.1842|1063789.3314$2026-01-23T07:02:20|389756.696|81579.1842|1063789.3314$2026-01-23T07:52:00|389756.696|81579.1842|1063789.3314$2026-01-23T08:41:40|389756.696|81579.1842|1063789.3314$2026-01-23T09:31:20|389756.696|81579.1842|1063789.3314$2026-01-23T10:21:00|389756.696|81579.1842|1063789.3314$2026-01-23T11:10:40|389756.696|81579.1842|1063789.3314$2026-01-23T12:00:20|389756.696|81579.1842|1063789.3314$2026-01-23T12:50:00|389756.696|81579.1842|1063789.3314$2026-01-23T13:39:40|389756.696|81579.1842|1063789.3314$2026-01-23T14:29:20|389756.696|81579.1842|1063789.3314$2026-01-23T15:19:00|389756.696|81579.1842|1063789.3314$2026-01-23T16:08:40|389756.696|81579.1842|1063789.3314$2026-01-23T16:58:20|389756.696|81579.1842|1063789.3314$2026-01-23T17:48:00|389756.696|81579.1842|1063789.3314$2026-01-23T18:37:40|389756.696|81579.1842|1063789.3314$2026-01-23T19:27:20|389756.696|81579.1842|1063789.3314$2026-01-23T20:17:00|389756.696|81579.1842|1063789.3314$2026-01-23T21:06:40|389756.696|81579.1842|1063789.3314$2026-01-23T21:56:20|389756.696|81579.1842|1063789.3314$2026-01-23T22:46:00|389756.696|81579.1842|1063789.3314$2026-01-23T23:35:40|389756.696|81579.1842|1063789.3314$2026-01-24T00:25:20|389756.696|81579.1842|1063789.3314$2026-01-24T01:15:00|389756.696|81579.1842|1063789.3314$2026-01-24T02:04:40|389756.696|81579.1842|1063789.3314$2026-01-24T02:54:20|389756.696|81579.1842|1063789.3314$2026-01-24T03:44:00|389756.696|81579.1842|1063789.3314$2026-01-24T04:33:40|389756.696|81579.1842|1063789.3314$2026-01-24T05:23:20|389756.696|81579.1842|1063789.3314$2026-01-24T06:13:00|389756.696|81579.1842|1063789.3314$2026-01-24T07:02:40|389756.696|81579.1842|1063789.3314$2026-01-24T07:52:20|389756.696|81579.1842|1063789.3314$2026-01-24T08:42:00|389756.696|81579.1842|1063789.3314$2026-01-24T09:31:40|389756.696|81579.1842|1063789.3314$2026-01-24T10:21:20|389756.696|81579.1842|1063789.3314$2026-01-24T11:11:00|389756.696|81579.1842|1063789.3314$2026-01-24T12:00:40|389756.696|81579.1842|1063789.3314$2026-01-24T12:50:20|389756.696|81579.1842|1063789.3314$2026-01-24T13:40:00|389756.696|81579.1842|1063789.3314$2026-01-24T14:29:40|389756.696|81579.1842|1063789.3314$2026-01-24T15:19:20|389756.696|81579.1842|1063789.3314$2026-01-24T16:09:00|389756.696|81579.1842|1063789.3314$2026-01-24T16:58:40|389756.696|81579.1842|1063789.3314$2026-01-24T17:48:20|389756.696|81579.1842|1063789.3314$2026-01-24T18:38:00|389756.696|81579.1842|1063789.3314$2026-01-24T19:27:40|389756.696|81579.1842|1063789.3314$2026-01-24T20:17:20|389756.696|81579.1842|1063789.3314$2026-01-24T21:07:00|389756.696|81579.1842|1063789.3314$2026-01-24T21:56:40|389756.696|81579.1842|1063789.3314$2026-01-24T22:46:20|389756.696|81579.1842|1063789.3314$2026-01-24T23:36:00|389756.696|81579.1842|1063789.3314$2026-01-25T00:25:40|389756.696|81579.1842|1063789.3314$2026-01-25T01:15:20|389756.696|81579.1842|1063789.3314$2026-01-25T02:05:00|389756.696|81579.1842|1063789.3314$2026-01-25T02:54:40|389756.696|81579.1842|1063789.3314$2026-01-25T03:44:20|389756.696|81579.1842|1063789.3314$2026-01-25T04:34:00|389756.696|81579.1842|1063789.3314$2026-01-25T05:23:40|389756.696|81579.1842|1063789.3314$2026-01-25T06:13:20|389756.696|81579.1842|1063789.3314$2026-01-25T07:03:00|389756.696|81579.1842|1063789.3314$2026-01-25T07:52:40|389756.696|81579.1842|1063789.3314$2026-01-25T08:42:20|389756.696|81579.1842|1063789.3314$2026-01-25T09:32:00|389756.696|81579.1842|1063789.3314$2026-01-25T10:21:40|389756.696|81579.1842|1063789.3314$2026-01-25T11:11:20|389756.696|81579.1842|1063789.3314$2026-01-25T12:01:00|389756.696|81579.1842|1063789.3314$2026-01-25T12:50:40|389756.696|81579.1842|1063789.3314$2026-01-25T13:40:20|389756.696|81579.1842|1063789.3314$2026-01-25T14:30:00|389756.696|81579.1842|1063789.3314$2026-01-25T15:19:40|389756.696|81579.1842|1063789.3314$2026-01-25T16:09:20|389756.696|81579.1842|1063789.3314$2026-01-25T16:59:00|389756.696|81579.1842|1063789.3314$2026-01-25T17:48:40|389756.696|81579.1842|1063789.3314$2026-01-25T18:38:20|389756.696|81579.1842|1063789.3314$2026-01-25T19:28:00|389756.696|81579.1842|1063789.3314$2026-01-25T20:17:40|389756.696|81579.1842|1063789.3314$2026-01-25T21:07:20|389756.696|81579.1842|1063789.3314$2026-01-25T21:57:00|389756.696|81579.1842|1063789.3314$2026-01-25T22:46:40|389756.696|81579.1842|1063789.3314$2026-01-25T23:36:20|389756.696|81579.1842|1063789.3314$2026-01-26T00:26:00|389756.696|81579.1842|1063789.3314$2026-01-26T01:15:40|389756.696|81579.1842|1063789.3314$2026-01-26T02:05:20|389756.696|81579.1842|1063789.3314$2026-01-26T02:55:00|389756.696|81579.1842|1063789.3314$2026-01-26T03:44:40|389756.696|81579.1842|1063789.3314$2026-01-26T04:34:20|389756.696|81579.1842|1063789.3314$2026-01-26T05:24:00|389756.696|81579.1842|1063789.3314$2026-01-26T06:13:40|389756.696|81579.1842|1063789.3314$2026-01-26T07:03:20|389756.696|81579.1842|1063789.3314$2026-01-26T07:53:00|389756.696|81579.1842|1063789.3314$2026-01-26T08:42:40|389756.696|81579.1842|1063789.3314$2026-01-26T09:32:20|389756.696|81579.1842|1063789.3314$2026-01-26T10:22:00|389756.696|81579.1842|1063789.3314$2026-01-26T11:11:40|389756.696|81579.1842|1063789.3314$2026-01-26T12:01:20|389756.696|81579.1842|1063789.3314$2026-01-26T12:51:00|389756.696|81579.1842|1063789.3314$2026-01-26T13:40:40|389756.696|81579.1842|1063789.3314$2026-01-26T14:30:20|389756.696|81579.1842|1063789.3314$2026-01-26T15:20:00|389756.696|81579.1842|1063789.3314$2026-01-26T16:09:40|389756.696|81579.1842|1063789.3314$2026-01-26T16:59:20|389756.696|81579.1842|1063789.3314$2026-01-26T17:49:00|389756.696|81579.1842|1063789.3314$2026-01-26T18:38:40|389756.696|81579.1842|1063789.3314$2026-01-26T19:28:20|389756.696|81579.1842|1063789.3314$2026-01-26T20:18:00|389756.696|81579.1842|1063789.3314$2026-01-26T21:07:40|389756.696|81579.1842|1063789.3314$2026-01-26T21:57:20|389756.696|81579.1842|1063789.3314$2026-01-26T22:47:00|389756.696|81579.1842|1063789.3314$2026-01-26T23:36:40|389756.696|81579.1842|1063789.3314$2026-01-27T00:26:20|389756.696|81579.1842|1063789.3314$2026-01-27T01:16:00|389756.696|81579.1842|1063789.3314$2026-01-27T02:05:40|389756.696|81579.1842|1063789.3314$2026-01-27T02:55:20|389756.696|81579.1842|1063789.3314$2026-01-27T03:45:00|389756.696|81579.1842|1063789.3314$2026-01-27T04:34:40|389756.696|81579.1842|1063789.3314$2026-01-27T05:24:20|389756.696|81579.1842|1063789.3314$2026-01-27T06:14:00|389756.696|81579.1842|1063789.3314$2026-01-27T07:03:40|389756.696|81579.1842|1063789.3314$2026-01-27T07:53:20|389756.696|81579.1842|1063789.3314$2026-01-27T08:43:00|389756.696|81579.1842|1063789.3314$2026-01-27T09:32:40|389756.696|81579.1842|1063789.3314$2026-01-27T10:22:20|389756.696|81579.1842|1063789.3314$2026-01-27T11:12:00|389756.696|81579.1842|1063789.3314$2026-01-27T12:01:40|389756.696|81579.1842|1063789.3314$2026-01-27T12:51:20|389756.696|81579.1842|1063789.3314$2026-01-27T13:41:00|389756.696|81579.1842|1063789.3314$2026-01-27T14:30:40|389756.696|81579.1842|1063789.3314$2026-01-27T15:20:20|389756.696|81579.1842|1063789.3314$2026-01-27T16:10:00|389756.696|81579.1842|1063789.3314$2026-01-27T16:59:40|389756.696|81579.1842|1063789.3314$2026-01-27T17:49:20|389756.696|81579.1842|1063789.3314$2026-01-27T18:39:00|389756.696|81579.1842|1063789.3314$2026-01-27T19:28:40|389756.696|81579.1842|1063789.3314$2026-01-27T20:18:20|389756.696|81579.1842|1063789.3314$2026-01-27T21:08:00|389756.696|81579.1842|1063789.3314$2026-01-27T21:57:40|389756.696|81579.1842|1063789.3314$2026-01-27T22:47:20|389756.696|81579.1842|1063789.3314$2026-01-27T23:37:00|389756.696|81579.1842|1063789.3314$2026-01-28T00:26:40|389756.696|81579.1842|1063789.3314$2026-01-28T01:16:20|389756.696|81579.1842|1063789.3314$2026-01-28T02:06:00|389756.696|81579.1842|1063789.3314$2026-01-28T02:55:40|389756.696|81579.1842|1063789.3314$2026-01-28T03:45:20|389756.696|81579.1842|1063789.3314$2026-01-28T04:35:00|389756.696|81579.1842|1063789.3314$2026-01-28T05:24:40|389756.696|81579.1842|1063789.3314$2026-01-28T06:14:20|389756.696|81579.1842|1063789.3314$2026-01-28T07:04:00|389756.696|81579.1842|1063789.3314$2026-01-28T07:53:40|389756.696|81579.1842|1063789.3314$2026-01-28T08:43:20|389756.696|81579.1842|1063789.3314$2026-01-28T09:33:00|389756.696|81579.1842|1063789.3314$2026-01-28T10:22:40|389756.696|81579.1842|1063789.3314$2026-01-28T11:12:20|389756.696|81579.1842|1063789.3314$2026-01-28T12:02:00|389756.696|81579.1842|1063789.3314$2026-01-28T12:51:40|389756.696|81579.1842|1063789.3314$2026-01-28T13:41:20|389756.696|81579.1842|1063789.3314$2026-01-28T14:31:00|389756.696|81579.1842|1063789.3314$2026-01-28T15:20:40|389756.696|81579.1842|1063789.3314$2026-01-28T16:10:20|389756.696|81579.1842|1063789.3314$2026-01-28T17:00:00|389756.696|81579.1842|1063789.3314$2026-01-28T17:49:40|389756.696|81579.1842|1063789.3314$2026-01-28T18:39:20|389756.696|81579.1842|1063789.3314$2026-01-28T19:29:00|389756.696|81579.1842|1063789.3314$2026-01-28T20:18:40|389756.696|81579.1842|1063789.3314$2026-01-28T21:08:20|389756.696|81579.1842|1063789.3314$2026-01-28T21:58:00|389756.696|81579.1842|1063789.3314$2026-01-28T22:47:40|389756.696|81579.1842|1063789.3314$2026-01-28T23:37:20|389756.696|81579.1842|1063789.3314$2026-01-29T00:27:00|389756.696|81579.1842|1063789.3314$2026-01-29T01:16:40|389756.696|81579.1842|1063789.3314$2026-01-29T02:06:20|389756.696|81579.1842|1063789.3314$2026-01-29T02:56:00|389756.696|81579.1842|1063789.3314$2026-01-29T03:45:40|389756.696|81579.1842|1063789.3314$2026-01-29T04:35:20|389756.696|81579.1842|1063789.3314$2026-01-29T05:25:00|389756.696|81579.1842|1063789.3314$2026-01-29T06:14:40|389756.696|81579.1842|1063789.3314$2026-01-29T07:04:20|389756.696|81579.1842|1063789.3314$2026-01-29T07:54:00|389756.696|81579.1842|1063789.3314$2026-01-29T08:43:40|389756.696|81579.1842|1063789.3314$2026-01-29T09:33:20|389756.696|81579.1842|1063789.3314$2026-01-29T10:23:00|389756.696|81579.1842|1063789.3314$2026-01-29T11:12:40|389756.696|81579.1842|1063789.3314$2026-01-29T12:02:20|389756.696|81579.1842|1063789.3314$2026-01-29T12:52:00|389756.696|81579.1842|1063789.3314$2026-01-29T13:41:40|389756.696|81579.1842|1063789.3314$2026-01-29T14:31:20|389756.696|81579.1842|1063789.3314$2026-01-29T15:21:00|389756.696|81579.1842|1063789.3314$2026-01-29T16:10:40|389756.696|81579.1842|1063789.3314$2026-01-29T17:00:20|389756.696|81579.1842|1063789.3314$2026-01-29T17:50:00|389756.696|81579.1842|1063789.3314$2026-01-29T18:39:40|389756.696|81579.1842|1063789.3314$2026-01-29T19:29:20|389756.696|81579.1842|1063789.3314$2026-01-29T20:19:00|389756.696|81579.1842|1063789.3314$2026-01-29T21:08:40|389756.696|81579.1842|1063789.3314$2026-01-29T21:58:20|389756.696|81579.1842|1063789.3314$2026-01-29T22:48:00|389756.696|81579.1842|1063789.3314$2026-01-29T23:37:40|389756.696|81579.1842|1063789.3314$2026-01-30T00:27:20|389756.696|81579.1842|1063789.3314$2026-01-30T01:17:00|389756.696|81579.1842|1063789.3314$2026-01-30T02:06:40|389756.696|81579.1842|1063789.3314$2026-01-30T02:56:20|389756.696|81579.1842|1063789.3314$2026-01-30T03:46:00|389756.696|81579.1842|1063789.3314$2026-01-30T04:35:40|389756.696|81579.1842|1063789.3314$2026-01-30T05:25:20|389756.696|81579.1842|1063789.3314$2026-01-30T06:15:00|389756.696|81579.1842|1063789.3314$2026-01-30T07:04:40|389756.696|81579.1842|1063789.3314$2026-01-30T07:54:20|389756.696|81579.1842|1063789.3314$2026-01-30T08:44:00|389756.696|81579.1842|1063789.3314$2026-01-30T09:33:40|389756.696|81579.1842|1063789.3314$2026-01-30T10:23:20|389756.696|81579.1842|1063789.3314$2026-01-30T11:13:00|389756.696|81579.1842|1063789.3314$2026-01-30T12:02:40|389756.696|81579.1842|1063789.3314$2026-01-30T12:52:20|389756.696|81579.1842|1063789.3314$2026-01-30T13:42:00|389756.696|81579.1842|1063789.3314$2026-01-30T14:31:40|389756.696|81579.1842|1063789.3314$2026-01-30T15:21:20|389756.696|81579.1842|1063789.3314$2026-01-30T16:11:00|389756.696|81579.1842|1063789.3314$2026-01-30T17:00:40|389756.696|81579.1842|1063789.3314$2026-01-30T17:50:20|389756.696|81579.1842|1063789.3314$2026-01-30T18:40:00|389756.696|81579.1842|1063789.3314$2026-01-30T19:29:40|389756.696|81579.1842|1063789.3314$2026-01-30T20:19:20|389756.696|81579.1842|1063789.3314$2026-01-30T21:09:00|389756.696|81579.1842|1063789.3314$2026-01-30T21:58:40|389756.696|81579.1842|1063789.3314$2026-01-30T22:48:20|389756.696|81579.1842|1063789.3314$2026-01-30T23:38:00|389756.696|81579.1842|1063789.3314$2026-01-31T00:27:40|389756.696|81579.1842|1063789.3314$2026-01-31T01:17:20|389756.696|81579.1842|1063789.3314$2026-01-31T02:07:00|389756.696|81579.1842|1063789.3314$2026-01-31T02:56:40|389756.696|81579.1842|1063789.3314$2026-01-31T03:46:20|389756.696|81579.1842|1063789.3314$2026-01-31T04:36:00|389756.696|81579.1842|1063789.3314$2026-01-31T05:25:40|389756.696|81579.1842|1063789.3314$2026-01-31T06:15:20|389756.696|81579.1842|1063789.3314$2026-01-31T07:05:00|389756.696|81579.1842|1063789.3314$2026-01-31T07:54:40|389756.696|81579.1842|1063789.3314$2026-01-31T08:44:20|389756.696|81579.1842|1063789.3314$2026-01-31T09:34:00|389756.696|81579.1842|1063789.3314$2026-01-31T10:23:40|389756.696|81579.1842|1063789.3314$2026-01-31T11:13:20|389756.696|81579.1842|1063789.3314$2026-01-31T12:03:00|389756.696|81579.1842|1063789.3314$2026-01-31T12:52:40|389756.696|81579.1842|1063789.3314$2026-01-31T13:42:20|389756.696|81579.1842|1063789.3314$2026-01-31T14:32:00|389756.696|81579.1842|1063789.3314$2026-01-31T15:21:40|389756.696|81579.1842|1063789.3314$2026-01-31T16:11:20|389756.696|81579.1842|1063789.3314$2026-01-31T17:01:00|389756.696|81579.1842|1063789.3314$2026-01-31T17:50:40|389756.696|81579.1842|1063789.3314$2026-01-31T18:40:20|389756.696|81579.1842|1063789.3314$2026-01-31T19:30:00|389756.696|81579.1842|1063789.3314$2026-01-31T20:19:40|389756.696|81579.1842|1063789.3314$2026-01-31T21:09:20|389756.696|81579.1842|1063789.3314$2026-01-31T21:59:00|389756.696|81579.1842|1063789.3314$2026-01-31T22:48:40|389756.696|81579.1842|1063789.3314$2026-01-31T23:38:20|389756.696|81579.1842|1063789.3314$2026-02-01T00:28:00|389756.696|81579.1842|1063789.3314$2026-02-01T01:17:40|389756.696|81579.1842|1063789.3314$2026-02-01T02:07:20|389756.696|81579.1842|1063789.3314$2026-02-01T02:57:00|389756.696|81579.1842|1063789.3314$2026-02-01T03:46:40|389756.696|81579.1842|1063789.3314$2026-02-01T04:36:20|389756.696|81579.1842|1063789.3314$2026-02-01T05:26:00|389756.696|81579.1842|1063789.3314$2026-02-01T06:15:40|389756.696|81579.1842|1063789.3314$2026-02-01T07:05:20|389756.696|81579.1842|1063789.3314$2026-02-01T07:55:00|389756.696|81579.1842|1063789.3314$2026-02-01T08:44:40|389756.696|81579.1842|1063789.3314$2026-02-01T09:34:20|389756.696|81579.1842|1063789.3314$2026-02-01T10:24:00|389756.696|81579.1842|1063789.3314$2026-02-01T11:13:40|389756.696|81579.1842|1063789.3314$2026-02-01T12:03:20|389756.696|81579.1842|1063789.3314$2026-02-01T12:53:00|389756.696|81579.1842|1063789.3314$2026-02-01T13:42:40|389756.696|81579.1842|1063789.3314$2026-02-01T14:32:20|389756.696|81579.1842|1063789.3314$2026-02-01T15:22:00|389756.696|81579.1842|1063789.3314$2026-02-01T16:11:40|389756.696|81579.1842|1063789.3314$2026-02-01T17:01:20|389756.696|81579.1842|1063789.3314$2026-02-01T17:51:00|389756.696|81579.1842|1063789.3314$2026-02-01T18:40:40|389756.696|81579.1842|1063789.3314$2026-02-01T19:30:20|389756.696|81579.1842|1063789.3314$2026-02-01T20:20:00|389756.696|81579.1842|1063789.3314$2026-02-01T21:09:40|389756.696|81579.1842|1063789.3314$2026-02-01T21:59:20|389756.696|81579.1842|1063789.3314$2026-02-01T22:49:00|389756.696|81579.1842|1063789.3314$2026-02-01T23:38:40|389756.696|81579.1842|1063789.3314$2026-02-02T00:28:20|389756.696|81579.1842|1063789.3314$2026-02-02T01:18:00|389756.696|81579.1842|1063789.3314$2026-02-02T02:07:40|389756.696|81579.1842|1063789.3314$2026-02-02T02:57:20|389756.696|81579.1842|1063789.3314$2026-02-02T03:47:00|389756.696|81579.1842|1063789.3314$2026-02-02T04:36:40|389756.696|81579.1842|1063789.3314$2026-02-02T05:26:20|389756.696|81579.1842|1063789.3314$2026-02-02T06:16:00|389756.696|81579.1842|1063789.3314$2026-02-02T07:05:40|389756.696|81579.1842|1063789.3314$2026-02-02T07:55:20|389756.696|81579.1842|1063789.3314$2026-02-02T08:45:00|389756.696|81579.1842|1063789.3314$2026-02-02T09:34:40|389756.696|81579.1842|1063789.3314$2026-02-02T10:24:20|389756.696|81579.1842|1063789.3314$2026-02-02T11:14:00|389756.696|81579.1842|1063789.3314$2026-02-02T12:03:40|389756.696|81579.1842|1063789.3314$2026-02-02T12:53:20|389756.696|81579.1842|1063789.3314$2026-02-02T13:43:00|389756.696|81579.1842|1063789.3314$2026-02-02T14:32:40|389756.696|81579.1842|1063789.3314$2026-02-02T15:22:20|389756.696|81579.1842|1063789.3314$2026-02-02T16:12:00|389756.696|81579.1842|1063789.3314$2026-02-02T17:01:40|389756.696|81579.1842|1063789.3314$2026-02-02T17:51:20|389756.696|81579.1842|1063789.3314$2026-02-02T18:41:00|389756.696|81579.1842|1063789.3314$2026-02-02T19:30:40|389756.696|81579.1842|1063789.3314$2026-02-02T20:20:20|389756.696|81579.1842|1063789.3314$2026-02-02T21:10:00|389756.696|81579.1842|1063789.3314$2026-02-02T21:59:40|389756.696|81579.1842|1063789.3314$2026-02-02T22:49:20|389756.696|81579.1842|1063789.3314$2026-02-02T23:39:00|389756.696|81579.1842|1063789.3314$2026-02-03T00:28:40|389756.696|81579.1842|1063789.3314$2026-02-03T01:18:20|389756.696|81579.1842|1063789.3314$2026-02-03T02:08:00|389756.696|81579.1842|1063789.3314$2026-02-03T02:57:40|389756.696|81579.1842|1063789.3314$2026-02-03T03:47:20|389756.696|81579.1842|1063789.3314$2026-02-03T04:37:00|389756.696|81579.1842|1063789.3314$2026-02-03T05:26:40|389756.696|81579.1842|1063789.3314$2026-02-03T06:16:20|389756.696|81579.1842|1063789.3314$2026-02-03T07:06:00|389756.696|81579.1842|1063789.3314$2026-02-03T07:55:40|389756.696|81579.1842|1063789.3314$2026-02-03T08:45:20|389756.696|81579.1842|1063789.3314$2026-02-03T09:35:00|389756.696|81579.1842|1063789.3314$2026-02-03T10:24:40|389756.696|81579.1842|1063789.3314$2026-02-03T11:14:20|389756.696|81579.1842|1063789.3314$2026-02-03T12:04:00|389756.696|81579.1842|1063789.3314$2026-02-03T12:53:40|389756.696|81579.1842|1063789.3314$2026-02-03T13:43:20|389756.696|81579.1842|1063789.3314$2026-02-03T14:33:00|389756.696|81579.1842|1063789.3314$2026-02-03T15:22:40|389756.696|81579.1842|1063789.3314$2026-02-03T16:12:20|389756.696|81579.1842|1063789.3314$2026-02-03T17:02:00|389756.696|81579.1842|1063789.3314$2026-02-03T17:51:40|389756.696|81579.1842|1063789.3314$2026-02-03T18:41:20|389756.696|81579.1842|1063789.3314$2026-02-03T19:31:00|389756.696|81579.1842|1063789.3314$2026-02-03T20:20:40|389756.696|81579.1842|1063789.3314$2026-02-03T21:10:20|389756.696|81579.1842|1063789.3314$2026-02-03T22:00:00|389756.696|81579.1842|1063789.3314$2026-02-03T22:49:40|389756.696|81579.1842|1063789.3314$2026-02-03T23:39:20|389756.696|81579.1842|1063789.3314$2026-02-04T00:29:00|389756.696|81579.1842|1063789.3314$2026-02-04T01:18:40|389756.696|81579.1842|1063789.3314$2026-02-04T02:08:20|389756.696|81579.1842|1063789.3314$2026-02-04T02:58:00|389756.696|81579.1842|1063789.3314$2026-02-04T03:47:40|389756.696|81579.1842|1063789.3314$2026-02-04T04:37:20|389756.696|81579.1842|1063789.3314$2026-02-04T05:27:00|389756.696|81579.1842|1063789.3314$2026-02-04T06:16:40|389756.696|81579.1842|1063789.3314$2026-02-04T07:06:20|389756.696|81579.1842|1063789.3314$2026-02-04T07:56:00|389756.696|81579.1842|1063789.3314$2026-02-04T08:45:40|389756.696|81579.1842|1063789.3314$2026-02-04T09:35:20|389756.696|81579.1842|1063789.3314$2026-02-04T10:25:00|389756.696|81579.1842|1063789.3314$2026-02-04T11:14:40|389756.696|81579.1842|1063789.3314$2026-02-04T12:04:20|389756.696|81579.1842|1063789.3314$2026-02-04T12:54:00|389756.696|81579.1842|1063789.3314$2026-02-04T13:43:40|389756.696|81579.1842|1063789.3314$2026-02-04T14:33:20|389756.696|81579.1842|1063789.3314$2026-02-04T15:23:00|389756.696|81579.1842|1063789.3314$2026-02-04T16:12:40|389756.696|81579.1842|1063789.3314$2026-02-04T17:02:20|389756.696|81579.1842|1063789.3314$2026-02-04T17:52:00|389756.696|81579.1842|1063789.3314$2026-02-04T18:41:40|389756.696|81579.1842|1063789.3314$2026-02-04T19:31:20|389756.696|81579.1842|1063789.3314$2026-02-04T20:21:00|389756.696|81579.1842|1063789.3314$2026-02-04T21:10:40|389756.696|81579.1842|1063789.3314$2026-02-04T22:00:20|389756.696|81579.1842|1063789.3314$2026-02-04T22:50:00|389756.696|81579.1842|1063789.3314$2026-02-04T23:39:40|389756.696|81579.1842|1063789.3314$2026-02-05T00:29:20|389756.696|81579.1842|1063789.3314$2026-02-05T01:19:00|389756.696|81579.1842|1063789.3314$2026-02-05T02:08:40|389756.696|81579.1842|1063789.3314$2026-02-05T02:58:20|389756.696|81579.1842|1063789.3314$2026-02-05T03:48:00|389756.696|81579.1842|1063789.3314$2026-02-05T04:37:40|389756.696|81579.1842|1063789.3314$2026-02-05T05:27:20|389756.696|81579.1842|1063789.3314$2026-02-05T06:17:00|389756.696|81579.1842|1063789.3314$2026-02-05T07:06:40|389756.696|81579.1842|1063789.3314$2026-02-05T07:56:20|389756.696|81579.1842|1063789.3314$2026-02-05T08:46:00|389756.696|81579.1842|1063789.3314$2026-02-05T09:35:40|389756.696|81579.1842|1063789.3314$2026-02-05T10:25:20|389756.696|81579.1842|1063789.3314$2026-02-05T11:15:00|389756.696|81579.1842|1063789.3314$2026-02-05T12:04:40|389756.696|81579.1842|1063789.3314$2026-02-05T12:54:20|389756.696|81579.1842|1063789.3314$2026-02-05T13:44:00|389756.696|81579.1842|1063789.3314$2026-02-05T14:33:40|389756.696|81579.1842|1063789.3314$2026-02-05T15:23:20|389756.696|81579.1842|1063789.3314$2026-02-05T16:13:00|389756.696|81579.1842|1063789.3314$2026-02-05T17:02:40|389756.696|81579.1842|1063789.3314$2026-02-05T17:52:20|389756.696|81579.1842|1063789.3314$2026-02-05T18:42:00|389756.696|81579.1842|1063789.3314$2026-02-05T19:31:40|389756.696|81579.1842|1063789.3314$2026-02-05T20:21:20|389756.696|81579.1842|1063789.3314$2026-02-05T21:11:00|389756.696|81579.1842|1063789.3314$2026-02-05T22:00:40|389756.696|81579.1842|1063789.3314$2026-02-05T22:50:20|389756.696|81579.1842|1063789.3314$2026-02-05T23:40:00|389756.696|81579.1842|1063789.3314$2026-02-06T00:29:40|389756.696|81579.1842|1063789.3314$2026-02-06T01:19:20|389756.696|81579.1842|1063789.3314$2026-02-06T02:09:00|389756.696|81579.1842|1063789.3314$2026-02-06T02:58:40|389756.696|81579.1842|1063789.3314$2026-02-06T03:48:20|389756.696|81579.1842|1063789.3314$2026-02-06T04:38:00|389756.696|81579.1842|1063789.3314$2026-02-06T05:27:40|389756.696|81579.1842|1063789.3314$2026-02-06T06:17:20|389756.696|81579.1842|1063789.3314$2026-02-06T07:07:00|389756.696|81579.1842|1063789.3314$2026-02-06T07:56:40|389756.696|81579.1842|1063789.3314$2026-02-06T08:46:20|389756.696|81579.1842|1063789.3314$2026-02-06T09:36:00|389756.696|81579.1842|1063789.3314$2026-02-06T10:25:40|389756.696|81579.1842|1063789.3314$2026-02-06T11:15:20|389756.696|81579.1842|1063789.3314$2026-02-06T12:05:00|389756.696|81579.1842|1063789.3314$2026-02-06T12:54:40|389756.696|81579.1842|1063789.3314$2026-02-06T13:44:20|389756.696|81579.1842|1063789.3314$2026-02-06T14:34:00|389756.696|81579.1842|1063789.3314$2026-02-06T15:23:40|389756.696|81579.1842|1063789.3314$2026-02-06T16:13:20|389756.696|81579.1842|1063789.3314$2026-02-06T17:03:00|389756.696|81579.1842|1063789.3314$2026-02-06T17:52:40|389756.696|81579.1842|1063789.3314$2026-02-06T18:42:20|389756.696|81579.1842|1063789.3314$2026-02-06T19:32:00|389756.696|81579.1842|1063789.3314$2026-02-06T20:21:40|389756.696|81579.1842|1063789.3314$2026-02-06T21:11:20|389756.696|81579.1842|1063789.3314$2026-02-06T22:01:00|389756.696|81579.1842|1063789.3314$2026-02-06T22:50:40|389756.696|81579.1842|1063789.3314$2026-02-06T23:40:20|389756.696|81579.1842|1063789.3314$2026-02-07T00:30:00|389756.696|81579.1842|1063789.3314$2026-02-07T01:19:40|389756.696|81579.1842|1063789.3314$2026-02-07T02:09:20|389756.696|81579.1842|1063789.3314$2026-02-07T02:59:00|389756.696|81579.1842|1063789.3314$2026-02-07T03:48:40|389756.696|81579.1842|1063789.3314$2026-02-07T04:38:20|389756.696|81579.1842|1063789.3314$2026-02-07T05:28:00|389756.696|81579.1842|1063789.3314$2026-02-07T06:17:40|389756.696|81579.1842|1063789.3314$2026-02-07T07:07:20|389756.696|81579.1842|1063789.3314$2026-02-07T07:57:00|389756.696|81579.1842|1063789.3314$2026-02-07T08:46:40|389756.696|81579.1842|1063789.3314$2026-02-07T09:36:20|389756.696|81579.1842|1063789.3314$2026-02-07T10:26:00|389756.696|81579.1842|1063789.3314$2026-02-07T11:15:40|389756.696|81579.1842|1063789.3314$2026-02-07T12:05:20|389756.696|81579.1842|1063789.3314$2026-02-07T12:55:00|389756.696|81579.1842|1063789.3314$2026-02-07T13:44:40|389756.696|81579.1842|1063789.3314$2026-02-07T14:34:20|389756.696|81579.1842|1063789.3314$2026-02-07T15:24:00|389756.696|81579.1842|1063789.3314$2026-02-07T16:13:40|389756.696|81579.1842|1063789.3314$2026-02-07T17:03:20|389756.696|81579.1842|1063789.3314$2026-02-07T17:53:00|389756.696|81579.1842|1063789.3314$2026-02-07T18:42:40|389756.696|81579.1842|1063789.3314$2026-02-07T19:32:20|389756.696|81579.1842|1063789.3314$2026-02-07T20:22:00|389756.696|81579.1842|1063789.3314$2026-02-07T21:11:40|389756.696|81579.1842|1063789.3314$2026-02-07T22:01:20|389756.696|81579.1842|1063789.3314$2026-02-07T22:51:00|389756.696|81579.1842|1063789.3314$2026-02-07T23:40:40|389756.696|81579.1842|1063789.3314$2026-02-08T00:30:20|389756.696|81579.1842|1063789.3314$2026-02-08T01:20:00|389756.696|81579.1842|1063789.3314$2026-02-08T02:09:40|389756.696|81579.1842|1063789.3314$2026-02-08T02:59:20|389756.696|81579.1842|1063789.3314$2026-02-08T03:49:00|389756.696|81579.1842|1063789.3314$2026-02-08T04:38:40|389756.696|81579.1842|1063789.3314$2026-02-08T05:28:20|389756.696|81579.1842|1063789.3314$2026-02-08T06:18:00|389756.696|81579.1842|1063789.3314$2026-02-08T07:07:40|389756.696|81579.1842|1063789.3314$2026-02-08T07:57:20|389756.696|81579.1842|1063789.3314$2026-02-08T08:47:00|389756.696|81579.1842|1063789.3314$2026-02-08T09:36:40|389756.696|81579.1842|1063789.3314$2026-02-08T10:26:20|389756.696|81579.1842|1063789.3314$2026-02-08T11:16:00|389756.696|81579.1842|1063789.3314$2026-02-08T12:05:40|389756.696|81579.1842|1063789.3314$2026-02-08T12:55:20|389756.696|81579.1842|1063789.3314$2026-02-08T13:45:00|389756.696|81579.1842|1063789.3314$2026-02-08T14:34:40|389756.696|81579.1842|1063789.3314$2026-02-08T15:24:20|389756.696|81579.1842|1063789.3314$2026-02-08T16:14:00|389756.696|81579.1842|1063789.3314$2026-02-08T17:03:40|389756.696|81579.1842|1063789.3314$2026-02-08T17:53:20|389756.696|81579.1842|1063789.3314$2026-02-08T18:43:00|389756.696|81579.1842|1063789.3314$2026-02-08T19:32:40|389756.696|81579.1842|1063789.3314$2026-02-08T20:22:20|389756.696|81579.1842|1063789.3314$2026-02-08T21:12:00|389756.696|81579.1842|1063789.3314$2026-02-08T22:01:40|389756.696|81579.1842|1063789.3314$2026-02-08T22:51:20|389756.696|81579.1842|1063789.3314$2026-02-08T23:41:00|389756.696|81579.1842|1063789.3314$2026-02-09T00:30:40|389756.696|81579.1842|1063789.3314$2026-02-09T01:20:20|389756.696|81579.1842|1063789.3314$2026-02-09T02:10:00|389756.696|81579.1842|1063789.3314$2026-02-09T02:59:40|389756.696|81579.1842|1063789.3314$2026-02-09T03:49:20|389756.696|81579.1842|1063789.3314$2026-02-09T04:39:00|389756.696|81579.1842|1063789.3314$2026-02-09T05:28:40|389756.696|81579.1842|1063789.3314$2026-02-09T06:18:20|389756.696|81579.1842|1063789.3314$2026-02-09T07:08:00|389756.696|81579.1842|1063789.3314$2026-02-09T07:57:40|389756.696|81579.1842|1063789.3314$2026-02-09T08:47:20|389756.696|81579.1842|1063789.3314$2026-02-09T09:37:00|389756.696|81579.1842|1063789.3314$2026-02-09T10:26:40|389756.696|81579.1842|1063789.3314$2026-02-09T11:16:20|389756.696|81579.1842|1063789.3314$2026-02-09T12:06:00|389756.696|81579.1842|1063789.3314$2026-02-09T12:55:40|389756.696|81579.1842|1063789.3314$2026-02-09T13:45:20|389756.696|81579.1842|1063789.3314$2026-02-09T14:35:00|389756.696|81579.1842|1063789.3314$2026-02-09T15:24:40|389756.696|81579.1842|1063789.3314$2026-02-09T16:14:20|389756.696|81579.1842|1063789.3314$2026-02-09T17:04:00|389756.696|81579.1842|1063789.3314$2026-02-09T17:53:40|389756.696|81579.1842|1063789.3314$2026-02-09T18:43:20|389756.696|81579.1842|1063789.3314$2026-02-09T19:33:00|389756.696|81579.1842|1063789.3314$2026-02-09T20:22:40|389756.696|81579.1842|1063789.3314$2026-02-09T21:12:20|389756.696|81579.1842|1063789.3314$2026-02-09T22:02:00|389756.696|81579.1842|1063789.3314$2026-02-09T22:51:40|389756.696|81579.1842|1063789.3314$2026-02-09T23:41:20|389756.696|81579.1842|1063789.3314$2026-02-10T00:31:00|389756.696|81579.1842|1063789.3314$2026-02-10T01:20:40|389756.696|81579.1842|1063789.3314$2026-02-10T02:10:20|389756.696|81579.1842|1063789.3314$2026-02-10T03:00:00|389756.696|81579.1842|1063789.3314$2026-02-10T03:49:40|389756.696|81579.1842|1063789.3314$2026-02-10T04:39:20|389756.696|81579.1842|1063789.3314$2026-02-10T05:29:00|389756.696|81579.1842|1063789.3314$2026-02-10T06:18:40|389756.696|81579.1842|1063789.3314$2026-02-10T07:08:20|389756.696|81579.1842|1063789.3314$2026-02-10T07:58:00|389756.696|81579.1842|1063789.3314$2026-02-10T08:47:40|389756.696|81579.1842|1063789.3314$2026-02-10T09:37:20|389756.696|81579.1842|1063789.3314$2026-02-10T10:27:00|389756.696|81579.1842|1063789.3314$2026-02-10T11:16:40|389756.696|81579.1842|1063789.3314$2026-02-10T12:06:20|389756.696|81579.1842|1063789.3314$2026-02-10T12:56:00|389756.696|81579.1842|1063789.3314$2026-02-10T13:45:40|389756.696|81579.1842|1063789.3314$2026-02-10T14:35:20|389756.696|81579.1842|1063789.3314$2026-02-10T15:25:00|389756.696|81579.1842|1063789.3314$2026-02-10T16:14:40|389756.696|81579.1842|1063789.3314$2026-02-10T17:04:20|389756.696|81579.1842|1063789.3314$2026-02-10T17:54:00|389756.696|81579.1842|1063789.3314$2026-02-10T18:43:40|389756.696|81579.1842|1063789.3314$2026-02-10T19:33:20|389756.696|81579.1842|1063789.3314$2026-02-10T20:23:00|389756.696|81579.1842|1063789.3314$2026-02-10T21:12:40|389756.696|81579.1842|1063789.3314$2026-02-10T22:02:20|389756.696|81579.1842|1063789.3314$2026-02-10T22:52:00|389756.696|81579.1842|1063789.3314$2026-02-10T23:41:40|389756.696|81579.1842|1063789.3314$2026-02-11T00:31:20|389756.696|81579.1842|1063789.3314$2026-02-11T01:21:00|389756.696|81579.1842|1063789.3314$2026-02-11T02:10:40|389756.696|81579.1842|1063789.3314$2026-02-11T03:00:20|389756.696|81579.1842|1063789.3314$2026-02-11T03:50:00|389756.696|81579.1842|1063789.3314$2026-02-11T04:39:40|389756.696|81579.1842|1063789.3314$2026-02-11T05:29:20|389756.696|81579.1842|1063789.3314$2026-02-11T06:19:00|389756.696|81579.1842|1063789.3314$2026-02-11T07:08:40|389756.696|81579.1842|1063789.3314$2026-02-11T07:58:20|389756.696|81579.1842|1063789.3314$2026-02-11T08:48:00|389756.696|81579.1842|1063789.3314$2026-02-11T09:37:40|389756.696|81579.1842|1063789.3314$2026-02-11T10:27:20|389756.696|81579.1842|1063789.3314$2026-02-11T11:17:00|389756.696|81579.1842|1063789.3314$2026-02-11T12:06:40|389756.696|81579.1842|1063789.3314$2026-02-11T12:56:20|389756.696|81579.1842|1063789.3314$2026-02-11T13:46:00|389756.696|81579.1842|1063789.3314$2026-02-11T14:35:40|389756.696|81579.1842|1063789.3314$2026-02-11T15:25:20|389756.696|81579.1842|1063789.3314$2026-02-11T16:15:00|389756.696|81579.1842|1063789.3314$2026-02-11T17:04:40|389756.696|81579.1842|1063789.3314$2026-02-11T17:54:20|389756.696|81579.1842|1063789.3314$2026-02-11T18:44:00|389756.696|81579.1842|1063789.3314$2026-02-11T19:33:40|389756.696|81579.1842|1063789.3314$2026-02-11T20:23:20|389756.696|81579.1842|1063789.3314$2026-02-11T21:13:00|389756.696|81579.1842|1063789.3314$2026-02-11T22:02:40|389756.696|81579.1842|1063789.3314$2026-02-11T22:52:20|389756.696|81579.1842|1063789.3314$2026-02-11T23:42:00|389756.696|81579.1842|1063789.3314$2026-02-12T00:31:40|389756.696|81579.1842|1063789.3314$2026-02-12T01:21:20|389756.696|81579.1842|1063789.3314$2026-02-12T02:11:00|389756.696|81579.1842|1063789.3314$2026-02-12T03:00:40|389756.696|81579.1842|1063789.3314$2026-02-12T03:50:20|389756.696|81579.1842|1063789.3314$2026-02-12T04:40:00|389756.696|81579.1842|1063789.3314$2026-02-12T05:29:40|389756.696|81579.1842|1063789.3314$2026-02-12T06:19:20|389756.696|81579.1842|1063789.3314$2026-02-12T07:09:00|389756.696|81579.1842|1063789.3314$2026-02-12T07:58:40|389756.696|81579.1842|1063789.3314$2026-02-12T08:48:20|389756.696|81579.1842|1063789.3314$2026-02-12T09:38:00|389756.696|81579.1842|1063789.3314$2026-02-12T10:27:40|389756.696|81579.1842|1063789.3314$2026-02-12T11:17:20|389756.696|81579.1842|1063789.3314$2026-02-12T12:07:00|389756.696|81579.1842|1063789.3314$2026-02-12T12:56:40|389756.696|81579.1842|1063789.3314$2026-02-12T13:46:20|389756.696|81579.1842|1063789.3314$2026-02-12T14:36:00|389756.696|81579.1842|1063789.3314$2026-02-12T15:25:40|389756.696|81579.1842|1063789.3314$2026-02-12T16:15:20|389756.696|81579.1842|1063789.3314$2026-02-12T17:05:00|389756.696|81579.1842|1063789.3314$2026-02-12T17:54:40|389756.696|81579.1842|1063789.3314$2026-02-12T18:44:20|389756.696|81579.1842|1063789.3314$2026-02-12T19:34:00|389756.696|81579.1842|1063789.3314$2026-02-12T20:23:40|389756.696|81579.1842|1063789.3314$2026-02-12T21:13:20|389756.696|81579.1842|1063789.3314$2026-02-12T22:03:00|389756.696|81579.1842|1063789.3314$2026-02-12T22:52:40|389756.696|81579.1842|1063789.3314$2026-02-12T23:42:20|389756.696|81579.1842|1063789.3314$2026-02-13T00:32:00|389756.696|81579.1842|1063789.3314$2026-02-13T01:21:40|389756.696|81579.1842|1063789.3314$2026-02-13T02:11:20|389756.696|81579.1842|1063789.3314$2026-02-13T03:01:00|389756.696|81579.1842|1063789.3314$2026-02-13T03:50:40|389756.696|81579.1842|1063789.3314$2026-02-13T04:40:20|389756.696|81579.1842|1063789.3314$2026-02-13T05:30:00|389756.696|81579.1842|1063789.3314$2026-02-13T06:19:40|389756.696|81579.1842|1063789.3314$2026-02-13T07:09:20|389756.696|81579.1842|1063789.3314$2026-02-13T07:59:00|389756.696|81579.1842|1063789.3314$2026-02-13T08:48:40|389756.696|81579.1842|1063789.3314$2026-02-13T09:38:20|389756.696|81579.1842|1063789.3314$2026-02-13T10:28:00|389756.696|81579.1842|1063789.3314$2026-02-13T11:17:40|389756.696|81579.1842|1063789.3314$2026-02-13T12:07:20|389756.696|81579.1842|1063789.3314$2026-02-13T12:57:00|389756.696|81579.1842|1063789.3314$2026-02-13T13:46:40|389756.696|81579.1842|1063789.3314$2026-02-13T14:36:20|389756.696|81579.1842|1063789.3314$2026-02-13T15:26:00|389756.696|81579.1842|1063789.3314$2026-02-13T16:15:40|389756.696|81579.1842|1063789.3314$2026-02-13T17:05:20|389756.696|81579.1842|1063789.3314$2026-02-13T17:55:00|389756.696|81579.1842|1063789.3314$2026-02-13T18:44:40|389756.696|81579.1842|1063789.3314$2026-02-13T19:34:20|389756.696|81579.1842|1063789.3314$2026-02-13T20:24:00|389756.696|81579.1842|1063789.3314$2026-02-13T21:13:40|389756.696|81579.1842|1063789.3314$2026-02-13T22:03:20|389756.696|81579.1842|1063789.3314$2026-02-13T22:53:00|389756.696|81579.1842|1063789.3314$2026-02-13T23:42:40|389756.696|81579.1842|1063789.3314$2026-02-14T00:32:20|389756.696|81579.1842|1063789.3314$2026-02-14T01:22:00|389756.696|81579.1842|1063789.3314$2026-02-14T02:11:40|389756.696|81579.1842|1063789.3314$2026-02-14T03:01:20|389756.696|81579.1842|1063789.3314$2026-02-14T03:51:00|389756.696|81579.1842|1063789.3314$2026-02-14T04:40:40|389756.696|81579.1842|1063789.3314$2026-02-14T05:30:20|389756.696|81579.1842|1063789.3314$2026-02-14T06:20:00|389756.696|81579.1842|1063789.3314$2026-02-14T07:09:40|389756.696|81579.1842|1063789.3314$2026-02-14T07:59:20|389756.696|81579.1842|1063789.3314$2026-02-14T08:49:00|389756.696|81579.1842|1063789.3314$2026-02-14T09:38:40|389756.696|81579.1842|1063789.3314$2026-02-14T10:28:20|389756.696|81579.1842|1063789.3314$2026-02-14T11:18:00|389756.696|81579.1842|1063789.3314$2026-02-14T12:07:40|389756.696|81579.1842|1063789.3314$2026-02-14T12:57:20|389756.696|81579.1842|1063789.3314$2026-02-14T13:47:00|389756.696|81579.1842|1063789.3314$2026-02-14T14:36:40|389756.696|81579.1842|1063789.3314$2026-02-14T15:26:20|389756.696|81579.1842|1063789.3314$2026-02-14T16:16:00|389756.696|81579.1842|1063789.3314$2026-02-14T17:05:40|389756.696|81579.1842|1063789.3314$2026-02-14T17:55:20|389756.696|81579.1842|1063789.3314$2026-02-14T18:45:00|389756.696|81579.1842|1063789.3314$2026-02-14T19:34:40|389756.696|81579.1842|1063789.3314$2026-02-14T20:24:20|389756.696|81579.1842|1063789.3314$2026-02-14T21:14:00|389756.696|81579.1842|1063789.3314$2026-02-14T22:03:40|389756.696|81579.1842|1063789.3314$2026-02-14T22:53:20|389756.696|81579.1842|1063789.3314$2026-02-14T23:43:00|389756.696|81579.1842|1063789.3314$2026-02-15T00:32:40|389756.696|81579.1842|1063789.3314$2026-02-15T01:22:20|389756.696|81579.1842|1063789.3314$2026-02-15T02:12:00|389756.696|81579.1842|1063789.3314$2026-02-15T03:01:40|389756.696|81579.1842|1063789.3314$2026-02-15T03:51:20|389756.696|81579.1842|1063789.3314$2026-02-15T04:41:00|389756.696|81579.1842|1063789.3314$2026-02-15T05:30:40|389756.696|81579.1842|1063789.3314$2026-02-15T06:20:20|389756.696|81579.1842|1063789.3314$2026-02-15T07:10:00|389756.696|81579.1842|1063789.3314$2026-02-15T07:59:40|389756.696|81579.1842|1063789.3314$2026-02-15T08:49:20|389756.696|81579.1842|1063789.3314$2026-02-15T09:39:00|389756.696|81579.1842|1063789.3314$2026-02-15T10:28:40|389756.696|81579.1842|1063789.3314$2026-02-15T11:18:20|389756.696|81579.1842|1063789.3314$2026-02-15T12:08:00|389756.696|81579.1842|1063789.3314$2026-02-15T12:57:40|389756.696|81579.1842|1063789.3314$2026-02-15T13:47:20|389756.696|81579.1842|1063789.3314$2026-02-15T14:37:00|389756.696|81579.1842|1063789.3314$2026-02-15T15:26:40|389756.696|81579.1842|1063789.3314$2026-02-15T16:16:20|389756.696|81579.1842|1063789.3314$2026-02-15T17:06:00|389756.696|81579.1842|1063789.3314$2026-02-15T17:55:40|389756.696|81579.1842|1063789.3314$2026-02-15T18:45:20|389756.696|81579.1842|1063789.3314$2026-02-15T19:35:00|389756.696|81579.1842|1063789.3314$2026-02-15T20:24:40|389756.696|81579.1842|1063789.3314$2026-02-15T21:14:20|389756.696|81579.1842|1063789.3314$2026-02-15T22:04:00|389756.696|81579.1842|1063789.3314$2026-02-15T22:53:40|389756.696|81579.1842|1063789.3314$2026-02-15T23:43:20|389756.696|81579.1842|1063789.3314$2026-02-16T00:33:00|389756.696|81579.1842|1063789.3314$2026-02-16T01:22:40|389756.696|81579.1842|1063789.3314$2026-02-16T02:12:20|389756.696|81579.1842|1063789.3314$2026-02-16T03:02:00|389756.696|81579.1842|1063789.3314$2026-02-16T03:51:40|389756.696|81579.1842|1063789.3314$2026-02-16T04:41:20|389756.696|81579.1842|1063789.3314$2026-02-16T05:31:00|389756.696|81579.1842|1063789.3314$2026-02-16T06:20:40|389756.696|81579.1842|1063789.3314$2026-02-16T07:10:20|389756.696|81579.1842|1063789.3314$2026-02-16T08:00:00|389756.696|81579.1842|1063789.3314$2026-02-16T08:49:40|389756.696|81579.1842|1063789.3314$2026-02-16T09:39:20|389756.696|81579.1842|1063789.3314$2026-02-16T10:29:00|389756.696|81579.1842|1063789.3314$2026-02-16T11:18:40|389756.696|81579.1842|1063789.3314$2026-02-16T12:08:20|389756.696|81579.1842|1063789.3314$2026-02-16T12:58:00|389756.696|81579.1842|1063789.3314$2026-02-16T13:47:40|389756.696|81579.1842|1063789.3314$2026-02-16T14:37:20|389756.696|81579.1842|1063789.3314$2026-02-16T15:27:00|389756.696|81579.1842|1063789.3314$2026-02-16T16:16:40|389756.696|81579.1842|1063789.3314$2026-02-16T17:06:20|389756.696|81579.1842|1063789.3314$2026-02-16T17:56:00|389756.696|81579.1842|1063789.3314$2026-02-16T18:45:40|389756.696|81579.1842|1063789.3314$2026-02-16T19:35:20|389756.696|81579.1842|1063789.3314$2026-02-16T20:25:00|389756.696|81579.1842|1063789.3314$2026-02-16T21:14:40|389756.696|81579.1842|1063789.3314$2026-02-16T22:04:20|389756.696|81579.1842|1063789.3314$2026-02-16T22:54:00|389756.696|81579.1842|1063789.3314$2026-02-16T23:43:40|389756.696|81579.1842|1063789.3314$2026-02-17T00:33:20|389756.696|81579.1842|1063789.3314$2026-02-17T01:23:00|389756.696|81579.1842|1063789.3314$2026-02-17T02:12:40|389756.696|81579.1842|1063789.3314$2026-02-17T03:02:20|389756.696|81579.1842|1063789.3314$2026-02-17T03:52:00|389756.696|81579.1842|1063789.3314$2026-02-17T04:41:40|389756.696|81579.1842|1063789.3314$2026-02-17T05:31:20|389756.696|81579.1842|1063789.3314$2026-02-17T06:21:00|389756.696|81579.1842|1063789.3314$2026-02-17T07:10:40|389756.696|81579.1842|1063789.3314$2026-02-17T08:00:20|389756.696|81579.1842|1063789.3314$2026-02-17T08:50:00|389756.696|81579.1842|1063789.3314$2026-02-17T09:39:40|389756.696|81579.1842|1063789.3314$2026-02-17T10:29:20|389756.696|81579.1842|1063789.3314$2026-02-17T11:19:00|389756.696|81579.1842|1063789.3314$2026-02-17T12:08:40|389756.696|81579.1842|1063789.3314$2026-02-17T12:58:20|389756.696|81579.1842|1063789.3314$2026-02-17T13:48:00|389756.696|81579.1842|1063789.3314$2026-02-17T14:37:40|389756.696|81579.1842|1063789.3314$2026-02-17T15:27:20|389756.696|81579.1842|1063789.3314$2026-02-17T16:17:00|389756.696|81579.1842|1063789.3314$2026-02-17T17:06:40|389756.696|81579.1842|1063789.3314$2026-02-17T17:56:20|389756.696|81579.1842|1063789.3314$2026-02-17T18:46:00|389756.696|81579.1842|1063789.3314$2026-02-17T19:35:40|389756.696|81579.1842|1063789.3314$2026-02-17T20:25:20|389756.696|81579.1842|1063789.3314$2026-02-17T21:15:00|389756.696|81579.1842|1063789.3314$2026-02-17T22:04:40|389756.696|81579.1842|1063789.3314$2026-02-17T22:54:20|389756.696|81579.1842|1063789.3314$2026-02-17T23:44:00|389756.696|81579.1842|1063789.3314$2026-02-18T00:33:40|389756.696|81579.1842|1063789.3314$2026-02-18T01:23:20|389756.696|81579.1842|1063789.3314$2026-02-18T02:13:00|389756.696|81579.1842|1063789.3314$2026-02-18T03:02:40|389756.696|81579.1842|1063789.3314$2026-02-18T03:52:20|389756.696|81579.1842|1063789.3314$2026-02-18T04:42:00|389756.696|81579.1842|1063789.3314$2026-02-18T05:31:40|389756.696|81579.1842|1063789.3314$2026-02-18T06:21:20|389756.696|81579.1842|1063789.3314$2026-02-18T07:11:00|389756.696|81579.1842|1063789.3314$2026-02-18T08:00:40|389756.696|81579.1842|1063789.3314$2026-02-18T08:50:20|389756.696|81579.1842|1063789.3314$2026-02-18T09:40:00|389756.696|81579.1842|1063789.3314$2026-02-18T10:29:40|389756.696|81579.1842|1063789.3314";
String[] split = rawData.split("\\$");
Record[] records = new Record[split.length];
DateTimeFormat format = DateTimeFormat.getFormat("yyyy-MM-dd'T'HH:mm:ss");
for (int i = 0; i < split.length; ++i)
{
String[] values = split[i].split("\\|");
Record r = new Record();
r.setAttribute("ScheduledCompletedDate", format.parse(values[0]));
r.setAttribute("Volume_Forecast", Double.parseDouble(values[1]));
r.setAttribute("Minimum_Volume", Double.parseDouble(values[2]));
r.setAttribute("Maximum_Volume", Double.parseDouble(values[3]));
records[i] = r;
}
return records;
}
Comment