First commit
authorBenjamin Auder <benjamin.auder@somewhere>
Mon, 22 Jan 2018 23:01:59 +0000 (00:01 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Mon, 22 Jan 2018 23:01:59 +0000 (00:01 +0100)
35 files changed:
.gitignore [new file with mode: 0644]
README.md [new file with mode: 0644]
TODO [new file with mode: 0644]
pkg/DESCRIPTION [new file with mode: 0644]
pkg/LICENSE [new file with mode: 0644]
pkg/R/A_NAMESPACE.R [new file with mode: 0644]
pkg/R/Data.R [new file with mode: 0644]
pkg/R/F_Average.R [new file with mode: 0644]
pkg/R/F_Neighbors.R [new file with mode: 0644]
pkg/R/F_Persistence.R [new file with mode: 0644]
pkg/R/F_Zero.R [new file with mode: 0644]
pkg/R/Forecast.R [new file with mode: 0644]
pkg/R/Forecaster.R [new file with mode: 0644]
pkg/R/J_LastValue.R [new file with mode: 0644]
pkg/R/J_Neighbors.R [new file with mode: 0644]
pkg/R/J_Persistence.R [new file with mode: 0644]
pkg/R/J_Zero.R [new file with mode: 0644]
pkg/R/computeError.R [new file with mode: 0644]
pkg/R/computeForecast.R [new file with mode: 0644]
pkg/R/getData.R [new file with mode: 0644]
pkg/R/plot.R [new file with mode: 0644]
pkg/R/sample_dataset.R [new file with mode: 0644]
pkg/R/utils.R [new file with mode: 0644]
pkg/inst/extdata/daily_exogenous.csv [new file with mode: 0644]
pkg/inst/extdata/intraday_measures.csv [new file with mode: 0644]
pkg/inst/testdata/exo_test.csv [new file with mode: 0644]
pkg/inst/testdata/ts_test.csv [new file with mode: 0644]
pkg/man/talweg-package.Rd [new file with mode: 0644]
pkg/tests/testthat.R [new file with mode: 0644]
pkg/tests/testthat/helper.R [new file with mode: 0644]
pkg/tests/testthat/test-DateIntegerConv.R [new file with mode: 0644]
pkg/tests/testthat/test-Forecaster.R [new file with mode: 0644]
pkg/tests/testthat/test-computeFilaments.R [new file with mode: 0644]
pkg/tests/testthat/test-similarDays.R [new file with mode: 0644]
pkg/vignettes/TODO.html [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..4d19f10
--- /dev/null
@@ -0,0 +1,16 @@
+#roxygen2 generated files
+NAMESPACE
+*.Rd
+!*-package.Rd
+
+#temporary files
+*~
+*.swp
+
+#R session files
+.Rhistory
+.RData
+
+#R CMD build/check files
+/*.Rcheck/
+/*.tar.gz
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..52f40c4
--- /dev/null
+++ b/README.md
@@ -0,0 +1,19 @@
+# Predict PM10 as functions of time
+
+Joint work with [Jean-Michel Poggi](http://www.math.u-psud.fr/~poggi/) and [Bruno Portier](http://lmi2.insa-rouen.fr/~bportier/)
+
+---
+
+Forecast a curve sampled within the day (seconds, minutes, hours...),
+using past measured curves + past exogenous informations, which could be some aggregated
+measure on the past curves, the weather... Main starting point: computeForecast().
+
+NOTE: algorithms are not specific to PM10 and could be applied to anything else (in similar contexts).
+However, seasons are hard-coded to follow pollution events.
+You may want to change them in pkg/R/utils.R, function .isSameSeason()
+
+NOTE 2: the package works for only one series (one station). Further extensions might consider the multi-series case.
+
+---
+
+The final report may be found at [this location](http://www.airnormand.fr/Publications/Publications-telechargeables/Rapports-d-etudes)
diff --git a/TODO b/TODO
new file mode 100644 (file)
index 0000000..d2a8c9b
--- /dev/null
+++ b/TODO
@@ -0,0 +1,3 @@
+Soft predict: keep series with NAs (currently removed)
+use shiny to visualize curves ?
+What to do with NAs exogenous variables ?
diff --git a/pkg/DESCRIPTION b/pkg/DESCRIPTION
new file mode 100644 (file)
index 0000000..e555949
--- /dev/null
@@ -0,0 +1,46 @@
+Package: talweg
+Title: Time-Series Samples Forecasted With Exogenous Variables
+Version: 0.3-0
+Description: Forecast a curve sampled within the day (seconds, minutes,
+    hours...), using past measured curves + past exogenous informations, which
+    could be some aggregated measure on the past curves, the weather... Main
+    starting point: computeForecast().
+Author: Benjamin Auder <Benjamin.Auder@math.u-psud.fr> [aut,cre],
+    Jean-Michel Poggi <Jean-Michel.Poggi@parisdescartes.fr> [ctb],
+    Bruno Portier <Bruno.Portier@insa-rouen.fr>, [ctb]
+Maintainer: Benjamin Auder <Benjamin.Auder@math.u-psud.fr>
+Depends:
+    R (>= 3.0),
+Imports:
+    R6,
+    methods,
+    MASS
+Suggests:
+    parallel,
+    devtools,
+    roxygen2,
+    testthat,
+    rainbow
+LazyData: yes
+URL: http://git.auder.net/?p=talweg.git
+License: MIT + file LICENSE
+RoxygenNote: 6.0.1
+Collate: 
+    'plot.R'
+    'computeError.R'
+    'computeForecast.R'
+    'J_Zero.R'
+    'J_Persistence.R'
+    'J_Neighbors.R'
+    'F_Zero.R'
+    'F_Persistence.R'
+    'F_Neighbors.R'
+    'F_Average.R'
+    'getData.R'
+    'utils.R'
+    'Forecaster.R'
+    'Forecast.R'
+    'Data.R'
+    'A_NAMESPACE.R'
+    'J_LastValue.R'
+    'sample_dataset.R'
diff --git a/pkg/LICENSE b/pkg/LICENSE
new file mode 100644 (file)
index 0000000..e4b50f1
--- /dev/null
@@ -0,0 +1,22 @@
+Copyright (c) 2016-2017, Benjamin AUDER
+              2016-2017, Jean-Michel Poggi
+              2016-2017, Bruno Portier
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/pkg/R/A_NAMESPACE.R b/pkg/R/A_NAMESPACE.R
new file mode 100644 (file)
index 0000000..a295cc8
--- /dev/null
@@ -0,0 +1,24 @@
+#' @importFrom grDevices colors gray.colors
+#' @importFrom graphics abline hist par plot matplot
+#' @importFrom methods hasArg is
+#' @importFrom stats quantile sd cov
+#' @importFrom utils getFromNamespace read.csv head tail
+#' @importFrom R6 R6Class
+#'
+#' @include Data.R
+#' @include Forecast.R
+#' @include Forecaster.R
+#' @include utils.R
+#' @include getData.R
+#' @include F_Average.R
+#' @include F_Neighbors.R
+#' @include F_Persistence.R
+#' @include F_Zero.R
+#' @include J_Neighbors.R
+#' @include J_Persistence.R
+#' @include J_Zero.R
+#' @include computeForecast.R
+#' @include computeError.R
+#' @include plot.R
+#'
+NULL
diff --git a/pkg/R/Data.R b/pkg/R/Data.R
new file mode 100644 (file)
index 0000000..4b1e1f3
--- /dev/null
@@ -0,0 +1,134 @@
+#' Data
+#'
+#' Data encapsulation, in the form of a few lists (time-series + exogenous variables).
+#'
+#' The private field .tvp is a list where each cell contains the hourly variables for a
+#' period of time of 24 hours, from 1am to next midnight. The other lists contain
+#' informations on series' levels and exogenous variables (both measured and predicted).
+#'
+#' @usage # Data$new()
+#'
+#' @field .tvp List of "time-values"; in each cell:
+#' \itemize{
+#'   \item time: vector of times
+#'   \item serie: (measured) serie
+#'   \item level_hat: predicted level for current day
+#' }
+#' @field .level Vector of measured levels
+#' @field .exo List of measured exogenous variables, cell = numerical vector.
+#' @field .exo_hat List of predicted exogenous variables, cell = numerical vector.
+#'
+#' @section Methods:
+#' \describe{
+#' \item{\code{getSize()}}{
+#'   Number of series in dataset.}
+#' \item{\code{append(time, value, level_hat, exo, exo_hat)}}{
+#'   Measured data for given vector of times + exogenous predictions from
+#'   last midgnight.}
+#' \item{\code{getTime(index)}}{
+#'   Times (vector) at specified index.}
+#' \item{\code{getSerie(index)}}{
+#'   Serie (centered+level) at specified index.}
+#' \item{\code{getSeries(indices)}}{
+#'   Series at specified indices (in columns).}
+#' \item{\code{getLevel(index)}}{
+#'   Measured level at specified index.}
+#' \item{\code{getLevelHat(index)}}{
+#'   Predicted level vector at specified index (by hour).}
+#' \item{\code{getCenteredSerie(index)}}{
+#'   Centered serie at specified index.}
+#' \item{\code{getCenteredSeries(indices)}}{
+#'   Centered series at specified indices (in columns).}
+#' \item{\code{getExo(index)}}{
+#'   Measured exogenous variables at specified index.}
+#' \item{\code{getExoHat(index)}}{
+#'   Predicted exogenous variables at specified index.}
+#' }
+#'
+#' @docType class
+#' @format R6 class
+#'
+Data = R6::R6Class("Data",
+       private = list(
+               .tvp = list(),
+               .level = vector("double",0),
+               .exo = list(),
+               .exo_hat = list()
+       ),
+       public = list(
+               getSize = function()
+                       length(private$.tvp)
+               ,
+               append = function(time=NULL, value=NULL, level_hat=NULL, exo=NULL, exo_hat=NULL)
+               {
+                       if (!is.null(time) && !is.null(value) && !is.null(level_hat))
+                       {
+                               L = length(private$.tvp)
+                               if (L == 0 || strftime( tail(private$.tvp[[L]]$time,1),
+                                       format="%H:%M:%S", tz="GMT" ) == "00:00:00")
+                               {
+                                       # Append a new cell
+                                       private$.tvp[[L+1]] <- list("time"=time, "serie"=value, "level_hat"=level_hat)
+                               }
+                               else
+                               {
+                                       # Complete current cell
+                                       private$.tvp[[L]]$time <- c(private$.tvp[[L]]$time, time)
+                                       private$.tvp[[L]]$serie <- c(private$.tvp[[L]]$serie, value)
+                                       private$.tvp[[L]]$level_hat <- c(private$.tvp[[L]]$level_hat, level_hat)
+                               }
+                       }
+                       if (strftime( tail(private$.tvp[[length(private$.tvp)]]$time,1),
+                               format="%H:%M:%S", tz="GMT" ) == "00:00:00")
+                       {
+                               private$.level = c(private$.level,
+                                       mean(private$.tvp[[length(private$.tvp)]]$serie, na.rm=TRUE))
+                       }
+                       if (!is.null(exo))
+                               private$.exo[[length(private$.exo)+1]] = exo
+                       if (!is.null(exo_hat))
+                               private$.exo_hat[[length(private$.exo_hat)+1]] = exo_hat
+               },
+               getTime = function(index)
+               {
+                       index = dateIndexToInteger(index, self)
+                       private$.tvp[[index]]$time
+               },
+               getSerie = function(index)
+               {
+                       index = dateIndexToInteger(index, self)
+                       private$.tvp[[index]]$serie
+               },
+               getSeries = function(indices)
+                       sapply(indices, function(i) self$getSerie(i))
+               ,
+               getLevel = function(index)
+               {
+                       index = dateIndexToInteger(index, self)
+                       private$.level[index]
+               },
+               getLevelHat = function(index)
+               {
+                       index = dateIndexToInteger(index, self)
+                       private$.tvp[[index]]$level_hat
+               },
+               getCenteredSerie = function(index)
+               {
+                       index = dateIndexToInteger(index, self)
+                       private$.tvp[[index]]$serie - private$.level[index]
+               },
+               getCenteredSeries = function(indices)
+                       sapply(indices, function(i) self$getCenteredSerie(i))
+               ,
+               getExo = function(index)
+               {
+                       index = dateIndexToInteger(index, self)
+                       private$.exo[[index]]
+               },
+               getExoHat = function(index)
+               {
+                       index = dateIndexToInteger(index, self)
+                       private$.exo_hat[[index]]
+               }
+       )
+)
diff --git a/pkg/R/F_Average.R b/pkg/R/F_Average.R
new file mode 100644 (file)
index 0000000..4d395ac
--- /dev/null
@@ -0,0 +1,59 @@
+#' Average Forecaster
+#'
+#' Pointwise average of all the series of the same day of week in the past.
+#'
+#' For example, if the current day (argument "today") is a tuesday, then all series
+#' corresponding to tuesday in the past (until the beginning or memory limit) -- and in
+#' the future if 'opera' is FALSE -- are averaged to provide a smooth prediction. This
+#' forecast will most of the time be wrong, but will also look plausible enough.
+#'
+#' @usage # AverageForecaster$new(pjump)
+#'
+#' @docType class
+#' @format R6 class, inherits Forecaster
+#' @aliases F_Average
+#'
+AverageForecaster = R6::R6Class("AverageForecaster",
+       inherit = Forecaster,
+
+       public = list(
+               predictShape = function(data, today, memory, predict_from, horizon, ...)
+               {
+                       avg = rep(0., (horizon-predict_from+1))
+                       first_day = max(1, today-memory)
+                       index <- today
+                       nb_no_na_series = 0
+                       opera = ifelse(hasArg("opera"), list(...)$opera, FALSE)
+                       repeat
+                       {
+                               index = index - 7
+                               if (index < first_day)
+                                       break
+                               serie_on_horizon = data$getCenteredSerie(index)[predict_from:horizon]
+                               if (!any(is.na(serie_on_horizon)))
+                               {
+                                       avg = avg + serie_on_horizon
+                                       nb_no_na_series = nb_no_na_series + 1
+                               }
+                       }
+                       if (!opera)
+                       {
+                               # The same, in the future
+                               index <- today
+                               repeat
+                               {
+                                       index = index + 7
+                                       if (index > data$getSize())
+                                               break
+                                       serie_on_horizon = data$getCenteredSerie(index)[predict_from:horizon]
+                                       if (!any(is.na(serie_on_horizon)))
+                                       {
+                                               avg = avg + serie_on_horizon
+                                               nb_no_na_series = nb_no_na_series + 1
+                                       }
+                               }
+                       }
+                       avg / nb_no_na_series
+               }
+       )
+)
diff --git a/pkg/R/F_Neighbors.R b/pkg/R/F_Neighbors.R
new file mode 100644 (file)
index 0000000..ea27d5c
--- /dev/null
@@ -0,0 +1,291 @@
+#' Neighbors Forecaster
+#'
+#' Predict next serie as a weighted combination of curves observed on "similar" days in
+#' the past (and future if 'opera'=FALSE); the nature of the similarity is controlled by
+#' the options 'simtype' and 'local' (see below).
+#'
+#' Optional arguments:
+#' \itemize{
+#'   \item local: TRUE (default) to constrain neighbors to be "same days in same season"
+#'   \item simtype: 'endo' for a similarity based on the series only,<cr>
+#'             'exo' for a similarity based on exogenous variables only,<cr>
+#'             'mix' for the product of 'endo' and 'exo',<cr>
+#'             'none' (default) to apply a simple average: no computed weights
+#'   \item window: A window for similarities computations; override cross-validation
+#'     window estimation.
+#' }
+#' The method is summarized as follows:
+#' \enumerate{
+#'   \item Determine N (=20) recent days without missing values, and preceded by a
+#'     curve also without missing values.
+#'   \item Optimize the window parameters (if relevant) on the N chosen days.
+#'   \item Considering the optimized window, compute the neighbors (with locality
+#'     constraint or not), compute their similarities -- using a gaussian kernel if
+#'     simtype != "none" -- and average accordingly the "tomorrows of neigbors" to
+#'     obtain the final prediction.
+#' }
+#'
+#' @usage # NeighborsForecaster$new(pjump)
+#'
+#' @docType class
+#' @format R6 class, inherits Forecaster
+#' @aliases F_Neighbors
+#'
+NeighborsForecaster = R6::R6Class("NeighborsForecaster",
+       inherit = Forecaster,
+
+       public = list(
+               predictShape = function(data, today, memory, predict_from, horizon, ...)
+               {
+                       # (re)initialize computed parameters
+                       private$.params <- list("weights"=NA, "indices"=NA, "window"=NA)
+
+                       # Do not forecast on days with NAs (TODO: softer condition...)
+                       if (any(is.na(data$getSerie(today-1))) ||
+                               (predict_from>=2 && any(is.na(data$getSerie(today)[1:(predict_from-1)]))))
+                       {
+                               return (NA)
+                       }
+
+                       # Get optional args
+                       local = ifelse(hasArg("local"), list(...)$local, TRUE) #same level + season?
+                       simtype = ifelse(hasArg("simtype"), list(...)$simtype, "none") #or "endo", or "exo"
+                       opera = ifelse(hasArg("opera"), list(...)$opera, FALSE) #operational mode?
+
+                       # Determine indices of no-NAs days preceded by no-NAs yerstedays
+                       tdays = .getNoNA2(data, max(today-memory,2), ifelse(opera,today-1,data$getSize()))
+                       if (!opera)
+                               tdays = setdiff(tdays, today) #always exclude current day
+
+                       # Shortcut if window is known
+                       if (hasArg("window"))
+                       {
+                               return ( private$.predictShapeAux(data, tdays, today, predict_from, horizon,
+                                       local, list(...)$window, simtype, opera, TRUE) )
+                       }
+
+                       # Indices of similar days for cross-validation; TODO: 20 = magic number
+                       cv_days = getSimilarDaysIndices(today, data, limit=20, same_season=FALSE,
+                               days_in=tdays, operational=opera)
+
+                       # Optimize h : h |--> sum of prediction errors on last N "similar" days
+                       errorOnLastNdays = function(window, simtype)
+                       {
+                               error = 0
+                               nb_jours = 0
+                               for (i in seq_along(cv_days))
+                               {
+                                       # mix_strategy is never used here (simtype != "mix"), therefore left blank
+                                       prediction = private$.predictShapeAux(data, tdays, cv_days[i], predict_from,
+                                               horizon, local, window, simtype, opera, FALSE)
+                                       if (!is.na(prediction[1]))
+                                       {
+                                               nb_jours = nb_jours + 1
+                                               error = error +
+                                                       mean((data$getSerie(cv_days[i])[predict_from:horizon] - prediction)^2)
+                                       }
+                               }
+                               return (error / nb_jours)
+                       }
+
+                       # TODO: 7 == magic number
+                       if (simtype=="endo" || simtype=="mix")
+                       {
+                               best_window_endo = optimize(
+                                       errorOnLastNdays, c(0,7), simtype="endo")$minimum
+                       }
+                       if (simtype=="exo" || simtype=="mix")
+                       {
+                               best_window_exo = optimize(
+                                       errorOnLastNdays, c(0,7), simtype="exo")$minimum
+                       }
+                       if (local)
+                       {
+                               best_window_local = optimize(
+                                       errorOnLastNdays, c(3,30), simtype="none")$minimum
+                       }
+
+                       best_window =
+                               if (simtype == "endo")
+                                       best_window_endo
+                               else if (simtype == "exo")
+                                       best_window_exo
+                               else if (simtype == "mix")
+                                       c(best_window_endo,best_window_exo)
+                               else #none: no value
+                                       NULL
+                       if (local)
+                               best_window = c(best_window, best_window_local)
+
+                       return( private$.predictShapeAux(data, tdays, today, predict_from, horizon, local,
+                               best_window, simtype, opera, TRUE) )
+               }
+       ),
+       private = list(
+               # Precondition: "yersteday until predict_from-1" is full (no NAs)
+               .predictShapeAux = function(data, tdays, today, predict_from, horizon, local, window,
+                       simtype, opera, final_call)
+               {
+                       tdays_cut = tdays[ tdays != today ]
+                       if (length(tdays_cut) == 0)
+                               return (NA)
+
+                       if (local)
+                       {
+                               # limit=Inf to not censor any day (TODO: finite limit? 60?)
+                               tdays <- getSimilarDaysIndices(today, data, limit=Inf, same_season=TRUE,
+                                       days_in=tdays_cut, operational=opera)
+                               nb_neighbs <- round( window[length(window)] )
+                               # TODO: 10 == magic number
+                               tdays <- .getConstrainedNeighbs(today, data, tdays, nb_neighbs, opera)
+                               if (length(tdays) == 1)
+                               {
+                                       if (final_call)
+                                       {
+                                               private$.params$weights <- 1
+                                               private$.params$indices <- tdays
+                                               private$.params$window <- window
+                                       }
+                                       return ( data$getSerie(tdays[1])[predict_from:horizon] )
+                               }
+                               max_neighbs = nb_neighbs #TODO: something else?
+                               if (length(tdays) > max_neighbs)
+                               {
+                                       distances2 <- .computeDistsEndo(data, today, tdays, predict_from)
+                                       ordering <- order(distances2)
+                                       tdays <- tdays[ ordering[1:max_neighbs] ]
+                               }
+                       }
+                       else
+                               tdays = tdays_cut #no conditioning
+
+                       if (simtype == "endo" || simtype == "mix")
+                       {
+                               # Distances from last observed day to selected days in the past
+                               # TODO: redundant computation if local==TRUE
+                               distances2 <- .computeDistsEndo(data, today, tdays, predict_from)
+
+                               # Compute endogen similarities using the given window
+                               simils_endo <- .computeSimils(distances2, window[1])
+                       }
+
+                       if (simtype == "exo" || simtype == "mix")
+                       {
+                               distances2 <- .computeDistsExo(data, today, tdays, opera)
+
+                               # Compute exogen similarities using the given window
+                               window_exo = ifelse(simtype=="mix", window[2], window[1])
+                               simils_exo <- .computeSimils(distances2, window_exo)
+                       }
+
+                       similarities =
+                               if (simtype == "exo")
+                                       simils_exo
+                               else if (simtype == "endo")
+                                       simils_endo
+                               else if (simtype == "mix")
+                                       simils_endo * simils_exo
+                               else #none
+                                       rep(1, length(tdays))
+                       similarities = similarities / sum(similarities)
+
+                       prediction = rep(0, horizon-predict_from+1)
+                       for (i in seq_along(tdays))
+                       {
+                               prediction = prediction +
+                                       similarities[i] * data$getSerie(tdays[i])[predict_from:horizon]
+                       }
+
+                       if (final_call)
+                       {
+                               private$.params$weights <- similarities
+                               private$.params$indices <- tdays
+                               private$.params$window <- window
+                       }
+
+                       return (prediction)
+               }
+       )
+)
+
+# getConstrainedNeighbs
+#
+# Get indices of neighbors of similar pollution level (among same season + day type).
+#
+# @param today Index of current day
+# @param data Object of class Data
+# @param tdays Current set of "second days" (no-NA pairs)
+# @param min_neighbs Minimum number of points in a neighborhood
+# @param max_neighbs Maximum number of points in a neighborhood
+#
+.getConstrainedNeighbs = function(today, data, tdays, min_neighbs, opera)
+{
+       levelToday = ifelse(opera, tail(data$getLevelHat(today),1), data$getLevel(today))
+       distances = sapply( tdays, function(i) abs(data$getLevel(i) - levelToday) )
+       #TODO: 1, +1, +3 : magic numbers
+       dist_thresh = 1
+       min_neighbs = min(min_neighbs,length(tdays))
+       repeat
+       {
+               same_pollution = (distances <= dist_thresh)
+               nb_neighbs = sum(same_pollution)
+               if (nb_neighbs >= min_neighbs) #will eventually happen
+                       break
+               dist_thresh = dist_thresh + ifelse(dist_thresh>1,3,1)
+       }
+       tdays[same_pollution]
+}
+
+# compute similarities
+#
+# Apply the gaussian kernel on computed squared distances.
+#
+# @param distances2 Squared distances
+# @param window Window parameter for the kernel
+#
+.computeSimils <- function(distances2, window)
+{
+       sd_dist = sd(distances2)
+       if (sd_dist < .25 * sqrt(.Machine$double.eps))
+       {
+#              warning("All computed distances are very close: stdev too small")
+               sd_dist = 1 #mostly for tests... FIXME:
+       }
+       exp(-distances2/(sd_dist*window^2))
+}
+
+.computeDistsEndo <- function(data, today, tdays, predict_from)
+{
+       lastSerie = c( data$getSerie(today-1),
+               data$getSerie(today)[if (predict_from>=2) 1:(predict_from-1) else c()] )
+       sapply(tdays, function(i) {
+               delta = lastSerie - c(data$getSerie(i-1),
+                       data$getSerie(i)[if (predict_from>=2) 1:(predict_from-1) else c()])
+               sqrt(mean(delta^2))
+       })
+}
+
+.computeDistsExo <- function(data, today, tdays, opera)
+{
+       M = matrix( ncol=1+length(tdays), nrow=1+length(data$getExo(1)) )
+       if (opera)
+               M[,1] = c( tail(data$getLevelHat(today),1), as.double(data$getExoHat(today)) )
+       else
+               M[,1] = c( data$getLevel(today), as.double(data$getExo(today)) )
+       for (i in seq_along(tdays))
+               M[,i+1] = c( data$getLevel(tdays[i]), as.double(data$getExo(tdays[i])) )
+
+       sigma = cov(t(M)) #NOTE: robust covariance is way too slow
+       # TODO: 10 == magic number; more robust way == det, or always ginv()
+       sigma_inv =
+               if (length(tdays) > 10)
+                       solve(sigma)
+               else
+                       MASS::ginv(sigma)
+
+       # Distances from last observed day to days in the past
+       sapply(seq_along(tdays), function(i) {
+               delta = M[,1] - M[,i+1]
+               delta %*% sigma_inv %*% delta
+       })
+}
diff --git a/pkg/R/F_Persistence.R b/pkg/R/F_Persistence.R
new file mode 100644 (file)
index 0000000..7035231
--- /dev/null
@@ -0,0 +1,39 @@
+#' Persistence Forecaster
+#'
+#' Look for the most recent similar day in the past, and return its corresponding curve.
+#'
+#' There are two variations, depending whether "similar day" means "same day in the week"
+#' or "most recent day" (regardless of day type). The corresponding argument is named
+#' "same_day": a value of TRUE implies the former interpretation (same day in week).
+#' If the last similar day has missing values, the next one is searched, and so on until
+#' one full serie is found (if no one is found, NA is returned).
+#'
+#' @usage # PersistenceForecaster$new(pjump)
+#'
+#' @docType class
+#' @format R6 class, inherits Forecaster
+#' @aliases F_Persistence
+#'
+PersistenceForecaster = R6::R6Class("PersistenceForecaster",
+       inherit = Forecaster,
+
+       public = list(
+               predictShape = function(data, today, memory, predict_from, horizon, ...)
+               {
+                       # Return centered last (similar) day curve, avoiding NAs until memory is run
+                       first_day = max(1, today-memory)
+                       same_day = ifelse(hasArg("same_day"), list(...)$same_day, TRUE)
+                       index <- today
+                       repeat
+                       {
+                               # If 'same_day', get the last known future of similar day
+                               index = index - ifelse(same_day,7,1)
+                               if (index < first_day)
+                                       return (NA)
+                               last_serie = data$getCenteredSerie(index)[predict_from:horizon]
+                               if (!any(is.na(last_serie)))
+                                       return (last_serie)
+                       }
+               }
+       )
+)
diff --git a/pkg/R/F_Zero.R b/pkg/R/F_Zero.R
new file mode 100644 (file)
index 0000000..21e6e00
--- /dev/null
@@ -0,0 +1,18 @@
+#' Zero Forecaster
+#'
+#' Flat prediction: always forecast a serie of zeros (adjusted by 'pjump' function).
+#'
+#' @usage # ZeroForecaster$new(pjump)
+#'
+#' @docType class
+#' @format R6 class, inherits Forecaster
+#' @aliases F_Zero
+#'
+ZeroForecaster = R6::R6Class("ZeroForecaster",
+       inherit = Forecaster,
+
+       public = list(
+               predictShape = function(data, today, memory, predict_from, horizon, ...)
+                       rep(0, (horizon-predict_from+1))
+       )
+)
diff --git a/pkg/R/Forecast.R b/pkg/R/Forecast.R
new file mode 100644 (file)
index 0000000..ff7fb8d
--- /dev/null
@@ -0,0 +1,83 @@
+#' Forecast
+#'
+#' Forecast encapsulation as a list (days where prediction occur) of lists (components).
+#'
+#' The private field .pred is a list where each cell contains the predicted variables for
+#' a period of time of H-P+1<=24 hours, from hour P until H, where P == predict_from.
+#' \code{forecast$getForecast(i)} output forecasts for
+#' \code{data$getSerie(forecast$getIndexInData(i))}.
+#'
+#' @usage # Forecast$new(dates)
+#'
+#' @field .pred List with
+#' \itemize{
+#'   \item serie: the forecasted serie
+#'   \item params: corresponding list of parameters (weights, neighbors...)
+#'   \item index_in_data: corresponding index in data object
+#' }
+#' @field .dates vector of (integer) day indices where forecast occurs
+#'
+#' @section Methods:
+#' \describe{
+#' \item{\code{initialize(dates)}}{
+#'   Initialize a Forecast object with a series of date indices.}
+#' \item{\code{getSize()}}{
+#'   Return number of individual forecasts.}
+#' \item{\code{append(forecast, params, index_in_data)}}{
+#'   Acquire an individual forecast, with its (optimized) parameters and the
+#'   corresponding index in the dataset.}
+#' \item{\code{getDates()}}{
+#'   Get dates where forecast occurs.}
+#' \item{\code{getForecast(index)}}{
+#'   Get forecasted serie at specified index.}
+#' \item{\code{getParams(index)}}{
+#'   Get parameters at specified index (for 'Neighbors' method).}
+#' \item{\code{getIndexInData(index)}}{
+#'   Get index in data which corresponds to current forecast.}
+#' }
+#'
+#' @docType class
+#' @format R6 class
+#'
+Forecast = R6::R6Class("Forecast",
+       private = list(
+               .pred = list(),
+               .dates = integer(0) #store dates as integers (from 1970-01-01)
+       ),
+       public = list(
+               initialize = function(dates)
+               {
+                       private$.dates <- dates
+                       invisible(self)
+               },
+               getSize = function()
+                       length(private$.pred)
+               ,
+               append = function(forecast, params, index_in_data)
+               {
+                       private$.pred[[length(private$.pred)+1]] <-
+                               list("forecast"=forecast, "params"=params, "index_in_data"=index_in_data)
+               },
+               getDates = function()
+                       as.Date( private$.dates, origin="1970-01-01" )
+               ,
+               getForecast = function(index)
+               {
+                       if (is(index,"Date"))
+                               index = match(index, private$.dates)
+                       private$.pred[[index]]$forecast
+               },
+               getParams = function(index)
+               {
+                       if (is(index,"Date"))
+                               index = match(index, private$.dates)
+                       private$.pred[[index]]$params
+               },
+               getIndexInData = function(index)
+               {
+                       if (is(index,"Date"))
+                               index = match(index, private$.dates)
+                       private$.pred[[index]]$index_in_data
+               }
+       )
+)
diff --git a/pkg/R/Forecaster.R b/pkg/R/Forecaster.R
new file mode 100644 (file)
index 0000000..ef270b1
--- /dev/null
@@ -0,0 +1,81 @@
+#' Forecaster
+#'
+#' Forecaster (abstract class, implemented by all forecasters).
+#'
+#' A Forecaster object encapsulates parameters (which can be of various kinds, for
+#' example "Neighbors" method stores informations about the considered neighborhood for
+#' the current prediction task) and one main function: \code{predictSerie()}. This last
+#' function (by default) calls \code{predictShape()} to get a forecast of a centered
+#' serie, and then calls the "jump prediction" function if it's provided -- see "field"
+#' section -- to adjust it based on the last observed values. The main method in derived
+#' forecasters is \code{predictShape()}; see 'Methods' section.
+#'
+#' @usage # Forecaster$new(pjump) #warning: predictShape() is unimplemented
+#'
+#' @field .params List of computed parameters (if applicable).
+#' @field .pjump Function: how to predict the jump at day interface? The arguments of
+#'   this function are -- in this order:
+#'   \itemize{
+#'     \item data: object output of \code{getData()},
+#'     \item today: index of the current day in data (known until predict_from-1),
+#'     \item memory: number of days to use in the past (including today),
+#'     \item predict_from: first time step to predict (in [1,24])
+#'     \item horizon: last time step to predict (in [predict_from,24]),
+#'     \item params: optimized parameters in the main method \code{predictShape()},
+#'     \item ...: additional arguments.
+#'   }
+#'   .pjump returns an estimation of the jump after the last observed value.
+#'
+#' @section Methods:
+#' \describe{
+#' \item{\code{initialize(pjump)}}{
+#'   Initialize a Forecaster object with a jump prediction function.}
+#' \item{\code{predictSerie(data,today,memory,predict_from,horizon,...)}}{
+#'   Predict the next curve (at index today) from predict_from to horizon (hours), using
+#'   \code{memory} days in the past.}
+#' \item{\code{predictShape(data,today,memory,predict_from,horizon,...)}}{
+#'   Predict the shape of the next curve (at index today) from predict_from to horizon
+#'   (hours), using \code{memory} days in the past.}
+#' \item{\code{getParameters()}}{
+#'   Return (internal) parameters.}
+#' }
+#'
+#' @docType class
+#' @format R6 class
+#'
+Forecaster = R6::R6Class("Forecaster",
+       private = list(
+               .params = list(),
+               .pjump = NULL
+       ),
+       public = list(
+               initialize = function(pjump)
+               {
+                       private$.pjump <- pjump
+                       invisible(self)
+               },
+               predictSerie = function(data, today, memory, predict_from, horizon, ...)
+               {
+                       # Parameters (potentially) computed during shape prediction stage
+                       predicted_shape <- self$predictShape(data,today,memory,predict_from,horizon,...)
+
+                       if (is.na(predicted_shape[1]))
+                               return (NA)
+
+                       predicted_delta <- private$.pjump(data, today, memory, predict_from,
+                                       horizon, private$.params, first_pred=predicted_shape[1], ...)
+
+                       # Predicted shape is aligned on the end of current day + jump
+                       c( data$getSerie(today)[if (predict_from>=2) 1:(predict_from-1) else c()],
+                               (predicted_shape - predicted_shape[1]) + #shape with first_pred = 0
+                               ifelse(predict_from>=2, #last observed value
+                                       data$getSerie(today)[predict_from-1], tail(data$getSerie(today-1),1)) +
+                               predicted_delta ) #jump
+               },
+               predictShape = function(data, today, memory, predict_from, horizon, ...)
+                       NULL #empty default implementation: to implement in inherited classes
+               ,
+               getParameters = function()
+                       private$.params
+       )
+)
diff --git a/pkg/R/J_LastValue.R b/pkg/R/J_LastValue.R
new file mode 100644 (file)
index 0000000..9b1b5e3
--- /dev/null
@@ -0,0 +1,14 @@
+#' getLastValueJumpPredict
+#'
+#' Just predict zero "jump" (for reference, benchmarking at least).
+#'
+#' @inheritParams computeForecast
+#' @inheritParams getZeroJumpPredict
+#'
+#' @aliases J_LastValue
+#'
+getLastValueJumpPredict = function(data, today, memory, predict_from,
+       horizon, params, ...)
+{
+       0
+}
diff --git a/pkg/R/J_Neighbors.R b/pkg/R/J_Neighbors.R
new file mode 100644 (file)
index 0000000..ceea803
--- /dev/null
@@ -0,0 +1,33 @@
+#' getNeighborsJumpPredict
+#'
+#' Apply optimized weights on gaps observed on selected neighbors.
+#' This jump prediction method can only be used in conjunction with the Neighbors
+#' Forecaster, because it makes use of the optimized parameters to re-apply the weights
+#' on the jumps observed at days interfaces of the past neighbors.
+#'
+#' @inheritParams computeForecast
+#' @inheritParams getZeroJumpPredict
+#'
+#' @aliases J_Neighbors
+#'
+getNeighborsJumpPredict = function(data, today, memory, predict_from, horizon,
+       params, ...)
+{
+       first_day = max(1, today-memory)
+       filter = (params$indices >= first_day)
+       indices = params$indices[filter]
+       weights = params$weights[filter]
+
+       if (is.na(indices[1]))
+               return (NA)
+
+       gaps = sapply(indices, function(i) {
+               if (predict_from >= 2)
+                       data$getSerie(i)[predict_from] - data$getSerie(i)[predict_from-1]
+               else
+                       head(data$getSerie(i),1) - tail(data$getSerie(i-1),1)
+       })
+       scal_product = weights * gaps
+       norm_fact = sum( weights[!is.na(scal_product)] )
+       sum(scal_product, na.rm=TRUE) / norm_fact
+}
diff --git a/pkg/R/J_Persistence.R b/pkg/R/J_Persistence.R
new file mode 100644 (file)
index 0000000..8298a89
--- /dev/null
@@ -0,0 +1,34 @@
+#' getPersistenceJumpPredict
+#'
+#' Analog of the PersistenceForecaster: predict the jump after last observed value either
+#' by re-applying the last jump between similar day and its follower (if argument
+#' "same_day" is TRUE), or by re-using the very last observed jump (when "same_day" =
+#' FALSE).
+#'
+#' @inheritParams computeForecast
+#' @inheritParams getZeroJumpPredict
+#'
+#' @aliases J_Persistence
+#'
+getPersistenceJumpPredict = function(data, today, memory, predict_from,
+       horizon, params, ...)
+{
+       #return gap between end of similar day curve and first day of tomorrow (in the past)
+       first_day = max(1, today-memory)
+       same_day = ifelse(hasArg("same_day"), list(...)$same_day, TRUE)
+       index <- today
+       repeat
+       {
+               # If 'same_day', get the last known future of similar day
+               index = index - ifelse(same_day,7,1)
+               if (index < first_day)
+                       return (NA)
+               gap <-
+                       if (predict_from >= 2)
+                               data$getSerie(index)[predict_from] - data$getSerie(index)[predict_from-1]
+                       else
+                               head(data$getSerie(index),1) - tail(data$getSerie(index-1),1)
+               if (!is.na(gap))
+                       return (gap)
+       }
+}
diff --git a/pkg/R/J_Zero.R b/pkg/R/J_Zero.R
new file mode 100644 (file)
index 0000000..01ba9e3
--- /dev/null
@@ -0,0 +1,15 @@
+#' getZeroJumpPredict
+#'
+#' "Reset level to 0": jump by -A where A is the last observed value.
+#'
+#' @inheritParams computeForecast
+#' @param today Index of the current day (predict tomorrow)
+#' @param params Optional parameters computed by the main forecaster
+#'
+#' @aliases J_Zero
+#'
+getZeroJumpPredict = function(data, today, memory, predict_from, horizon, params, ...)
+{
+       list(...)$first_pred - ifelse( predict_from >= 2,
+               data$getSerie(today)[predict_from-1], tail(data$getSerie(today-1),1) )
+}
diff --git a/pkg/R/computeError.R b/pkg/R/computeError.R
new file mode 100644 (file)
index 0000000..db5783e
--- /dev/null
@@ -0,0 +1,53 @@
+#' Compute error
+#'
+#' Compute the errors between forecasted and measured series.
+#'
+#' @param data Object of class \code{Data} output of \code{getData}
+#' @param pred Object of class \code{Forecast} output of \code{computeForecast}
+#' @param predict_from First time step to consider (>= predict_from used in
+#'   \code{computeForecast()})
+#' @param horizon Horizon where to compute the error (<= horizon used in
+#'   \code{computeForecast})
+#'
+#' @return A list (abs,MAPE) of lists (day,indices). The "indices" slots contain series
+#'   of size L where L is the number of predicted days; i-th value is the averaged error
+#'   (absolute or MAPE) on day i. The "day" slots contain curves of errors, for each time
+#'   step, averaged on the L forecasting days.
+#'
+#' @export
+computeError = function(data, pred, predict_from, horizon=length(data$getSerie(1)))
+{
+       L = pred$getSize()
+       mape_day = rep(0, horizon-predict_from+1)
+       abs_day = rep(0, horizon-predict_from+1)
+       mape_indices = rep(NA, L)
+       abs_indices = rep(NA, L)
+
+       nb_no_NA_data = 0
+       for (i in seq_len(L))
+       {
+               index = pred$getIndexInData(i)
+               serie = data$getSerie(index)[predict_from:horizon]
+               forecast = pred$getForecast(i)[predict_from:horizon]
+               if (!any(is.na(serie)) && !any(is.na(forecast)))
+               {
+                       nb_no_NA_data = nb_no_NA_data + 1
+                       mape_increment = abs(serie - forecast) / serie
+                       mape_increment[is.nan(mape_increment)] = 0. # 0 / 0
+                       mape_increment[!is.finite(mape_increment)] = 1. # >0 / 0
+                       mape_day = mape_day + mape_increment
+                       abs_increment = abs(serie - forecast)
+                       abs_day = abs_day + abs_increment
+                       mape_indices[i] = mean(mape_increment)
+                       abs_indices[i] = mean(abs_increment)
+               }
+       }
+
+       list(
+               "abs" = list(
+                       "day" = abs_day / nb_no_NA_data,
+                       "indices" = abs_indices),
+               "MAPE" = list(
+                       "day" = mape_day / nb_no_NA_data,
+                       "indices" = mape_indices) )
+}
diff --git a/pkg/R/computeForecast.R b/pkg/R/computeForecast.R
new file mode 100644 (file)
index 0000000..e50e63d
--- /dev/null
@@ -0,0 +1,117 @@
+#' Compute forecast
+#'
+#' Predict time-series curves ("today" from predict_from to horizon) at the selected days
+#' indices ("today" from 1am to predict_from-1). This function just runs a loop over all
+#' requested indices, and stores the individual forecasts into a Forecast object.
+#' Note: in training stage ts_hat(day+1) = f(ts(day), exo(day+1)),
+#' and in production ts_hat(day+1) = f(ts(day), exo_hat(day+1))
+#'
+#' @param data Object of class Data, output of \code{getData()}.
+#' @param indices Indices where to forecast (the day after); integers relative to the
+#'   beginning of data, or (convertible to) Date objects.
+#' @param forecaster Name of the main forecaster; more details: ?F_<forecastername>
+#'   \itemize{
+#'     \item Persistence : use last (similar) day
+#'     \item Neighbors : weighted similar days
+#'     \item Average : average curve of all same day-in-week
+#'     \item Zero : just output 0 (benchmarking purpose)
+#'   }
+#' @param pjump Function to predict the jump at the interface between two days;
+#'   more details: ?J_<functionname>
+#'   \itemize{
+#'     \item Persistence : use last (similar) day
+#'     \item Neighbors: re-use the weights from F_Neighbors
+#'     \item LastValue: start serie with last observed value
+#'     \item Zero: no adjustment => use shape prediction only
+#'   }
+#' @param predict_from First time step to predict.
+#' @param memory Data depth (in days) to be used for prediction.
+#' @param horizon Last time step to predict.
+#' @param ncores Number of cores for parallel execution (1 to disable).
+#' @param verbose TRUE to print basic traces (runs beginnings)
+#' @param ... Additional parameters for the forecasting models.
+#'
+#' @return An object of class Forecast
+#'
+#' @examples
+#' ts_data <- system.file("extdata","intraday_measures.csv",package="talweg")
+#' exo_data <- system.file("extdata","daily_exogenous.csv",package="talweg")
+#' data <- getData(ts_data, exo_data, date_format="%Y-%m-%d %H:%M:%S", limit=200)
+#' pred <- computeForecast(data, 100:130, "Persistence", "LastValue",
+#'   predict_from=8, memory=50, horizon=12, ncores=1)
+#' \dontrun{
+#' #Sketch for real-time mode:
+#' data <- Data$new()
+#' forecaster <- MyForecaster$new(myJumpPredictFunc)
+#' repeat {
+#'   # As soon as daily predictions are available:
+#'   data$append(
+#'     level_hat=predicted_level,
+#'     exo_hat=predicted_exogenous)
+#'   # When a day ends:
+#'   data$append(
+#'     level=observed_level,
+#'     exo=observed_exogenous)
+#'   # And, at every hour:
+#'   data$append(
+#'     time=current_hour,
+#'     value=current_PM10)
+#'   # Finally, a bit before predict_from hour:
+#'   pred <- forecaster$predictSerie(data, data$getSize(), ...)
+#'   #do_something_with_pred
+#' } }
+#' @export
+computeForecast = function(data, indices, forecaster, pjump, predict_from,
+       memory=Inf, horizon=length(data$getSerie(1)), ncores=3, verbose=FALSE, ...)
+{
+       # (basic) Arguments sanity checks
+       predict_from = as.integer(predict_from)[1]
+       if (! predict_from %in% 1:length(data$getSerie(1)))
+               stop("predict_from in [1,24] (hours)")
+       if (hasArg("opera") && !list(...)$opera && memory < Inf)
+               memory <- Inf #finite memory in training mode makes no sense
+       horizon = as.integer(horizon)[1]
+       if (horizon<=predict_from || horizon>length(data$getSerie(1)))
+               stop("Horizon in [predict_from+1,24] (hours)")
+       integer_indices = sapply(indices, function(i) dateIndexToInteger(i,data))
+       if (any(integer_indices<=0 | integer_indices>data$getSize()))
+               stop("Indices out of range")
+       if (!is.character(forecaster))
+               stop("forecaster (name): character")
+       if (!is.character(pjump))
+               stop("pjump (function): character")
+
+       pred = Forecast$new( sapply(indices, function(i) integerIndexToDate(i,data)) )
+       forecaster_class_name = getFromNamespace(
+               paste(forecaster,"Forecaster",sep=""), "talweg")
+
+       pjump <- getFromNamespace(paste("get",pjump,"JumpPredict",sep=""), "talweg")
+       forecaster = forecaster_class_name$new(pjump)
+
+       computeOneForecast <- function(i)
+       {
+               if (verbose)
+                       print(paste("Index",i))
+               list(
+                       "forecast" = forecaster$predictSerie(data,i,memory,predict_from,horizon,...),
+                       "params" = forecaster$getParameters(),
+                       "index" = i )
+       }
+
+       p <-
+               if (ncores > 1 && requireNamespace("parallel",quietly=TRUE))
+                       parallel::mclapply(integer_indices, computeOneForecast, mc.cores=ncores)
+               else
+                       lapply(integer_indices, computeOneForecast)
+
+       # TODO: find a way to fill pred in //...
+       for (i in seq_along(integer_indices))
+       {
+               pred$append(
+                       forecast = p[[i]]$forecast,
+                       params = p[[i]]$params,
+                       index_in_data = p[[i]]$index
+               )
+       }
+       pred
+}
diff --git a/pkg/R/getData.R b/pkg/R/getData.R
new file mode 100644 (file)
index 0000000..8e44a52
--- /dev/null
@@ -0,0 +1,89 @@
+#' getData
+#'
+#' Acquire data as a Data object; see ?Data.
+#'
+#' Since series are given in columns (database format), this function builds series one
+#' by one and incrementally grows a Data object which is finally returned.
+#'
+#' @param ts_data Time-series, as a data frame (DB style: 2 columns, first is date/time,
+#'   second is value) or a CSV file.
+#' @param exo_data Exogenous variables, as a data frame or a CSV file; first column is
+#'   dates, next block are measurements for the day, and final block are exogenous
+#'   forecasts (for the same day).
+#' @param date_format How date/time are stored (e.g. year/month/day hour:minutes;
+#'   see ?strptime)
+#' @param limit Number of days to extract (default: Inf, for "all")
+#'
+#' @return An object of class Data
+#'
+#' @examples
+#' ts_data = read.csv(system.file("extdata","pm10_mesures_H_loc.csv",package="talweg"))
+#' exo_data = read.csv(system.file("extdata","meteo_extra_noNAs.csv",package="talweg"))
+#' data = getData(ts_data, exo_data, limit=120)
+#' @export
+getData = function(ts_data, exo_data, date_format="%d/%m/%Y %H:%M", limit=Inf)
+{
+       # Sanity checks (not full, but sufficient at this stage)
+       if ( (!is.data.frame(ts_data) && !is.character(ts_data)) ||
+                       (!is.data.frame(exo_data) && !is.character(exo_data)) )
+               stop("Bad time-series / exogenous input (data frame or CSV file)")
+       if (is.character(ts_data))
+               ts_data = ts_data[1]
+       if (is.character(exo_data))
+               exo_data = exo_data[1]
+       if (!is.character(date_format))
+               stop("Bad date_format (character)")
+       date_format = date_format[1]
+       if (!is.numeric(limit) || limit < 0)
+               stop("limit: positive integer")
+
+       ts_df =
+               if (is.character(ts_data))
+                       read.csv(ts_data)
+               else
+                       ts_data
+       # Convert to GMT (pretend it's GMT; no impact)
+       dates_POSIXlt = strptime(as.character(ts_df[,1]), date_format, tz="GMT")
+       ts_df[,1] = format(as.POSIXct(dates_POSIXlt, tz="GMT"), tz="GMT", usetz=TRUE)
+
+       exo_df =
+               if (is.character(exo_data))
+                       read.csv(exo_data)
+               else
+                       exo_data
+       # Times in exogenous variables file are ignored: no conversions required
+
+       line = 1 #index in PM10 file (24 lines for 1 cell)
+       nb_lines = nrow(ts_df)
+       nb_exos = ( ncol(exo_df) - 1 ) / 2
+       data = Data$new()
+       i = 1 #index of a cell in data
+       while (line <= nb_lines)
+       {
+               time = c()
+               serie = c()
+               level_hat = c()
+               repeat
+               {
+                       {
+                               time = c(time, ts_df[line,1])
+                               serie = c(serie, ts_df[line,2])
+                               level_hat = c(level_hat, #if data file is incomplete...
+                                       ifelse(ncol(ts_df) > 2, ts_df[line,3], mean(serie,na.rm=TRUE)))
+                               line = line + 1
+                       };
+                       if (line >= nb_lines + 1
+                               || as.POSIXlt(ts_df[line-1,1],tz="GMT")$hour == 0)
+                       {
+                               break
+                       }
+               }
+
+               data$append(time=time, value=serie, level_hat=level_hat,
+                       exo=exo_df[i,2:(1+nb_exos)], exo_hat=exo_df[i,(1+nb_exos+1):(1+2*nb_exos)])
+               if (i >= limit)
+                       break
+               i = i + 1
+       }
+       data
+}
diff --git a/pkg/R/plot.R b/pkg/R/plot.R
new file mode 100644 (file)
index 0000000..0f895bd
--- /dev/null
@@ -0,0 +1,263 @@
+#' Plot curves
+#'
+#' Plot a range of curves in data.
+#'
+#' @inheritParams computeError
+#' @param indices Range of indices (integers or dates)
+#'
+#' @export
+plotCurves <- function(data, indices=seq_len(data$getSize()))
+{
+       series = data$getSeries(indices)
+       yrange = quantile(series, probs=c(0.025,0.975), na.rm=TRUE)
+       par(mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5)
+       matplot(series, type="l", ylim=yrange, xlab="Time (hours)", ylab="PM10")
+}
+
+#' Plot error
+#'
+#' Draw error graphs, potentially from several runs of \code{computeForecast()}.
+#'
+#' @param err Error as returned by \code{computeError()}
+#' @param cols Colors for each error (default: 1,2,3,...)
+#' @param agg Aggregation level ("day", "week" or "month")
+#'
+#' @seealso \code{\link{plotCurves}}, \code{\link{plotPredReal}},
+#'   \code{\link{plotSimils}}, \code{\link{plotFbox}}, \code{\link{computeFilaments}},
+#'   \code{\link{plotFilamentsBox}}, \code{\link{plotRelVar}}
+#'
+#' @export
+plotError <- function(err, cols=seq_along(err), agg="day")
+{
+       if (!is.null(err$abs))
+               err = list(err)
+       par(mfrow=c(2,2), mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5)
+       L = length(err)
+
+       yrange = range( sapply(1:L, function(i) err[[i]]$abs$day), na.rm=TRUE )
+       matplot(sapply( seq_len(L), function(i) err[[i]]$abs$day ), type="l",
+               xlab="Time (hours)", ylab="Mean |y - y_hat|", ylim=yrange, col=cols, lwd=2, lty=1)
+
+       agg_curves <- sapply( seq_len(L), function(i) {
+               curve <- err[[i]]$abs$indices
+               delta <- if (agg=="day") 1 else if (agg=="week") 7 else if (agg=="month") 30
+               vapply( seq(1,length(curve),delta), function(i) {
+                       mean(curve[i:(i+delta-1)], na.rm=TRUE)
+               }, vector("double",1), USE.NAMES=FALSE )
+       })
+       yrange = range(agg_curves, na.rm=TRUE)
+       matplot(agg_curves, type="l", xlab=paste("Time (",agg,"s)", sep=""),
+               ylab="Mean |y - y_hat|", ylim=yrange, col=cols, lwd=2, lty=1)
+
+       yrange = range( sapply(1:L, function(i) err[[i]]$MAPE$day), na.rm=TRUE )
+       matplot(sapply( seq_len(L), function(i) err[[i]]$MAPE$day ), type="l",
+               xlab="Time (hours)", ylab="Mean MAPE", ylim=yrange, col=cols, lwd=2, lty=1)
+
+       agg_curves <- sapply( seq_len(L), function(i) {
+               curve <- err[[i]]$MAPE$indices
+               delta <- if (agg=="day") 1 else if (agg=="week") 7 else if (agg=="month") 30
+               vapply( seq(1,length(curve),delta), function(i) {
+                       mean(curve[i:(i+delta-1)], na.rm=TRUE)
+               }, vector("double",1), USE.NAMES=FALSE )
+       })
+       yrange = range(agg_curves, na.rm=TRUE)
+       matplot(agg_curves, type="l", xlab=paste("Time (",agg,"s)", sep=""),
+               ylab="Mean MAPE", ylim=yrange, col=cols, lwd=2, lty=1)
+}
+
+#' Plot measured / predicted
+#'
+#' Plot measured curve (in black) and predicted curve (in blue).
+#'
+#' @inheritParams computeError
+#' @param index Index in forecasts (integer or date)
+#'
+#' @export
+plotPredReal <- function(data, pred, index)
+{
+       prediction = pred$getForecast(index)
+       measure = data$getSerie( pred$getIndexInData(index) )[1:length(pred$getForecast(1))]
+
+       # Remove the common part, where prediction == measure
+       dot_mark <- ifelse(prediction[1]==measure[1],
+               which.max(seq_along(prediction)[prediction==measure]), 0)
+       prediction = prediction[(dot_mark+1):length(prediction)]
+       measure = measure[(dot_mark+1):length(measure)]
+
+       yrange = range(measure, prediction)
+       par(mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5, lwd=3)
+       plot(measure, type="l", ylim=yrange, xlab="Time (hours)", ylab="PM10")
+       par(new=TRUE)
+       plot(prediction, type="l", col="#0000FF", ylim=yrange, xlab="", ylab="")
+}
+
+#' Plot similarities
+#'
+#' Plot histogram of similarities (weights), for 'Neighbors' method.
+#'
+#' @inheritParams computeError
+#' @param index Index in forecasts (integer or date)
+#'
+#' @export
+plotSimils <- function(pred, index)
+{
+       weights = pred$getParams(index)$weights
+       if (is.null(weights))
+               stop("plotSimils only works on 'Neighbors' forecasts")
+       par(mfrow=c(1,2), mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5)
+       small_weights = weights[ weights < 1/length(weights) ]
+       large_weights = weights[ weights >= 1/length(weights) ]
+       hist(small_weights, nclass=25, main="", xlab="Weight < 1/N", ylab="Count")
+       hist(large_weights, nclass=25, main="", xlab="Weight >= 1/N", ylab="Count")
+}
+
+#' Functional boxplot
+#'
+#' Draw the functional boxplot on the left, and bivariate plot on the right.
+#'
+#' @inheritParams computeError
+#' @inheritParams plotCurves
+#'
+#' @export
+plotFbox <- function(data, indices=seq_len(data$getSize()))
+{
+       if (!requireNamespace("rainbow", quietly=TRUE))
+               stop("Functional boxplot requires the rainbow package")
+
+       series_matrix = data$getSeries(indices)
+       # Remove series with NAs
+       no_NAs_indices = sapply( 1:ncol(series_matrix),
+               function(i) all(!is.na(series_matrix[,i])) )
+       series_matrix = series_matrix[,no_NAs_indices]
+
+       series_fds = rainbow::fds(seq_len(nrow(series_matrix)), series_matrix)
+       par(mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5)
+       rainbow::fboxplot(series_fds, "functional", "hdr", xlab="Time (hours)", ylab="PM10",
+               plotlegend=FALSE, lwd=2)
+       rainbow::fboxplot(series_fds, "bivariate", "hdr", plotlegend=FALSE)
+}
+
+#' Compute filaments
+#'
+#' Obtain similar days in the past, and (optionally) plot them -- as black as distances
+#' are small.
+#'
+#' @inheritParams computeError
+#' @param index Index in forecast (integer or date)
+#' @param limit Number of neighbors to consider
+#' @param plot Should the result be plotted?
+#'
+#' @return A list with
+#' \itemize{
+#'   \item index : index of the current serie ('today')
+#'   \item neighb_indices : indices of its neighbors
+#'   \item colors : colors of neighbors curves (shades of gray)
+#' }
+#'
+#' @export
+computeFilaments <- function(data, pred, index, limit=60, plot=TRUE)
+{
+       weights <- pred$getParams(index)$weights
+       if (is.null(weights) || is.na(pred$getParams(index)$weights[1]))
+               stop("computeFilaments requires a serie without NAs")
+
+       nn <- min(limit, length(weights))
+       sorted_dists = sort(-log(weights), index.return=TRUE)
+       # Compute colors for each neighbor (from darkest to lightest), if weights differ
+       if ( any( weights != weights[1] ) )
+       {
+               min_dist = min(sorted_dists$x[1:nn])
+               max_dist = max(sorted_dists$x[1:nn])
+               color_values = floor(19.5*(sorted_dists$x[1:nn]-min_dist)/(max_dist-min_dist)) + 1
+               colors = gray.colors(20,0.1,0.9)[color_values] #TODO: 20 == magic number
+       }
+       else
+               colors <- rep(colors()[17], length(weights))
+
+       if (plot)
+       {
+               # Complete series with (past and present) tomorrows
+               ref_serie = c( data$getCenteredSerie( pred$getIndexInData(index)-1 ),
+                       data$getCenteredSerie( pred$getIndexInData(index) ) )
+               centered_series = rbind(
+                       data$getCenteredSeries( pred$getParams(index)$indices-1 ),
+                       data$getCenteredSeries( pred$getParams(index)$indices ) )
+               yrange = range( ref_serie,
+                       quantile(centered_series, probs=c(0.025,0.975), na.rm=TRUE) )
+               par(mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5, lwd=2)
+               for (i in nn:1)
+               {
+                       plot(centered_series[,sorted_dists$ix[i]], ylim=yrange, type="l", col=colors[i],
+                               xlab=ifelse(i==1,"Time (hours)",""), ylab=ifelse(i==1,"Centered PM10",""))
+                       par(new=TRUE)
+               }
+               # Also plot ref curve, in red
+               plot(ref_serie, ylim=yrange, type="l", col="#FF0000", xlab="", ylab="")
+               dot_mark <- 0.5 + which.max( pred$getForecast(1) ==
+                       data$getSerie( pred$getIndexInData(1) )[1:length(pred$getForecast(1))] )
+               abline(v=24+dot_mark, lty=2, col=colors()[56], lwd=1)
+       }
+
+       list(
+               "index"=pred$getIndexInData(index),
+               "neighb_indices"=pred$getParams(index)$indices[sorted_dists$ix[1:nn]],
+               "colors"=colors)
+}
+
+#' Functional boxplot on filaments
+#'
+#' Draw the functional boxplot on filaments obtained by \code{computeFilaments()}.
+#'
+#' @inheritParams computeError
+#' @param fil Output of \code{computeFilaments}
+#' @param predict_from First predicted time step
+#'
+#' @export
+plotFilamentsBox = function(data, fil, predict_from)
+{
+       if (!requireNamespace("rainbow", quietly=TRUE))
+               stop("Functional boxplot requires the rainbow package")
+
+       series_matrix = rbind(
+               data$getSeries(fil$neighb_indices-1), data$getSeries(fil$neighb_indices) )
+       series_fds = rainbow::fds(seq_len(nrow(series_matrix)), series_matrix)
+
+       par(mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5)
+       rainbow::fboxplot(series_fds, "functional", "hdr", xlab="Time (hours)", ylab="PM10",
+               plotlegend=FALSE, lwd=2)
+
+       # "Magic": http://stackoverflow.com/questions/13842560/get-xlim-from-a-plot-in-r
+       usr <- par("usr")
+       yr <- (usr[4] - usr[3]) / 27
+       par(new=TRUE)
+       plot(c(data$getSerie(fil$index-1),data$getSerie(fil$index)), type="l", lwd=2, lty=2,
+               ylim=c(usr[3] + yr, usr[4] - yr), xlab="", ylab="")
+       abline(v=24+predict_from-0.5, lty=2, col=colors()[56])
+}
+
+#' Plot relative conditional variability / absolute variability
+#'
+#' Draw the relative conditional variability / absolute variability based on filaments
+#' obtained by \code{computeFilaments()}.
+#'
+#' @inheritParams computeError
+#' @inheritParams plotFilamentsBox
+#'
+#' @export
+plotRelVar = function(data, fil, predict_from)
+{
+       ref_var = c( apply(data$getSeries(fil$neighb_indices-1),1,sd),
+               apply(data$getSeries(fil$neighb_indices),1,sd) )
+       tdays = .getNoNA2(data, 2, fil$index)
+       global_var = c(
+               apply(data$getSeries(tdays-1),1,sd),
+               apply(data$getSeries(tdays),1,sd) )
+
+       yrange = range(ref_var, global_var)
+       par(mar=c(4.7,5,1,1), cex.axis=1.5, cex.lab=1.5)
+       plot(ref_var, type="l", col=1, lwd=3, ylim=yrange,
+               xlab="Time (hours)", ylab="Standard deviation")
+       par(new=TRUE)
+       plot(global_var, type="l", col=2, lwd=3, ylim=yrange, xlab="", ylab="")
+       abline(v=24+predict_from-0.5, lty=2, col=colors()[56])
+}
diff --git a/pkg/R/sample_dataset.R b/pkg/R/sample_dataset.R
new file mode 100644 (file)
index 0000000..6796469
--- /dev/null
@@ -0,0 +1,32 @@
+#' Sample dataset to run the algorithm
+#'
+#' Original data from AirNormand was removed, and replaced with the following:
+#' \itemize{
+#'   \item{daily_exogenous.csv}{a CSV file containing dates in the first column, and then n columns for measurements, and finally n columns for predictions (same day)}
+#'   \item{intraday_measures.csv}{a CSV file with two columns: the first with datetimes, and the second with measurements}
+#' }
+#' -----\cr
+#' Here is the code that generated these files: (not any physical sense)\cr
+#' #dts = timestamps from 1970-01-01 01:00 to 1972-01-01 00:00\cr
+#' dts = seq(0,17519*3600,3600)\cr
+#' intraday = data.frame(\cr
+#'   Time=as.POSIXct(dts,tz="GMT",origin="1970-01-01 01:00"),\cr
+#'   Measure=rgamma(length(dts),10,.7) )\cr
+#' dates = seq(as.Date("1970-01-01"), as.Date("1972-01-01"), "day")\cr
+#' m1 = cos(seq_along(dates))\cr
+#' m2 = log(seq_along(dates)+1)\cr
+#' daily = data.frame(\cr
+#'   Date=dates,\cr
+#'   m1=m1,\cr
+#'   m2=m2,\cr
+#'   m1_pred=m1+rnorm(length(m1),sd=.1),\cr
+#'   m2_pred=m2+rnorm(length(m2),sd=.1) )\cr
+#' write.csv(intraday, file="intraday_measures.csv", row.names=F)\cr
+#' write.csv(daily, file="daily_exogenous.csv", row.names=F)
+#'
+#' @name sample
+#' @docType data
+#' @usage data(talweg::sample)
+#' @format Two dataframes: intraday with 17519 rows and 2 columns (Time,Measure), hourly;
+#'   and daily with 731 rows, 5 columns (Date,m1,m2,m1_pred,m2_pred)
+NULL
diff --git a/pkg/R/utils.R b/pkg/R/utils.R
new file mode 100644 (file)
index 0000000..9e51f00
--- /dev/null
@@ -0,0 +1,153 @@
+#' dateIndexToInteger
+#'
+#' Transform a (potential) date index into an integer (relative to data beginning).
+#'
+#' @param index Date (or integer) index
+#' @param data Object of class Data, output of \code{getData()}
+#'
+#' @export
+dateIndexToInteger = function(index, data)
+{
+       # Works on integers too: trust input
+       if (is.numeric(index))
+               index = as.integer(index)
+       if (is.integer(index))
+               return (index)
+
+       if (inherits(index, "Date") || is.character(index))
+       {
+               tryCatch(indexAsDate <- as.Date(index),
+                       error=function(e) stop("Unrecognized index format"))
+               #TODO: tz arg to difftime ?
+               integerIndex <- round( as.numeric(
+                       difftime(indexAsDate, as.Date(data$getTime(1)[1])) ) ) + 1
+               if (integerIndex >= 1 && integerIndex <= data$getSize())
+                       return (integerIndex)
+               stop("Date outside data range")
+       }
+       stop("Unrecognized index format")
+}
+
+#' integerIndexToDate
+#'
+#' Transform an integer index (relative to data beginning) into a date index.
+#'
+#' @inheritParams dateIndexToInteger
+#'
+#' @export
+integerIndexToDate = function(index, data)
+{
+       # Works on dates too: trust input
+       if (is.character(index))
+               index = as.Date(index)
+       if (is(index,"Date"))
+               return (index)
+
+       index = index[1]
+       if (is.numeric(index))
+               index = as.integer(index)
+       if (!is.integer(index))
+               stop("'index' should be a date or integer")
+       as.Date( data$getTime(index)[1] )
+}
+
+#' getSimilarDaysIndices
+#'
+#' Find similar days indices in the past; at least same type of day in the week:
+#' monday=tuesday=wednesday=thursday != friday != saturday != sunday.
+#'
+#' @param index Day index (numeric or date)
+#' @param data Reference dataset, object output of \code{getData}
+#' @param limit Maximum number of indices to return
+#' @param same_season Should the indices correspond to day in same season?
+#' @param days_in Optional set to intersect with results (NULL to discard)
+#' @param operational If TRUE: do not look for days after index (operational context)
+#'
+#' @export
+getSimilarDaysIndices = function(index, data, limit, same_season,
+       days_in=NULL, operational=TRUE)
+{
+       index = dateIndexToInteger(index, data)
+
+       # Look for similar days (optionally in same season)
+       days = c()
+       dt_ref = as.POSIXlt(data$getTime(index)[1]) #first date-time of current day
+       day_ref = dt_ref$wday #1=monday, ..., 6=saturday, 0=sunday
+       month_ref = as.POSIXlt(data$getTime(index)[1])$mon+1 #month in 1...12
+       i = index - 1
+       if (!operational)
+               j = index + 1
+       while (length(days) < min( limit, ifelse(is.null(days_in),Inf,length(days_in)) ))
+       {
+               if (i < 1 && j > data$getSize())
+                       break
+               if (i >= 1)
+               {
+                       dt = as.POSIXlt(data$getTime(i)[1])
+                       if ((is.null(days_in) || i %in% days_in) && .isSameDay(dt$wday, day_ref))
+                       {
+                               if (!same_season || .isSameSeason(dt$mon+1, month_ref))
+                                       days = c(days, i)
+                       }
+                       i = i - 1
+               }
+               if (!operational && j <= data$getSize())
+               {
+                       dt = as.POSIXlt(data$getTime(j)[1])
+                       if ((is.null(days_in) || j %in% days_in) && .isSameDay(dt$wday, day_ref))
+                       {
+                               if (!same_season || .isSameSeason(dt$mon+1, month_ref))
+                                       days = c(days, j)
+                       }
+                       j = j + 1
+               }
+       }
+       return ( days )
+}
+
+# isSameSeason
+#
+# Check if two months fall in the same "season" (defined by estimated pollution rate).
+#
+# @param month Month index to test
+# @param month_ref Month to compare to
+#
+.isSameSeason = function(month, month_ref)
+{
+#      if (month_ref == 3) #TODO: same as Bruno (but weird)
+#              return (month %in% c(2,3,4,9,10))
+       if (month_ref %in% c(11,12,1,2)) #~= mid-polluted
+               return (month %in% c(11,12,1,2))
+       if (month_ref %in% c(3,4,9,10)) #~= high-polluted
+               return (month %in% c(3,4,9,10))
+       return (month %in% c(5,6,7,8)) #~= non polluted
+}
+
+# isSameDay
+#
+# Monday=Tuesday=Wednesday=Thursday ; Friday, Saturday, Sunday: specials.
+#
+# @param day Day index to test
+# @param day_ref Day index to compare to
+#
+.isSameDay = function(day, day_ref)
+{
+       if (day_ref %in% 1:4)
+               return (day %in% 1:4)
+       return (day == day_ref)
+}
+
+# getNoNA2
+#
+# Get indices in data of no-NA series preceded by no-NA, within [first,last] range.
+#
+# @inheritParams dateIndexToInteger
+# @param first First index (included)
+# @param last Last index (included)
+#
+.getNoNA2 = function(data, first, last)
+{
+       (first:last)[ sapply(first:last, function(i)
+               !any( is.na(data$getSerie(i-1)) | is.na(data$getSerie(i)) )
+       ) ]
+}
diff --git a/pkg/inst/extdata/daily_exogenous.csv b/pkg/inst/extdata/daily_exogenous.csv
new file mode 100644 (file)
index 0000000..2236c43
--- /dev/null
@@ -0,0 +1,732 @@
+"Date","m1","m2","m1_pred","m2_pred"
+1970-01-01,0.54030230586814,0.693147180559945,0.603281332713351,0.588915555999217
+1970-01-02,-0.416146836547142,1.09861228866811,-0.409003010272866,1.04057528013279
+1970-01-03,-0.989992496600445,1.38629436111989,-1.12903942466137,1.28538337356266
+1970-01-04,-0.653643620863612,1.6094379124341,-0.71251194915829,1.74324620979709
+1970-01-05,0.283662185463226,1.79175946922805,0.292271828522823,1.80190316944358
+1970-01-06,0.960170286650366,1.94591014905531,1.0235675224296,1.90096300817127
+1970-01-07,0.753902254343305,2.07944154167984,0.869132774203841,2.09484738406677
+1970-01-08,-0.145500033808614,2.19722457733622,-0.0831047855115772,2.02842013416376
+1970-01-09,-0.911130261884677,2.30258509299405,-0.789882160001496,2.40204057788988
+1970-01-10,-0.839071529076452,2.39789527279837,-0.80566390823837,2.28840713946075
+1970-01-11,0.00442569798805079,2.484906649788,-0.096091523558031,2.39800942809098
+1970-01-12,0.843853958732492,2.56494935746154,0.674324544121926,2.51925061361065
+1970-01-13,0.907446781450196,2.63905732961526,0.984681219292028,2.6651217765254
+1970-01-14,0.136737218207834,2.70805020110221,-0.0217280211250221,2.8194421707996
+1970-01-15,-0.759687912858821,2.77258872223978,-0.745228935855913,2.630713241079
+1970-01-16,-0.957659480323385,2.83321334405622,-1.03454435846234,2.84645183281682
+1970-01-17,-0.275163338051597,2.89037175789616,-0.300705259632515,2.92113560702595
+1970-01-18,0.66031670824408,2.94443897916644,0.656656513620933,2.83990020555084
+1970-01-19,0.988704618186669,2.99573227355399,0.873142911977706,2.93424745239619
+1970-01-20,0.408082061813392,3.04452243772342,0.572669680591308,3.1219576738556
+1970-01-21,-0.547729260224268,3.09104245335832,-0.552441721835837,3.18318991769419
+1970-01-22,-0.999960826394637,3.13549421592915,-1.01152048864747,3.07695607155503
+1970-01-23,-0.532833020333398,3.17805383034795,-0.555982630309971,3.22018066313804
+1970-01-24,0.424179007336997,3.2188758248682,0.588907417492731,3.26254208579011
+1970-01-25,0.991202811863474,3.25809653802148,0.794330087219201,3.18341753651296
+1970-01-26,0.64691932232864,3.29583686600433,0.651662286344951,3.28384738466711
+1970-01-27,-0.292138808733836,3.3322045101752,-0.302890795993977,3.25484536960203
+1970-01-28,-0.962605866313567,3.36729582998647,-1.00834922634894,3.36445665624737
+1970-01-29,-0.748057529689,3.40119738166216,-0.857851339024325,3.3132490579446
+1970-01-30,0.154251449887584,3.43398720448515,0.304571420906597,3.57638344519586
+1970-01-31,0.914742357804531,3.46573590279973,1.02614340857834,3.49765655334006
+1970-02-01,0.83422336050651,3.49650756146648,0.803428049003148,3.54005931233414
+1970-02-02,-0.0132767472230595,3.52636052461616,-0.0249639138811213,3.71863502717889
+1970-02-03,-0.848570274784605,3.55534806148941,-0.918537867110426,3.47561967914849
+1970-02-04,-0.903692205091507,3.58351893845611,-0.92866373915577,3.58514686212431
+1970-02-05,-0.127963689627405,3.61091791264422,-0.163653334514229,3.62215931755022
+1970-02-06,0.765414051945343,3.63758615972639,0.698853615429883,3.77606541657792
+1970-02-07,0.955073644047295,3.66356164612965,0.916992806837431,3.70228116437486
+1970-02-08,0.266642932359937,3.68887945411394,0.351929934106915,3.50789593896046
+1970-02-09,-0.666938061652262,3.71357206670431,-0.592312460778644,3.82636982145129
+1970-02-10,-0.987339277523826,3.73766961828337,-0.995342516801118,3.63652229694772
+1970-02-11,-0.399985314988351,3.76120011569356,-0.420994010699995,3.69031991505429
+1970-02-12,0.555113301520626,3.78418963391826,0.355852389715371,3.83306553113088
+1970-02-13,0.999843308647691,3.80666248977032,1.01789414877044,4.03685851312605
+1970-02-14,0.52532198881773,3.8286413964891,0.565108925456419,3.96375339219184
+1970-02-15,-0.432177944884778,3.85014760171006,-0.320231087226765,3.87819396363511
+1970-02-16,-0.992335469150929,3.87120101090789,-1.04563679381945,3.86240859982324
+1970-02-17,-0.6401443394692,3.89182029811063,-0.608853283805804,3.89073521561305
+1970-02-18,0.300592543743637,3.91202300542815,0.364606538350675,3.88503587693656
+1970-02-19,0.964966028492113,3.93182563272433,0.947730241276325,4.08513950873354
+1970-02-20,0.742154196813783,3.95124371858143,0.689084164925857,4.04625539813455
+1970-02-21,-0.162990780795705,3.97029191355212,-0.218808057674054,4.0703476417721
+1970-02-22,-0.918282786212119,3.98898404656427,-0.854176432530651,4.14445457938102
+1970-02-23,-0.82930983286315,4.00733318523247,-0.894975947428926,3.74034488633894
+1970-02-24,0.0221267562619557,4.02535169073515,0.109534305851047,3.9605669900678
+1970-02-25,0.853220107722584,4.04305126783455,1.00691935236812,3.93501074123976
+1970-02-26,0.899866826969194,4.06044301054642,0.934594106375996,4.02257689895163
+1970-02-27,0.119180135448819,4.07753744390572,0.175688162060039,4.01800763364796
+1970-02-28,-0.771080222975845,4.0943445622221,-0.928742822393998,4.03804928414338
+1970-03-01,-0.952412980415156,4.11087386417331,-0.957057193783185,4.00146834324142
+1970-03-02,-0.258101635938267,4.12713438504509,-0.38459319354194,4.01091651302439
+1970-03-03,0.673507162323586,4.14313472639153,0.763463409720179,4.14477092741772
+1970-03-04,0.98589658158255,4.15888308335967,1.29876482641799,4.15163995178015
+1970-03-05,0.39185723042955,4.17438726989564,0.289189875697512,4.1294007590077
+1970-03-06,-0.562453851238172,4.18965474202643,-0.529116814919416,4.29049881763868
+1970-03-07,-0.99964745596635,4.20469261939097,-0.978346444788048,4.36758491568377
+1970-03-08,-0.517769799789505,4.21950770517611,-0.56826963531619,4.35029939228574
+1970-03-09,0.440143022496041,4.23410650459726,0.514193297548477,4.2600377783889
+1970-03-10,0.993390379722272,4.24849524204936,0.844923844816618,4.34732712168028
+1970-03-11,0.6333192030863,4.26267987704132,0.448078306472182,4.14629764207243
+1970-03-12,-0.309022728166071,4.27666611901606,-0.275935059834542,4.24667160016668
+1970-03-13,-0.967250588273882,4.29045944114839,-0.788015576724604,4.43404541590767
+1970-03-14,-0.736192718227316,4.30406509320417,-0.604561944991548,4.30798501468068
+1970-03-15,0.171717341830778,4.31748811353631,0.151562232007706,4.2496739847728
+1970-03-16,0.921751269724749,4.33073334028633,1.04578598534074,4.25717221569205
+1970-03-17,0.824331331107558,4.34380542185368,0.790504522452347,4.34337141192205
+1970-03-18,-0.0309750317312165,4.35670882668959,-0.10649220024438,4.26939483527321
+1970-03-19,-0.857803093244988,4.36944785246702,-0.666748917615811,4.47105638844058
+1970-03-20,-0.895970946790963,4.38202663467388,-0.8013487734779,4.30218427146758
+1970-03-21,-0.110387243839048,4.39444915467244,0.0212575252054835,4.23901325141436
+1970-03-22,0.776685982021631,4.40671924726425,0.71582722038618,4.45036393128754
+1970-03-23,0.949677697882543,4.4188406077966,0.972628673566799,4.40035870034763
+1970-03-24,0.249540117973338,4.43081679884331,0.338895793296642,4.34340751598162
+1970-03-25,-0.680023495587339,4.44265125649032,-0.783876700373141,4.34911349864002
+1970-03-26,-0.984376643394042,4.45434729625351,-1.03774756252085,4.64494048722873
+1970-03-27,-0.383698444949742,4.46590811865458,-0.504647087437458,4.63564323097838
+1970-03-28,0.569750334265312,4.47733681447821,0.582577071284876,4.4768148638666
+1970-03-29,0.999373283695125,4.48863636973214,0.828230894415124,4.52824715348191
+1970-03-30,0.510177044941669,4.49980967033027,0.550424706096673,4.52641598002842
+1970-03-31,-0.44807361612917,4.51085950651685,-0.378699851036453,4.42545886276105
+1970-04-01,-0.994367460928201,4.52178857704904,-1.12248894258303,4.53476673104941
+1970-04-02,-0.626444447910339,4.53259949315326,-0.386277058771178,4.51777326848599
+1970-04-03,0.317428701519702,4.54329478227,0.331245970344121,4.47237855153226
+1970-04-04,0.969459366669988,4.55387689160054,1.14539228946913,4.54769912697903
+1970-04-05,0.73017356099482,4.56434819146784,0.781652058442209,4.639743638709
+1970-04-06,-0.180430449291084,4.57471097850338,-0.211032419423031,4.49133219088025
+1970-04-07,-0.925147536596414,4.58496747867057,-0.751506691379123,4.87465756998815
+1970-04-08,-0.819288245291459,4.59511985013459,-0.913768215280036,4.81996958696469
+1970-04-09,0.0398208803931389,4.60517018598809,-0.0461429272359639,4.48749213499934
+1970-04-10,0.862318872287684,4.61512051684126,0.879897396544304,4.69105267949492
+1970-04-11,0.89200486978816,4.62497281328427,0.850043596541607,4.59344042030941
+1970-04-12,0.101585703696621,4.63472898822964,0.11616046946013,4.59922379053578
+1970-04-13,-0.782230889887116,4.64439089914137,-0.738621280021411,4.66616221260163
+1970-04-14,-0.946868010751213,4.65396035015752,-1.00433288437009,4.69846981868431
+1970-04-15,-0.240959049236201,4.66343909411207,-0.43698042248533,4.60476287356202
+1970-04-16,0.686486550906984,4.67282883446191,0.910887594700161,4.64956883545369
+1970-04-17,0.982779582041221,4.68213122712422,0.949354879110899,4.65677479072316
+1970-04-18,0.375509597767012,4.69134788222914,0.526737138912936,4.81031595838132
+1970-04-19,-0.577002178942952,4.70048036579242,-0.519974584696894,4.65928678521844
+1970-04-20,-0.999020813314648,4.70953020131233,-0.866777927730741,4.59321545855082
+1970-04-21,-0.502544319145385,4.71849887129509,-0.584448975239896,4.72346098967247
+1970-04-22,0.455969104444276,4.72738781871234,0.49200258034276,4.74563318645957
+1970-04-23,0.995266636217131,4.7361984483945,0.911974089623753,4.44559196362876
+1970-04-24,0.61952061255921,4.74493212836325,0.711736413823952,4.66047203929239
+1970-04-25,-0.325809805219964,4.75359019110636,-0.12738273219292,4.83975757021788
+1970-04-26,-0.971592190628802,4.76217393479776,-1.13978680553442,4.79859969494687
+1970-04-27,-0.724097196700474,4.77068462446567,-0.673070253191175,4.9581329733254
+1970-04-28,0.189129420528958,4.77912349311153,0.0640937342280884,4.82506820104191
+1970-04-29,0.928471320739076,4.78749174278205,0.92887944019545,4.72678419614702
+1970-04-30,0.814180970526562,4.79579054559674,0.799693545061471,4.53745395883192
+1970-05-01,-0.0486636092001539,4.80402104473326,-0.0920973238822954,4.79394683821832
+1970-05-02,-0.86676709105198,4.81218435537242,-0.823665479420794,4.91323392939291
+1970-05-03,-0.887968906691855,4.82028156560504,-0.804061583512772,4.82336453455065
+1970-05-04,-0.0927762045976609,4.8283137373023,-0.0982365416145557,4.89711367549871
+1970-05-05,0.787714512144234,4.83628190695148,0.738156721323192,4.67034519395579
+1970-05-06,0.943984139152314,4.84418708645859,0.836303161332101,4.81686672118425
+1970-05-07,0.232359102029658,4.85203026391962,0.183782616793872,4.86414887951883
+1970-05-08,-0.692895821920165,4.85981240436167,-0.713419192531261,4.82595092739957
+1970-05-09,-0.981105522649388,4.86753445045558,-0.864247479309599,4.80192253222725
+1970-05-10,-0.367291330454696,4.87519732320115,-0.388038590264304,4.83783883283001
+1970-05-11,0.584208817109289,4.88280192258637,0.40993304041759,4.96267910537467
+1970-05-12,0.998590072439991,4.89034912822175,1.02939591457547,4.75495147612102
+1970-05-13,0.49487222040343,4.89783979995091,0.443730847073049,4.91105304263943
+1970-05-14,-0.463828868851872,4.90527477843843,-0.41159275339228,5.03691317373566
+1970-05-15,-0.996087835141185,4.91265488573605,-1.03908181134827,4.88321997657503
+1970-05-16,-0.6125482394961,4.91998092582813,-0.655476390055318,4.79058916761575
+1970-05-17,0.334165382630761,4.92725368515721,0.284845012134394,4.7851406000319
+1970-05-18,0.973648893049518,4.93447393313069,0.824607233336948,4.73874531856748
+1970-05-19,0.717964101410472,4.9416424226093,0.846712913504532,4.84999866458487
+1970-05-20,-0.197813574004268,4.94875989037817,-0.0187697246384614,4.90858508393046
+1970-05-21,-0.93172236174352,4.95582705760126,-0.869768363874158,5.05925326352513
+1970-05-22,-0.809009906953598,4.96284463025991,-0.796096433097329,5.10263085522855
+1970-05-23,0.0575025253491242,4.969813299576,0.06171242780231,4.93285022260039
+1970-05-24,0.871147401032343,4.97673374242057,0.878930291323863,4.98682559097369
+1970-05-25,0.8838633737085,4.98360662170834,0.857020572154799,4.85016480592586
+1970-05-26,0.0839594367418485,4.99043258677874,0.0341944830766382,4.79157240772817
+1970-05-27,-0.793136419166478,4.99721227376411,-0.782861746314641,4.95330857692841
+1970-05-28,-0.941026309029144,5.00394630594546,-0.884861668215865,5.09250766207509
+1970-05-29,-0.223740950135584,5.01063529409626,-0.176064034428074,4.96954504187815
+1970-05-30,0.699250806478375,5.01727983681492,0.597953377115677,4.95753417538382
+1970-05-31,0.979354596376429,5.02388052084628,0.957614526113751,5.03572235524648
+1970-06-01,0.359044286891116,5.03043792139244,0.120727874104982,4.99964100788669
+1970-06-02,-0.591369684144325,5.03695260241363,-0.440005448231542,5.03567610230011
+1970-06-03,-0.9980810948185,5.04342511691925,-0.884759714785058,4.97893481071998
+1970-06-04,-0.487161349803341,5.04985600724954,-0.688643433035179,5.17729283664545
+1970-06-05,0.471652293561339,5.05624580534831,0.502901887815995,5.06542071688092
+1970-06-06,0.996830993361718,5.06259503302697,1.20380904016429,4.91545401604257
+1970-06-07,0.60552787498699,5.06890420222023,0.492644532512285,5.11145615552414
+1970-06-08,-0.342494779115907,5.07517381523383,-0.285326563845519,5.21600324662158
+1970-06-09,-0.975629312795237,5.08140436498446,-0.975238121869271,5.18016935486175
+1970-06-10,-0.711774755635724,5.08759633523238,-0.706530422991664,5.06604689236567
+1970-06-11,0.206482229337811,5.09375020080676,0.237487693364597,5.07522677728883
+1970-06-12,0.93490040489975,5.0998664278242,0.852909689360714,5.06874225496406
+1970-06-13,0.803775459710974,5.10594547390058,0.990347798439304,4.92397863906232
+1970-06-14,-0.0663369363356237,5.11198778835654,-0.0323397429570293,5.07946837515969
+1970-06-15,-0.875459459043705,5.11799381241676,-0.84342541201268,5.0481725001636
+1970-06-16,-0.879688592495152,5.12396397940326,-0.888550989717367,5.19096504418351
+1970-06-17,-0.0751360908983532,5.12989871492307,-0.111526693464873,5.32762143815023
+1970-06-18,0.798496186162556,5.13579843705026,0.788488501874921,5.06563772663295
+1970-06-19,0.937994752119441,5.14166355650266,0.980305005926111,5.11292428847848
+1970-06-20,0.215105268762141,5.14749447681345,0.249692627160542,5.24871007894581
+1970-06-21,-0.7055510066863,5.15329159449778,-0.704420900802778,4.99405770785845
+1970-06-22,-0.977526940402531,5.15905529921453,-1.04224855863915,4.91142180847541
+1970-06-23,-0.350769113209131,5.16478597392351,-0.333582560609631,5.21461228197908
+1970-06-24,0.5984842190141,5.17048399503815,0.576965937656508,5.13884511096654
+1970-06-25,0.997493920327152,5.17614973257383,0.943468753475162,5.17222654509236
+1970-06-26,0.479412311470322,5.18178355029209,0.503630106475065,5.3814325834667
+1970-06-27,-0.479438765629173,5.18738580584075,-0.335036208437958,5.13082511792508
+1970-06-28,-0.997496052654355,5.19295685089021,-0.961363024494659,5.072753835823
+1970-06-29,-0.598460069057858,5.19849703126583,-0.576222887232114,5.23065240309778
+1970-06-30,0.350797342090421,5.2040066870768,0.249084223990271,5.38985179219336
+1970-07-01,0.977533294705597,5.20948615284142,0.799244436208308,4.9217617800183
+1970-07-02,0.705529644294206,5.21493575760899,0.796105425318388,4.99484418113608
+1970-07-03,-0.215134707364621,5.22035582507832,-0.265732322325304,5.22855917586006
+1970-07-04,-0.93800520121695,5.2257466737132,-0.904734657894748,5.00034100409939
+1970-07-05,-0.798478038903032,5.23110861685459,-0.787613273340981,5.18679022095851
+1970-07-06,0.0751661500081933,5.23644196282995,0.111211923446917,5.27823747264243
+1970-07-07,0.879702927248347,5.24174701505964,0.914173182260363,5.36391884040944
+1970-07-08,0.875444890134275,5.24702407216049,0.932201730950482,5.11741960482349
+1970-07-09,0.0663068583517113,5.25227342804663,0.0573953652929183,5.24060027353127
+1970-07-10,-0.803793393209672,5.25749537202778,-0.997515990207058,5.10822476136383
+1970-07-11,-0.934889705937235,5.26269018890489,-0.914390779315264,5.41289809242517
+1970-07-12,-0.206452734490879,5.26785815906333,-0.296018608169335,5.17719007783384
+1970-07-13,0.711795928940826,5.27299955856375,0.701288080507875,5.27730867733773
+1970-07-14,0.975622697919444,5.27811465923052,0.934462033263013,5.21563224115515
+1970-07-15,0.342466457745517,5.28320372873799,0.340300200284592,5.25922774979105
+1970-07-16,-0.605551864314651,5.28826703069454,-0.504380670578934,5.42589743609697
+1970-07-17,-0.996828594969431,5.29330482472449,-0.85623130199616,5.15305729544338
+1970-07-18,-0.471625712519911,5.29831736654804,-0.438148390540281,5.23076340036954
+1970-07-19,0.487187675007006,5.30330490805908,0.540076154931379,5.26207502274031
+1970-07-20,0.998082960913557,5.30826769740121,1.00028099998321,5.39950813971949
+1970-07-21,0.591345375451585,5.31320597904179,0.50318969743388,5.40947643343451
+1970-07-22,-0.359072421071653,5.31811999384422,-0.244555362674407,5.2788883386383
+1970-07-23,-0.979360689608925,5.32300997913841,-0.985386948569802,5.30602616639318
+1970-07-24,-0.699229256672974,5.32787616878958,-0.666728749931673,5.20894195487689
+1970-07-25,0.223770330187178,5.33271879326537,0.246406733308319,5.30920520809976
+1970-07-26,0.941036507442989,5.33753807970132,0.657595139713852,5.28043140040637
+1970-07-27,0.793118059567917,5.34233425196481,0.668392294470664,5.34822601348276
+1970-07-28,-0.0839894746225687,5.34710753071747,-0.0258465904311151,5.28423830782205
+1970-07-29,-0.883877473182372,5.35185813347607,-0.98525258862755,5.27305427997281
+1970-07-30,-0.871132599108112,5.35658627467201,-0.767308075998745,5.49198753774759
+1970-07-31,-0.0574724308476655,5.36129216570943,-0.0646974574985612,5.52892443637461
+1970-08-01,0.80902762528643,5.36597601502185,0.727365616907027,5.11710765883874
+1970-08-02,0.931711413754232,5.37063802812766,1.00350372457831,5.33416466128139
+1970-08-03,0.197784025223722,5.37527840768417,0.108843930833973,5.34119746098662
+1970-08-04,-0.717985083969714,5.37989735354046,-0.55104595063275,5.62037230992409
+1970-08-05,-0.973642018119255,5.38449506278909,-0.835626795047148,5.16403129915214
+1970-08-06,-0.334136970990171,5.3890717298165,-0.244097899564209,5.22423891355977
+1970-08-07,0.612572066315684,5.39362754635236,0.685858986560202,5.35233807583766
+1970-08-08,0.996085170871722,5.39816270151775,0.945759592934774,5.46674230735086
+1970-08-09,0.463802163010418,5.40267738187228,0.463261672490286,5.4095656739075
+1970-08-10,-0.494898414589402,5.40717177146012,-0.406061775434853,5.24212825868721
+1970-08-11,-0.998591672156699,5.41164605185504,-1.00722086595165,5.27528682777297
+1970-08-12,-0.58418435158457,5.41610040220442,-0.41683200315056,5.48195333019555
+1970-08-13,0.367319367730245,5.42053499927229,0.296432773617687,5.31495365614566
+1970-08-14,0.981111354333927,5.4249500174814,0.735946273358653,5.27593089405956
+1970-08-15,0.692874086389823,5.42934562895444,0.740333589648894,5.4497252507624
+1970-08-16,-0.232388421228523,5.43372200355424,-0.302996117272391,5.49702981532769
+1970-08-17,-0.943994086083478,5.4380793089232,-1.10680020160697,5.40761155439388
+1970-08-18,-0.787695941645058,5.44241771052179,-0.780482363695874,5.51309494304074
+1970-08-19,0.0928062188958771,5.44673737166631,0.103773030104349,5.50821720083729
+1970-08-20,0.887982769781749,5.4510384535657,0.728450446677639,5.58863270933121
+1970-08-21,0.866752057272636,5.4553211153577,0.808690059167533,5.224287939489
+1970-08-22,0.0486335005389691,5.45958551414416,-0.0927456571931223,5.48490567489754
+1970-08-23,-0.814198472305347,5.46383180502561,-0.821799344846047,5.40224355811394
+1970-08-24,-0.928460124580761,5.46806014113513,-0.914307086753508,5.47615061217278
+1970-08-25,-0.189099820129863,5.47227067367148,-0.00841248026143596,5.45158116767155
+1970-08-26,0.72411798686993,5.47646355193151,0.717563323738556,5.31337214588121
+1970-08-27,0.9715850561827,5.48063892334199,0.982898859614275,5.4374125130965
+1970-08-28,0.325781305535148,5.48479693349065,0.068682984993864,5.5053890790075
+1970-08-29,-0.619544275003953,5.48893772615669,-0.751518036015568,5.60558713814508
+1970-08-30,-0.995263706279229,5.49306144334055,-1.04251971936145,5.46649472018118
+1970-08-31,-0.455942275895124,5.4971682252932,-0.721611941414096,5.5411467544089
+1970-09-01,0.502570380261423,5.50125821054473,0.557051845746479,5.53765728131691
+1970-09-02,0.999022146527674,5.50533153593236,1.03793200243202,5.44728536761482
+1970-09-03,0.576977558503058,5.50938833662798,0.626798236990909,5.49468969115472
+1970-09-04,-0.37553753594093,5.51342874616498,-0.235925850609944,5.47439394997103
+1970-09-05,-0.982785151720906,5.51745289646471,-0.962500681203523,5.5659107845068
+1970-09-06,-0.68646463135462,5.52146091786225,-0.790943399705457,5.35162146583384
+1970-09-07,0.240988305285259,5.52545293913178,0.0123878706190693,5.58589642457749
+1970-09-08,0.946877705420381,5.52942908751142,0.964506074152184,5.60616145965639
+1970-09-09,0.782212109942271,5.53338948872752,0.927120452849707,5.38216332869924
+1970-09-10,-0.101615692060797,5.53733426701854,-0.132407818794565,5.58023796354974
+1970-09-11,-0.892018495407942,5.54126354515843,-0.962578141036821,5.61149143575541
+1970-09-12,-0.862303607831082,5.54517744447956,-0.859300915256172,5.51324178152329
+1970-09-13,-0.0397907599311577,5.54907608489522,-0.0970039931657674,5.52299162611147
+1970-09-14,0.819305529144982,5.55295958492162,0.975528182021141,5.36619786794893
+1970-09-15,0.925136093146258,5.55682806169954,0.901260105086736,5.60495153504824
+1970-09-16,0.180400799592549,5.56068163101553,0.0708342844435666,5.41432229026324
+1970-09-17,-0.730194157145638,5.56452040732269,-0.759425048471091,5.52942357776438
+1970-09-18,-0.96945197326701,5.5683445037611,-1.04888557549272,5.51864922328367
+1970-09-19,-0.31740011602353,5.57215403217776,-0.561186040225387,5.67367276033344
+1970-09-20,0.626467944126354,5.57594910314632,0.49913004221685,5.61378332715657
+1970-09-21,0.994364265551414,5.57972982598622,0.919903248947247,5.68485665160572
+1970-09-22,0.448046666974262,5.5834963087817,0.423552424833935,5.46805220628203
+1970-09-23,-0.510202970945957,5.58724865840025,-0.53493873060227,5.47469958766881
+1970-09-24,-0.999374350300014,5.59098698051086,-1.09368447663785,5.68366494656696
+1970-09-25,-0.569725560839186,5.59471137960184,-0.485178595151616,5.47760279628722
+1970-09-26,0.383726281833151,5.59842195899838,0.318995939141621,5.59029737293699
+1970-09-27,0.984381950632505,5.6021188208797,0.918058355835208,5.52642097716003
+1970-09-28,0.680001393730288,5.605802066296,0.707863273043139,5.57717651883833
+1970-09-29,-0.249569308580458,5.60947179518496,-0.225280330412736,5.53528729064141
+1970-09-30,-0.949687139530166,5.61312810638807,-0.666673509493819,5.52928109235547
+1970-10-01,-0.776666994102475,5.61677109766657,-0.748508050806753,5.74562403941665
+1970-10-02,0.110417203919678,5.62040086571715,0.0773524513311796,5.59404904408384
+1970-10-03,0.895984333873104,5.62401750618734,0.82485001996526,5.57968765056015
+1970-10-04,0.857787599307056,5.62762111369064,0.988171981349619,5.48913599988155
+1970-10-05,0.030944901828293,5.63121178182137,0.205925972916381,5.68501804651162
+1970-10-06,-0.824348395681676,5.63478960316925,-0.827026837207359,5.83351821831581
+1970-10-07,-0.921739579879316,5.63835466933375,-0.949037821830457,5.63835825119566
+1970-10-08,-0.171687645155773,5.64190707093811,-0.275099181978458,5.81038780246774
+1970-10-09,0.736213118745846,5.64544689764324,0.868682200669185,5.73408713737471
+1970-10-10,0.967242936493283,5.64897423816121,0.986980667320977,5.70539759421908
+1970-10-11,0.308994059098137,5.65248918026865,0.254929075483351,5.68328931605373
+1970-10-12,-0.633342531232723,5.65599181081985,-0.485000958438628,5.61714695910523
+1970-10-13,-0.993386919156947,5.65948221575962,-0.971110858767382,5.62653494805556
+1970-10-14,-0.440115954846768,5.66296048013595,-0.357796372531555,5.60211893215147
+1970-10-15,0.517795588650813,5.66642668811243,0.532864264383582,5.71154709967244
+1970-10-16,0.999648255879538,5.66988092298052,0.925999575452127,5.57983278325523
+1970-10-17,0.562428926766744,5.67332326717149,0.376313775138275,5.80924465529929
+1970-10-18,-0.391884963841509,5.67675380226828,-0.395246491850391,5.66451383640876
+1970-10-19,-0.985901625963983,5.68017260901707,-0.974003177909016,5.65251739672469
+1970-10-20,-0.673484879893468,5.68357976733868,-0.53830383994588,5.94418605025492
+1970-10-21,0.258130758816447,5.68697535633982,0.423588751619756,5.73009138155724
+1970-10-22,0.952422168301506,5.69035945432406,1.07730789019958,5.67837177902575
+1970-10-23,0.771061028570027,5.6937321388027,0.707072419345071,5.52716292356042
+1970-10-24,-0.119210064898616,5.6970934865054,-0.0643794626447719,5.698637869699
+1970-10-25,-0.899879974464853,5.70044357339069,-0.934136515865622,5.71888793188001
+1970-10-26,-0.853204385517229,5.7037824746562,-0.798665265308174,5.74386546953083
+1970-10-27,-0.0220966192786839,5.70711026474888,-0.0141163807836101,5.87307672686865
+1970-10-28,0.829326676820903,5.71042701737487,0.979128865749577,5.4730573144742
+1970-10-29,0.918270850887274,5.71373280550937,1.07432888312665,5.8006702581415
+1970-10-30,0.162961039470883,5.71702770140622,0.137103479507379,5.61760243783108
+1970-10-31,-0.7421744001017,5.72031177660741,-0.618829226035872,5.734669050108
+1970-11-01,-0.964958118933387,5.72358510195238,-0.980944181798571,5.71452353976995
+1970-11-02,-0.300563793350083,5.7268477475872,-0.389388789860316,5.77643442486962
+1970-11-03,0.640167497718337,5.73009978297357,0.527667752965407,5.65976476132518
+1970-11-04,0.992331743668192,5.73334127689775,1.06430561832907,5.76415793024288
+1970-11-05,0.432150760861815,5.73657229747919,0.444162591588501,5.81621459151224
+1970-11-06,-0.525347638515573,5.73979291217923,-0.428135896063606,5.69465729061124
+1970-11-07,-0.999843841806507,5.74300318780948,-0.994196608245123,5.81797061434641
+1970-11-08,-0.555088227956658,5.74620319054015,-0.570647227271221,5.8487137859893
+1970-11-09,0.400012942756024,5.74939298590825,0.256096241571722,5.67998820067231
+1970-11-10,0.987344058653017,5.75257263882563,1.10853853956641,5.52302842219985
+1970-11-11,0.666915600394842,5.75574221358691,0.828206539209073,5.83080183204953
+1970-11-12,-0.266671985227481,5.75890177387728,-0.349608305735892,5.82083239941888
+1970-11-13,-0.955082577452527,5.76205138278018,-1.05154716802176,5.7987180068729
+1970-11-14,-0.765394652556692,5.76519110278484,-0.784644852706027,5.67043497126845
+1970-11-15,0.127993586101478,5.76832099579377,0.115702062561592,5.76792222337209
+1970-11-16,0.903705111970614,5.77144112313002,0.764196590207086,5.61909790690816
+1970-11-17,0.848554325543618,5.77455154554441,0.85594499451435,5.79259486632983
+1970-11-18,0.0132466055205879,5.77765232322266,-0.00854646067841032,5.81497289295676
+1970-11-19,-0.83423998252822,5.78074351579233,-0.747501523192777,5.76464002462681
+1970-11-20,-0.914730177935375,5.78382518232974,-0.939648234902594,5.79757061343272
+1970-11-21,-0.154221666243094,5.78689738136671,-0.16506874550087,5.83028942135814
+1970-11-22,0.748077534163434,5.78996017089725,0.70542480833349,5.79287511691186
+1970-11-23,0.962597699596405,5.79301360838414,0.992414351505667,5.82316031402271
+1970-11-24,0.292109979267175,5.79605775076537,0.169346383685419,5.82149730852328
+1970-11-25,-0.646942308866107,5.79909265446053,-0.650996000548311,5.98438225842141
+1970-11-26,-0.991198821755207,5.80211837537706,-0.788323178334595,5.64559709705382
+1970-11-27,-0.424151709070136,5.80513496891649,-0.580279786851527,5.78487591854053
+1970-11-28,0.532858528858193,5.80814248998044,0.624540096261405,5.82301033403265
+1970-11-29,0.999961092757309,5.8111409929767,0.99517417411309,5.81438581440701
+1970-11-30,0.547704039532204,5.81413053182507,0.548427220730936,5.83766572355337
+1970-12-01,-0.408109581772219,5.8171111599632,-0.407565241308843,5.73361592095734
+1970-12-02,-0.988709135689029,5.82008293035236,-0.915649030657604,5.92460380502776
+1970-12-03,-0.660294069919136,5.82304589548302,-0.761037219861072,5.9495986068123
+1970-12-04,0.275192318632293,5.82600010738045,0.376811964743032,5.83427924095872
+1970-12-05,0.957668158547592,5.82894561761021,1.01956996500232,5.76654849108746
+1970-12-06,0.759668310007225,5.83188247728352,0.908512416655306,5.88812467864601
+1970-12-07,-0.136767079363879,5.8348107370626,-0.0817368603923276,5.8379477808281
+1970-12-08,-0.907459446701534,5.83773044716594,-0.913876416895225,5.79756098850749
+1970-12-09,-0.843837783705451,5.8406416573734,-0.78872336309221,5.96651641431298
+1970-12-10,-0.00439555392789772,5.84354441703136,0.0565605527710909,5.84592465764047
+1970-12-11,0.83908792785983,5.84643877505772,0.965777454599878,5.97818674761746
+1970-12-12,0.911117838425468,5.84932477994686,1.02706899758262,5.74938456586531
+1970-12-13,0.145470210177922,5.85220247977447,0.0514030505275937,5.83416382400539
+1970-12-14,-0.75392205843696,5.85507192220243,-0.648319761043928,5.85899207163899
+1970-12-15,-0.960161863414609,5.85793315448346,-0.956715940144827,5.94620927547657
+1970-12-16,-0.283633279182166,5.86078622346587,-0.0840023283231365,5.76358234080567
+1970-12-17,0.653666433888477,5.8636311755981,0.842620909369739,5.9506983694118
+1970-12-18,0.989988242179262,5.8664680569333,0.941024177643569,5.9866621425335
+1970-12-19,0.416119426175127,5.86929691313377,0.592045418706049,5.68186471324971
+1970-12-20,-0.540327671221366,5.87211778947542,-0.625499461917364,5.86931781522186
+1970-12-21,-0.999999999545659,5.87493073085203,-1.02532130005708,5.62188837721425
+1970-12-22,-0.54027694002395,5.87773578177964,-0.540841326831702,5.79160386274916
+1970-12-23,0.416174246541013,5.8805329864007,0.472159184742871,5.87320061358154
+1970-12-24,0.98999675012204,5.88332238848828,0.990230233795469,5.71613767535995
+1970-12-25,0.653620807244793,5.88610403145016,0.661413991410408,5.82565162882015
+1970-12-26,-0.283691091486527,5.88887795833288,-0.254411767253435,5.95926252207365
+1970-12-27,-0.960178709013633,5.89164421182577,-1.0523848911073,5.83282550848087
+1970-12-28,-0.753882449564592,5.89440283426485,-0.82574075973703,5.54090633999073
+1970-12-29,0.145529857307092,5.89715386763674,0.311781036621031,5.86001365634749
+1970-12-30,0.911142684515958,5.89989735358249,0.983409393684464,5.86280278575622
+1970-12-31,0.839055129530626,5.90263333340137,0.596812457505007,6.04131969661883
+1971-01-01,-0.0044558420441823,5.90536184805457,-0.192053143200162,5.83728378475703
+1971-01-02,-0.843870132992738,5.90808293816893,-0.727495544055598,6.06118741454728
+1971-01-03,-0.907434115374278,5.91079664404053,-0.955154324996928,5.89428364560041
+1971-01-04,-0.136707356927538,5.91350300563827,-0.150879866861883,6.12412992191351
+1971-01-05,0.759707515020103,5.91620206260743,0.827665923078356,5.88859978311962
+1971-01-06,0.95765080122897,5.91889385427315,0.937100732713176,6.06445139780488
+1971-01-07,0.275134357220865,5.92157841964382,0.154412071475843,5.99320702309974
+1971-01-08,-0.660339345969006,5.92425579741453,-0.575549668651506,5.86545877453984
+1971-01-09,-0.988700099785892,5.92692602597041,-0.986179852010599,6.03107362071337
+1971-01-10,-0.408054541483748,5.92958914338989,-0.358441522858466,5.86218210580053
+1971-01-11,0.547754480418621,5.93224518744801,0.47212241930814,6.08056869257256
+1971-01-12,0.999960559123319,5.93489419561959,0.989398566374993,5.91351841768641
+1971-01-13,0.532807511324426,5.93753620508243,0.482608338056845,6.05627251539917
+1971-01-14,-0.424206305218414,5.94017125272043,-0.359589026782269,5.88076856683693
+1971-01-15,-0.991206801071052,5.9427993751267,-1.04369300822112,5.8213891906252
+1971-01-16,-0.64689633520333,5.94542060860658,-0.608937239411392,6.01650089125467
+1971-01-17,0.292167637935036,5.94803498918065,0.270922731252776,5.97787240102224
+1971-01-18,0.962614032156025,5.95064255258773,0.878187618351563,5.91319773343614
+1971-01-19,0.74803752453482,5.95324333428778,0.691820644465725,6.1442935927534
+1971-01-20,-0.154281233391908,5.95583736946483,-0.0593427349804801,5.90861009498212
+1971-01-21,-0.914754536842477,5.95842469302978,-0.882473000218907,6.00064067283417
+1971-01-22,-0.834206737726757,5.96100533962327,-0.870190827617119,5.89398845344673
+1971-01-23,0.0133068889134667,5.96357934361845,0.095098980500177,5.84058278577913
+1971-01-24,0.848586223254512,5.96614673912369,0.671143414399223,5.88673028237075
+1971-01-25,0.903679297391231,5.96870755998537,0.929861031745851,6.07065495683095
+1971-01-26,0.127933793037053,5.97126183979046,0.0789536924534672,5.88939611171387
+1971-01-27,-0.765433450638477,5.97380961186926,-0.903282435440922,5.90150834540759
+1971-01-28,-0.955064709774204,5.97635090929793,-0.936634020403904,5.8333677436173
+1971-01-29,-0.2666138792501,5.97888576490112,-0.362730792765398,5.98121031883683
+1971-01-30,0.666960522303647,5.98141421125448,0.622253227959385,6.09324604588704
+1971-01-31,0.987334495497458,5.98393628068719,1.04247365247915,6.01257552273099
+1971-02-01,0.39995768685722,5.98645200528444,0.512850864073931,5.93320384908604
+1971-02-02,-0.555138374580172,5.98896141688986,-0.540273767801213,5.93806269281484
+1971-02-03,-0.999842774580336,5.99146454710798,-0.977533079211171,6.1199288084838
+1971-02-04,-0.525296338642536,5.99396142730657,-0.62513677552943,5.97981531308106
+1971-02-05,0.432205128515029,5.99645208861902,0.442145257537821,6.02561923619687
+1971-02-06,0.992339193731948,5.99893656194668,0.990843509414227,6.01006724846505
+1971-02-07,0.640121180638375,6.00141487796115,0.594429031419486,5.97567558356409
+1971-02-08,-0.300621293864048,6.00388706710654,-0.32423228173485,5.85758814675183
+1971-02-09,-0.964973937173992,6.00635315960173,-0.87677204343216,5.89851814106298
+1971-02-10,-0.742133992851483,6.00881318544259,-0.659777033749905,6.01205247016763
+1971-02-11,0.163020521972421,6.01126717440416,0.175040968684403,6.03676860292304
+1971-02-12,0.918294720702536,6.0137151560428,0.89008190795867,6.03962575101605
+1971-02-13,0.829292988151819,6.01615715969835,0.897464854302878,6.10344104322944
+1971-02-14,-0.0221568932251213,6.01859321449623,-0.0196779428572952,6.01858360792249
+1971-02-15,-0.853235829152633,6.02102334934953,-0.793471180483749,5.87641269312354
+1971-02-16,-0.899853678655842,6.02344759296103,-0.696560587328125,5.93845467880727
+1971-02-17,-0.119150205890726,6.02586597382531,-0.105003835060851,5.96541575915452
+1971-02-18,0.771099416680996,6.0282785202307,0.765949541395102,5.88134924616488
+1971-02-19,0.952403791663366,6.03068526026126,0.946245317253114,5.97990755319767
+1971-02-20,0.258072512825555,6.0330862217988,0.12105322078708,6.26543157664865
+1971-02-21,-0.673529444141701,6.03548143252476,-0.726317661981209,6.11076018482965
+1971-02-22,-0.98589153630525,6.03787091992214,-1.05148529564389,6.03519052037956
+1971-02-23,-0.391829496661518,6.04025471127741,-0.395496469662729,6.0862100353839
+1971-02-24,0.562478775198509,6.04263283368238,0.533504727134636,5.9423650188286
+1971-02-25,0.9996466551448,6.04500531403601,1.05011072011217,6.076864825929
+1971-02-26,0.517744010457709,6.04737217904628,0.630057333035029,6.14916233636132
+1971-02-27,-0.440170089745364,6.04973345523196,-0.585840081981808,6.12951834662673
+1971-02-28,-0.993393839384921,6.05208916892442,-0.953551669735418,6.18559197883226
+1971-03-01,-0.63329587436439,6.05443934626937,-0.612301350332326,6.08032353464404
+1971-03-02,0.309051396953201,6.05678401322862,0.336907375977201,6.13324706766623
+1971-03-03,0.967258239175559,6.0591231955818,0.990978231972472,5.94442014622729
+1971-03-04,0.736172317039821,6.06145691892802,0.959330839297104,6.15989261955901
+1971-03-05,-0.171747038349746,6.06378520868761,-0.023817386876928,6.10560204581398
+1971-03-06,-0.921762958732604,6.06610809010375,-0.885046603979672,6.02814298580171
+1971-03-07,-0.824314265784384,6.06842558824411,-0.736437307552159,6.16099195514856
+1971-03-08,0.0310051616059934,6.07073772800249,0.0136630303569734,6.1402443160975
+1971-03-09,0.857818586403449,6.07304453410041,0.936468624778359,6.16338689192506
+1971-03-10,0.89595755889467,6.07534603108868,0.993837298735337,6.10074044087289
+1971-03-11,0.11035728365811,6.07764224334903,0.175307417357943,6.16553084937931
+1971-03-12,-0.776704969235027,6.07993319509559,-0.724033297312016,5.96101598852061
+1971-03-13,-0.949668255371966,6.08221891037645,-0.97867533323731,6.00605881683957
+1971-03-14,-0.249510927139466,6.08449941307517,-0.262960524496648,6.06514874297799
+1971-03-15,0.680045596826464,6.08677472691231,0.69129218682782,6.17215266784822
+1971-03-16,0.984371335261093,6.08904487544685,0.940097528863561,6.16874787649622
+1971-03-17,0.383670607717673,6.0913098820777,0.432490031550718,5.98596895551927
+1971-03-18,-0.569775107173715,6.09356977004514,-0.588080697495167,6.11734900080338
+1971-03-19,-0.999372216182122,6.09582456243222,-1.04170990691987,6.00217282522025
+1971-03-20,-0.510151118473792,6.09807428216624,-0.582259314156168,6.09583803577235
+1971-03-21,0.448100564876922,6.10031895202006,0.280264096061183,6.0492428984014
+1971-03-22,0.994370655401426,6.10255859461357,1.13222127202405,6.22642325913165
+1971-03-23,0.626420951125085,6.10479323241498,0.579846951432821,6.24722914316483
+1971-03-24,-0.317457286727432,6.10702288774225,-0.389019088840234,6.24790121989899
+1971-03-25,-0.969466759192035,6.10924758276437,-0.956831383850015,6.2460762247275
+1971-03-26,-0.730152964180506,6.11146733950268,-0.5857320743298,6.09848865049578
+1971-03-27,0.180460098825665,6.11368217983223,0.370277534316221,6.09570463870487
+1971-03-28,0.925158979205905,6.11589212548303,0.997511200609425,6.07918488633994
+1971-03-29,0.819270960693464,6.11809719804135,0.800711354865552,6.18129509159543
+1971-03-30,-0.0398510008189356,6.12029741895095,-0.0889519723450652,6.22103880425298
+1971-03-31,-0.862334135960712,6.12249280951439,-0.63353628144258,6.16918460341702
+1971-04-01,-0.891991243357829,6.12468339089421,-0.892204491398687,6.08095335203941
+1971-04-02,-0.101555715240137,6.12686918411419,0.0539262177673259,5.92264581599793
+1971-04-03,0.782249669121161,6.12905021006055,0.745740975345349,6.28153793311703
+1971-04-04,0.946858315221642,6.13122648948314,0.850655427904261,6.13193339228422
+1971-04-05,0.240929792968189,6.13339804299665,0.210278921103492,6.03438194664396
+1971-04-06,-0.68650846983555,6.13556489108174,-0.706578154180756,6.07797866140683
+1971-04-07,-0.982774011468501,6.13772705408623,-0.946592966551101,6.35985609610768
+1971-04-08,-0.375481659251875,6.13988455222626,-0.399226099961918,6.19588915278133
+1971-04-09,0.577026798858534,6.14203740558736,0.592837437518323,6.21787476916358
+1971-04-10,0.99901947919383,6.14418563412565,1.03497879381302,6.18829535159827
+1971-04-11,0.502518257572694,6.1463292576689,0.430741433166874,6.03482983680459
+1971-04-12,-0.455995932579097,6.14846829591765,-0.342241190913559,6.22182635694926
+1971-04-13,-0.995269565250652,6.15060276844628,-1.10661399616193,6.16527409371949
+1971-04-14,-0.61949694955152,6.1527326947041,-0.574407863130568,6.12175907040969
+1971-04-15,0.325838304608723,6.15485809401642,0.243582429212455,6.29131800330669
+1971-04-16,0.971599324192036,6.15697898558556,0.991960020830562,6.24924458109611
+1971-04-17,0.724076405873044,6.15909538849193,0.8140751720177,6.05231584293731
+1971-04-18,-0.189159020756195,6.16120732169508,-0.25908420207531,6.05464133740093
+1971-04-19,-0.928482516053707,6.16331480403464,-1.04263618008613,6.23056769516427
+1971-04-20,-0.814163468007945,6.16541785423142,-0.965565715885632,6.22234544824842
+1971-04-21,0.0486937178171189,6.16751649088834,0.00842129310510216,6.19058858942804
+1971-04-22,0.866782124043708,6.16961073249146,0.974930789353187,6.17250183899921
+1971-04-23,0.88795504279508,6.17170059741091,0.99688073823361,6.06288449038242
+1971-04-24,0.0927461902151406,6.17378610390194,0.0854712941032679,6.26795740607477
+1971-04-25,-0.787733081927629,6.17586727010576,-0.789441236963608,6.10657073713061
+1971-04-26,-0.943974191363369,6.1779441140506,-0.929450308378207,6.27155532987831
+1971-04-27,-0.232329782619653,6.18001665365257,-0.329151838188107,6.17019559312578
+1971-04-28,0.692917556820885,6.18208490671663,0.597293557137208,6.02631508309713
+1971-04-29,0.981099690073336,6.18414889093748,0.747426844893746,6.04883771162163
+1971-04-30,0.367263292845397,6.18620862390049,0.39209862592875,6.08888900945749
+1971-05-01,-0.584233282103149,6.18826412308259,-0.705629442161862,6.31117273011012
+1971-05-02,-0.998588471815882,6.19031540585315,-1.00842390434801,6.04774904211857
+1971-05-03,-0.494846025767777,6.19236248947487,-0.375974107877096,6.20013171266304
+1971-05-04,0.463855574271853,6.19440539110467,0.469164484207905,6.3277181255721
+1971-05-05,0.996090498505521,6.19644412779452,0.874201819337035,6.36403085082559
+1971-05-06,0.612524412119903,6.19847871649231,0.665140882616807,6.10088041109778
+1971-05-07,-0.3341937939677,6.20050917404269,-0.35188449756043,6.22086401785078
+1971-05-08,-0.973655767095044,6.20253551718792,-0.817601313246337,6.1298909151204
+1971-05-09,-0.717943118198829,6.20455776256869,-0.58532229250795,6.03177633258845
+1971-05-10,0.197843122605065,6.20657592672493,0.220918310436847,6.12671430206972
+1971-05-11,0.931733308886168,6.20859002609663,0.99085617046713,6.40579325685733
+1971-05-12,0.808992187885632,6.21060007702465,0.833412095958795,6.12865343816495
+1971-05-13,-0.0575326197983314,6.21260609575152,0.0932332692593783,6.29491790698563
+1971-05-14,-0.871162202164979,6.21460809842219,-0.789462216626749,6.28859650114161
+1971-05-15,-0.883849273431478,6.21660610108486,-0.776261630336845,6.10546030956138
+1971-05-16,-0.0839293987848358,6.21860011969173,-0.0131898663001541,6.13598749285998
+1971-05-17,0.793154778044331,6.22059017009974,0.676675495656939,6.26557416846527
+1971-05-18,0.941016109760205,6.22257626807137,1.00122365167442,6.14419718246276
+1971-05-19,0.223711569880679,6.22455842927536,0.309952696702417,6.20135018100901
+1971-05-20,-0.69927235564838,6.22653666928747,-0.759002746931258,6.3215922264132
+1971-05-21,-0.979348502254011,6.22851100359118,-1.10880665251522,6.10888069563653
+1971-05-22,-0.359016152384322,6.23048144757848,-0.281662381215198,6.27271130634684
+1971-05-23,0.591393992299697,6.23244801655052,0.558783462109591,6.19343429663109
+1971-05-24,0.998079227816505,6.23441072571837,0.906663299505097,6.37116690623325
+1971-05-25,0.487135024157002,6.2363695902037,0.483889975914677,6.27518669936888
+1971-05-26,-0.471678874174184,6.23832462503951,-0.598723695837926,6.26650567014485
+1971-05-27,-0.996833390848202,6.24027584517077,-0.966062058394214,6.29444969752609
+1971-05-28,-0.605503885109096,6.24222326545517,-0.512784503579692,6.29951482109859
+1971-05-29,0.342523100175079,6.24416690066374,0.410472559270168,6.24572530627527
+1971-05-30,0.975635926784494,6.24610676548156,0.894665249437161,6.28422788064034
+1971-05-31,0.711753581683844,6.24804287450843,0.827216191710773,6.05414528896859
+1971-06-01,-0.206511723997117,6.24997524225948,-0.146873353214211,6.24929135869114
+1971-06-02,-0.934911103012738,6.25190388316589,-0.819902051029108,6.32649303848351
+1971-06-03,-0.8037575254819,6.25382881157547,-0.674914627849539,6.17038364874885
+1971-06-04,0.066367014259257,6.25575004175337,0.13655903745907,6.16121294509342
+1971-06-05,0.875474027157621,6.25766758788264,0.806043081422484,6.26966597932343
+1971-06-06,0.8796742569426,6.25958146406492,0.896916762509018,6.24093226342029
+1971-06-07,0.0751060317202384,6.26149168432104,0.176069625708824,6.16326715788704
+1971-06-08,-0.7985143326965,6.26339826259162,-0.663268383429433,6.35306556380912
+1971-06-09,-0.937984302169594,6.26530121273771,-1.12467305940368,6.22122843782467
+1971-06-10,-0.215075829964199,6.26720054854136,-0.247474302099523,6.38944868471629
+1971-06-11,0.705572368437272,6.26909628370626,0.804916078894972,6.22262217252548
+1971-06-12,0.977520585211205,6.2709884318583,0.966391332823356,6.20831290256479
+1971-06-13,0.350740884009102,6.27287700654617,0.316037063925302,6.24755858211225
+1971-06-14,-0.598508368426509,6.27476202124194,-0.614558320530032,6.29661921309839
+1971-06-15,-0.997491787093544,6.27664348934164,-0.947913786489118,6.30343641294604
+1971-06-16,-0.479385856875838,6.27852142416584,-0.547624585903079,6.12321392931218
+1971-06-17,0.479465219352366,6.2803958389602,0.491695171558009,6.30375237054706
+1971-06-18,0.997498184075151,6.28226674689601,1.01185495950796,6.21659196407611
+1971-06-19,0.598435918557807,6.2841341610708,0.533211022000408,6.18198946468464
+1971-06-20,-0.350825570652949,6.28599809450886,-0.218057638525247,6.36812550768285
+1971-06-21,-0.977539648120395,6.28785856016178,-0.880863436379015,6.2216176055382
+1971-06-22,-0.70550828126101,6.289715570909,-0.7353096996425,6.11671017503553
+1971-06-23,0.215164145771612,6.29156913955832,0.259786122271365,6.29718567902301
+1971-06-24,0.938015649462111,6.29341927884648,0.904082083752951,6.2773292815867
+1971-06-25,0.798459890917946,6.29526600143965,0.694312228257488,6.44393528447665
+1971-06-26,-0.0751962090497312,6.29710931993394,-0.15366976397749,6.364209524419
+1971-06-27,-0.879717261202171,6.29894924685594,-0.887541676054589,6.32364133822246
+1971-06-28,-0.875430320429344,6.30078579466324,-1.01015234517705,6.10681200605685
+1971-06-29,-0.066276780307547,6.30261897574491,-0.138048345230326,6.43921320783697
+1971-06-30,0.803811325977977,6.30444880242198,0.735158451288978,6.25408586503651
+1971-07-01,0.934879006125203,6.30627528694802,0.990894335401205,6.27453840666323
+1971-07-02,0.206423239456346,6.30809844150953,0.13868101033219,6.49248642931496
+1971-07-03,-0.711817101599132,6.30991827822652,-0.802943306392587,6.25914964072747
+1971-07-04,-0.97561608215712,6.31173480915291,-0.941204138472005,6.30094686843737
+1971-07-05,-0.342438136063933,6.31354804627709,-0.386090306194705,6.38140732403426
+1971-07-06,0.605575853092059,6.31535800152233,0.538425498434422,6.34309946810697
+1971-07-07,0.996826195671344,6.31716468674728,0.988099825208851,6.15794604974365
+1971-07-08,0.471599131049926,6.31896811374643,0.526616146938636,6.2998370899087
+1971-07-09,-0.487213999767972,6.32076829425058,-0.383114521726465,6.36349424315423
+1971-07-10,-0.998084826101675,6.32256523992728,-0.816205093981186,6.26789778990565
+1971-07-11,-0.5913210662215,6.32435896238131,-0.358208455802235,6.42202592018647
+1971-07-12,0.359100554925907,6.3261494731551,0.409220557529926,6.34392779380985
+1971-07-13,0.979366781951493,6.32793678372919,0.937361874826749,6.39503945467553
+1971-07-14,0.699207706232195,6.3297209055227,0.701049918148029,6.11782195863093
+1971-07-15,-0.223799710035437,6.33150184989369,-0.348824333188998,6.25362384283136
+1971-07-16,-0.941046705001731,6.33327962813969,-0.817519409812858,6.25163087815946
+1971-07-17,-0.793099699248663,6.33505425149806,-0.804698964863704,6.33187807168691
+1971-07-18,0.0840195124269691,6.33682573114644,0.170618941253015,6.37051457715397
+1971-07-19,0.88389157185308,6.33859407820318,0.878812285748466,6.31105282101266
+1971-07-20,0.871117796392298,6.34035930372775,0.903439668061544,6.37793159305656
+1971-07-21,0.0574423362939826,6.34212141872115,-0.101163928290281,6.32267638268248
+1971-07-22,-0.809045342884114,6.34388043412633,-0.788435333346485,6.28844951188386
+1971-07-23,-0.931700464918315,6.3456363608286,-1.02264241221736,6.42649127888741
+1971-07-24,-0.197754476263453,6.34738920965601,-0.0869011236728486,6.19825175910919
+1971-07-25,0.718006065876535,6.3491389913798,0.598298057938936,6.28081892843178
+1971-07-26,0.97363514230426,6.35088571671474,1.00783898710087,6.42787610324421
+1971-07-27,0.334108559045957,6.35262939631957,0.201520991901139,6.3870140361388
+1971-07-28,-0.612595892578636,6.35437004079735,-0.400037548863068,6.37186893778086
+1971-07-29,-0.996082505697133,6.35610766069589,-0.930036028995442,6.37387505243386
+1971-07-30,-0.463775456747515,6.3578422665081,-0.359660884737424,6.21996864428157
+1971-07-31,0.494924608325669,6.35957386867238,0.482032544598168,6.30710828297036
+1971-08-01,0.998593270966005,6.361302477573,1.09679453883162,6.36832304483876
+1971-08-02,0.584159885529012,6.36302810354046,0.510764562239484,6.34844569958287
+1971-08-03,-0.367347404672017,6.36475075685191,-0.555886093805235,6.26121899052825
+1971-08-04,-0.981117185126947,6.36647044773144,-1.12252965552424,6.63882725469538
+1971-08-05,-0.692852350229879,6.36818718635049,-0.679600328537635,6.36628780506922
+1971-08-06,0.23241774021622,6.36990098282823,0.24939198821852,6.36895801137616
+1971-08-07,0.944004032156851,6.37161184723186,0.866413884980082,6.46258842369218
+1971-08-08,0.787677370430116,6.37331978957701,0.885228942554917,6.26354194410002
+1971-08-09,-0.0928362331097619,6.3750248198281,-0.0735483170522844,6.40701609954979
+1971-08-10,-0.887996632064749,6.37672694789863,-0.914212607031396,6.24109900291576
+1971-08-11,-0.86673702270569,6.37842618365159,-0.909494646257079,6.25761723031812
+1971-08-12,-0.0486033918335919,6.38012253689976,0.0738516623366488,6.29792715582037
+1971-08-13,0.814215973344285,6.3818160174061,0.662632035198208,6.34589611720491
+1971-08-14,0.92844892757877,6.38350663488401,0.912178100125654,6.36842700378888
+1971-08-15,0.189070219558937,6.38519439899773,0.136219075855704,6.49408770556452
+1971-08-16,-0.724138776381392,6.38687931936265,-0.558300775292027,6.31023343504357
+1971-08-17,-0.971577920853736,6.38856140554563,-0.881552216278606,6.54180971987775
+1971-08-18,-0.3257528055543,6.39024066706535,-0.315939807656785,6.46564002082809
+1971-08-19,0.619567936885727,6.3919171133926,0.532215848895856,6.43074921244921
+1971-08-20,0.995260775436949,6.39359075395063,0.966986550984529,6.22890649749464
+1971-08-21,0.455915446931666,6.39526159811545,0.423150617375532,6.44049179354496
+1971-08-22,-0.502596440920784,6.39692965521615,-0.478507220158584,6.45644389979787
+1971-08-23,-0.999023478832906,6.39859493453521,-0.9566448366653,6.41796990872321
+1971-08-24,-0.576952937538875,6.40025744530882,-0.450978603985871,6.3921306999138
+1971-08-25,0.375565473773604,6.40191719672719,0.414621151011589,6.45470334836351
+1971-08-26,0.982790720507552,6.40357419793482,0.997309486671827,6.28569731787893
+1971-08-27,0.686442711178478,6.40522845803084,0.53862230182423,6.40565295596329
+1971-08-28,-0.241017561115334,6.40687998606931,-0.42938293660864,6.40332992554394
+1971-08-29,-0.946887399229138,6.4085287910595,-0.980676352112983,6.36749881950024
+1971-08-30,-0.782193329286644,6.41017488196617,-0.965286522180242,6.34439896946409
+1971-08-31,0.101645680332636,6.4118182677099,0.0747449594226818,6.59756379830518
+1971-09-01,0.892032120217163,6.41345895716736,0.661161955240863,6.48347374460839
+1971-09-02,0.862288342590921,6.4150969591716,0.820360743778383,6.31386138257727
+1971-09-03,0.0397606394330194,6.41673228251233,-0.0522115936094991,6.44178035624841
+1971-09-04,-0.819322812254017,6.41836493593621,-0.757593992231707,6.35821033742038
+1971-09-05,-0.925124648855448,6.41999492814714,-0.936608128311505,6.55656468256529
+1971-09-06,-0.180371149730086,6.42162226780652,-0.208593648603683,6.34547116174471
+1971-09-07,0.730214752632942,6.42324696353352,0.865439630680389,6.30419963479261
+1971-09-08,0.96944457898311,6.42486902390539,0.822611235226137,6.59810359562884
+1971-09-09,0.317371530238942,6.42648845745769,0.242007842631726,6.51009249832267
+1971-09-10,-0.626491439773109,6.4281052726846,-0.632344190918276,6.44940170666122
+1971-09-11,-0.994361069271065,6.42971947803914,-0.78688006263657,6.61386260931219
+1971-09-12,-0.448019717412222,6.43133108193348,-0.56443154903944,6.4741487858051
+1971-09-13,0.510228896486633,6.43294009273918,0.572415341975403,6.33522225291615
+1971-09-14,0.99937541599679,6.43454651878745,0.960588974728434,6.35232238182568
+1971-09-15,0.569700786895362,6.43615036836943,0.600217631824573,6.37032318138344
+1971-09-16,-0.383754118367875,6.4377516497364,-0.189006068505693,6.57140364501266
+1971-09-17,-0.984387256976478,6.4393503711001,-0.987755959261693,6.34960494221227
+1971-09-18,-0.679979291255333,6.44094654063292,-0.720043528676638,6.68520154382817
+1971-09-19,0.249598498960799,6.4425401664682,0.203926096826355,6.57902636813793
+1971-09-20,0.949696580314825,6.44413125670044,0.780819008686199,6.49259323455072
+1971-09-21,0.776648005477575,6.44571981938558,0.789933893244177,6.3118830414716
+1971-09-22,-0.110447163899974,6.44730586254121,-0.331313524604497,6.47198326105199
+1971-09-23,-0.895997720141079,6.44888939414686,-0.777370849655489,6.57336835182559
+1971-09-24,-0.857772104589668,6.45047042214418,-0.938727939757076,6.49447317274171
+1971-09-25,-0.0309147718972505,6.45204895443723,0.172930236435941,6.42450440047592
+1971-09-26,0.824365459506724,6.45362499889269,0.740548989354216,6.53318431977209
+1971-09-27,0.921727889196314,6.45519856334012,0.69136268889587,6.45104219885809
+1971-09-28,0.171657948324759,6.45676965557216,0.221502975986707,6.45190048536665
+1971-09-29,-0.736233518595392,6.45833828334479,-0.762958913561456,6.46728344050756
+1971-09-30,-0.967235283833767,6.45990445437753,-0.951321876246454,6.52555372000628
+1971-10-01,-0.308965389749426,6.46146817635372,-0.382784884685803,6.4914659849979
+1971-10-02,0.63336585880364,6.46302945692067,0.624340771472137,6.54963036062239
+1971-10-03,0.993383457688949,6.46458830368996,0.855454670289031,6.32886094298361
+1971-10-04,0.440088886797569,6.46614472423762,0.530681528302288,6.55678731371311
+1971-10-05,-0.51782137704161,6.46769872610435,-0.509636814270671,6.44776305067256
+1971-10-06,-0.999649054884364,6.46925031679577,-0.980367096315767,6.44830868882169
+1971-10-07,-0.562404001784247,6.4707995037826,-0.438651507844651,6.41802558874998
+1971-10-08,0.391912696897368,6.4723462945009,0.289074443300976,6.52678115625343
+1971-10-09,0.985906669449545,6.47389069635227,0.833468715282943,6.30003823695449
+1971-10-10,0.673462596851366,6.47543271670409,0.525507896602382,6.33492352552569
+1971-10-11,-0.258159881460068,6.47697236288968,-0.472735009156679,6.47963578631768
+1971-10-12,-0.952431355322407,6.47850964220857,-0.85221040768317,6.57646152389832
+1971-10-13,-0.77104183346356,6.48004456192665,-0.612101430889383,6.62719616172393
+1971-10-14,0.119239994240088,6.48157712927643,0.0788431869684975,6.50979377604243
+1971-10-15,0.899893121142807,6.4831073514572,0.657712379668191,6.44482386286702
+1971-10-16,0.853188662536583,6.48463523563525,0.838680514303228,6.57583608182248
+1971-10-17,0.0220664822753333,6.48616078894409,0.121199296523385,6.59348259383877
+1971-10-18,-0.829343520025061,6.48768401848461,-0.66841402144149,6.28188673669231
+1971-10-19,-0.918258914728014,6.48920493132532,-0.829038546763101,6.52470042290401
+1971-10-20,-0.162931297997982,6.49072353450251,-0.290835233532885,6.67598569314078
+1971-10-21,0.742194602715217,6.49223983502047,0.795108010851534,6.55379691732107
+1971-10-22,0.96495020849782,6.49375383985169,0.985030040192972,6.65817649582368
+1971-10-23,0.300535042683412,6.49526555593701,0.0617548160084145,6.44121528722681
+1971-10-24,-0.640190655385765,6.49677499018586,-0.683324507589625,6.63870639213525
+1971-10-25,-0.992328017283742,6.49828214947643,-0.968960479115519,6.7085124268791
+1971-10-26,-0.432123576446164,6.49978704065585,-0.204947145563151,6.39343458506004
+1971-10-27,0.525373287736042,6.50128967054039,0.43539660604462,6.55589708537012
+1971-10-28,0.999844374056783,6.50279004591562,0.807120725074497,6.44815760865421
+1971-10-29,0.555063153888291,6.50428817353665,0.612509766424426,6.41867655048536
+1971-10-30,-0.400040570160211,6.50578406012823,-0.446185059569598,6.55400746948685
+1971-10-31,-0.987348838885026,6.50727771238501,-1.12788583946506,6.41282393634775
+1971-11-01,-0.666893138531408,6.50876913697168,-0.731241519438424,6.47492822480684
+1971-11-02,0.266701037852704,6.51025834052315,0.182059825337527,6.52370000934683
+1971-11-03,0.955091509989893,6.51174532964473,0.966916137827892,6.45135640901398
+1971-11-04,0.765375252472541,6.51323011091231,0.650989612474894,6.5604617292065
+1971-11-05,-0.128023482459246,6.51471269087253,-0.129847152462449,6.40745765428929
+1971-11-06,-0.903718018028541,6.51619307604296,-0.916927394892898,6.42622288173907
+1971-11-07,-0.848538375531565,6.51767127291227,-0.836609844445801,6.50252391143538
+1971-11-08,-0.0132164638060794,6.5191472879404,-0.239228163161495,6.50911720113187
+1971-11-09,0.83425660379187,6.5206211275587,1.07561470485369,6.59044798646487
+1971-11-10,0.91471799723502,6.52209279817015,0.904014655293213,6.45217909275641
+1971-11-11,0.154191882458466,6.52356230614951,0.0715160563293874,6.57229751783692
+1971-11-12,-0.748097537958103,6.52502965784346,-0.584309429830166,6.71824434733995
+1971-11-13,-0.962589532004549,6.52649485957079,-0.902468333914502,6.5802436296179
+1971-11-14,-0.292081149535079,6.52795791762255,-0.326277834478055,6.43051546528221
+1971-11-15,0.646965294815709,6.52941883826223,0.613030029367394,6.58776477710085
+1971-11-16,0.991194830746255,6.53087762772588,1.22368989883906,6.51539979209016
+1971-11-17,0.424124410417856,6.53233429222235,0.253266531440161,6.45170167338028
+1971-11-18,-0.53288403689879,6.53378883793334,-0.432088859408514,6.49525833553407
+1971-11-19,-0.999961358211334,6.53524127101366,-1.11474077775709,6.62188757991797
+1971-11-20,-0.547678818342451,6.5366915975913,-0.436918108540001,6.478270426213
+1971-11-21,0.408137101360205,6.53813982376767,0.411651710809873,6.52427823870537
+1971-11-22,0.988713652292966,6.53958595561767,0.973074553147302,6.77650423095561
+1971-11-23,0.660271430994194,6.5410299991899,0.649698281821093,6.47458268485078
+1971-11-24,-0.275221298962927,6.5424719605068,-0.218807587909057,6.49104084262949
+1971-11-25,-0.957676835901583,6.54391184556479,-0.84943096356812,6.64634219661091
+1971-11-26,-0.759648706465331,6.54534966033442,-0.724010917618356,6.57020042465811
+1971-11-27,0.136796940395646,6.54678541076052,0.14495307593583,6.53828182822854
+1971-11-28,0.90747211112828,6.54821910276237,0.965790468226149,6.60547422150003
+1971-11-29,0.84382160791163,6.54965074223381,0.887002374342154,6.4159821232551
+1971-11-30,0.00436540986375049,6.5510803350434,0.0720139998336541,6.52751190671852
+1971-12-01,-0.839104325880742,6.55250788703459,-0.617319677159603,6.46148741178631
+1971-12-02,-0.911105414138343,6.55393340402581,-0.784616356595064,6.65478096327336
+1971-12-03,-0.145440386415043,6.55535689181067,-0.228974041171949,6.532413100147
+1971-12-04,0.75394186184554,6.55677835615804,0.86521527678831,6.58685215527562
+1971-12-05,0.960153439306371,6.55819780281227,0.798084025745027,6.47583607913934
+1971-12-06,0.283604372643374,6.55961523749324,0.376167268620223,6.64171204401112
+1971-12-07,-0.653689246319367,6.56103066589657,-0.672551480626952,6.74493534068496
+1971-12-08,-0.989983986858494,6.56244409369372,-0.876206996998688,6.53026169779825
+1971-12-09,-0.416092015424991,6.56385552653213,-0.35385858712918,6.50458797871261
+1971-12-10,0.540353036083606,6.56526497003536,0.497623136364136,6.41242796004171
+1971-12-11,0.999999998182636,6.56667242980324,1.0098182418371,6.67750208568841
+1971-12-12,0.540251573688821,6.56807791141198,0.520930700522451,6.67584677479127
+1971-12-13,-0.416201656156713,6.5694814204143,-0.58263604140591,6.75483289186088
+1971-12-14,-0.990001002744043,6.57088296233958,-0.940181812404878,6.72675544210216
+1971-12-15,-0.65359799303204,6.57228254269401,-0.703008943710491,6.66013419030433
+1971-12-16,0.283719997252043,6.57368016696065,0.131897601812962,6.52291114244996
+1971-12-17,0.960187130504403,6.57507584059962,1.04670561211579,6.44044881341013
+1971-12-18,0.753862644100839,6.57646956904822,0.827146568600832,6.4798304762704
+1971-12-19,-0.145559680673331,6.57786135772105,-0.319711041836476,6.59522322587718
+1971-12-20,-0.911155106319301,6.5792512120101,-1.04552472411201,6.67638632131054
+1971-12-21,-0.839038729222366,6.58063913728495,-0.86617157102194,6.51423699001368
+1971-12-22,0.00448598609626487,6.58202513889283,-0.13195131115969,6.66210866965375
+1971-12-23,0.843886306486174,6.58340922215876,0.701554300190907,6.53037270389597
+1971-12-24,0.90742144847379,6.58479139238572,0.942897895386549,6.69590402094399
+1971-12-25,0.136677495523018,6.58617165485467,0.135153178574953,6.48720841102456
+1971-12-26,-0.759727116491052,6.5875500148248,-0.831799941987088,6.52992107766205
+1971-12-27,-0.957642121264355,6.58892647753352,-0.996951083036061,6.57159865831007
+1971-12-28,-0.275105376140123,6.59030104819669,-0.387128812890291,6.58731955252376
+1971-12-29,0.660361983093894,6.59167373200866,0.819775599721168,6.58196063642289
+1971-12-30,0.9886955804867,6.59304453414244,1.00527419006812,6.46361189227656
+1971-12-31,0.408027020783312,6.59441345974978,0.506652226208868,6.67710990726213
+1972-01-01,-0.547779700115238,6.59578051396131,-0.563211196113571,6.58539985150622
diff --git a/pkg/inst/extdata/intraday_measures.csv b/pkg/inst/extdata/intraday_measures.csv
new file mode 100644 (file)
index 0000000..e615a55
--- /dev/null
@@ -0,0 +1,17521 @@
+"Time","Measure"
+1970-01-01 01:00:00,12.3305026452447
+1970-01-01 02:00:00,14.2867004994605
+1970-01-01 03:00:00,17.4455395697591
+1970-01-01 04:00:00,9.36503763259407
+1970-01-01 05:00:00,8.64461710236303
+1970-01-01 06:00:00,26.2780902897003
+1970-01-01 07:00:00,10.4265144826155
+1970-01-01 08:00:00,14.0814252196012
+1970-01-01 09:00:00,12.8813736878286
+1970-01-01 10:00:00,23.6951527312041
+1970-01-01 11:00:00,6.69785295311537
+1970-01-01 12:00:00,10.4086335432861
+1970-01-01 13:00:00,22.569397668888
+1970-01-01 14:00:00,8.77466267267745
+1970-01-01 15:00:00,10.9159465180401
+1970-01-01 16:00:00,12.4883696404839
+1970-01-01 17:00:00,7.4371450781757
+1970-01-01 18:00:00,11.801055843138
+1970-01-01 19:00:00,14.9520687293828
+1970-01-01 20:00:00,15.9506539010459
+1970-01-01 21:00:00,9.0410527198194
+1970-01-01 22:00:00,11.4069513017183
+1970-01-01 23:00:00,4.5768247305787
+1970-01-02 00:00:00,7.21840045871924
+1970-01-02 01:00:00,12.2277581011304
+1970-01-02 02:00:00,10.2776942111179
+1970-01-02 03:00:00,19.8074909743229
+1970-01-02 04:00:00,22.4590211245951
+1970-01-02 05:00:00,22.7010482160076
+1970-01-02 06:00:00,19.0244737844508
+1970-01-02 07:00:00,7.17411465653378
+1970-01-02 08:00:00,10.396235981961
+1970-01-02 09:00:00,12.1788419219451
+1970-01-02 10:00:00,15.4704022666181
+1970-01-02 11:00:00,11.3500082445633
+1970-01-02 12:00:00,10.9468880400973
+1970-01-02 13:00:00,6.69228037776405
+1970-01-02 14:00:00,11.560892770785
+1970-01-02 15:00:00,13.2637506464813
+1970-01-02 16:00:00,12.2894623243251
+1970-01-02 17:00:00,10.6579603518437
+1970-01-02 18:00:00,20.7879545327035
+1970-01-02 19:00:00,10.3769931529682
+1970-01-02 20:00:00,15.0233255732648
+1970-01-02 21:00:00,18.8694006383538
+1970-01-02 22:00:00,10.4706722045477
+1970-01-02 23:00:00,6.29304096683795
+1970-01-03 00:00:00,12.5064192510584
+1970-01-03 01:00:00,11.3063308713477
+1970-01-03 02:00:00,17.6810166736024
+1970-01-03 03:00:00,12.2496869933518
+1970-01-03 04:00:00,16.9472309597067
+1970-01-03 05:00:00,9.09321619827232
+1970-01-03 06:00:00,20.3015857214373
+1970-01-03 07:00:00,14.8080345317049
+1970-01-03 08:00:00,15.2441284510546
+1970-01-03 09:00:00,9.3512763220063
+1970-01-03 10:00:00,12.9594958555805
+1970-01-03 11:00:00,14.3738045986784
+1970-01-03 12:00:00,16.9195370518083
+1970-01-03 13:00:00,15.6362067791665
+1970-01-03 14:00:00,19.0437858656866
+1970-01-03 15:00:00,11.5792899630333
+1970-01-03 16:00:00,15.6027164628064
+1970-01-03 17:00:00,8.96567924709902
+1970-01-03 18:00:00,13.992702941
+1970-01-03 19:00:00,18.3337031120163
+1970-01-03 20:00:00,14.0840624171003
+1970-01-03 21:00:00,8.25807066987704
+1970-01-03 22:00:00,12.340961056125
+1970-01-03 23:00:00,10.3183180184677
+1970-01-04 00:00:00,11.2607991425684
+1970-01-04 01:00:00,13.5058296644401
+1970-01-04 02:00:00,12.9796799069414
+1970-01-04 03:00:00,23.5094540856545
+1970-01-04 04:00:00,20.9339466462577
+1970-01-04 05:00:00,6.25340762430858
+1970-01-04 06:00:00,15.7192617367839
+1970-01-04 07:00:00,7.28077988295447
+1970-01-04 08:00:00,18.2351037824414
+1970-01-04 09:00:00,12.9451887285251
+1970-01-04 10:00:00,14.1294117961576
+1970-01-04 11:00:00,15.4695431548796
+1970-01-04 12:00:00,19.0935350590187
+1970-01-04 13:00:00,8.02534622914031
+1970-01-04 14:00:00,20.7506347102193
+1970-01-04 15:00:00,19.2522942783791
+1970-01-04 16:00:00,23.3475827864527
+1970-01-04 17:00:00,9.05782938385987
+1970-01-04 18:00:00,19.8514162907673
+1970-01-04 19:00:00,8.43475220450209
+1970-01-04 20:00:00,12.3866329222804
+1970-01-04 21:00:00,13.1902714959444
+1970-01-04 22:00:00,12.2615699640105
+1970-01-04 23:00:00,16.4049616848613
+1970-01-05 00:00:00,18.7793871281152
+1970-01-05 01:00:00,15.8425992357928
+1970-01-05 02:00:00,21.6255788599208
+1970-01-05 03:00:00,14.3852351706643
+1970-01-05 04:00:00,13.3285727459851
+1970-01-05 05:00:00,11.4981697295798
+1970-01-05 06:00:00,15.1032299177008
+1970-01-05 07:00:00,14.9724766003769
+1970-01-05 08:00:00,21.0193738707882
+1970-01-05 09:00:00,16.5708814665552
+1970-01-05 10:00:00,11.522838121415
+1970-01-05 11:00:00,22.4940920572795
+1970-01-05 12:00:00,10.6266677110204
+1970-01-05 13:00:00,8.21462861278722
+1970-01-05 14:00:00,10.2682959709631
+1970-01-05 15:00:00,10.3486531172586
+1970-01-05 16:00:00,12.6349855521392
+1970-01-05 17:00:00,10.7152777031234
+1970-01-05 18:00:00,9.99349839044418
+1970-01-05 19:00:00,13.9440483414005
+1970-01-05 20:00:00,19.5183004063478
+1970-01-05 21:00:00,16.355923765295
+1970-01-05 22:00:00,15.3908175852758
+1970-01-05 23:00:00,14.9977130251637
+1970-01-06 00:00:00,18.7047570233025
+1970-01-06 01:00:00,8.75784912729236
+1970-01-06 02:00:00,6.5263879933187
+1970-01-06 03:00:00,8.70919313511688
+1970-01-06 04:00:00,15.5560804124571
+1970-01-06 05:00:00,15.6969205380067
+1970-01-06 06:00:00,14.9012333232112
+1970-01-06 07:00:00,16.414123460239
+1970-01-06 08:00:00,15.4344628015374
+1970-01-06 09:00:00,12.930964811803
+1970-01-06 10:00:00,8.82626705005373
+1970-01-06 11:00:00,16.5143813694311
+1970-01-06 12:00:00,2.82779632860706
+1970-01-06 13:00:00,14.6672659875673
+1970-01-06 14:00:00,16.3566119369884
+1970-01-06 15:00:00,16.60092861312
+1970-01-06 16:00:00,7.17217782886105
+1970-01-06 17:00:00,15.578806776892
+1970-01-06 18:00:00,16.1169960273933
+1970-01-06 19:00:00,14.817813141342
+1970-01-06 20:00:00,9.23059230613708
+1970-01-06 21:00:00,17.2802033079309
+1970-01-06 22:00:00,12.1949251865183
+1970-01-06 23:00:00,16.5808882418595
+1970-01-07 00:00:00,9.96964556136372
+1970-01-07 01:00:00,19.4376790976714
+1970-01-07 02:00:00,10.0823545167342
+1970-01-07 03:00:00,14.761966010427
+1970-01-07 04:00:00,14.7292045183953
+1970-01-07 05:00:00,14.1313393353645
+1970-01-07 06:00:00,10.7468264097139
+1970-01-07 07:00:00,9.5186008811051
+1970-01-07 08:00:00,12.241741794916
+1970-01-07 09:00:00,15.8480538972763
+1970-01-07 10:00:00,22.2939100890967
+1970-01-07 11:00:00,9.66907893267271
+1970-01-07 12:00:00,10.186351656016
+1970-01-07 13:00:00,27.3826742896752
+1970-01-07 14:00:00,18.0184512926023
+1970-01-07 15:00:00,15.3006569986046
+1970-01-07 16:00:00,9.37471343949385
+1970-01-07 17:00:00,16.9788816667546
+1970-01-07 18:00:00,13.5733665264758
+1970-01-07 19:00:00,13.9448899699296
+1970-01-07 20:00:00,15.5000188217098
+1970-01-07 21:00:00,12.5295776133278
+1970-01-07 22:00:00,7.83733752474263
+1970-01-07 23:00:00,14.5912557079804
+1970-01-08 00:00:00,23.9864855249171
+1970-01-08 01:00:00,9.4295144647973
+1970-01-08 02:00:00,16.6672012125304
+1970-01-08 03:00:00,20.9157616368909
+1970-01-08 04:00:00,15.7206202460637
+1970-01-08 05:00:00,22.3978433675717
+1970-01-08 06:00:00,14.9326881251675
+1970-01-08 07:00:00,13.0923161721375
+1970-01-08 08:00:00,24.5668852090176
+1970-01-08 09:00:00,5.15431154098305
+1970-01-08 10:00:00,23.8175966553452
+1970-01-08 11:00:00,9.48445210372676
+1970-01-08 12:00:00,24.3292074393741
+1970-01-08 13:00:00,10.6493776645355
+1970-01-08 14:00:00,20.4963919819929
+1970-01-08 15:00:00,14.8962667803455
+1970-01-08 16:00:00,16.4462176794967
+1970-01-08 17:00:00,13.4584948921745
+1970-01-08 18:00:00,15.3939354121788
+1970-01-08 19:00:00,18.8703720527927
+1970-01-08 20:00:00,16.795148163708
+1970-01-08 21:00:00,15.1596132403104
+1970-01-08 22:00:00,16.199657251592
+1970-01-08 23:00:00,13.8042095626101
+1970-01-09 00:00:00,12.7273758762187
+1970-01-09 01:00:00,22.40396003589
+1970-01-09 02:00:00,17.8323310841019
+1970-01-09 03:00:00,13.1153150724894
+1970-01-09 04:00:00,21.4428518031756
+1970-01-09 05:00:00,22.6698394974923
+1970-01-09 06:00:00,13.720465445437
+1970-01-09 07:00:00,13.5125073450582
+1970-01-09 08:00:00,16.4630500054252
+1970-01-09 09:00:00,11.5203906447887
+1970-01-09 10:00:00,12.4408645009063
+1970-01-09 11:00:00,10.4667418684647
+1970-01-09 12:00:00,18.9781761402003
+1970-01-09 13:00:00,4.71097756714168
+1970-01-09 14:00:00,13.6926223950791
+1970-01-09 15:00:00,22.944784218827
+1970-01-09 16:00:00,18.8875850988275
+1970-01-09 17:00:00,17.9529952710115
+1970-01-09 18:00:00,22.5514435626284
+1970-01-09 19:00:00,9.77339486763929
+1970-01-09 20:00:00,10.1929716979019
+1970-01-09 21:00:00,26.2030015410869
+1970-01-09 22:00:00,7.91180595321873
+1970-01-09 23:00:00,24.0819053360182
+1970-01-10 00:00:00,9.04447092408345
+1970-01-10 01:00:00,14.6744330992776
+1970-01-10 02:00:00,13.3911094199917
+1970-01-10 03:00:00,13.6630423323923
+1970-01-10 04:00:00,10.0568646646749
+1970-01-10 05:00:00,19.275773303391
+1970-01-10 06:00:00,10.6246337817626
+1970-01-10 07:00:00,15.4512670584474
+1970-01-10 08:00:00,19.6284283275818
+1970-01-10 09:00:00,15.2806145175968
+1970-01-10 10:00:00,15.7255927156385
+1970-01-10 11:00:00,8.26321296954916
+1970-01-10 12:00:00,16.9879332398399
+1970-01-10 13:00:00,14.6000724194568
+1970-01-10 14:00:00,27.3990838193112
+1970-01-10 15:00:00,13.9394396566401
+1970-01-10 16:00:00,8.585819159277
+1970-01-10 17:00:00,13.8281783096702
+1970-01-10 18:00:00,9.03292495464722
+1970-01-10 19:00:00,11.954864579665
+1970-01-10 20:00:00,14.1774087205615
+1970-01-10 21:00:00,9.51256675192045
+1970-01-10 22:00:00,9.80159446039878
+1970-01-10 23:00:00,13.4227769973794
+1970-01-11 00:00:00,29.6418197003317
+1970-01-11 01:00:00,14.3809210828834
+1970-01-11 02:00:00,13.8531824734104
+1970-01-11 03:00:00,20.6684721139384
+1970-01-11 04:00:00,14.8625714158805
+1970-01-11 05:00:00,13.4354851828263
+1970-01-11 06:00:00,7.74563922195768
+1970-01-11 07:00:00,11.4043774836238
+1970-01-11 08:00:00,13.850939618854
+1970-01-11 09:00:00,12.551877165299
+1970-01-11 10:00:00,18.2922790310239
+1970-01-11 11:00:00,14.5101557869807
+1970-01-11 12:00:00,23.2815852356389
+1970-01-11 13:00:00,9.16628301317174
+1970-01-11 14:00:00,10.2178245167074
+1970-01-11 15:00:00,12.071057166431
+1970-01-11 16:00:00,13.6152599244939
+1970-01-11 17:00:00,13.6131335747988
+1970-01-11 18:00:00,10.7850121478764
+1970-01-11 19:00:00,10.4312132109816
+1970-01-11 20:00:00,18.5014942803228
+1970-01-11 21:00:00,15.0496639313485
+1970-01-11 22:00:00,9.35383983059371
+1970-01-11 23:00:00,9.80542719544984
+1970-01-12 00:00:00,22.739980857326
+1970-01-12 01:00:00,13.1523537864335
+1970-01-12 02:00:00,16.2334804499162
+1970-01-12 03:00:00,11.1077287683891
+1970-01-12 04:00:00,12.1052141607175
+1970-01-12 05:00:00,9.28586543378377
+1970-01-12 06:00:00,17.009678349277
+1970-01-12 07:00:00,13.5281238389501
+1970-01-12 08:00:00,10.2295187169077
+1970-01-12 09:00:00,9.25098703125217
+1970-01-12 10:00:00,15.836978192138
+1970-01-12 11:00:00,24.8071982853177
+1970-01-12 12:00:00,11.9843721344093
+1970-01-12 13:00:00,14.7956850861015
+1970-01-12 14:00:00,23.1129183584598
+1970-01-12 15:00:00,16.4431386347786
+1970-01-12 16:00:00,11.9092761228545
+1970-01-12 17:00:00,12.8208516732096
+1970-01-12 18:00:00,9.01864008363825
+1970-01-12 19:00:00,11.1792872166526
+1970-01-12 20:00:00,16.6992794428852
+1970-01-12 21:00:00,18.8909786615635
+1970-01-12 22:00:00,15.7441911612487
+1970-01-12 23:00:00,13.0695020538065
+1970-01-13 00:00:00,11.0011245084473
+1970-01-13 01:00:00,17.5756626002967
+1970-01-13 02:00:00,18.3398941449091
+1970-01-13 03:00:00,14.7304645796936
+1970-01-13 04:00:00,10.4307449158957
+1970-01-13 05:00:00,12.7153834379279
+1970-01-13 06:00:00,14.2457490779512
+1970-01-13 07:00:00,14.3374765665021
+1970-01-13 08:00:00,19.5779472820036
+1970-01-13 09:00:00,8.50711795428847
+1970-01-13 10:00:00,16.2139575187938
+1970-01-13 11:00:00,12.3300491822063
+1970-01-13 12:00:00,13.0874812085259
+1970-01-13 13:00:00,21.011526526369
+1970-01-13 14:00:00,16.1257426570883
+1970-01-13 15:00:00,6.30539724636741
+1970-01-13 16:00:00,19.0894366347112
+1970-01-13 17:00:00,16.2196754270385
+1970-01-13 18:00:00,19.2157635036718
+1970-01-13 19:00:00,19.252067396156
+1970-01-13 20:00:00,14.9481812788318
+1970-01-13 21:00:00,25.8583790874797
+1970-01-13 22:00:00,24.3040402189109
+1970-01-13 23:00:00,15.1224443194195
+1970-01-14 00:00:00,12.9714832913786
+1970-01-14 01:00:00,13.8815606600186
+1970-01-14 02:00:00,14.6440553870749
+1970-01-14 03:00:00,20.9649142293826
+1970-01-14 04:00:00,14.2326123731038
+1970-01-14 05:00:00,16.4133062164032
+1970-01-14 06:00:00,16.2068100843535
+1970-01-14 07:00:00,19.9522071688785
+1970-01-14 08:00:00,13.1487028066342
+1970-01-14 09:00:00,12.2341103703181
+1970-01-14 10:00:00,14.7167146524367
+1970-01-14 11:00:00,12.5575470700353
+1970-01-14 12:00:00,14.6133802070013
+1970-01-14 13:00:00,11.9581313590016
+1970-01-14 14:00:00,16.954451653412
+1970-01-14 15:00:00,10.2936940600402
+1970-01-14 16:00:00,23.2119760587658
+1970-01-14 17:00:00,19.5426140842518
+1970-01-14 18:00:00,13.0086252723947
+1970-01-14 19:00:00,12.6569280371788
+1970-01-14 20:00:00,17.5290467727048
+1970-01-14 21:00:00,14.263820776913
+1970-01-14 22:00:00,17.9954778777708
+1970-01-14 23:00:00,11.5993162965082
+1970-01-15 00:00:00,13.9869223194213
+1970-01-15 01:00:00,17.1745449179635
+1970-01-15 02:00:00,21.5448443866273
+1970-01-15 03:00:00,16.4861709206572
+1970-01-15 04:00:00,12.7476039848796
+1970-01-15 05:00:00,15.9115112857453
+1970-01-15 06:00:00,10.9360646512702
+1970-01-15 07:00:00,13.5693309521493
+1970-01-15 08:00:00,9.08712726570374
+1970-01-15 09:00:00,20.4684714587583
+1970-01-15 10:00:00,14.5990627623312
+1970-01-15 11:00:00,8.80928850020773
+1970-01-15 12:00:00,13.5916976307413
+1970-01-15 13:00:00,24.0313211894775
+1970-01-15 14:00:00,18.0272094095744
+1970-01-15 15:00:00,9.30538915388705
+1970-01-15 16:00:00,17.6145960515052
+1970-01-15 17:00:00,13.1471906065318
+1970-01-15 18:00:00,17.0606635942047
+1970-01-15 19:00:00,13.2469365516142
+1970-01-15 20:00:00,10.9231552769718
+1970-01-15 21:00:00,12.9143063005721
+1970-01-15 22:00:00,19.1072884040345
+1970-01-15 23:00:00,30.056045439669
+1970-01-16 00:00:00,17.2446160450272
+1970-01-16 01:00:00,9.27243030222808
+1970-01-16 02:00:00,17.826570681027
+1970-01-16 03:00:00,11.4266398363513
+1970-01-16 04:00:00,12.920476820444
+1970-01-16 05:00:00,8.96005809741616
+1970-01-16 06:00:00,9.16234683096343
+1970-01-16 07:00:00,8.839088652354
+1970-01-16 08:00:00,19.8850876420714
+1970-01-16 09:00:00,17.2866022527782
+1970-01-16 10:00:00,9.20200368231053
+1970-01-16 11:00:00,14.9863571922138
+1970-01-16 12:00:00,18.5806702090083
+1970-01-16 13:00:00,19.2881286909111
+1970-01-16 14:00:00,11.2253288195165
+1970-01-16 15:00:00,12.2734909623268
+1970-01-16 16:00:00,7.61467478567245
+1970-01-16 17:00:00,9.52589535716344
+1970-01-16 18:00:00,12.6216067356075
+1970-01-16 19:00:00,17.7620216331253
+1970-01-16 20:00:00,22.7207715836024
+1970-01-16 21:00:00,23.6771144435137
+1970-01-16 22:00:00,13.8517416600762
+1970-01-16 23:00:00,9.9947637676036
+1970-01-17 00:00:00,17.7227335812207
+1970-01-17 01:00:00,21.4255084095386
+1970-01-17 02:00:00,15.3163846399067
+1970-01-17 03:00:00,20.5005282373474
+1970-01-17 04:00:00,15.5986768279305
+1970-01-17 05:00:00,31.5056358048205
+1970-01-17 06:00:00,15.332718133817
+1970-01-17 07:00:00,18.7058729069443
+1970-01-17 08:00:00,14.299351063841
+1970-01-17 09:00:00,20.1645727465131
+1970-01-17 10:00:00,8.20408807725225
+1970-01-17 11:00:00,14.1672855319721
+1970-01-17 12:00:00,10.7227038707501
+1970-01-17 13:00:00,19.6368238292772
+1970-01-17 14:00:00,8.79729909066959
+1970-01-17 15:00:00,16.6492336227711
+1970-01-17 16:00:00,19.7743961233628
+1970-01-17 17:00:00,10.6040673682087
+1970-01-17 18:00:00,15.4774474604197
+1970-01-17 19:00:00,13.2406631863537
+1970-01-17 20:00:00,11.329004596406
+1970-01-17 21:00:00,10.5945211345026
+1970-01-17 22:00:00,12.741527263196
+1970-01-17 23:00:00,11.2722863394057
+1970-01-18 00:00:00,10.801810421151
+1970-01-18 01:00:00,12.7897008349627
+1970-01-18 02:00:00,14.4540382578418
+1970-01-18 03:00:00,7.87508801693074
+1970-01-18 04:00:00,13.2201879593703
+1970-01-18 05:00:00,10.4912005148698
+1970-01-18 06:00:00,20.2707022839131
+1970-01-18 07:00:00,20.3611136283563
+1970-01-18 08:00:00,10.9568283700238
+1970-01-18 09:00:00,11.4418591870208
+1970-01-18 10:00:00,15.1570238468886
+1970-01-18 11:00:00,9.8719272572773
+1970-01-18 12:00:00,11.7928098578107
+1970-01-18 13:00:00,11.7195066775043
+1970-01-18 14:00:00,12.4524842912562
+1970-01-18 15:00:00,16.7696236605515
+1970-01-18 16:00:00,11.4419402719668
+1970-01-18 17:00:00,16.0178979440986
+1970-01-18 18:00:00,8.41299816574553
+1970-01-18 19:00:00,9.68203462447985
+1970-01-18 20:00:00,7.48615492519293
+1970-01-18 21:00:00,18.402916383616
+1970-01-18 22:00:00,18.1871057717261
+1970-01-18 23:00:00,6.96984396786798
+1970-01-19 00:00:00,23.6318832740149
+1970-01-19 01:00:00,13.3653630325661
+1970-01-19 02:00:00,11.4719014254288
+1970-01-19 03:00:00,12.1153119398442
+1970-01-19 04:00:00,12.7931110248717
+1970-01-19 05:00:00,18.7643953112638
+1970-01-19 06:00:00,15.9156441788592
+1970-01-19 07:00:00,12.6467464613492
+1970-01-19 08:00:00,11.2640181215242
+1970-01-19 09:00:00,12.8372929325581
+1970-01-19 10:00:00,23.0088605703596
+1970-01-19 11:00:00,10.3588727686776
+1970-01-19 12:00:00,13.3671841304369
+1970-01-19 13:00:00,11.338901573999
+1970-01-19 14:00:00,11.0873551158492
+1970-01-19 15:00:00,16.2972690358256
+1970-01-19 16:00:00,9.19688038690101
+1970-01-19 17:00:00,9.59545787067549
+1970-01-19 18:00:00,12.7309581863439
+1970-01-19 19:00:00,21.2906880472366
+1970-01-19 20:00:00,17.3390539379526
+1970-01-19 21:00:00,7.70240610170962
+1970-01-19 22:00:00,12.4153473594914
+1970-01-19 23:00:00,14.5313597566159
+1970-01-20 00:00:00,14.3650292609005
+1970-01-20 01:00:00,14.0380013158512
+1970-01-20 02:00:00,14.3352831631175
+1970-01-20 03:00:00,14.9596835202273
+1970-01-20 04:00:00,16.2873934918856
+1970-01-20 05:00:00,11.3451181574619
+1970-01-20 06:00:00,17.7551144026119
+1970-01-20 07:00:00,12.522685964389
+1970-01-20 08:00:00,12.5262436618405
+1970-01-20 09:00:00,15.2601080336676
+1970-01-20 10:00:00,12.0832040696297
+1970-01-20 11:00:00,11.7309583118191
+1970-01-20 12:00:00,6.62287257681806
+1970-01-20 13:00:00,10.4413069082145
+1970-01-20 14:00:00,15.6519851123768
+1970-01-20 15:00:00,13.8953300529605
+1970-01-20 16:00:00,16.6490419033718
+1970-01-20 17:00:00,11.9717356711531
+1970-01-20 18:00:00,13.3840544093902
+1970-01-20 19:00:00,13.5699556336398
+1970-01-20 20:00:00,13.0756831970561
+1970-01-20 21:00:00,5.62076198828863
+1970-01-20 22:00:00,7.06619697197923
+1970-01-20 23:00:00,11.481239981502
+1970-01-21 00:00:00,14.7915706527197
+1970-01-21 01:00:00,9.72288263409352
+1970-01-21 02:00:00,18.4598703012684
+1970-01-21 03:00:00,9.43118365383899
+1970-01-21 04:00:00,21.2052050827321
+1970-01-21 05:00:00,13.95655023839
+1970-01-21 06:00:00,14.9286235487053
+1970-01-21 07:00:00,15.3720809042493
+1970-01-21 08:00:00,11.177872146956
+1970-01-21 09:00:00,24.2146679887823
+1970-01-21 10:00:00,16.2907459141775
+1970-01-21 11:00:00,15.3811466393505
+1970-01-21 12:00:00,15.4190655650624
+1970-01-21 13:00:00,15.7068927941653
+1970-01-21 14:00:00,16.626380523348
+1970-01-21 15:00:00,12.6527572244713
+1970-01-21 16:00:00,11.9698486870426
+1970-01-21 17:00:00,17.8893187258141
+1970-01-21 18:00:00,8.80750863295308
+1970-01-21 19:00:00,10.5379565221528
+1970-01-21 20:00:00,7.85437146836978
+1970-01-21 21:00:00,9.01983806092713
+1970-01-21 22:00:00,17.3922591996861
+1970-01-21 23:00:00,13.56221160036
+1970-01-22 00:00:00,18.3210062270008
+1970-01-22 01:00:00,15.8862929786542
+1970-01-22 02:00:00,19.91904784142
+1970-01-22 03:00:00,10.7656640922637
+1970-01-22 04:00:00,22.0375997297274
+1970-01-22 05:00:00,7.15292436465975
+1970-01-22 06:00:00,16.4720667003374
+1970-01-22 07:00:00,7.30026181898536
+1970-01-22 08:00:00,10.9001680859099
+1970-01-22 09:00:00,19.6612639962434
+1970-01-22 10:00:00,19.4526594459424
+1970-01-22 11:00:00,15.1760350731001
+1970-01-22 12:00:00,13.3891295691443
+1970-01-22 13:00:00,9.43426494254861
+1970-01-22 14:00:00,12.2057049524093
+1970-01-22 15:00:00,8.70323239057535
+1970-01-22 16:00:00,17.1493114559536
+1970-01-22 17:00:00,13.1460540812187
+1970-01-22 18:00:00,17.1633089849839
+1970-01-22 19:00:00,12.888816058496
+1970-01-22 20:00:00,13.456265627854
+1970-01-22 21:00:00,21.4088565634817
+1970-01-22 22:00:00,10.7859086901949
+1970-01-22 23:00:00,13.6603742716561
+1970-01-23 00:00:00,16.8420457892921
+1970-01-23 01:00:00,7.29100883869908
+1970-01-23 02:00:00,5.51114216763477
+1970-01-23 03:00:00,18.2103023367304
+1970-01-23 04:00:00,11.9753006783959
+1970-01-23 05:00:00,15.7229172698987
+1970-01-23 06:00:00,20.3489892139552
+1970-01-23 07:00:00,13.4608159123852
+1970-01-23 08:00:00,17.0736158420613
+1970-01-23 09:00:00,12.6383938289662
+1970-01-23 10:00:00,9.40122950806951
+1970-01-23 11:00:00,8.26820139020081
+1970-01-23 12:00:00,18.6740515840741
+1970-01-23 13:00:00,17.3998914268776
+1970-01-23 14:00:00,11.3115261372342
+1970-01-23 15:00:00,15.639708773987
+1970-01-23 16:00:00,9.80760236446621
+1970-01-23 17:00:00,11.4019968758992
+1970-01-23 18:00:00,14.8670781315934
+1970-01-23 19:00:00,13.2323714503439
+1970-01-23 20:00:00,22.8328544450734
+1970-01-23 21:00:00,10.6383982143742
+1970-01-23 22:00:00,19.2688639358482
+1970-01-23 23:00:00,11.4097364305783
+1970-01-24 00:00:00,12.6515661812529
+1970-01-24 01:00:00,19.8097220978199
+1970-01-24 02:00:00,14.2752479769096
+1970-01-24 03:00:00,14.5940861144262
+1970-01-24 04:00:00,11.0663317410669
+1970-01-24 05:00:00,11.0095622192444
+1970-01-24 06:00:00,12.3349615625668
+1970-01-24 07:00:00,19.1309506940676
+1970-01-24 08:00:00,12.4834272324366
+1970-01-24 09:00:00,18.5120356603209
+1970-01-24 10:00:00,19.1464748506099
+1970-01-24 11:00:00,7.84564893385239
+1970-01-24 12:00:00,8.49159198696459
+1970-01-24 13:00:00,16.277549469551
+1970-01-24 14:00:00,17.8627368424027
+1970-01-24 15:00:00,10.5284703370478
+1970-01-24 16:00:00,14.9070024633064
+1970-01-24 17:00:00,5.38804195760289
+1970-01-24 18:00:00,14.2037469389896
+1970-01-24 19:00:00,11.3654253568984
+1970-01-24 20:00:00,20.5813854840185
+1970-01-24 21:00:00,13.3618712399873
+1970-01-24 22:00:00,6.77255779242063
+1970-01-24 23:00:00,8.86316750099456
+1970-01-25 00:00:00,10.9954811010715
+1970-01-25 01:00:00,10.1836607328464
+1970-01-25 02:00:00,7.97075201907484
+1970-01-25 03:00:00,12.1607970372224
+1970-01-25 04:00:00,14.7619878956581
+1970-01-25 05:00:00,16.1728891675005
+1970-01-25 06:00:00,15.281436310529
+1970-01-25 07:00:00,11.0797150694745
+1970-01-25 08:00:00,8.88229213344554
+1970-01-25 09:00:00,27.2814653379741
+1970-01-25 10:00:00,8.9080392718225
+1970-01-25 11:00:00,18.6715575031359
+1970-01-25 12:00:00,23.2516290323779
+1970-01-25 13:00:00,7.10676449330681
+1970-01-25 14:00:00,13.8187654950748
+1970-01-25 15:00:00,15.9971494749217
+1970-01-25 16:00:00,11.8833187643036
+1970-01-25 17:00:00,15.7627187174885
+1970-01-25 18:00:00,7.83581812487567
+1970-01-25 19:00:00,19.1864322914993
+1970-01-25 20:00:00,11.2631054985457
+1970-01-25 21:00:00,10.6079266077338
+1970-01-25 22:00:00,17.2114987857994
+1970-01-25 23:00:00,27.7893878966716
+1970-01-26 00:00:00,16.713271294332
+1970-01-26 01:00:00,21.176304402586
+1970-01-26 02:00:00,12.3314999505558
+1970-01-26 03:00:00,26.8598983332848
+1970-01-26 04:00:00,10.787421020131
+1970-01-26 05:00:00,15.7136277317751
+1970-01-26 06:00:00,13.2377179460597
+1970-01-26 07:00:00,21.1185824192486
+1970-01-26 08:00:00,16.8815500733199
+1970-01-26 09:00:00,17.6214622983453
+1970-01-26 10:00:00,11.4206887317251
+1970-01-26 11:00:00,10.0485693269601
+1970-01-26 12:00:00,13.8402606870673
+1970-01-26 13:00:00,9.20296439171566
+1970-01-26 14:00:00,19.9621397083972
+1970-01-26 15:00:00,11.4335857279995
+1970-01-26 16:00:00,18.1051186889511
+1970-01-26 17:00:00,14.2374818527701
+1970-01-26 18:00:00,15.7293927587937
+1970-01-26 19:00:00,14.963449573184
+1970-01-26 20:00:00,21.0480191944631
+1970-01-26 21:00:00,11.774836740178
+1970-01-26 22:00:00,8.55196584018962
+1970-01-26 23:00:00,10.7143217683391
+1970-01-27 00:00:00,23.7471760345666
+1970-01-27 01:00:00,10.452754546738
+1970-01-27 02:00:00,6.76484542545336
+1970-01-27 03:00:00,15.2523729679104
+1970-01-27 04:00:00,9.8432656373557
+1970-01-27 05:00:00,10.9648092574724
+1970-01-27 06:00:00,9.26785522099284
+1970-01-27 07:00:00,15.0263610393466
+1970-01-27 08:00:00,16.3991107871612
+1970-01-27 09:00:00,13.7437766054749
+1970-01-27 10:00:00,20.2592978220358
+1970-01-27 11:00:00,10.8021500630829
+1970-01-27 12:00:00,14.3522100966104
+1970-01-27 13:00:00,10.1266054388574
+1970-01-27 14:00:00,17.526149827054
+1970-01-27 15:00:00,14.7782995521887
+1970-01-27 16:00:00,12.3408718657874
+1970-01-27 17:00:00,15.0886700546464
+1970-01-27 18:00:00,6.07017392634214
+1970-01-27 19:00:00,16.5225661659989
+1970-01-27 20:00:00,17.2547906298628
+1970-01-27 21:00:00,8.65224589161221
+1970-01-27 22:00:00,11.7162315400113
+1970-01-27 23:00:00,9.4906907989518
+1970-01-28 00:00:00,10.3212798129534
+1970-01-28 01:00:00,14.9368100531332
+1970-01-28 02:00:00,13.2188985777196
+1970-01-28 03:00:00,24.6016838825233
+1970-01-28 04:00:00,18.6535444254086
+1970-01-28 05:00:00,13.4121750580199
+1970-01-28 06:00:00,9.22936525200565
+1970-01-28 07:00:00,14.010205420166
+1970-01-28 08:00:00,12.0528217522345
+1970-01-28 09:00:00,13.2035268722776
+1970-01-28 10:00:00,11.5983071891236
+1970-01-28 11:00:00,16.0295786339901
+1970-01-28 12:00:00,11.1150410063203
+1970-01-28 13:00:00,11.7764876238004
+1970-01-28 14:00:00,15.1693226131068
+1970-01-28 15:00:00,14.5483032007121
+1970-01-28 16:00:00,15.1845036390051
+1970-01-28 17:00:00,7.99854329304706
+1970-01-28 18:00:00,24.8566649951514
+1970-01-28 19:00:00,17.2438365389403
+1970-01-28 20:00:00,9.8464215023676
+1970-01-28 21:00:00,27.2942228918122
+1970-01-28 22:00:00,16.3669178221026
+1970-01-28 23:00:00,17.037091850806
+1970-01-29 00:00:00,9.35380319411387
+1970-01-29 01:00:00,20.6225012182877
+1970-01-29 02:00:00,16.656688452454
+1970-01-29 03:00:00,10.9824426937634
+1970-01-29 04:00:00,12.4002260692471
+1970-01-29 05:00:00,17.3196855426302
+1970-01-29 06:00:00,19.3530353732822
+1970-01-29 07:00:00,12.7035308447577
+1970-01-29 08:00:00,13.1849721925935
+1970-01-29 09:00:00,20.5288213509405
+1970-01-29 10:00:00,12.4705267067554
+1970-01-29 11:00:00,16.2852669713909
+1970-01-29 12:00:00,9.31722794522556
+1970-01-29 13:00:00,19.4110604018706
+1970-01-29 14:00:00,11.7662094437298
+1970-01-29 15:00:00,10.6344557768723
+1970-01-29 16:00:00,25.4779212046132
+1970-01-29 17:00:00,20.8164521190847
+1970-01-29 18:00:00,10.7368752560073
+1970-01-29 19:00:00,18.666341268393
+1970-01-29 20:00:00,9.84841581735696
+1970-01-29 21:00:00,12.3208972790392
+1970-01-29 22:00:00,20.3673239644091
+1970-01-29 23:00:00,19.1859975757885
+1970-01-30 00:00:00,11.4462773813092
+1970-01-30 01:00:00,15.8540735221022
+1970-01-30 02:00:00,8.028947634944
+1970-01-30 03:00:00,13.623823235704
+1970-01-30 04:00:00,14.3430545733694
+1970-01-30 05:00:00,8.96699193176374
+1970-01-30 06:00:00,9.40113368611493
+1970-01-30 07:00:00,12.7664170983223
+1970-01-30 08:00:00,11.6056917954535
+1970-01-30 09:00:00,23.0991025816948
+1970-01-30 10:00:00,8.64914651961105
+1970-01-30 11:00:00,13.7428982535153
+1970-01-30 12:00:00,15.9583753433924
+1970-01-30 13:00:00,14.2770117559532
+1970-01-30 14:00:00,19.8756784282604
+1970-01-30 15:00:00,8.674438280414
+1970-01-30 16:00:00,16.6997832968013
+1970-01-30 17:00:00,10.4965270181457
+1970-01-30 18:00:00,14.6778507307445
+1970-01-30 19:00:00,8.64151455605099
+1970-01-30 20:00:00,11.361061474319
+1970-01-30 21:00:00,18.3669508889932
+1970-01-30 22:00:00,8.3792987831693
+1970-01-30 23:00:00,19.1101748420462
+1970-01-31 00:00:00,11.8429222123363
+1970-01-31 01:00:00,16.6129333694964
+1970-01-31 02:00:00,11.9844304986085
+1970-01-31 03:00:00,16.3856459837886
+1970-01-31 04:00:00,21.8415510243401
+1970-01-31 05:00:00,10.1796415240853
+1970-01-31 06:00:00,9.66547753491525
+1970-01-31 07:00:00,11.7992687147012
+1970-01-31 08:00:00,12.3362856120462
+1970-01-31 09:00:00,25.4527903456007
+1970-01-31 10:00:00,7.64598347381849
+1970-01-31 11:00:00,17.4396035998576
+1970-01-31 12:00:00,18.3759471205671
+1970-01-31 13:00:00,13.4231260025396
+1970-01-31 14:00:00,8.87759255432627
+1970-01-31 15:00:00,12.6720700253478
+1970-01-31 16:00:00,8.44788246627413
+1970-01-31 17:00:00,11.9965027136235
+1970-01-31 18:00:00,14.8195108265157
+1970-01-31 19:00:00,12.0792061377172
+1970-01-31 20:00:00,14.7967394502519
+1970-01-31 21:00:00,17.3628563913089
+1970-01-31 22:00:00,22.8250792317394
+1970-01-31 23:00:00,13.3820207448848
+1970-02-01 00:00:00,14.7495021131295
+1970-02-01 01:00:00,6.31197072113783
+1970-02-01 02:00:00,15.6079671643469
+1970-02-01 03:00:00,12.1178116733405
+1970-02-01 04:00:00,13.5084284920842
+1970-02-01 05:00:00,16.107428702819
+1970-02-01 06:00:00,21.7931075043694
+1970-02-01 07:00:00,14.9529294452074
+1970-02-01 08:00:00,17.9295084612612
+1970-02-01 09:00:00,22.9961705681503
+1970-02-01 10:00:00,4.63926430598793
+1970-02-01 11:00:00,26.0571833274747
+1970-02-01 12:00:00,23.7040144108956
+1970-02-01 13:00:00,24.1830527107502
+1970-02-01 14:00:00,12.2294455830749
+1970-02-01 15:00:00,8.59634375226685
+1970-02-01 16:00:00,12.2027126557086
+1970-02-01 17:00:00,4.1211800204402
+1970-02-01 18:00:00,9.07886074282635
+1970-02-01 19:00:00,12.651616527795
+1970-02-01 20:00:00,14.6689772909712
+1970-02-01 21:00:00,12.8770513049541
+1970-02-01 22:00:00,13.7522859281689
+1970-02-01 23:00:00,9.18123608331642
+1970-02-02 00:00:00,9.07515718546537
+1970-02-02 01:00:00,12.6747763959487
+1970-02-02 02:00:00,18.0206507352952
+1970-02-02 03:00:00,17.6691533236861
+1970-02-02 04:00:00,12.8834257931742
+1970-02-02 05:00:00,12.4738264028414
+1970-02-02 06:00:00,13.4838554883067
+1970-02-02 07:00:00,9.00385186647527
+1970-02-02 08:00:00,5.51147818543273
+1970-02-02 09:00:00,10.6992578714231
+1970-02-02 10:00:00,13.6482622383173
+1970-02-02 11:00:00,8.182126975394
+1970-02-02 12:00:00,7.6922711977305
+1970-02-02 13:00:00,10.0902013526059
+1970-02-02 14:00:00,8.35540451522955
+1970-02-02 15:00:00,15.5734217180062
+1970-02-02 16:00:00,13.8884027770616
+1970-02-02 17:00:00,14.1818965780911
+1970-02-02 18:00:00,9.58177000968537
+1970-02-02 19:00:00,17.3701983319524
+1970-02-02 20:00:00,9.0099157928859
+1970-02-02 21:00:00,12.6886538390443
+1970-02-02 22:00:00,8.2063727668412
+1970-02-02 23:00:00,9.24661012657818
+1970-02-03 00:00:00,10.6390503532959
+1970-02-03 01:00:00,13.0771048064362
+1970-02-03 02:00:00,11.7523609920688
+1970-02-03 03:00:00,7.65251488872332
+1970-02-03 04:00:00,9.82101535037378
+1970-02-03 05:00:00,26.6951859881837
+1970-02-03 06:00:00,13.4053930208078
+1970-02-03 07:00:00,16.0276450122346
+1970-02-03 08:00:00,11.0479532762706
+1970-02-03 09:00:00,9.94329500448854
+1970-02-03 10:00:00,19.7741592879961
+1970-02-03 11:00:00,10.8010307771978
+1970-02-03 12:00:00,11.4025904245515
+1970-02-03 13:00:00,18.5735901533187
+1970-02-03 14:00:00,20.0686867273951
+1970-02-03 15:00:00,6.79334533814699
+1970-02-03 16:00:00,11.4258342658264
+1970-02-03 17:00:00,15.5925348540077
+1970-02-03 18:00:00,15.4850058641459
+1970-02-03 19:00:00,11.555766493963
+1970-02-03 20:00:00,14.9535451757722
+1970-02-03 21:00:00,13.5200743645646
+1970-02-03 22:00:00,12.4863888715149
+1970-02-03 23:00:00,13.569786464154
+1970-02-04 00:00:00,14.6069842460961
+1970-02-04 01:00:00,18.0160925391217
+1970-02-04 02:00:00,12.6817162049729
+1970-02-04 03:00:00,22.2558195729538
+1970-02-04 04:00:00,18.2480078972991
+1970-02-04 05:00:00,13.9358536649178
+1970-02-04 06:00:00,11.6860249353787
+1970-02-04 07:00:00,15.5628612918902
+1970-02-04 08:00:00,11.8940361267603
+1970-02-04 09:00:00,16.5131479722619
+1970-02-04 10:00:00,12.757143824384
+1970-02-04 11:00:00,12.1412610161162
+1970-02-04 12:00:00,21.6127573768678
+1970-02-04 13:00:00,22.0739178995821
+1970-02-04 14:00:00,17.8558755888557
+1970-02-04 15:00:00,11.9818568797198
+1970-02-04 16:00:00,17.5819757372602
+1970-02-04 17:00:00,16.2872568425444
+1970-02-04 18:00:00,21.8645553054239
+1970-02-04 19:00:00,13.481925859315
+1970-02-04 20:00:00,10.1565280550027
+1970-02-04 21:00:00,6.214558883918
+1970-02-04 22:00:00,11.997127659899
+1970-02-04 23:00:00,13.2992530557328
+1970-02-05 00:00:00,18.0315322111071
+1970-02-05 01:00:00,10.174692282367
+1970-02-05 02:00:00,18.0866521829864
+1970-02-05 03:00:00,13.320669973622
+1970-02-05 04:00:00,9.22348007412061
+1970-02-05 05:00:00,20.2087989765673
+1970-02-05 06:00:00,17.9816933348131
+1970-02-05 07:00:00,12.547938841552
+1970-02-05 08:00:00,14.8800027172036
+1970-02-05 09:00:00,11.6659736081824
+1970-02-05 10:00:00,10.0670237895781
+1970-02-05 11:00:00,15.0549145929946
+1970-02-05 12:00:00,23.7250263485283
+1970-02-05 13:00:00,10.0295605809178
+1970-02-05 14:00:00,12.1508565453161
+1970-02-05 15:00:00,14.8511829818553
+1970-02-05 16:00:00,12.0724405779757
+1970-02-05 17:00:00,11.0106006391976
+1970-02-05 18:00:00,13.5801345492928
+1970-02-05 19:00:00,8.77259645017998
+1970-02-05 20:00:00,14.297519416508
+1970-02-05 21:00:00,11.8011547180737
+1970-02-05 22:00:00,8.62810936553663
+1970-02-05 23:00:00,6.1825071090688
+1970-02-06 00:00:00,15.4140346513199
+1970-02-06 01:00:00,18.1736625424628
+1970-02-06 02:00:00,9.68001803960206
+1970-02-06 03:00:00,9.31715106011906
+1970-02-06 04:00:00,5.84616455561107
+1970-02-06 05:00:00,8.78597575774044
+1970-02-06 06:00:00,24.0308391738327
+1970-02-06 07:00:00,23.5819575516617
+1970-02-06 08:00:00,13.5139894294268
+1970-02-06 09:00:00,13.3752572478006
+1970-02-06 10:00:00,23.6190002529159
+1970-02-06 11:00:00,19.5141824586074
+1970-02-06 12:00:00,17.6052184832679
+1970-02-06 13:00:00,17.1625609372338
+1970-02-06 14:00:00,13.4725439624201
+1970-02-06 15:00:00,9.69294953382601
+1970-02-06 16:00:00,20.135432368952
+1970-02-06 17:00:00,12.7230947277424
+1970-02-06 18:00:00,9.77851966171162
+1970-02-06 19:00:00,16.8629423480993
+1970-02-06 20:00:00,14.3079042426726
+1970-02-06 21:00:00,15.538877566822
+1970-02-06 22:00:00,13.8855416082344
+1970-02-06 23:00:00,13.7249899859543
+1970-02-07 00:00:00,19.5633825789826
+1970-02-07 01:00:00,21.8467062798035
+1970-02-07 02:00:00,13.317523332561
+1970-02-07 03:00:00,15.854106168326
+1970-02-07 04:00:00,13.7452659241991
+1970-02-07 05:00:00,16.6044812060449
+1970-02-07 06:00:00,10.3428732432656
+1970-02-07 07:00:00,15.4153309234549
+1970-02-07 08:00:00,12.6867941763425
+1970-02-07 09:00:00,13.1864380022769
+1970-02-07 10:00:00,8.61170356851529
+1970-02-07 11:00:00,7.20897708044505
+1970-02-07 12:00:00,14.5426763793931
+1970-02-07 13:00:00,7.92683988668577
+1970-02-07 14:00:00,14.3348182913716
+1970-02-07 15:00:00,14.4514332574955
+1970-02-07 16:00:00,7.5931014678398
+1970-02-07 17:00:00,17.4234211427658
+1970-02-07 18:00:00,6.2309749041981
+1970-02-07 19:00:00,18.6953292760956
+1970-02-07 20:00:00,15.3469054826911
+1970-02-07 21:00:00,18.8958663860099
+1970-02-07 22:00:00,18.279520473053
+1970-02-07 23:00:00,16.8143357443199
+1970-02-08 00:00:00,14.8366901493078
+1970-02-08 01:00:00,9.47107633536495
+1970-02-08 02:00:00,10.1445229377555
+1970-02-08 03:00:00,20.5732632254939
+1970-02-08 04:00:00,14.2787635408449
+1970-02-08 05:00:00,19.5571155722469
+1970-02-08 06:00:00,10.1391313523596
+1970-02-08 07:00:00,16.2564809779327
+1970-02-08 08:00:00,13.4481427272195
+1970-02-08 09:00:00,15.6642165063214
+1970-02-08 10:00:00,20.4081725317934
+1970-02-08 11:00:00,9.14386302220447
+1970-02-08 12:00:00,14.6509930161994
+1970-02-08 13:00:00,19.3642872544474
+1970-02-08 14:00:00,18.4578116285898
+1970-02-08 15:00:00,12.8214860074983
+1970-02-08 16:00:00,14.7564673150651
+1970-02-08 17:00:00,16.7542421640713
+1970-02-08 18:00:00,9.97373222083202
+1970-02-08 19:00:00,8.77459466208977
+1970-02-08 20:00:00,11.719201198116
+1970-02-08 21:00:00,15.1161955030274
+1970-02-08 22:00:00,9.2408645853139
+1970-02-08 23:00:00,14.1116040845815
+1970-02-09 00:00:00,20.0789415402719
+1970-02-09 01:00:00,15.6615774521949
+1970-02-09 02:00:00,16.1400339920289
+1970-02-09 03:00:00,14.1646699243603
+1970-02-09 04:00:00,23.2158002094854
+1970-02-09 05:00:00,12.1309524107977
+1970-02-09 06:00:00,15.2033237687113
+1970-02-09 07:00:00,9.84764884249669
+1970-02-09 08:00:00,8.51104502116162
+1970-02-09 09:00:00,15.8061795519871
+1970-02-09 10:00:00,6.59022531329214
+1970-02-09 11:00:00,24.3408401733623
+1970-02-09 12:00:00,21.1716951769705
+1970-02-09 13:00:00,17.6443352948361
+1970-02-09 14:00:00,13.9078743749879
+1970-02-09 15:00:00,20.290991751685
+1970-02-09 16:00:00,15.5737596986558
+1970-02-09 17:00:00,8.14531921753542
+1970-02-09 18:00:00,15.3584668659811
+1970-02-09 19:00:00,17.2936470166264
+1970-02-09 20:00:00,10.2689594154662
+1970-02-09 21:00:00,12.2602478602698
+1970-02-09 22:00:00,12.1436940511024
+1970-02-09 23:00:00,9.9970832657946
+1970-02-10 00:00:00,16.4634892185687
+1970-02-10 01:00:00,15.5557643387657
+1970-02-10 02:00:00,16.9583468411173
+1970-02-10 03:00:00,15.3017416769457
+1970-02-10 04:00:00,13.5301651167109
+1970-02-10 05:00:00,7.02629135388171
+1970-02-10 06:00:00,10.3514223116373
+1970-02-10 07:00:00,16.9946673595338
+1970-02-10 08:00:00,13.1611560973639
+1970-02-10 09:00:00,9.31632208179423
+1970-02-10 10:00:00,9.10891788237213
+1970-02-10 11:00:00,10.5239860703371
+1970-02-10 12:00:00,17.7343621154227
+1970-02-10 13:00:00,13.8187860576705
+1970-02-10 14:00:00,6.40433060957731
+1970-02-10 15:00:00,17.8404859387313
+1970-02-10 16:00:00,16.1579403260467
+1970-02-10 17:00:00,14.8302912296786
+1970-02-10 18:00:00,15.6056909654355
+1970-02-10 19:00:00,14.7806314671179
+1970-02-10 20:00:00,14.3196887580091
+1970-02-10 21:00:00,12.5405204087093
+1970-02-10 22:00:00,13.241908885065
+1970-02-10 23:00:00,9.54005406284586
+1970-02-11 00:00:00,15.5545547405718
+1970-02-11 01:00:00,15.8795493451873
+1970-02-11 02:00:00,28.3221916076363
+1970-02-11 03:00:00,24.7326998291622
+1970-02-11 04:00:00,23.9692958973348
+1970-02-11 05:00:00,12.7490587031315
+1970-02-11 06:00:00,10.0797109439096
+1970-02-11 07:00:00,23.8907541990232
+1970-02-11 08:00:00,11.6970206859852
+1970-02-11 09:00:00,13.9334308443321
+1970-02-11 10:00:00,15.0398526850783
+1970-02-11 11:00:00,8.90218044557262
+1970-02-11 12:00:00,14.1326744566401
+1970-02-11 13:00:00,12.2948008999198
+1970-02-11 14:00:00,13.1629329873326
+1970-02-11 15:00:00,19.0294598150869
+1970-02-11 16:00:00,24.1882206211441
+1970-02-11 17:00:00,20.4579391124177
+1970-02-11 18:00:00,9.28990518973003
+1970-02-11 19:00:00,14.6933862477717
+1970-02-11 20:00:00,12.5101338417582
+1970-02-11 21:00:00,20.9088935303584
+1970-02-11 22:00:00,9.28092019600799
+1970-02-11 23:00:00,5.55620022392042
+1970-02-12 00:00:00,13.9874205221519
+1970-02-12 01:00:00,12.7494305671951
+1970-02-12 02:00:00,14.762415215873
+1970-02-12 03:00:00,9.91617927985893
+1970-02-12 04:00:00,12.6383126534218
+1970-02-12 05:00:00,15.9199495112524
+1970-02-12 06:00:00,16.2071840303093
+1970-02-12 07:00:00,13.5969166810105
+1970-02-12 08:00:00,9.96509376161115
+1970-02-12 09:00:00,9.26877360529491
+1970-02-12 10:00:00,15.7827025357015
+1970-02-12 11:00:00,6.10722019609923
+1970-02-12 12:00:00,19.3085631647964
+1970-02-12 13:00:00,22.7948201061577
+1970-02-12 14:00:00,17.7593187290199
+1970-02-12 15:00:00,10.4849884412566
+1970-02-12 16:00:00,12.1172254290465
+1970-02-12 17:00:00,14.5734075228615
+1970-02-12 18:00:00,18.979642853517
+1970-02-12 19:00:00,16.6490493766213
+1970-02-12 20:00:00,11.2519356486339
+1970-02-12 21:00:00,9.59254077247498
+1970-02-12 22:00:00,20.3238382416191
+1970-02-12 23:00:00,12.0718141610337
+1970-02-13 00:00:00,13.3329716802809
+1970-02-13 01:00:00,6.29858202094992
+1970-02-13 02:00:00,10.0806787546385
+1970-02-13 03:00:00,11.3058851232782
+1970-02-13 04:00:00,18.4898143172723
+1970-02-13 05:00:00,10.1633893404273
+1970-02-13 06:00:00,6.72577653235327
+1970-02-13 07:00:00,14.4245216078569
+1970-02-13 08:00:00,13.3931303242504
+1970-02-13 09:00:00,15.7815140799259
+1970-02-13 10:00:00,14.6963023550138
+1970-02-13 11:00:00,9.81335836394775
+1970-02-13 12:00:00,15.1465816298894
+1970-02-13 13:00:00,14.36978058422
+1970-02-13 14:00:00,17.2109544150132
+1970-02-13 15:00:00,17.2295951224495
+1970-02-13 16:00:00,16.5986002749002
+1970-02-13 17:00:00,20.6189125615099
+1970-02-13 18:00:00,12.0806100410512
+1970-02-13 19:00:00,14.5706203496873
+1970-02-13 20:00:00,14.4869798934751
+1970-02-13 21:00:00,15.5417771543957
+1970-02-13 22:00:00,17.5760833323178
+1970-02-13 23:00:00,8.90083151797915
+1970-02-14 00:00:00,17.295341688577
+1970-02-14 01:00:00,7.62571207943015
+1970-02-14 02:00:00,16.7450734180726
+1970-02-14 03:00:00,15.1986192874878
+1970-02-14 04:00:00,16.7105468348366
+1970-02-14 05:00:00,14.4998354004973
+1970-02-14 06:00:00,16.9628127873018
+1970-02-14 07:00:00,12.059525315371
+1970-02-14 08:00:00,9.35312662640391
+1970-02-14 09:00:00,9.91206024669049
+1970-02-14 10:00:00,8.13604389415891
+1970-02-14 11:00:00,10.1216866093519
+1970-02-14 12:00:00,21.0550640657544
+1970-02-14 13:00:00,14.3658337287352
+1970-02-14 14:00:00,8.0920596368042
+1970-02-14 15:00:00,7.35345901638087
+1970-02-14 16:00:00,13.4209130059142
+1970-02-14 17:00:00,8.74919774774806
+1970-02-14 18:00:00,13.7988293661148
+1970-02-14 19:00:00,12.8050741293002
+1970-02-14 20:00:00,17.5542679275117
+1970-02-14 21:00:00,17.8753352018679
+1970-02-14 22:00:00,15.9712145695846
+1970-02-14 23:00:00,16.4826023593348
+1970-02-15 00:00:00,19.0549030384753
+1970-02-15 01:00:00,27.4983935558915
+1970-02-15 02:00:00,13.6844577160238
+1970-02-15 03:00:00,11.0564599564642
+1970-02-15 04:00:00,20.9336346575812
+1970-02-15 05:00:00,14.7482213667134
+1970-02-15 06:00:00,14.3832756590293
+1970-02-15 07:00:00,10.7398116683334
+1970-02-15 08:00:00,25.464948153097
+1970-02-15 09:00:00,13.7530413048963
+1970-02-15 10:00:00,15.1828297566099
+1970-02-15 11:00:00,12.4625693684428
+1970-02-15 12:00:00,14.3326839541346
+1970-02-15 13:00:00,14.4288874487186
+1970-02-15 14:00:00,10.907043236081
+1970-02-15 15:00:00,16.9893149247799
+1970-02-15 16:00:00,15.5181376851519
+1970-02-15 17:00:00,12.918184157971
+1970-02-15 18:00:00,16.2129906055226
+1970-02-15 19:00:00,13.7317971842555
+1970-02-15 20:00:00,24.1826715654892
+1970-02-15 21:00:00,9.5393662330079
+1970-02-15 22:00:00,8.52825584889301
+1970-02-15 23:00:00,12.9913304423133
+1970-02-16 00:00:00,5.84805630321274
+1970-02-16 01:00:00,15.7112084764641
+1970-02-16 02:00:00,14.1797470505456
+1970-02-16 03:00:00,12.1723530963438
+1970-02-16 04:00:00,19.8446865996372
+1970-02-16 05:00:00,17.5249987084656
+1970-02-16 06:00:00,19.6543816764348
+1970-02-16 07:00:00,9.56562514375131
+1970-02-16 08:00:00,20.8433543271022
+1970-02-16 09:00:00,12.7414333440002
+1970-02-16 10:00:00,16.5848342960343
+1970-02-16 11:00:00,8.25941337833716
+1970-02-16 12:00:00,11.4152271465483
+1970-02-16 13:00:00,7.41418574100516
+1970-02-16 14:00:00,11.0554880679678
+1970-02-16 15:00:00,14.1258855791038
+1970-02-16 16:00:00,7.0930240332402
+1970-02-16 17:00:00,10.776085499055
+1970-02-16 18:00:00,12.4941843515226
+1970-02-16 19:00:00,23.5791948084074
+1970-02-16 20:00:00,13.8742890319221
+1970-02-16 21:00:00,15.3108642515053
+1970-02-16 22:00:00,16.546155612022
+1970-02-16 23:00:00,9.89030704852217
+1970-02-17 00:00:00,13.9509842186229
+1970-02-17 01:00:00,14.12369981607
+1970-02-17 02:00:00,20.835113443551
+1970-02-17 03:00:00,11.2336546778503
+1970-02-17 04:00:00,17.0802472735517
+1970-02-17 05:00:00,16.8858455034613
+1970-02-17 06:00:00,9.36911880382077
+1970-02-17 07:00:00,20.056347850685
+1970-02-17 08:00:00,10.9624332594719
+1970-02-17 09:00:00,13.8344321925648
+1970-02-17 10:00:00,25.4749301883622
+1970-02-17 11:00:00,9.56418948378914
+1970-02-17 12:00:00,13.2088548366472
+1970-02-17 13:00:00,12.7668809095777
+1970-02-17 14:00:00,19.7162662359141
+1970-02-17 15:00:00,13.2990910859473
+1970-02-17 16:00:00,10.4426731766897
+1970-02-17 17:00:00,14.9585096162688
+1970-02-17 18:00:00,16.4107941069824
+1970-02-17 19:00:00,7.85597386607778
+1970-02-17 20:00:00,14.1321550689246
+1970-02-17 21:00:00,18.4677994298534
+1970-02-17 22:00:00,18.0823436964183
+1970-02-17 23:00:00,14.1155399307267
+1970-02-18 00:00:00,18.1922937560832
+1970-02-18 01:00:00,20.6528953467846
+1970-02-18 02:00:00,16.5317510314231
+1970-02-18 03:00:00,8.64558299576158
+1970-02-18 04:00:00,12.444285151771
+1970-02-18 05:00:00,9.58812513810695
+1970-02-18 06:00:00,18.3254294323874
+1970-02-18 07:00:00,13.3769496437223
+1970-02-18 08:00:00,29.3287308227663
+1970-02-18 09:00:00,12.6577764331569
+1970-02-18 10:00:00,18.37840787744
+1970-02-18 11:00:00,17.1219502379754
+1970-02-18 12:00:00,13.5896413984021
+1970-02-18 13:00:00,15.2050776292088
+1970-02-18 14:00:00,11.0059472720805
+1970-02-18 15:00:00,9.64051300351238
+1970-02-18 16:00:00,6.38543816206329
+1970-02-18 17:00:00,10.611651234289
+1970-02-18 18:00:00,11.4394809677676
+1970-02-18 19:00:00,16.6277060154577
+1970-02-18 20:00:00,14.4606677856202
+1970-02-18 21:00:00,10.948720165255
+1970-02-18 22:00:00,10.2745075514858
+1970-02-18 23:00:00,23.0505910117035
+1970-02-19 00:00:00,22.3631279666728
+1970-02-19 01:00:00,15.3858473587952
+1970-02-19 02:00:00,26.5027031829886
+1970-02-19 03:00:00,18.2141389676813
+1970-02-19 04:00:00,16.2098018928493
+1970-02-19 05:00:00,16.8104153669481
+1970-02-19 06:00:00,10.6243709431162
+1970-02-19 07:00:00,9.09563363126287
+1970-02-19 08:00:00,5.52189317687607
+1970-02-19 09:00:00,10.9686241598857
+1970-02-19 10:00:00,8.4689683368816
+1970-02-19 11:00:00,20.5779539967076
+1970-02-19 12:00:00,7.88054191838788
+1970-02-19 13:00:00,12.0123739418192
+1970-02-19 14:00:00,15.2844261146988
+1970-02-19 15:00:00,10.1018286732819
+1970-02-19 16:00:00,14.7043797593512
+1970-02-19 17:00:00,23.2402314561041
+1970-02-19 18:00:00,12.0881554865097
+1970-02-19 19:00:00,12.0199322711467
+1970-02-19 20:00:00,8.28421338772524
+1970-02-19 21:00:00,10.1990519672057
+1970-02-19 22:00:00,16.1948134658363
+1970-02-19 23:00:00,21.8702441728993
+1970-02-20 00:00:00,17.3171019574509
+1970-02-20 01:00:00,16.3115038137229
+1970-02-20 02:00:00,17.5249896888949
+1970-02-20 03:00:00,8.1528109081518
+1970-02-20 04:00:00,20.4309844380479
+1970-02-20 05:00:00,10.3493511796919
+1970-02-20 06:00:00,11.1050262702943
+1970-02-20 07:00:00,18.6864787338083
+1970-02-20 08:00:00,10.5943249845692
+1970-02-20 09:00:00,14.7813882007349
+1970-02-20 10:00:00,24.6219774446812
+1970-02-20 11:00:00,16.7824847398512
+1970-02-20 12:00:00,13.2408620117062
+1970-02-20 13:00:00,20.6976833450836
+1970-02-20 14:00:00,13.5985468051304
+1970-02-20 15:00:00,15.3469087288384
+1970-02-20 16:00:00,10.8000482257729
+1970-02-20 17:00:00,7.32133592422221
+1970-02-20 18:00:00,10.4062567712679
+1970-02-20 19:00:00,16.2806567313406
+1970-02-20 20:00:00,6.9508682856393
+1970-02-20 21:00:00,9.36996257402367
+1970-02-20 22:00:00,16.198710709697
+1970-02-20 23:00:00,13.4506385926524
+1970-02-21 00:00:00,9.09661244775486
+1970-02-21 01:00:00,19.0854667866232
+1970-02-21 02:00:00,11.5617090516009
+1970-02-21 03:00:00,12.2687893446658
+1970-02-21 04:00:00,10.7152305555479
+1970-02-21 05:00:00,14.3553002834547
+1970-02-21 06:00:00,10.1912987160131
+1970-02-21 07:00:00,12.0240209929605
+1970-02-21 08:00:00,8.38217664802633
+1970-02-21 09:00:00,9.07733771534079
+1970-02-21 10:00:00,16.0064501999592
+1970-02-21 11:00:00,15.2809437962217
+1970-02-21 12:00:00,19.8515947894719
+1970-02-21 13:00:00,12.0923260018482
+1970-02-21 14:00:00,6.8457951188497
+1970-02-21 15:00:00,9.04626954904801
+1970-02-21 16:00:00,12.6225978357365
+1970-02-21 17:00:00,13.5072644472081
+1970-02-21 18:00:00,15.0120167267331
+1970-02-21 19:00:00,19.6110239161567
+1970-02-21 20:00:00,12.4501630304321
+1970-02-21 21:00:00,8.97631498174953
+1970-02-21 22:00:00,19.487007581172
+1970-02-21 23:00:00,11.123945309698
+1970-02-22 00:00:00,8.99636722201943
+1970-02-22 01:00:00,10.4713805179862
+1970-02-22 02:00:00,19.5770742814299
+1970-02-22 03:00:00,18.2768834897198
+1970-02-22 04:00:00,7.46767698487052
+1970-02-22 05:00:00,13.8289350775699
+1970-02-22 06:00:00,11.0645030103287
+1970-02-22 07:00:00,19.4190895771035
+1970-02-22 08:00:00,7.2876245741005
+1970-02-22 09:00:00,9.4527093128919
+1970-02-22 10:00:00,12.8686059857081
+1970-02-22 11:00:00,15.5547050877435
+1970-02-22 12:00:00,13.2256264829733
+1970-02-22 13:00:00,12.1652746650087
+1970-02-22 14:00:00,10.9044631696707
+1970-02-22 15:00:00,11.3301037294041
+1970-02-22 16:00:00,15.0935407182565
+1970-02-22 17:00:00,9.57555896292581
+1970-02-22 18:00:00,17.3764697011409
+1970-02-22 19:00:00,11.8639413041657
+1970-02-22 20:00:00,17.2719622759913
+1970-02-22 21:00:00,16.0598878428213
+1970-02-22 22:00:00,15.489274413918
+1970-02-22 23:00:00,9.75367138174038
+1970-02-23 00:00:00,9.3137962193333
+1970-02-23 01:00:00,11.9064770236121
+1970-02-23 02:00:00,15.680253267574
+1970-02-23 03:00:00,11.9627159570277
+1970-02-23 04:00:00,16.5158489927851
+1970-02-23 05:00:00,13.8873008100227
+1970-02-23 06:00:00,14.0083370051292
+1970-02-23 07:00:00,8.53477071615034
+1970-02-23 08:00:00,16.1430953598723
+1970-02-23 09:00:00,10.4415096584543
+1970-02-23 10:00:00,19.0387908668265
+1970-02-23 11:00:00,20.9682085246411
+1970-02-23 12:00:00,16.031673554234
+1970-02-23 13:00:00,9.95789990485292
+1970-02-23 14:00:00,15.6552027050054
+1970-02-23 15:00:00,19.5270456670239
+1970-02-23 16:00:00,12.5131571043951
+1970-02-23 17:00:00,8.62648717996201
+1970-02-23 18:00:00,9.24154855817272
+1970-02-23 19:00:00,16.1672830335064
+1970-02-23 20:00:00,12.7266456043249
+1970-02-23 21:00:00,6.60398899107922
+1970-02-23 22:00:00,11.0664751950893
+1970-02-23 23:00:00,17.7463168373223
+1970-02-24 00:00:00,11.929639425491
+1970-02-24 01:00:00,11.4302190590156
+1970-02-24 02:00:00,13.7631527755687
+1970-02-24 03:00:00,10.2790547681067
+1970-02-24 04:00:00,16.7033536640657
+1970-02-24 05:00:00,11.3561463171994
+1970-02-24 06:00:00,7.38528293740669
+1970-02-24 07:00:00,14.8424947429818
+1970-02-24 08:00:00,16.0337525862852
+1970-02-24 09:00:00,13.2253974301322
+1970-02-24 10:00:00,6.93471759733014
+1970-02-24 11:00:00,17.4439294795942
+1970-02-24 12:00:00,5.56375634863602
+1970-02-24 13:00:00,14.3313715417876
+1970-02-24 14:00:00,12.9744418575475
+1970-02-24 15:00:00,16.057881477325
+1970-02-24 16:00:00,10.661263720934
+1970-02-24 17:00:00,12.021328022041
+1970-02-24 18:00:00,19.7558314876273
+1970-02-24 19:00:00,11.6835828374638
+1970-02-24 20:00:00,17.2635745085994
+1970-02-24 21:00:00,15.5885131791213
+1970-02-24 22:00:00,13.9919466879027
+1970-02-24 23:00:00,12.5905925987136
+1970-02-25 00:00:00,12.4370893024076
+1970-02-25 01:00:00,12.3132309682177
+1970-02-25 02:00:00,16.7293932138311
+1970-02-25 03:00:00,18.9823701955803
+1970-02-25 04:00:00,10.8348791058203
+1970-02-25 05:00:00,14.5825199835792
+1970-02-25 06:00:00,18.0146694230076
+1970-02-25 07:00:00,14.66149481763
+1970-02-25 08:00:00,21.4074433417008
+1970-02-25 09:00:00,16.1991986661721
+1970-02-25 10:00:00,11.6544093365531
+1970-02-25 11:00:00,15.6054280544738
+1970-02-25 12:00:00,9.76163654500608
+1970-02-25 13:00:00,20.244297305456
+1970-02-25 14:00:00,11.7523379040037
+1970-02-25 15:00:00,12.1365394094614
+1970-02-25 16:00:00,21.3427985017269
+1970-02-25 17:00:00,10.3223365410696
+1970-02-25 18:00:00,19.060577294249
+1970-02-25 19:00:00,14.6721224785919
+1970-02-25 20:00:00,13.1961334040567
+1970-02-25 21:00:00,10.9457161417378
+1970-02-25 22:00:00,19.7491558000336
+1970-02-25 23:00:00,9.79482573320522
+1970-02-26 00:00:00,11.5422536807799
+1970-02-26 01:00:00,24.4780194573956
+1970-02-26 02:00:00,18.5193154967742
+1970-02-26 03:00:00,13.5259325771584
+1970-02-26 04:00:00,18.4539843024769
+1970-02-26 05:00:00,15.6510286220771
+1970-02-26 06:00:00,17.149504256704
+1970-02-26 07:00:00,18.4088923183847
+1970-02-26 08:00:00,14.0496288918877
+1970-02-26 09:00:00,6.1925562205529
+1970-02-26 10:00:00,21.1228690878531
+1970-02-26 11:00:00,9.19075576844819
+1970-02-26 12:00:00,9.93748895414466
+1970-02-26 13:00:00,8.75344402661257
+1970-02-26 14:00:00,16.5014550579218
+1970-02-26 15:00:00,18.0428752785859
+1970-02-26 16:00:00,14.4880686111548
+1970-02-26 17:00:00,14.5074912672195
+1970-02-26 18:00:00,12.9582156366585
+1970-02-26 19:00:00,15.0873967820716
+1970-02-26 20:00:00,10.3136883130688
+1970-02-26 21:00:00,12.2050279844899
+1970-02-26 22:00:00,16.5078148064451
+1970-02-26 23:00:00,17.4054936797121
+1970-02-27 00:00:00,13.5191491185371
+1970-02-27 01:00:00,13.8461852643345
+1970-02-27 02:00:00,12.9170386904793
+1970-02-27 03:00:00,16.7790312788864
+1970-02-27 04:00:00,15.1662686429734
+1970-02-27 05:00:00,13.0071499224915
+1970-02-27 06:00:00,10.5258990812515
+1970-02-27 07:00:00,10.3997691200748
+1970-02-27 08:00:00,12.9349413474186
+1970-02-27 09:00:00,15.2618133134806
+1970-02-27 10:00:00,12.5017369219393
+1970-02-27 11:00:00,9.75585689581921
+1970-02-27 12:00:00,11.9038137179677
+1970-02-27 13:00:00,14.6826378263905
+1970-02-27 14:00:00,9.23549715645811
+1970-02-27 15:00:00,16.6756821660167
+1970-02-27 16:00:00,12.7426544811657
+1970-02-27 17:00:00,8.63353130910279
+1970-02-27 18:00:00,7.5869781999109
+1970-02-27 19:00:00,9.00477045076281
+1970-02-27 20:00:00,14.2964718982275
+1970-02-27 21:00:00,19.5684911390807
+1970-02-27 22:00:00,11.3689830667273
+1970-02-27 23:00:00,11.6746483304407
+1970-02-28 00:00:00,18.2397221853278
+1970-02-28 01:00:00,13.8110288349498
+1970-02-28 02:00:00,22.0716106074179
+1970-02-28 03:00:00,17.3527198479961
+1970-02-28 04:00:00,11.4690712628899
+1970-02-28 05:00:00,7.98846281337885
+1970-02-28 06:00:00,24.431235833505
+1970-02-28 07:00:00,13.1950136690791
+1970-02-28 08:00:00,10.1198007284903
+1970-02-28 09:00:00,7.73439903390754
+1970-02-28 10:00:00,12.4415986988064
+1970-02-28 11:00:00,6.87293070725325
+1970-02-28 12:00:00,13.1491814560059
+1970-02-28 13:00:00,10.3948491306806
+1970-02-28 14:00:00,17.0055575485608
+1970-02-28 15:00:00,9.59210041185488
+1970-02-28 16:00:00,15.4892449898108
+1970-02-28 17:00:00,11.790416791031
+1970-02-28 18:00:00,12.2561117473367
+1970-02-28 19:00:00,16.8533853941388
+1970-02-28 20:00:00,21.1112377947315
+1970-02-28 21:00:00,8.30984693988318
+1970-02-28 22:00:00,16.3945128330775
+1970-02-28 23:00:00,21.5695764280703
+1970-03-01 00:00:00,16.6382117398293
+1970-03-01 01:00:00,9.87322870134733
+1970-03-01 02:00:00,18.4237716632505
+1970-03-01 03:00:00,11.5212455331532
+1970-03-01 04:00:00,14.604283336164
+1970-03-01 05:00:00,7.51267669968119
+1970-03-01 06:00:00,16.1730040763842
+1970-03-01 07:00:00,11.1668751628746
+1970-03-01 08:00:00,23.1824278452065
+1970-03-01 09:00:00,18.1109730710167
+1970-03-01 10:00:00,16.914961092524
+1970-03-01 11:00:00,18.9529181009958
+1970-03-01 12:00:00,8.9813930994504
+1970-03-01 13:00:00,15.2117483882314
+1970-03-01 14:00:00,13.7074145734285
+1970-03-01 15:00:00,29.0115807550299
+1970-03-01 16:00:00,8.59482687219153
+1970-03-01 17:00:00,6.90640062494365
+1970-03-01 18:00:00,16.3181891588119
+1970-03-01 19:00:00,13.0044881842319
+1970-03-01 20:00:00,19.17403325443
+1970-03-01 21:00:00,14.8853975343939
+1970-03-01 22:00:00,17.0243517672207
+1970-03-01 23:00:00,17.1122971235171
+1970-03-02 00:00:00,13.1973006481944
+1970-03-02 01:00:00,11.3936940016636
+1970-03-02 02:00:00,13.130061646968
+1970-03-02 03:00:00,16.2464834488357
+1970-03-02 04:00:00,14.8820213781472
+1970-03-02 05:00:00,14.9503943978252
+1970-03-02 06:00:00,13.9058368580794
+1970-03-02 07:00:00,20.5566676050375
+1970-03-02 08:00:00,16.6275889620874
+1970-03-02 09:00:00,9.81674146911275
+1970-03-02 10:00:00,20.6118735670305
+1970-03-02 11:00:00,16.9094909357079
+1970-03-02 12:00:00,11.3592399974266
+1970-03-02 13:00:00,22.3669532748694
+1970-03-02 14:00:00,18.2287609003019
+1970-03-02 15:00:00,13.5551825272352
+1970-03-02 16:00:00,12.0440883941206
+1970-03-02 17:00:00,10.3929799343484
+1970-03-02 18:00:00,12.9643268027084
+1970-03-02 19:00:00,11.5295013463251
+1970-03-02 20:00:00,12.1382700847156
+1970-03-02 21:00:00,6.53399253722765
+1970-03-02 22:00:00,17.083859198939
+1970-03-02 23:00:00,11.2042773447109
+1970-03-03 00:00:00,17.2599433098265
+1970-03-03 01:00:00,16.8811113410313
+1970-03-03 02:00:00,14.1571630935476
+1970-03-03 03:00:00,20.96653792974
+1970-03-03 04:00:00,9.65734879259107
+1970-03-03 05:00:00,21.4104203142758
+1970-03-03 06:00:00,7.76925643277363
+1970-03-03 07:00:00,14.3918688258408
+1970-03-03 08:00:00,10.3973739442862
+1970-03-03 09:00:00,16.9372029945318
+1970-03-03 10:00:00,17.8624682192115
+1970-03-03 11:00:00,7.60540043665898
+1970-03-03 12:00:00,14.7209320626216
+1970-03-03 13:00:00,21.4630811338012
+1970-03-03 14:00:00,8.42642300617581
+1970-03-03 15:00:00,10.990691546051
+1970-03-03 16:00:00,10.6927916137294
+1970-03-03 17:00:00,15.0998945679762
+1970-03-03 18:00:00,13.5165600089701
+1970-03-03 19:00:00,13.8165421422339
+1970-03-03 20:00:00,9.3923774552296
+1970-03-03 21:00:00,17.9130014396963
+1970-03-03 22:00:00,17.6977605247085
+1970-03-03 23:00:00,10.2402764918939
+1970-03-04 00:00:00,12.8641425633677
+1970-03-04 01:00:00,6.45255598368492
+1970-03-04 02:00:00,11.5579002318375
+1970-03-04 03:00:00,12.6894318347055
+1970-03-04 04:00:00,17.5207527849054
+1970-03-04 05:00:00,10.0316638570696
+1970-03-04 06:00:00,17.037349001758
+1970-03-04 07:00:00,14.4704644712444
+1970-03-04 08:00:00,10.0251105572912
+1970-03-04 09:00:00,11.7763123754222
+1970-03-04 10:00:00,26.2490109060172
+1970-03-04 11:00:00,15.5424610445208
+1970-03-04 12:00:00,16.3521150636966
+1970-03-04 13:00:00,21.7668668837475
+1970-03-04 14:00:00,9.97917425825632
+1970-03-04 15:00:00,13.366573417327
+1970-03-04 16:00:00,4.88210709704516
+1970-03-04 17:00:00,21.0758974450758
+1970-03-04 18:00:00,8.65025466197167
+1970-03-04 19:00:00,18.588769956101
+1970-03-04 20:00:00,15.8091875254629
+1970-03-04 21:00:00,6.83894376119325
+1970-03-04 22:00:00,12.7958470939526
+1970-03-04 23:00:00,14.1532927220858
+1970-03-05 00:00:00,13.5979276070854
+1970-03-05 01:00:00,22.2325466535201
+1970-03-05 02:00:00,16.6951671320495
+1970-03-05 03:00:00,17.4783518737305
+1970-03-05 04:00:00,26.4752647120062
+1970-03-05 05:00:00,11.3743554849067
+1970-03-05 06:00:00,22.603299433842
+1970-03-05 07:00:00,16.0260495567379
+1970-03-05 08:00:00,11.2478840067518
+1970-03-05 09:00:00,11.0574654884794
+1970-03-05 10:00:00,8.65352496108866
+1970-03-05 11:00:00,16.8072398350365
+1970-03-05 12:00:00,18.464006172309
+1970-03-05 13:00:00,17.5070197796809
+1970-03-05 14:00:00,15.2710154867608
+1970-03-05 15:00:00,14.0613302604306
+1970-03-05 16:00:00,11.0949731993654
+1970-03-05 17:00:00,14.0577432699627
+1970-03-05 18:00:00,14.0745447633149
+1970-03-05 19:00:00,13.2482078296258
+1970-03-05 20:00:00,11.8586132837564
+1970-03-05 21:00:00,10.0600438052286
+1970-03-05 22:00:00,11.1301771721234
+1970-03-05 23:00:00,13.3031369950759
+1970-03-06 00:00:00,13.4470673458305
+1970-03-06 01:00:00,13.812096993016
+1970-03-06 02:00:00,20.9394482387547
+1970-03-06 03:00:00,9.21967077090394
+1970-03-06 04:00:00,9.17008828902545
+1970-03-06 05:00:00,16.0779651712462
+1970-03-06 06:00:00,14.409163913274
+1970-03-06 07:00:00,11.5750147934944
+1970-03-06 08:00:00,14.0499727100426
+1970-03-06 09:00:00,14.0953880072508
+1970-03-06 10:00:00,16.9946786153363
+1970-03-06 11:00:00,8.25257555324012
+1970-03-06 12:00:00,13.6419456718491
+1970-03-06 13:00:00,20.5150808705005
+1970-03-06 14:00:00,13.9520549921119
+1970-03-06 15:00:00,13.5875486121179
+1970-03-06 16:00:00,13.0092915839365
+1970-03-06 17:00:00,17.8930852965923
+1970-03-06 18:00:00,21.4844447475541
+1970-03-06 19:00:00,8.0148256510242
+1970-03-06 20:00:00,22.3404648449471
+1970-03-06 21:00:00,9.41407955162454
+1970-03-06 22:00:00,10.1259742245477
+1970-03-06 23:00:00,19.4757889235586
+1970-03-07 00:00:00,17.3476580180725
+1970-03-07 01:00:00,27.8742276554993
+1970-03-07 02:00:00,19.7927986784695
+1970-03-07 03:00:00,13.8243643130306
+1970-03-07 04:00:00,16.5675192015685
+1970-03-07 05:00:00,13.4530052143714
+1970-03-07 06:00:00,8.26851110921352
+1970-03-07 07:00:00,12.5082795910071
+1970-03-07 08:00:00,10.5386797302936
+1970-03-07 09:00:00,15.6415530513556
+1970-03-07 10:00:00,12.669741263636
+1970-03-07 11:00:00,14.0263241612751
+1970-03-07 12:00:00,13.9920351285774
+1970-03-07 13:00:00,9.52118774836196
+1970-03-07 14:00:00,16.1227969862733
+1970-03-07 15:00:00,11.7113052621776
+1970-03-07 16:00:00,25.2825045257649
+1970-03-07 17:00:00,13.7224725651737
+1970-03-07 18:00:00,16.1866943949061
+1970-03-07 19:00:00,14.4011637637484
+1970-03-07 20:00:00,12.5586134588552
+1970-03-07 21:00:00,12.8850440434081
+1970-03-07 22:00:00,19.2563187883441
+1970-03-07 23:00:00,23.7131337348922
+1970-03-08 00:00:00,15.7332651616306
+1970-03-08 01:00:00,14.7249173900413
+1970-03-08 02:00:00,23.5058658542053
+1970-03-08 03:00:00,11.2150669345386
+1970-03-08 04:00:00,18.4737280776686
+1970-03-08 05:00:00,12.2114135939524
+1970-03-08 06:00:00,11.7947248369766
+1970-03-08 07:00:00,5.71299624741948
+1970-03-08 08:00:00,10.9246390139139
+1970-03-08 09:00:00,9.94823647409359
+1970-03-08 10:00:00,10.2218973799337
+1970-03-08 11:00:00,15.0621464375176
+1970-03-08 12:00:00,15.5313906255023
+1970-03-08 13:00:00,18.2999366732911
+1970-03-08 14:00:00,11.765440113457
+1970-03-08 15:00:00,15.228266245347
+1970-03-08 16:00:00,26.0942216328327
+1970-03-08 17:00:00,14.8680570175598
+1970-03-08 18:00:00,23.1820077842768
+1970-03-08 19:00:00,14.9957514320898
+1970-03-08 20:00:00,13.9529321512262
+1970-03-08 21:00:00,6.65759329976118
+1970-03-08 22:00:00,9.44267708391349
+1970-03-08 23:00:00,24.1258920574465
+1970-03-09 00:00:00,10.5808017706497
+1970-03-09 01:00:00,15.950645284723
+1970-03-09 02:00:00,12.2728804643572
+1970-03-09 03:00:00,9.71516599486585
+1970-03-09 04:00:00,13.8901207930782
+1970-03-09 05:00:00,36.4452178980609
+1970-03-09 06:00:00,11.0639305079708
+1970-03-09 07:00:00,21.1082673136534
+1970-03-09 08:00:00,13.1494178897234
+1970-03-09 09:00:00,11.0162915197734
+1970-03-09 10:00:00,15.2425895232121
+1970-03-09 11:00:00,18.3922122552749
+1970-03-09 12:00:00,14.0268309904107
+1970-03-09 13:00:00,17.8999646442155
+1970-03-09 14:00:00,14.6486320877672
+1970-03-09 15:00:00,18.6805453661754
+1970-03-09 16:00:00,18.5472081064704
+1970-03-09 17:00:00,11.7556489524528
+1970-03-09 18:00:00,13.1046931463782
+1970-03-09 19:00:00,13.9966661261325
+1970-03-09 20:00:00,16.06345488008
+1970-03-09 21:00:00,12.1745352662752
+1970-03-09 22:00:00,14.5892859496777
+1970-03-09 23:00:00,13.5694824713411
+1970-03-10 00:00:00,9.0208758433792
+1970-03-10 01:00:00,18.2615367683027
+1970-03-10 02:00:00,7.52181495941256
+1970-03-10 03:00:00,13.0450930155405
+1970-03-10 04:00:00,16.005000357743
+1970-03-10 05:00:00,14.2346811380364
+1970-03-10 06:00:00,18.7417016638926
+1970-03-10 07:00:00,10.8798491364898
+1970-03-10 08:00:00,16.0486574043877
+1970-03-10 09:00:00,16.8571242918966
+1970-03-10 10:00:00,12.7121690185671
+1970-03-10 11:00:00,16.1654014745282
+1970-03-10 12:00:00,7.10033355386713
+1970-03-10 13:00:00,13.7322011874767
+1970-03-10 14:00:00,7.18374366289284
+1970-03-10 15:00:00,14.6617576395392
+1970-03-10 16:00:00,21.8965964149675
+1970-03-10 17:00:00,16.1909210165656
+1970-03-10 18:00:00,15.7858669519116
+1970-03-10 19:00:00,9.93160785068549
+1970-03-10 20:00:00,5.65496727016837
+1970-03-10 21:00:00,6.06363440181549
+1970-03-10 22:00:00,24.9097540326591
+1970-03-10 23:00:00,10.7104495285091
+1970-03-11 00:00:00,12.5832012713488
+1970-03-11 01:00:00,24.0150583630137
+1970-03-11 02:00:00,12.2915079077519
+1970-03-11 03:00:00,9.46252239777435
+1970-03-11 04:00:00,20.7455700842103
+1970-03-11 05:00:00,15.0815680944048
+1970-03-11 06:00:00,20.3349479586479
+1970-03-11 07:00:00,11.479363079362
+1970-03-11 08:00:00,16.1615695899564
+1970-03-11 09:00:00,14.5251793694495
+1970-03-11 10:00:00,20.8344616415476
+1970-03-11 11:00:00,8.71236563393318
+1970-03-11 12:00:00,12.0625237154536
+1970-03-11 13:00:00,15.9619472302664
+1970-03-11 14:00:00,16.7392488905419
+1970-03-11 15:00:00,9.01813260466986
+1970-03-11 16:00:00,16.7638591942737
+1970-03-11 17:00:00,14.0898934792698
+1970-03-11 18:00:00,16.9061425999373
+1970-03-11 19:00:00,9.11630083245427
+1970-03-11 20:00:00,21.7786513800743
+1970-03-11 21:00:00,9.09605677161699
+1970-03-11 22:00:00,14.9155287597608
+1970-03-11 23:00:00,14.2578727429758
+1970-03-12 00:00:00,16.7000238203958
+1970-03-12 01:00:00,21.4290926061429
+1970-03-12 02:00:00,13.912354209596
+1970-03-12 03:00:00,15.5106745253734
+1970-03-12 04:00:00,13.0744395140231
+1970-03-12 05:00:00,18.4856638260277
+1970-03-12 06:00:00,14.4346028583543
+1970-03-12 07:00:00,10.9381810291398
+1970-03-12 08:00:00,16.366899864795
+1970-03-12 09:00:00,16.1074591101694
+1970-03-12 10:00:00,10.8355876156669
+1970-03-12 11:00:00,26.2675124403711
+1970-03-12 12:00:00,8.02522238086201
+1970-03-12 13:00:00,17.8154328560443
+1970-03-12 14:00:00,22.8102147337167
+1970-03-12 15:00:00,10.49170782512
+1970-03-12 16:00:00,10.0922309033936
+1970-03-12 17:00:00,16.4038926305885
+1970-03-12 18:00:00,11.3596349458625
+1970-03-12 19:00:00,18.4782744224343
+1970-03-12 20:00:00,10.2115799049988
+1970-03-12 21:00:00,13.944642858128
+1970-03-12 22:00:00,9.59170850902911
+1970-03-12 23:00:00,15.4182855454411
+1970-03-13 00:00:00,18.9094400860622
+1970-03-13 01:00:00,16.6781883324034
+1970-03-13 02:00:00,12.472673924274
+1970-03-13 03:00:00,17.198463599338
+1970-03-13 04:00:00,11.6105142774298
+1970-03-13 05:00:00,13.5578680322379
+1970-03-13 06:00:00,8.81420151846722
+1970-03-13 07:00:00,16.0625043034263
+1970-03-13 08:00:00,10.4684858749034
+1970-03-13 09:00:00,10.4431736429717
+1970-03-13 10:00:00,18.410050743324
+1970-03-13 11:00:00,9.95948729031225
+1970-03-13 12:00:00,12.2826653090579
+1970-03-13 13:00:00,13.3386210861151
+1970-03-13 14:00:00,16.1499407253009
+1970-03-13 15:00:00,13.5526554096513
+1970-03-13 16:00:00,25.2460208852377
+1970-03-13 17:00:00,13.6721871338002
+1970-03-13 18:00:00,17.8603996041747
+1970-03-13 19:00:00,18.4535249854706
+1970-03-13 20:00:00,11.4599067048767
+1970-03-13 21:00:00,15.3925942380826
+1970-03-13 22:00:00,20.1239047471764
+1970-03-13 23:00:00,11.6715796471819
+1970-03-14 00:00:00,12.7621022259755
+1970-03-14 01:00:00,15.8507200338862
+1970-03-14 02:00:00,18.8325548123702
+1970-03-14 03:00:00,15.02933130008
+1970-03-14 04:00:00,14.911301868186
+1970-03-14 05:00:00,12.0564556834502
+1970-03-14 06:00:00,17.6379956646024
+1970-03-14 07:00:00,15.2075591058872
+1970-03-14 08:00:00,15.5630960678509
+1970-03-14 09:00:00,11.7302833655591
+1970-03-14 10:00:00,15.0611202717672
+1970-03-14 11:00:00,15.7892097380262
+1970-03-14 12:00:00,13.677637248709
+1970-03-14 13:00:00,15.5478787964193
+1970-03-14 14:00:00,21.9001518661237
+1970-03-14 15:00:00,12.0728132561126
+1970-03-14 16:00:00,13.1257840085153
+1970-03-14 17:00:00,11.5967804532471
+1970-03-14 18:00:00,11.3981747673199
+1970-03-14 19:00:00,13.3176274812906
+1970-03-14 20:00:00,26.4254259426152
+1970-03-14 21:00:00,18.1071174210541
+1970-03-14 22:00:00,19.4965904984087
+1970-03-14 23:00:00,8.91011990318196
+1970-03-15 00:00:00,12.6959332519625
+1970-03-15 01:00:00,11.1305473069685
+1970-03-15 02:00:00,10.2729518147038
+1970-03-15 03:00:00,16.1016279761154
+1970-03-15 04:00:00,12.0941297362433
+1970-03-15 05:00:00,14.6811216167939
+1970-03-15 06:00:00,15.0064125256449
+1970-03-15 07:00:00,10.6965774080693
+1970-03-15 08:00:00,18.5352341556048
+1970-03-15 09:00:00,10.6973189290101
+1970-03-15 10:00:00,16.1570357385762
+1970-03-15 11:00:00,25.9814814257574
+1970-03-15 12:00:00,10.7372959192417
+1970-03-15 13:00:00,13.0860361895174
+1970-03-15 14:00:00,15.8335006660833
+1970-03-15 15:00:00,15.4123978245058
+1970-03-15 16:00:00,11.473792166513
+1970-03-15 17:00:00,10.2363455453025
+1970-03-15 18:00:00,13.0682316083752
+1970-03-15 19:00:00,16.8138623290779
+1970-03-15 20:00:00,17.0926722555399
+1970-03-15 21:00:00,6.45471682659903
+1970-03-15 22:00:00,10.2349362759187
+1970-03-15 23:00:00,17.3663489322869
+1970-03-16 00:00:00,9.31928010375585
+1970-03-16 01:00:00,16.3169597288467
+1970-03-16 02:00:00,15.1830911151859
+1970-03-16 03:00:00,7.49426674457673
+1970-03-16 04:00:00,19.7977552381287
+1970-03-16 05:00:00,17.2145802234888
+1970-03-16 06:00:00,18.15804382473
+1970-03-16 07:00:00,10.0574969582641
+1970-03-16 08:00:00,10.9448266836689
+1970-03-16 09:00:00,24.6729241531546
+1970-03-16 10:00:00,16.7590580083912
+1970-03-16 11:00:00,6.80924793196866
+1970-03-16 12:00:00,11.6588786992088
+1970-03-16 13:00:00,17.1461324153551
+1970-03-16 14:00:00,14.1688926685362
+1970-03-16 15:00:00,14.1714852414107
+1970-03-16 16:00:00,12.00169929052
+1970-03-16 17:00:00,18.4978550529004
+1970-03-16 18:00:00,11.5835655835529
+1970-03-16 19:00:00,8.41004514348636
+1970-03-16 20:00:00,14.2119928464843
+1970-03-16 21:00:00,23.8303093551056
+1970-03-16 22:00:00,11.1842997171478
+1970-03-16 23:00:00,7.21012082164239
+1970-03-17 00:00:00,14.2893469682994
+1970-03-17 01:00:00,14.3211110259357
+1970-03-17 02:00:00,9.53754093490429
+1970-03-17 03:00:00,20.3002546541025
+1970-03-17 04:00:00,16.8857499183033
+1970-03-17 05:00:00,8.64700638724406
+1970-03-17 06:00:00,23.2921828060031
+1970-03-17 07:00:00,20.2455453446151
+1970-03-17 08:00:00,12.6299897109166
+1970-03-17 09:00:00,17.6258673088174
+1970-03-17 10:00:00,17.3375632897284
+1970-03-17 11:00:00,18.5012517687454
+1970-03-17 12:00:00,13.8887363275078
+1970-03-17 13:00:00,12.9577759733645
+1970-03-17 14:00:00,13.4607906784402
+1970-03-17 15:00:00,25.3525212479154
+1970-03-17 16:00:00,14.241602342761
+1970-03-17 17:00:00,15.7842013042917
+1970-03-17 18:00:00,12.2933043261882
+1970-03-17 19:00:00,7.34152493466096
+1970-03-17 20:00:00,12.5335620978023
+1970-03-17 21:00:00,10.7809155541052
+1970-03-17 22:00:00,12.7824753395501
+1970-03-17 23:00:00,7.53520568550281
+1970-03-18 00:00:00,17.9646210837025
+1970-03-18 01:00:00,17.6490417750897
+1970-03-18 02:00:00,9.64210804718254
+1970-03-18 03:00:00,14.7799976518312
+1970-03-18 04:00:00,12.6637512908827
+1970-03-18 05:00:00,16.4291278171437
+1970-03-18 06:00:00,7.92426624105437
+1970-03-18 07:00:00,18.0918793971906
+1970-03-18 08:00:00,14.222311238231
+1970-03-18 09:00:00,16.8399156330477
+1970-03-18 10:00:00,12.2241011721881
+1970-03-18 11:00:00,19.8799801950706
+1970-03-18 12:00:00,17.0850653442449
+1970-03-18 13:00:00,10.6766873308143
+1970-03-18 14:00:00,18.6172365855099
+1970-03-18 15:00:00,20.0856005247987
+1970-03-18 16:00:00,8.83990701407009
+1970-03-18 17:00:00,20.6702882776074
+1970-03-18 18:00:00,12.6596262890546
+1970-03-18 19:00:00,11.7839285021132
+1970-03-18 20:00:00,11.7499934187028
+1970-03-18 21:00:00,18.079522763676
+1970-03-18 22:00:00,10.5682307450426
+1970-03-18 23:00:00,12.2673185179514
+1970-03-19 00:00:00,17.1278089652247
+1970-03-19 01:00:00,10.8856619095188
+1970-03-19 02:00:00,16.937101537847
+1970-03-19 03:00:00,15.0683198902161
+1970-03-19 04:00:00,20.9688796307209
+1970-03-19 05:00:00,10.6265644398058
+1970-03-19 06:00:00,15.258963389941
+1970-03-19 07:00:00,12.4524231945823
+1970-03-19 08:00:00,17.9966460473031
+1970-03-19 09:00:00,17.1311837356394
+1970-03-19 10:00:00,10.4026736422366
+1970-03-19 11:00:00,13.4038601743576
+1970-03-19 12:00:00,10.6376057724879
+1970-03-19 13:00:00,10.750556067496
+1970-03-19 14:00:00,8.81761834073552
+1970-03-19 15:00:00,15.2286220761879
+1970-03-19 16:00:00,18.8103645302608
+1970-03-19 17:00:00,10.0605103337498
+1970-03-19 18:00:00,22.8085730749842
+1970-03-19 19:00:00,11.9754352722881
+1970-03-19 20:00:00,11.1792594137619
+1970-03-19 21:00:00,17.3958023487112
+1970-03-19 22:00:00,14.0910518721988
+1970-03-19 23:00:00,11.6264233661928
+1970-03-20 00:00:00,9.16126213394184
+1970-03-20 01:00:00,8.09747998134171
+1970-03-20 02:00:00,8.18827196026631
+1970-03-20 03:00:00,8.11794316279329
+1970-03-20 04:00:00,10.0944732991537
+1970-03-20 05:00:00,13.4147310345234
+1970-03-20 06:00:00,7.67665990155869
+1970-03-20 07:00:00,14.2335832705827
+1970-03-20 08:00:00,21.8085572404107
+1970-03-20 09:00:00,18.1400962904353
+1970-03-20 10:00:00,10.9987595288887
+1970-03-20 11:00:00,9.69176384507672
+1970-03-20 12:00:00,14.5179834084405
+1970-03-20 13:00:00,17.3272159967625
+1970-03-20 14:00:00,11.625882335836
+1970-03-20 15:00:00,21.3981142001016
+1970-03-20 16:00:00,13.8165684660348
+1970-03-20 17:00:00,19.4835282110588
+1970-03-20 18:00:00,6.1112004605598
+1970-03-20 19:00:00,12.806020115744
+1970-03-20 20:00:00,21.5104697137191
+1970-03-20 21:00:00,7.60554182620793
+1970-03-20 22:00:00,9.05239909095365
+1970-03-20 23:00:00,8.52053779703235
+1970-03-21 00:00:00,8.9777003772764
+1970-03-21 01:00:00,8.25776746553782
+1970-03-21 02:00:00,14.2549319562011
+1970-03-21 03:00:00,8.37459440995529
+1970-03-21 04:00:00,15.7706995408322
+1970-03-21 05:00:00,18.7227395263427
+1970-03-21 06:00:00,15.4272380755311
+1970-03-21 07:00:00,9.66813227228722
+1970-03-21 08:00:00,15.3035245334452
+1970-03-21 09:00:00,15.4351028386545
+1970-03-21 10:00:00,8.27216819859822
+1970-03-21 11:00:00,11.8511815663611
+1970-03-21 12:00:00,15.1295162558182
+1970-03-21 13:00:00,12.7875125571863
+1970-03-21 14:00:00,12.8076051080783
+1970-03-21 15:00:00,22.1742981287983
+1970-03-21 16:00:00,10.2445098025642
+1970-03-21 17:00:00,9.59280501442583
+1970-03-21 18:00:00,8.69466699065007
+1970-03-21 19:00:00,17.5235943736733
+1970-03-21 20:00:00,12.2741530044751
+1970-03-21 21:00:00,25.385215743576
+1970-03-21 22:00:00,10.2163484719488
+1970-03-21 23:00:00,15.6091691886411
+1970-03-22 00:00:00,13.8955326457904
+1970-03-22 01:00:00,21.823932699942
+1970-03-22 02:00:00,17.4779057517297
+1970-03-22 03:00:00,16.110965140949
+1970-03-22 04:00:00,13.8844077130102
+1970-03-22 05:00:00,13.1461832618852
+1970-03-22 06:00:00,15.2664394467952
+1970-03-22 07:00:00,8.52950074381355
+1970-03-22 08:00:00,16.1349415035231
+1970-03-22 09:00:00,11.0480353273471
+1970-03-22 10:00:00,18.302261040928
+1970-03-22 11:00:00,12.1350588009605
+1970-03-22 12:00:00,14.7457645494488
+1970-03-22 13:00:00,19.1236248130933
+1970-03-22 14:00:00,8.7640276022217
+1970-03-22 15:00:00,13.8989191906377
+1970-03-22 16:00:00,18.0774685619161
+1970-03-22 17:00:00,16.4727165712774
+1970-03-22 18:00:00,12.7371076182686
+1970-03-22 19:00:00,14.8012429996377
+1970-03-22 20:00:00,15.9155689558049
+1970-03-22 21:00:00,10.1917206339047
+1970-03-22 22:00:00,16.6900897490352
+1970-03-22 23:00:00,15.496117652548
+1970-03-23 00:00:00,15.0262416039444
+1970-03-23 01:00:00,18.482550876707
+1970-03-23 02:00:00,14.2653923311813
+1970-03-23 03:00:00,6.48668327200353
+1970-03-23 04:00:00,12.8724209188164
+1970-03-23 05:00:00,19.4634160195083
+1970-03-23 06:00:00,4.00986100220257
+1970-03-23 07:00:00,17.9853379369928
+1970-03-23 08:00:00,6.96486130421872
+1970-03-23 09:00:00,19.4032661864841
+1970-03-23 10:00:00,14.7015773988536
+1970-03-23 11:00:00,15.278732423203
+1970-03-23 12:00:00,14.9800814160393
+1970-03-23 13:00:00,25.2914364311516
+1970-03-23 14:00:00,12.8142108036518
+1970-03-23 15:00:00,11.7011733392668
+1970-03-23 16:00:00,9.05703499986577
+1970-03-23 17:00:00,9.38337654494615
+1970-03-23 18:00:00,17.2354722871182
+1970-03-23 19:00:00,25.6175514260265
+1970-03-23 20:00:00,13.5244856944381
+1970-03-23 21:00:00,15.1925948456152
+1970-03-23 22:00:00,13.8012574959115
+1970-03-23 23:00:00,16.3329072950042
+1970-03-24 00:00:00,14.0269888551287
+1970-03-24 01:00:00,14.2074766179438
+1970-03-24 02:00:00,11.4331894385601
+1970-03-24 03:00:00,13.0359357060679
+1970-03-24 04:00:00,9.16546140705218
+1970-03-24 05:00:00,12.4332414823019
+1970-03-24 06:00:00,17.9836806076814
+1970-03-24 07:00:00,17.5732566156788
+1970-03-24 08:00:00,11.2238376431024
+1970-03-24 09:00:00,12.2021499825039
+1970-03-24 10:00:00,10.7502370939173
+1970-03-24 11:00:00,8.96347098603798
+1970-03-24 12:00:00,10.9552952344505
+1970-03-24 13:00:00,22.2394047053861
+1970-03-24 14:00:00,13.5800557896881
+1970-03-24 15:00:00,9.6890150880048
+1970-03-24 16:00:00,14.9126767956556
+1970-03-24 17:00:00,15.1232808831577
+1970-03-24 18:00:00,17.21879801873
+1970-03-24 19:00:00,14.9538407906767
+1970-03-24 20:00:00,19.4371734883381
+1970-03-24 21:00:00,9.63123974476274
+1970-03-24 22:00:00,15.2529202144745
+1970-03-24 23:00:00,10.0134658029059
+1970-03-25 00:00:00,10.4307144776812
+1970-03-25 01:00:00,18.6744688203535
+1970-03-25 02:00:00,18.987262903193
+1970-03-25 03:00:00,26.8811534746237
+1970-03-25 04:00:00,17.8645835688462
+1970-03-25 05:00:00,21.5631876685998
+1970-03-25 06:00:00,15.1813331119677
+1970-03-25 07:00:00,16.6875582556457
+1970-03-25 08:00:00,9.17221197776563
+1970-03-25 09:00:00,12.0291709023887
+1970-03-25 10:00:00,17.5539152208092
+1970-03-25 11:00:00,6.96687190548736
+1970-03-25 12:00:00,14.0719950026042
+1970-03-25 13:00:00,13.699816720984
+1970-03-25 14:00:00,15.9215194108242
+1970-03-25 15:00:00,15.1489744192967
+1970-03-25 16:00:00,11.9287974846451
+1970-03-25 17:00:00,5.48006988366132
+1970-03-25 18:00:00,13.7970471027968
+1970-03-25 19:00:00,13.6685083807015
+1970-03-25 20:00:00,10.808918628025
+1970-03-25 21:00:00,9.45138956996782
+1970-03-25 22:00:00,21.5871247611653
+1970-03-25 23:00:00,15.2717874359833
+1970-03-26 00:00:00,9.1750682129726
+1970-03-26 01:00:00,13.0205342354662
+1970-03-26 02:00:00,13.5543485671217
+1970-03-26 03:00:00,9.5098448976924
+1970-03-26 04:00:00,21.724956871935
+1970-03-26 05:00:00,8.79758777919548
+1970-03-26 06:00:00,7.75182132990965
+1970-03-26 07:00:00,14.8867392788885
+1970-03-26 08:00:00,21.112456890171
+1970-03-26 09:00:00,7.64020483487866
+1970-03-26 10:00:00,10.1022073798322
+1970-03-26 11:00:00,17.3399612392655
+1970-03-26 12:00:00,12.6594154444523
+1970-03-26 13:00:00,15.3400531488397
+1970-03-26 14:00:00,17.9880025686982
+1970-03-26 15:00:00,11.9146557074788
+1970-03-26 16:00:00,20.8605867275728
+1970-03-26 17:00:00,32.5748727648081
+1970-03-26 18:00:00,10.835775200512
+1970-03-26 19:00:00,8.37647968880842
+1970-03-26 20:00:00,7.74579359911106
+1970-03-26 21:00:00,9.05096993858026
+1970-03-26 22:00:00,18.3265472583312
+1970-03-26 23:00:00,13.1917803375542
+1970-03-27 00:00:00,19.1606721898782
+1970-03-27 01:00:00,25.1251234092267
+1970-03-27 02:00:00,9.98734333375106
+1970-03-27 03:00:00,13.6084821788114
+1970-03-27 04:00:00,9.88158783398993
+1970-03-27 05:00:00,21.2876691037548
+1970-03-27 06:00:00,11.4460286818908
+1970-03-27 07:00:00,13.8665112713074
+1970-03-27 08:00:00,15.5795211553582
+1970-03-27 09:00:00,14.644166274961
+1970-03-27 10:00:00,13.4518601142214
+1970-03-27 11:00:00,8.66238421162782
+1970-03-27 12:00:00,21.357340544857
+1970-03-27 13:00:00,10.5575524252965
+1970-03-27 14:00:00,21.205236402939
+1970-03-27 15:00:00,9.09119452308143
+1970-03-27 16:00:00,11.3741679007964
+1970-03-27 17:00:00,12.6107483780026
+1970-03-27 18:00:00,12.8625177047123
+1970-03-27 19:00:00,12.8128292973111
+1970-03-27 20:00:00,8.08831492425591
+1970-03-27 21:00:00,21.3095114456846
+1970-03-27 22:00:00,14.8393952488078
+1970-03-27 23:00:00,20.7821866105791
+1970-03-28 00:00:00,14.509582014175
+1970-03-28 01:00:00,17.6585801917786
+1970-03-28 02:00:00,10.7611241968226
+1970-03-28 03:00:00,19.1654928755907
+1970-03-28 04:00:00,10.1609574329924
+1970-03-28 05:00:00,14.8415151036629
+1970-03-28 06:00:00,21.8673762204525
+1970-03-28 07:00:00,8.85848255537171
+1970-03-28 08:00:00,16.613682855426
+1970-03-28 09:00:00,11.5344654176208
+1970-03-28 10:00:00,15.0166379603559
+1970-03-28 11:00:00,5.25727351826165
+1970-03-28 12:00:00,6.8312562634399
+1970-03-28 13:00:00,14.1355517521179
+1970-03-28 14:00:00,23.2919053557985
+1970-03-28 15:00:00,11.3040615973281
+1970-03-28 16:00:00,11.1743331444188
+1970-03-28 17:00:00,10.2085698292638
+1970-03-28 18:00:00,19.412499757992
+1970-03-28 19:00:00,13.3645195368264
+1970-03-28 20:00:00,10.1933557153061
+1970-03-28 21:00:00,14.2390084602902
+1970-03-28 22:00:00,5.45649276776972
+1970-03-28 23:00:00,14.3264006501564
+1970-03-29 00:00:00,13.2297124674842
+1970-03-29 01:00:00,23.8982719744906
+1970-03-29 02:00:00,21.1736290977499
+1970-03-29 03:00:00,11.9814877838841
+1970-03-29 04:00:00,22.4611784137174
+1970-03-29 05:00:00,16.613248122904
+1970-03-29 06:00:00,16.7756944534787
+1970-03-29 07:00:00,10.0068976478323
+1970-03-29 08:00:00,9.31913908602888
+1970-03-29 09:00:00,10.1700943778007
+1970-03-29 10:00:00,15.5473008942095
+1970-03-29 11:00:00,10.6381582355044
+1970-03-29 12:00:00,16.6335855393091
+1970-03-29 13:00:00,17.304989761728
+1970-03-29 14:00:00,14.8192630740393
+1970-03-29 15:00:00,8.18109227359304
+1970-03-29 16:00:00,11.4583947051839
+1970-03-29 17:00:00,17.8429310841056
+1970-03-29 18:00:00,19.0874109353293
+1970-03-29 19:00:00,15.7326740118757
+1970-03-29 20:00:00,12.7719394965501
+1970-03-29 21:00:00,18.627488605397
+1970-03-29 22:00:00,15.7449825103181
+1970-03-29 23:00:00,22.4812361526917
+1970-03-30 00:00:00,17.0096134355703
+1970-03-30 01:00:00,14.2816500237078
+1970-03-30 02:00:00,17.6069360301377
+1970-03-30 03:00:00,19.8787668905103
+1970-03-30 04:00:00,11.1204951180011
+1970-03-30 05:00:00,10.2893042467904
+1970-03-30 06:00:00,19.7622124890939
+1970-03-30 07:00:00,13.2571225193974
+1970-03-30 08:00:00,6.76755111213203
+1970-03-30 09:00:00,14.7093650283332
+1970-03-30 10:00:00,9.08437848711694
+1970-03-30 11:00:00,29.6096487084778
+1970-03-30 12:00:00,10.8842989809509
+1970-03-30 13:00:00,11.3582344253611
+1970-03-30 14:00:00,14.1897767708415
+1970-03-30 15:00:00,11.8998128636725
+1970-03-30 16:00:00,12.7489329425147
+1970-03-30 17:00:00,16.4354101926854
+1970-03-30 18:00:00,15.8417479869035
+1970-03-30 19:00:00,20.3053542887919
+1970-03-30 20:00:00,8.38738132315903
+1970-03-30 21:00:00,14.1198567927315
+1970-03-30 22:00:00,16.3906118910828
+1970-03-30 23:00:00,11.4742793982012
+1970-03-31 00:00:00,11.4191067740755
+1970-03-31 01:00:00,11.0206171045247
+1970-03-31 02:00:00,12.2890276928897
+1970-03-31 03:00:00,10.4946592309856
+1970-03-31 04:00:00,20.0988696796659
+1970-03-31 05:00:00,16.5725169384548
+1970-03-31 06:00:00,18.0632179503562
+1970-03-31 07:00:00,18.2820801001293
+1970-03-31 08:00:00,9.36632614617486
+1970-03-31 09:00:00,15.6386720600677
+1970-03-31 10:00:00,23.5403957947204
+1970-03-31 11:00:00,15.48909424476
+1970-03-31 12:00:00,12.6160842325044
+1970-03-31 13:00:00,21.6893836612457
+1970-03-31 14:00:00,14.0257351135707
+1970-03-31 15:00:00,4.9953024803473
+1970-03-31 16:00:00,19.2642769446276
+1970-03-31 17:00:00,16.5850622801566
+1970-03-31 18:00:00,17.0664668672842
+1970-03-31 19:00:00,12.6220433196748
+1970-03-31 20:00:00,14.4785813969009
+1970-03-31 21:00:00,18.8994062435545
+1970-03-31 22:00:00,17.5911935759091
+1970-03-31 23:00:00,11.8693183268611
+1970-04-01 00:00:00,24.3625243958553
+1970-04-01 01:00:00,17.5766041760446
+1970-04-01 02:00:00,15.7431303253562
+1970-04-01 03:00:00,13.1148783525575
+1970-04-01 04:00:00,14.1547926397653
+1970-04-01 05:00:00,11.4101880575622
+1970-04-01 06:00:00,18.9677622359248
+1970-04-01 07:00:00,17.8101318844182
+1970-04-01 08:00:00,9.75713917004352
+1970-04-01 09:00:00,20.4638980808391
+1970-04-01 10:00:00,11.6600115120929
+1970-04-01 11:00:00,13.5042505089577
+1970-04-01 12:00:00,13.501191379209
+1970-04-01 13:00:00,14.7268523591804
+1970-04-01 14:00:00,6.93189021651614
+1970-04-01 15:00:00,14.4270199957473
+1970-04-01 16:00:00,12.3821268973692
+1970-04-01 17:00:00,5.17516031117305
+1970-04-01 18:00:00,11.9605143188492
+1970-04-01 19:00:00,10.6402882034967
+1970-04-01 20:00:00,11.6204473493212
+1970-04-01 21:00:00,12.5225961450072
+1970-04-01 22:00:00,14.0863682475086
+1970-04-01 23:00:00,16.1091608502946
+1970-04-02 00:00:00,8.64657789347293
+1970-04-02 01:00:00,12.748869580375
+1970-04-02 02:00:00,17.1151582970431
+1970-04-02 03:00:00,13.4634742798579
+1970-04-02 04:00:00,8.15857619017865
+1970-04-02 05:00:00,17.4881955228348
+1970-04-02 06:00:00,6.40695885211146
+1970-04-02 07:00:00,14.7855134570775
+1970-04-02 08:00:00,10.4103521187801
+1970-04-02 09:00:00,19.6843715408656
+1970-04-02 10:00:00,18.448549976202
+1970-04-02 11:00:00,14.5624389438368
+1970-04-02 12:00:00,10.0578227578342
+1970-04-02 13:00:00,10.7652253029878
+1970-04-02 14:00:00,11.1562517633251
+1970-04-02 15:00:00,9.59501581625155
+1970-04-02 16:00:00,20.3206798211372
+1970-04-02 17:00:00,13.6299731037866
+1970-04-02 18:00:00,17.2461650334755
+1970-04-02 19:00:00,11.5720423605514
+1970-04-02 20:00:00,7.97014142450788
+1970-04-02 21:00:00,19.9381326733101
+1970-04-02 22:00:00,19.6493311838214
+1970-04-02 23:00:00,25.0410648846849
+1970-04-03 00:00:00,13.6393879674995
+1970-04-03 01:00:00,8.59873220595035
+1970-04-03 02:00:00,14.5829457382059
+1970-04-03 03:00:00,12.398388278745
+1970-04-03 04:00:00,18.0304945823663
+1970-04-03 05:00:00,21.8748649070739
+1970-04-03 06:00:00,14.2944528514108
+1970-04-03 07:00:00,17.8222360881789
+1970-04-03 08:00:00,16.5390285500508
+1970-04-03 09:00:00,12.718124469155
+1970-04-03 10:00:00,20.4188292519174
+1970-04-03 11:00:00,12.6240430205942
+1970-04-03 12:00:00,9.93346308184345
+1970-04-03 13:00:00,14.4079017442603
+1970-04-03 14:00:00,16.8241593408657
+1970-04-03 15:00:00,12.0511839184998
+1970-04-03 16:00:00,12.016181804832
+1970-04-03 17:00:00,10.8002188532425
+1970-04-03 18:00:00,13.921293486321
+1970-04-03 19:00:00,12.5591168120836
+1970-04-03 20:00:00,9.75533445836082
+1970-04-03 21:00:00,7.92155066431873
+1970-04-03 22:00:00,15.765774761693
+1970-04-03 23:00:00,12.3450541538847
+1970-04-04 00:00:00,11.8148209301072
+1970-04-04 01:00:00,22.9343836916247
+1970-04-04 02:00:00,12.9544708435923
+1970-04-04 03:00:00,23.0618579875908
+1970-04-04 04:00:00,14.6244476615179
+1970-04-04 05:00:00,18.5249320344559
+1970-04-04 06:00:00,16.5986070326578
+1970-04-04 07:00:00,10.5070116063095
+1970-04-04 08:00:00,14.2779213747393
+1970-04-04 09:00:00,24.0056224938016
+1970-04-04 10:00:00,17.2218095534389
+1970-04-04 11:00:00,17.7054362586616
+1970-04-04 12:00:00,14.8886537079816
+1970-04-04 13:00:00,5.95606775584132
+1970-04-04 14:00:00,14.235785153854
+1970-04-04 15:00:00,21.8258288154467
+1970-04-04 16:00:00,12.2333199787495
+1970-04-04 17:00:00,21.248116230871
+1970-04-04 18:00:00,6.45015959076788
+1970-04-04 19:00:00,14.574586335929
+1970-04-04 20:00:00,17.2660494379509
+1970-04-04 21:00:00,16.103389748241
+1970-04-04 22:00:00,12.0827364558837
+1970-04-04 23:00:00,15.3282038044108
+1970-04-05 00:00:00,9.64841714152241
+1970-04-05 01:00:00,14.8825165785903
+1970-04-05 02:00:00,14.1402983779136
+1970-04-05 03:00:00,15.8417492197927
+1970-04-05 04:00:00,11.9021571084245
+1970-04-05 05:00:00,6.78888918589015
+1970-04-05 06:00:00,18.8194586635432
+1970-04-05 07:00:00,12.3998169913008
+1970-04-05 08:00:00,15.577748815258
+1970-04-05 09:00:00,7.19990735904638
+1970-04-05 10:00:00,9.66961268167191
+1970-04-05 11:00:00,8.75168296615344
+1970-04-05 12:00:00,11.4217101387572
+1970-04-05 13:00:00,11.0643566128901
+1970-04-05 14:00:00,9.3241147698277
+1970-04-05 15:00:00,11.9827356017134
+1970-04-05 16:00:00,18.4172294444726
+1970-04-05 17:00:00,13.535444072819
+1970-04-05 18:00:00,19.6280867630685
+1970-04-05 19:00:00,12.2216610032062
+1970-04-05 20:00:00,19.103874806877
+1970-04-05 21:00:00,15.5885528869145
+1970-04-05 22:00:00,10.5457874475245
+1970-04-05 23:00:00,8.11806555582856
+1970-04-06 00:00:00,21.3152485503776
+1970-04-06 01:00:00,9.79114122861672
+1970-04-06 02:00:00,12.7803317928929
+1970-04-06 03:00:00,6.41476323101465
+1970-04-06 04:00:00,14.4456900801581
+1970-04-06 05:00:00,10.5669997808205
+1970-04-06 06:00:00,9.07950902578707
+1970-04-06 07:00:00,9.38244737284768
+1970-04-06 08:00:00,29.9697605198281
+1970-04-06 09:00:00,12.9653013920847
+1970-04-06 10:00:00,18.0302380148038
+1970-04-06 11:00:00,15.6510635566442
+1970-04-06 12:00:00,14.62109901378
+1970-04-06 13:00:00,10.2321913308276
+1970-04-06 14:00:00,15.855205323224
+1970-04-06 15:00:00,14.0813074024412
+1970-04-06 16:00:00,10.3086074570044
+1970-04-06 17:00:00,21.0558544697202
+1970-04-06 18:00:00,15.0731376728639
+1970-04-06 19:00:00,16.4124404378163
+1970-04-06 20:00:00,7.08695842960557
+1970-04-06 21:00:00,9.99637128475543
+1970-04-06 22:00:00,4.58518255382435
+1970-04-06 23:00:00,9.75870636999273
+1970-04-07 00:00:00,13.976211645073
+1970-04-07 01:00:00,20.916418264561
+1970-04-07 02:00:00,15.4956196846055
+1970-04-07 03:00:00,22.9806196510106
+1970-04-07 04:00:00,12.557932380618
+1970-04-07 05:00:00,13.098228529899
+1970-04-07 06:00:00,20.5153760458151
+1970-04-07 07:00:00,10.4162107083621
+1970-04-07 08:00:00,8.25382762306105
+1970-04-07 09:00:00,15.6651583434973
+1970-04-07 10:00:00,10.2168223781073
+1970-04-07 11:00:00,14.0288845019458
+1970-04-07 12:00:00,27.282273407351
+1970-04-07 13:00:00,18.8989386191935
+1970-04-07 14:00:00,15.2184445570547
+1970-04-07 15:00:00,15.3940823657893
+1970-04-07 16:00:00,11.0655125186838
+1970-04-07 17:00:00,9.50667933441387
+1970-04-07 18:00:00,10.6095808567585
+1970-04-07 19:00:00,11.8958334350334
+1970-04-07 20:00:00,15.0806116461289
+1970-04-07 21:00:00,7.11298868922682
+1970-04-07 22:00:00,7.72259461285276
+1970-04-07 23:00:00,16.6128672221892
+1970-04-08 00:00:00,21.6906362432182
+1970-04-08 01:00:00,16.6258918059614
+1970-04-08 02:00:00,9.6940061382847
+1970-04-08 03:00:00,13.393836902147
+1970-04-08 04:00:00,9.91591994799853
+1970-04-08 05:00:00,17.2973231594908
+1970-04-08 06:00:00,21.2986535629714
+1970-04-08 07:00:00,17.6868904955613
+1970-04-08 08:00:00,18.8605042513557
+1970-04-08 09:00:00,16.6768464188119
+1970-04-08 10:00:00,8.53036525642057
+1970-04-08 11:00:00,19.8080337635197
+1970-04-08 12:00:00,25.0801756460117
+1970-04-08 13:00:00,15.7974876705543
+1970-04-08 14:00:00,18.1995854815995
+1970-04-08 15:00:00,17.3449446254332
+1970-04-08 16:00:00,7.43671772008171
+1970-04-08 17:00:00,11.2674636175456
+1970-04-08 18:00:00,19.7032907712693
+1970-04-08 19:00:00,25.3648765941072
+1970-04-08 20:00:00,23.5015816657359
+1970-04-08 21:00:00,17.0597019709724
+1970-04-08 22:00:00,20.763969113882
+1970-04-08 23:00:00,16.4709046994942
+1970-04-09 00:00:00,10.9526062489833
+1970-04-09 01:00:00,12.6223845298071
+1970-04-09 02:00:00,12.8796065502078
+1970-04-09 03:00:00,8.50081201223481
+1970-04-09 04:00:00,13.5504686122489
+1970-04-09 05:00:00,13.594320835506
+1970-04-09 06:00:00,13.2639286937761
+1970-04-09 07:00:00,12.8452536554586
+1970-04-09 08:00:00,17.9364140701577
+1970-04-09 09:00:00,19.2289311141019
+1970-04-09 10:00:00,27.0540575524859
+1970-04-09 11:00:00,15.4125443405136
+1970-04-09 12:00:00,15.6155091576089
+1970-04-09 13:00:00,14.530414640266
+1970-04-09 14:00:00,12.9209642873541
+1970-04-09 15:00:00,14.2574051469598
+1970-04-09 16:00:00,16.2368978128991
+1970-04-09 17:00:00,6.44141096210257
+1970-04-09 18:00:00,16.0690035472314
+1970-04-09 19:00:00,8.12259147846149
+1970-04-09 20:00:00,12.8421284556667
+1970-04-09 21:00:00,13.6986870250071
+1970-04-09 22:00:00,13.3657357573044
+1970-04-09 23:00:00,15.7208223790577
+1970-04-10 00:00:00,13.0370484856839
+1970-04-10 01:00:00,17.721442947565
+1970-04-10 02:00:00,10.3384328198173
+1970-04-10 03:00:00,13.1783537940291
+1970-04-10 04:00:00,10.3310937622199
+1970-04-10 05:00:00,16.4741406470132
+1970-04-10 06:00:00,16.5765060749975
+1970-04-10 07:00:00,11.7221905599426
+1970-04-10 08:00:00,15.3857191548234
+1970-04-10 09:00:00,17.667764726692
+1970-04-10 10:00:00,16.6687418671325
+1970-04-10 11:00:00,13.4378591100028
+1970-04-10 12:00:00,29.5408147676648
+1970-04-10 13:00:00,19.0517132719914
+1970-04-10 14:00:00,17.4996726057065
+1970-04-10 15:00:00,10.8985458323614
+1970-04-10 16:00:00,11.0545552372697
+1970-04-10 17:00:00,15.067480931449
+1970-04-10 18:00:00,14.8404990697283
+1970-04-10 19:00:00,16.0200023418381
+1970-04-10 20:00:00,17.4785060168709
+1970-04-10 21:00:00,18.4284112611298
+1970-04-10 22:00:00,14.3587074847401
+1970-04-10 23:00:00,9.25880074458392
+1970-04-11 00:00:00,15.7429734844089
+1970-04-11 01:00:00,16.4535178450987
+1970-04-11 02:00:00,15.7074180483828
+1970-04-11 03:00:00,13.0003481502035
+1970-04-11 04:00:00,23.3549320665856
+1970-04-11 05:00:00,17.1702578026325
+1970-04-11 06:00:00,15.7634009299252
+1970-04-11 07:00:00,13.5681287492813
+1970-04-11 08:00:00,9.93726709818358
+1970-04-11 09:00:00,13.3688536339082
+1970-04-11 10:00:00,13.499148049463
+1970-04-11 11:00:00,10.8538340567242
+1970-04-11 12:00:00,21.8911760753672
+1970-04-11 13:00:00,18.8297021986727
+1970-04-11 14:00:00,17.6762299497067
+1970-04-11 15:00:00,12.3969385926934
+1970-04-11 16:00:00,14.0442823155451
+1970-04-11 17:00:00,13.9929138603463
+1970-04-11 18:00:00,13.8146327701966
+1970-04-11 19:00:00,11.8836568957891
+1970-04-11 20:00:00,13.9874996313499
+1970-04-11 21:00:00,25.1403227827732
+1970-04-11 22:00:00,12.6876496240703
+1970-04-11 23:00:00,7.92816004093729
+1970-04-12 00:00:00,20.5944941154027
+1970-04-12 01:00:00,14.7788386135781
+1970-04-12 02:00:00,16.8553387479941
+1970-04-12 03:00:00,21.4763186254128
+1970-04-12 04:00:00,12.6121517009087
+1970-04-12 05:00:00,22.553415450627
+1970-04-12 06:00:00,9.37843445162192
+1970-04-12 07:00:00,18.0111341746256
+1970-04-12 08:00:00,16.5455524928435
+1970-04-12 09:00:00,24.6623133401911
+1970-04-12 10:00:00,14.7710998217052
+1970-04-12 11:00:00,6.25562737984682
+1970-04-12 12:00:00,16.0040125256392
+1970-04-12 13:00:00,15.0072753775174
+1970-04-12 14:00:00,16.576511591526
+1970-04-12 15:00:00,6.72074317800842
+1970-04-12 16:00:00,15.5063929627409
+1970-04-12 17:00:00,19.1994980027765
+1970-04-12 18:00:00,12.0920389772566
+1970-04-12 19:00:00,12.6083304253754
+1970-04-12 20:00:00,19.6960063923381
+1970-04-12 21:00:00,13.1632325043135
+1970-04-12 22:00:00,9.38957362394923
+1970-04-12 23:00:00,9.17674304239466
+1970-04-13 00:00:00,20.2177962348904
+1970-04-13 01:00:00,9.40462830294678
+1970-04-13 02:00:00,6.25107561815058
+1970-04-13 03:00:00,18.7608295811816
+1970-04-13 04:00:00,21.7969597628073
+1970-04-13 05:00:00,17.6383381626225
+1970-04-13 06:00:00,23.1019891163577
+1970-04-13 07:00:00,18.385235595837
+1970-04-13 08:00:00,21.7112706685383
+1970-04-13 09:00:00,15.2534579577188
+1970-04-13 10:00:00,10.9490416645747
+1970-04-13 11:00:00,13.0753204900442
+1970-04-13 12:00:00,17.3886995832371
+1970-04-13 13:00:00,7.349881317512
+1970-04-13 14:00:00,18.7949766023651
+1970-04-13 15:00:00,24.3297866438329
+1970-04-13 16:00:00,6.10738830841257
+1970-04-13 17:00:00,19.561281979878
+1970-04-13 18:00:00,7.96922498585242
+1970-04-13 19:00:00,13.1066354923332
+1970-04-13 20:00:00,20.7147718844429
+1970-04-13 21:00:00,15.0371318635582
+1970-04-13 22:00:00,19.1616205264796
+1970-04-13 23:00:00,11.9467204185706
+1970-04-14 00:00:00,15.657620255519
+1970-04-14 01:00:00,15.8025265314413
+1970-04-14 02:00:00,13.7018736325388
+1970-04-14 03:00:00,17.3975146394673
+1970-04-14 04:00:00,11.9606768292393
+1970-04-14 05:00:00,11.009217854015
+1970-04-14 06:00:00,20.315660615001
+1970-04-14 07:00:00,13.6121562416979
+1970-04-14 08:00:00,25.1124846317106
+1970-04-14 09:00:00,11.139017909971
+1970-04-14 10:00:00,8.06063296212546
+1970-04-14 11:00:00,9.49660083735521
+1970-04-14 12:00:00,9.74221653524227
+1970-04-14 13:00:00,19.9045038388147
+1970-04-14 14:00:00,19.2846754881553
+1970-04-14 15:00:00,20.2848850156255
+1970-04-14 16:00:00,16.531133592596
+1970-04-14 17:00:00,15.2752207950275
+1970-04-14 18:00:00,14.708368181829
+1970-04-14 19:00:00,14.9805326783483
+1970-04-14 20:00:00,7.68720632743824
+1970-04-14 21:00:00,11.5655800854554
+1970-04-14 22:00:00,13.5337107128778
+1970-04-14 23:00:00,18.8631642186918
+1970-04-15 00:00:00,18.2201210102636
+1970-04-15 01:00:00,10.5583546085528
+1970-04-15 02:00:00,11.869085672269
+1970-04-15 03:00:00,16.2349107485372
+1970-04-15 04:00:00,20.407259445914
+1970-04-15 05:00:00,24.3612732586267
+1970-04-15 06:00:00,16.9086544481575
+1970-04-15 07:00:00,15.288859762013
+1970-04-15 08:00:00,15.4525914860997
+1970-04-15 09:00:00,6.35836582074273
+1970-04-15 10:00:00,5.77356392746984
+1970-04-15 11:00:00,14.3675507283837
+1970-04-15 12:00:00,10.3334086907878
+1970-04-15 13:00:00,8.90309738860161
+1970-04-15 14:00:00,12.999547231809
+1970-04-15 15:00:00,10.5253751215166
+1970-04-15 16:00:00,10.7343625089054
+1970-04-15 17:00:00,11.4284710358876
+1970-04-15 18:00:00,14.5947264242556
+1970-04-15 19:00:00,20.6314822565994
+1970-04-15 20:00:00,12.2488351197495
+1970-04-15 21:00:00,7.08108709163925
+1970-04-15 22:00:00,10.3044497694216
+1970-04-15 23:00:00,15.2801162309725
+1970-04-16 00:00:00,15.6177780985277
+1970-04-16 01:00:00,16.8599184882007
+1970-04-16 02:00:00,12.0057587074967
+1970-04-16 03:00:00,19.5619465891637
+1970-04-16 04:00:00,11.1621420702827
+1970-04-16 05:00:00,13.9932989557052
+1970-04-16 06:00:00,15.8648776409628
+1970-04-16 07:00:00,17.5090272776672
+1970-04-16 08:00:00,18.8285729312024
+1970-04-16 09:00:00,7.40885455685818
+1970-04-16 10:00:00,8.25961600000372
+1970-04-16 11:00:00,15.8294196580028
+1970-04-16 12:00:00,11.104106625379
+1970-04-16 13:00:00,12.2204740852021
+1970-04-16 14:00:00,16.6617637983048
+1970-04-16 15:00:00,16.3111069525473
+1970-04-16 16:00:00,11.8949157747636
+1970-04-16 17:00:00,20.6357311415769
+1970-04-16 18:00:00,16.0066415196698
+1970-04-16 19:00:00,18.266485877108
+1970-04-16 20:00:00,11.9978722133086
+1970-04-16 21:00:00,8.90009494989223
+1970-04-16 22:00:00,16.849255286252
+1970-04-16 23:00:00,13.9527077070723
+1970-04-17 00:00:00,13.7535187130344
+1970-04-17 01:00:00,5.70219586321288
+1970-04-17 02:00:00,27.410114642406
+1970-04-17 03:00:00,11.3566524229284
+1970-04-17 04:00:00,11.8163554851386
+1970-04-17 05:00:00,28.0340254600839
+1970-04-17 06:00:00,11.114404802673
+1970-04-17 07:00:00,11.5378376075597
+1970-04-17 08:00:00,18.7328728585623
+1970-04-17 09:00:00,18.3534189975159
+1970-04-17 10:00:00,16.3182914972361
+1970-04-17 11:00:00,16.7730801745668
+1970-04-17 12:00:00,5.85660811755556
+1970-04-17 13:00:00,18.1182828108046
+1970-04-17 14:00:00,15.0658539557788
+1970-04-17 15:00:00,15.0073931496463
+1970-04-17 16:00:00,17.2213114702128
+1970-04-17 17:00:00,10.6192138812148
+1970-04-17 18:00:00,12.6300074339374
+1970-04-17 19:00:00,9.32203813681
+1970-04-17 20:00:00,25.0251839355628
+1970-04-17 21:00:00,12.472744387619
+1970-04-17 22:00:00,16.2111276072016
+1970-04-17 23:00:00,17.588618314273
+1970-04-18 00:00:00,8.9212950779733
+1970-04-18 01:00:00,25.8177596890611
+1970-04-18 02:00:00,15.3119828502216
+1970-04-18 03:00:00,14.1897018655273
+1970-04-18 04:00:00,17.9602194308496
+1970-04-18 05:00:00,18.3889960255167
+1970-04-18 06:00:00,13.1164051041809
+1970-04-18 07:00:00,8.01692541540961
+1970-04-18 08:00:00,18.7047995312913
+1970-04-18 09:00:00,7.11135188017404
+1970-04-18 10:00:00,17.3052218841106
+1970-04-18 11:00:00,12.6714721466087
+1970-04-18 12:00:00,16.2287448951716
+1970-04-18 13:00:00,16.2048276745473
+1970-04-18 14:00:00,9.02244431226533
+1970-04-18 15:00:00,11.3672755347714
+1970-04-18 16:00:00,12.0916407139731
+1970-04-18 17:00:00,25.0291961327551
+1970-04-18 18:00:00,5.59359875162545
+1970-04-18 19:00:00,16.2329828192071
+1970-04-18 20:00:00,10.3198858791301
+1970-04-18 21:00:00,14.7920490615856
+1970-04-18 22:00:00,17.7291533205589
+1970-04-18 23:00:00,11.5545802796915
+1970-04-19 00:00:00,17.0186034924145
+1970-04-19 01:00:00,22.5650154480162
+1970-04-19 02:00:00,11.3706946461984
+1970-04-19 03:00:00,17.7746509918856
+1970-04-19 04:00:00,17.2475603028496
+1970-04-19 05:00:00,11.7601210493452
+1970-04-19 06:00:00,6.93792182266851
+1970-04-19 07:00:00,19.2886477898795
+1970-04-19 08:00:00,10.996151495819
+1970-04-19 09:00:00,21.9150216863964
+1970-04-19 10:00:00,10.9231400069417
+1970-04-19 11:00:00,9.76789777126453
+1970-04-19 12:00:00,12.2780771499105
+1970-04-19 13:00:00,9.12677344365525
+1970-04-19 14:00:00,11.1767470118249
+1970-04-19 15:00:00,21.7307473051885
+1970-04-19 16:00:00,21.4169217380484
+1970-04-19 17:00:00,13.0843871345338
+1970-04-19 18:00:00,11.0272551740626
+1970-04-19 19:00:00,13.4521749861599
+1970-04-19 20:00:00,11.9504719060542
+1970-04-19 21:00:00,13.5017204551477
+1970-04-19 22:00:00,13.6546838052554
+1970-04-19 23:00:00,12.8747397640859
+1970-04-20 00:00:00,25.7180676784391
+1970-04-20 01:00:00,10.6120806027337
+1970-04-20 02:00:00,16.3878815071122
+1970-04-20 03:00:00,17.3566274888246
+1970-04-20 04:00:00,10.6844257999481
+1970-04-20 05:00:00,9.67304915751088
+1970-04-20 06:00:00,14.7227624991078
+1970-04-20 07:00:00,22.0591789349118
+1970-04-20 08:00:00,13.6537572920567
+1970-04-20 09:00:00,9.97063457710713
+1970-04-20 10:00:00,15.6348660955414
+1970-04-20 11:00:00,5.9484126446131
+1970-04-20 12:00:00,14.5825087639285
+1970-04-20 13:00:00,16.4277177003244
+1970-04-20 14:00:00,9.81194429058631
+1970-04-20 15:00:00,20.0459140178109
+1970-04-20 16:00:00,9.95741215640884
+1970-04-20 17:00:00,9.60228425607879
+1970-04-20 18:00:00,17.6215501252091
+1970-04-20 19:00:00,6.2132496542885
+1970-04-20 20:00:00,12.7324602058936
+1970-04-20 21:00:00,12.3692308742698
+1970-04-20 22:00:00,12.6262024351984
+1970-04-20 23:00:00,13.33177869287
+1970-04-21 00:00:00,15.8456481762662
+1970-04-21 01:00:00,11.2232814514183
+1970-04-21 02:00:00,6.18605734521213
+1970-04-21 03:00:00,12.2059094390772
+1970-04-21 04:00:00,14.9452306553499
+1970-04-21 05:00:00,16.6439555068706
+1970-04-21 06:00:00,10.9203750146979
+1970-04-21 07:00:00,17.8979075374978
+1970-04-21 08:00:00,21.9365234045179
+1970-04-21 09:00:00,13.188758840751
+1970-04-21 10:00:00,16.4748734268903
+1970-04-21 11:00:00,13.4500464034401
+1970-04-21 12:00:00,18.2720714087615
+1970-04-21 13:00:00,14.9451078887313
+1970-04-21 14:00:00,15.2190535342874
+1970-04-21 15:00:00,10.5053931586436
+1970-04-21 16:00:00,15.805191952456
+1970-04-21 17:00:00,15.6420224229037
+1970-04-21 18:00:00,19.8876561437623
+1970-04-21 19:00:00,12.5395801655432
+1970-04-21 20:00:00,18.8791862828847
+1970-04-21 21:00:00,12.6331662396549
+1970-04-21 22:00:00,16.5567868372237
+1970-04-21 23:00:00,14.3074734807058
+1970-04-22 00:00:00,9.01161899190931
+1970-04-22 01:00:00,15.387761065199
+1970-04-22 02:00:00,16.8496757996994
+1970-04-22 03:00:00,17.9395152605995
+1970-04-22 04:00:00,20.698957203495
+1970-04-22 05:00:00,12.8107395745585
+1970-04-22 06:00:00,19.2817493627027
+1970-04-22 07:00:00,15.7739563928807
+1970-04-22 08:00:00,8.09976759139544
+1970-04-22 09:00:00,12.4963031046375
+1970-04-22 10:00:00,18.1898399359559
+1970-04-22 11:00:00,15.5330172675931
+1970-04-22 12:00:00,23.5754933414684
+1970-04-22 13:00:00,13.6578724531581
+1970-04-22 14:00:00,15.9337510739218
+1970-04-22 15:00:00,14.1218317021621
+1970-04-22 16:00:00,12.1282677526581
+1970-04-22 17:00:00,19.468488960203
+1970-04-22 18:00:00,8.40281929196744
+1970-04-22 19:00:00,21.5988121703212
+1970-04-22 20:00:00,18.9109409837662
+1970-04-22 21:00:00,14.7027633978011
+1970-04-22 22:00:00,12.0926199664877
+1970-04-22 23:00:00,10.3520253191177
+1970-04-23 00:00:00,14.2794239817007
+1970-04-23 01:00:00,16.4951787418248
+1970-04-23 02:00:00,15.7888865283141
+1970-04-23 03:00:00,11.2430259148881
+1970-04-23 04:00:00,16.0053729621962
+1970-04-23 05:00:00,12.6180493563162
+1970-04-23 06:00:00,20.7607478694057
+1970-04-23 07:00:00,13.0051130401215
+1970-04-23 08:00:00,17.1597510558373
+1970-04-23 09:00:00,11.4130301577275
+1970-04-23 10:00:00,6.52662959059032
+1970-04-23 11:00:00,21.5242458058951
+1970-04-23 12:00:00,11.0968192451492
+1970-04-23 13:00:00,11.9256972110465
+1970-04-23 14:00:00,11.886162905297
+1970-04-23 15:00:00,16.2261077995665
+1970-04-23 16:00:00,8.1570728980108
+1970-04-23 17:00:00,10.6606140897595
+1970-04-23 18:00:00,10.3597268715426
+1970-04-23 19:00:00,11.7414499297729
+1970-04-23 20:00:00,15.4731060060844
+1970-04-23 21:00:00,9.63274208063715
+1970-04-23 22:00:00,13.5579278015732
+1970-04-23 23:00:00,15.2386240786587
+1970-04-24 00:00:00,21.6769843130658
+1970-04-24 01:00:00,11.6879142009282
+1970-04-24 02:00:00,13.735635122324
+1970-04-24 03:00:00,14.3756040702514
+1970-04-24 04:00:00,13.8528741718454
+1970-04-24 05:00:00,10.2441217422633
+1970-04-24 06:00:00,5.99710600534595
+1970-04-24 07:00:00,11.6234454028244
+1970-04-24 08:00:00,11.6497021375279
+1970-04-24 09:00:00,22.0155830205149
+1970-04-24 10:00:00,10.8311236629457
+1970-04-24 11:00:00,16.6152082156441
+1970-04-24 12:00:00,13.5773419180111
+1970-04-24 13:00:00,12.6778261759194
+1970-04-24 14:00:00,15.0252893206185
+1970-04-24 15:00:00,12.3518576505057
+1970-04-24 16:00:00,9.63692935735184
+1970-04-24 17:00:00,23.0472423765901
+1970-04-24 18:00:00,18.9896536435306
+1970-04-24 19:00:00,16.8061395507908
+1970-04-24 20:00:00,19.1283552119854
+1970-04-24 21:00:00,16.865210019495
+1970-04-24 22:00:00,11.2873090865216
+1970-04-24 23:00:00,11.7569398104633
+1970-04-25 00:00:00,25.2761942511067
+1970-04-25 01:00:00,12.0848348559065
+1970-04-25 02:00:00,8.39608360893559
+1970-04-25 03:00:00,14.8230954980476
+1970-04-25 04:00:00,9.39436932232161
+1970-04-25 05:00:00,13.6761538080581
+1970-04-25 06:00:00,15.3821129038391
+1970-04-25 07:00:00,6.23646503363372
+1970-04-25 08:00:00,21.4657035272533
+1970-04-25 09:00:00,15.2970463376029
+1970-04-25 10:00:00,12.108735437832
+1970-04-25 11:00:00,8.0249396083343
+1970-04-25 12:00:00,22.1234589548019
+1970-04-25 13:00:00,11.5268570651431
+1970-04-25 14:00:00,15.5422506922335
+1970-04-25 15:00:00,12.6341868396119
+1970-04-25 16:00:00,15.7717406033686
+1970-04-25 17:00:00,18.0107176726889
+1970-04-25 18:00:00,11.211994711273
+1970-04-25 19:00:00,9.50354320768776
+1970-04-25 20:00:00,14.8911794173553
+1970-04-25 21:00:00,19.4655162115701
+1970-04-25 22:00:00,10.7258886761653
+1970-04-25 23:00:00,22.2915207785152
+1970-04-26 00:00:00,14.5847870388723
+1970-04-26 01:00:00,13.524658868074
+1970-04-26 02:00:00,11.8674123540004
+1970-04-26 03:00:00,13.4062771519844
+1970-04-26 04:00:00,7.1319538967749
+1970-04-26 05:00:00,9.74966701074411
+1970-04-26 06:00:00,8.64742924774298
+1970-04-26 07:00:00,22.2057538126989
+1970-04-26 08:00:00,15.1480884063669
+1970-04-26 09:00:00,13.5445214529434
+1970-04-26 10:00:00,29.2130112339515
+1970-04-26 11:00:00,22.6315304922939
+1970-04-26 12:00:00,13.7976575310579
+1970-04-26 13:00:00,14.3445935414876
+1970-04-26 14:00:00,9.2344043407643
+1970-04-26 15:00:00,13.6762429493416
+1970-04-26 16:00:00,19.9798708173591
+1970-04-26 17:00:00,14.1984904283635
+1970-04-26 18:00:00,16.2792676224653
+1970-04-26 19:00:00,11.5977049826699
+1970-04-26 20:00:00,19.2069283627337
+1970-04-26 21:00:00,15.9806721222355
+1970-04-26 22:00:00,27.7597391810214
+1970-04-26 23:00:00,19.8604685104191
+1970-04-27 00:00:00,12.7598734473251
+1970-04-27 01:00:00,22.0066559444213
+1970-04-27 02:00:00,11.0339759183938
+1970-04-27 03:00:00,10.7675667879211
+1970-04-27 04:00:00,20.071022035632
+1970-04-27 05:00:00,10.8592767682151
+1970-04-27 06:00:00,11.5568171643217
+1970-04-27 07:00:00,17.4229731599063
+1970-04-27 08:00:00,14.2459180213547
+1970-04-27 09:00:00,15.8995105130681
+1970-04-27 10:00:00,19.6012198544442
+1970-04-27 11:00:00,7.27938660183594
+1970-04-27 12:00:00,11.2987123676623
+1970-04-27 13:00:00,13.1275107353356
+1970-04-27 14:00:00,12.9384422981523
+1970-04-27 15:00:00,15.1862323083716
+1970-04-27 16:00:00,10.9847495317689
+1970-04-27 17:00:00,8.63195936102244
+1970-04-27 18:00:00,8.64982012084022
+1970-04-27 19:00:00,8.86530401079741
+1970-04-27 20:00:00,11.0070979271267
+1970-04-27 21:00:00,18.4080219495056
+1970-04-27 22:00:00,10.3523928051472
+1970-04-27 23:00:00,16.5646894334039
+1970-04-28 00:00:00,18.4475203034176
+1970-04-28 01:00:00,8.71249242846675
+1970-04-28 02:00:00,10.1140261897443
+1970-04-28 03:00:00,11.9905506629835
+1970-04-28 04:00:00,12.163365376436
+1970-04-28 05:00:00,23.4496517950831
+1970-04-28 06:00:00,21.3137623212511
+1970-04-28 07:00:00,10.5094493712333
+1970-04-28 08:00:00,12.3006090138211
+1970-04-28 09:00:00,11.7113589051766
+1970-04-28 10:00:00,19.8383318415889
+1970-04-28 11:00:00,16.2216791818904
+1970-04-28 12:00:00,28.3662583171092
+1970-04-28 13:00:00,20.4775921850532
+1970-04-28 14:00:00,11.2628497754483
+1970-04-28 15:00:00,18.9908126313696
+1970-04-28 16:00:00,14.8845664680837
+1970-04-28 17:00:00,14.1490367311742
+1970-04-28 18:00:00,13.6600494020321
+1970-04-28 19:00:00,16.5764610498519
+1970-04-28 20:00:00,10.6228762944605
+1970-04-28 21:00:00,8.19126969960168
+1970-04-28 22:00:00,12.7009852699752
+1970-04-28 23:00:00,17.1227540290508
+1970-04-29 00:00:00,12.1390491194031
+1970-04-29 01:00:00,14.0798705555626
+1970-04-29 02:00:00,18.4731389666229
+1970-04-29 03:00:00,12.3864903674038
+1970-04-29 04:00:00,15.7229085789794
+1970-04-29 05:00:00,18.0714070244279
+1970-04-29 06:00:00,15.8389464910228
+1970-04-29 07:00:00,7.08468461147879
+1970-04-29 08:00:00,20.8375691404574
+1970-04-29 09:00:00,13.5371405030809
+1970-04-29 10:00:00,22.4567552585731
+1970-04-29 11:00:00,13.2966906453888
+1970-04-29 12:00:00,6.82298285062799
+1970-04-29 13:00:00,14.6795584384866
+1970-04-29 14:00:00,10.2563491272363
+1970-04-29 15:00:00,6.79463086391354
+1970-04-29 16:00:00,12.9149395480438
+1970-04-29 17:00:00,13.4334582520954
+1970-04-29 18:00:00,15.282987616791
+1970-04-29 19:00:00,15.3381708568518
+1970-04-29 20:00:00,20.3209476513928
+1970-04-29 21:00:00,18.4650807631146
+1970-04-29 22:00:00,14.8619337447523
+1970-04-29 23:00:00,17.0948463957357
+1970-04-30 00:00:00,15.5048408536517
+1970-04-30 01:00:00,19.5197704241728
+1970-04-30 02:00:00,16.2354228484798
+1970-04-30 03:00:00,8.26284232441921
+1970-04-30 04:00:00,23.089186090305
+1970-04-30 05:00:00,15.9537648132041
+1970-04-30 06:00:00,13.8757404210612
+1970-04-30 07:00:00,10.4209494235865
+1970-04-30 08:00:00,14.505162835368
+1970-04-30 09:00:00,17.0299704019685
+1970-04-30 10:00:00,10.1402504462119
+1970-04-30 11:00:00,13.0488125053153
+1970-04-30 12:00:00,15.3198089109271
+1970-04-30 13:00:00,11.2339220713332
+1970-04-30 14:00:00,10.5455091592771
+1970-04-30 15:00:00,19.7059935382594
+1970-04-30 16:00:00,14.9675147523169
+1970-04-30 17:00:00,11.6074800798612
+1970-04-30 18:00:00,18.1463932313125
+1970-04-30 19:00:00,12.3362893044045
+1970-04-30 20:00:00,7.1290079188514
+1970-04-30 21:00:00,13.5769526097912
+1970-04-30 22:00:00,7.43039648779752
+1970-04-30 23:00:00,15.019250325107
+1970-05-01 00:00:00,8.91258430615451
+1970-05-01 01:00:00,11.5793440830869
+1970-05-01 02:00:00,13.0356302117308
+1970-05-01 03:00:00,12.4886031678266
+1970-05-01 04:00:00,8.42102547927165
+1970-05-01 05:00:00,17.7335871032474
+1970-05-01 06:00:00,9.64886488067183
+1970-05-01 07:00:00,15.096519008707
+1970-05-01 08:00:00,11.6973302007045
+1970-05-01 09:00:00,14.0320566768915
+1970-05-01 10:00:00,10.3496444765295
+1970-05-01 11:00:00,18.5571325472392
+1970-05-01 12:00:00,18.2800989303255
+1970-05-01 13:00:00,16.7797136760767
+1970-05-01 14:00:00,15.0262395827538
+1970-05-01 15:00:00,18.4783119271941
+1970-05-01 16:00:00,10.6937760288058
+1970-05-01 17:00:00,20.279601716102
+1970-05-01 18:00:00,14.1068816628216
+1970-05-01 19:00:00,19.202876907718
+1970-05-01 20:00:00,13.1852909091809
+1970-05-01 21:00:00,20.8256983528432
+1970-05-01 22:00:00,9.77032359666739
+1970-05-01 23:00:00,19.1116586252391
+1970-05-02 00:00:00,6.75391201547731
+1970-05-02 01:00:00,20.1185610264936
+1970-05-02 02:00:00,14.8621794964201
+1970-05-02 03:00:00,14.3868579618729
+1970-05-02 04:00:00,11.2579030193296
+1970-05-02 05:00:00,26.5113728407845
+1970-05-02 06:00:00,21.5854831929703
+1970-05-02 07:00:00,9.14294545132827
+1970-05-02 08:00:00,12.2842030813171
+1970-05-02 09:00:00,17.10295167232
+1970-05-02 10:00:00,7.37845122725109
+1970-05-02 11:00:00,12.4128406437795
+1970-05-02 12:00:00,9.4738626429359
+1970-05-02 13:00:00,13.6522215999484
+1970-05-02 14:00:00,14.5161741142394
+1970-05-02 15:00:00,13.1897267932653
+1970-05-02 16:00:00,10.5425994672523
+1970-05-02 17:00:00,12.3252374861788
+1970-05-02 18:00:00,18.7005988184172
+1970-05-02 19:00:00,16.8331920868577
+1970-05-02 20:00:00,12.1940907686736
+1970-05-02 21:00:00,8.93676615462332
+1970-05-02 22:00:00,9.03966631952432
+1970-05-02 23:00:00,11.9991954953908
+1970-05-03 00:00:00,21.5461989086225
+1970-05-03 01:00:00,11.8581090714732
+1970-05-03 02:00:00,7.13365648362286
+1970-05-03 03:00:00,10.6044550658633
+1970-05-03 04:00:00,21.5163861319658
+1970-05-03 05:00:00,15.7426420765489
+1970-05-03 06:00:00,14.7986197327162
+1970-05-03 07:00:00,20.4981257609246
+1970-05-03 08:00:00,21.5493921736843
+1970-05-03 09:00:00,23.7322879824098
+1970-05-03 10:00:00,11.627135754418
+1970-05-03 11:00:00,13.3421265970498
+1970-05-03 12:00:00,18.9359840526238
+1970-05-03 13:00:00,11.3449971858691
+1970-05-03 14:00:00,15.5002581149534
+1970-05-03 15:00:00,7.8416540448494
+1970-05-03 16:00:00,19.0674584253039
+1970-05-03 17:00:00,15.3916217241219
+1970-05-03 18:00:00,18.0928628894357
+1970-05-03 19:00:00,10.3348782236626
+1970-05-03 20:00:00,16.2144006235318
+1970-05-03 21:00:00,13.1112510663621
+1970-05-03 22:00:00,17.565621602468
+1970-05-03 23:00:00,16.2993663267959
+1970-05-04 00:00:00,18.3284037121045
+1970-05-04 01:00:00,11.4202416915424
+1970-05-04 02:00:00,13.9486981487204
+1970-05-04 03:00:00,9.86939891864205
+1970-05-04 04:00:00,11.430948800087
+1970-05-04 05:00:00,8.65531979107433
+1970-05-04 06:00:00,17.9455345716741
+1970-05-04 07:00:00,7.66198824920829
+1970-05-04 08:00:00,11.9400202088893
+1970-05-04 09:00:00,19.2626710952255
+1970-05-04 10:00:00,12.8828485526826
+1970-05-04 11:00:00,11.3652335897398
+1970-05-04 12:00:00,6.76700877932355
+1970-05-04 13:00:00,12.3162206144924
+1970-05-04 14:00:00,12.8083147804393
+1970-05-04 15:00:00,16.987819225937
+1970-05-04 16:00:00,11.6683946456967
+1970-05-04 17:00:00,19.6019862880107
+1970-05-04 18:00:00,23.7797916489735
+1970-05-04 19:00:00,9.14411191385526
+1970-05-04 20:00:00,15.2996990007404
+1970-05-04 21:00:00,8.48837132011166
+1970-05-04 22:00:00,8.8396138014785
+1970-05-04 23:00:00,17.0496358185877
+1970-05-05 00:00:00,18.3409420095897
+1970-05-05 01:00:00,15.1367915045045
+1970-05-05 02:00:00,17.0516341509939
+1970-05-05 03:00:00,15.8035139058813
+1970-05-05 04:00:00,17.2757955067816
+1970-05-05 05:00:00,17.9496819120908
+1970-05-05 06:00:00,6.25609563524735
+1970-05-05 07:00:00,9.81922697628158
+1970-05-05 08:00:00,12.0770414121122
+1970-05-05 09:00:00,20.9003510809604
+1970-05-05 10:00:00,12.0060851569616
+1970-05-05 11:00:00,9.50858357966413
+1970-05-05 12:00:00,9.81447106944112
+1970-05-05 13:00:00,26.0308315090185
+1970-05-05 14:00:00,18.2834811546129
+1970-05-05 15:00:00,8.33647921009457
+1970-05-05 16:00:00,12.7946277509247
+1970-05-05 17:00:00,12.8113664993368
+1970-05-05 18:00:00,14.4926346890776
+1970-05-05 19:00:00,17.046297699286
+1970-05-05 20:00:00,13.4869484553856
+1970-05-05 21:00:00,9.3187546023582
+1970-05-05 22:00:00,17.0221212432822
+1970-05-05 23:00:00,9.96657373568407
+1970-05-06 00:00:00,17.8971671906519
+1970-05-06 01:00:00,8.29552867139248
+1970-05-06 02:00:00,11.7921273903564
+1970-05-06 03:00:00,7.25451257657565
+1970-05-06 04:00:00,8.74101372621628
+1970-05-06 05:00:00,15.8132916065724
+1970-05-06 06:00:00,14.5206394014298
+1970-05-06 07:00:00,7.89854596798239
+1970-05-06 08:00:00,6.08928206620477
+1970-05-06 09:00:00,15.0245626026479
+1970-05-06 10:00:00,16.9196659361792
+1970-05-06 11:00:00,15.1833576660175
+1970-05-06 12:00:00,11.0910892827316
+1970-05-06 13:00:00,17.1758357645816
+1970-05-06 14:00:00,14.6825714138616
+1970-05-06 15:00:00,5.59043944844729
+1970-05-06 16:00:00,10.030453778061
+1970-05-06 17:00:00,12.2678524435598
+1970-05-06 18:00:00,21.788224403469
+1970-05-06 19:00:00,18.5194843929735
+1970-05-06 20:00:00,10.3472725972262
+1970-05-06 21:00:00,10.7434439136038
+1970-05-06 22:00:00,16.7963716071087
+1970-05-06 23:00:00,8.48314043600984
+1970-05-07 00:00:00,12.7664825829362
+1970-05-07 01:00:00,14.7950319194793
+1970-05-07 02:00:00,29.070629713281
+1970-05-07 03:00:00,12.9884054618491
+1970-05-07 04:00:00,14.1606972867984
+1970-05-07 05:00:00,18.5979724739842
+1970-05-07 06:00:00,17.8238794035715
+1970-05-07 07:00:00,16.9435434855081
+1970-05-07 08:00:00,15.0812093554198
+1970-05-07 09:00:00,10.5957281535542
+1970-05-07 10:00:00,10.2843524185242
+1970-05-07 11:00:00,14.2372771850153
+1970-05-07 12:00:00,11.8749261745685
+1970-05-07 13:00:00,8.72954468121603
+1970-05-07 14:00:00,11.3917641139559
+1970-05-07 15:00:00,13.3003292445858
+1970-05-07 16:00:00,17.1012296350953
+1970-05-07 17:00:00,17.9701655088987
+1970-05-07 18:00:00,13.9016133038909
+1970-05-07 19:00:00,16.9744316381232
+1970-05-07 20:00:00,12.0931313285459
+1970-05-07 21:00:00,11.8918707665716
+1970-05-07 22:00:00,13.4681832993477
+1970-05-07 23:00:00,7.1939440769252
+1970-05-08 00:00:00,18.9586072863859
+1970-05-08 01:00:00,15.0732465288393
+1970-05-08 02:00:00,13.27145069598
+1970-05-08 03:00:00,6.25762734997711
+1970-05-08 04:00:00,16.6741244414382
+1970-05-08 05:00:00,15.0766877816046
+1970-05-08 06:00:00,13.9217396094266
+1970-05-08 07:00:00,7.18968593514931
+1970-05-08 08:00:00,8.31680903567909
+1970-05-08 09:00:00,14.2710418718643
+1970-05-08 10:00:00,13.3757925933607
+1970-05-08 11:00:00,17.4506906666859
+1970-05-08 12:00:00,12.0245031946437
+1970-05-08 13:00:00,14.9818716671668
+1970-05-08 14:00:00,18.044999122015
+1970-05-08 15:00:00,5.98525206798313
+1970-05-08 16:00:00,6.4476267575251
+1970-05-08 17:00:00,10.9678491939778
+1970-05-08 18:00:00,15.9390283328034
+1970-05-08 19:00:00,17.9510998317457
+1970-05-08 20:00:00,21.3796500632489
+1970-05-08 21:00:00,16.4722311614363
+1970-05-08 22:00:00,18.1743401308458
+1970-05-08 23:00:00,16.3399998850258
+1970-05-09 00:00:00,16.2972776014718
+1970-05-09 01:00:00,15.3626553491819
+1970-05-09 02:00:00,18.8565251022675
+1970-05-09 03:00:00,17.7804514663622
+1970-05-09 04:00:00,12.1137370460772
+1970-05-09 05:00:00,27.7606147995189
+1970-05-09 06:00:00,12.1858462290528
+1970-05-09 07:00:00,11.6646475140142
+1970-05-09 08:00:00,8.30255050129751
+1970-05-09 09:00:00,8.01139387479866
+1970-05-09 10:00:00,9.81639996265546
+1970-05-09 11:00:00,11.5833358630884
+1970-05-09 12:00:00,20.8714564281494
+1970-05-09 13:00:00,10.5995839297167
+1970-05-09 14:00:00,23.0413704275597
+1970-05-09 15:00:00,16.9386964510555
+1970-05-09 16:00:00,24.7933775828355
+1970-05-09 17:00:00,10.5964803720562
+1970-05-09 18:00:00,12.8655856455272
+1970-05-09 19:00:00,22.0947412102506
+1970-05-09 20:00:00,13.3759993642795
+1970-05-09 21:00:00,15.0978660378799
+1970-05-09 22:00:00,17.5248877983639
+1970-05-09 23:00:00,10.2607574649504
+1970-05-10 00:00:00,11.4127640689819
+1970-05-10 01:00:00,10.2349859482961
+1970-05-10 02:00:00,22.3973843858054
+1970-05-10 03:00:00,8.30837190184848
+1970-05-10 04:00:00,12.1481354629476
+1970-05-10 05:00:00,9.67678721720825
+1970-05-10 06:00:00,18.3974511914647
+1970-05-10 07:00:00,10.3830170342339
+1970-05-10 08:00:00,9.00716102799893
+1970-05-10 09:00:00,15.2787864761431
+1970-05-10 10:00:00,21.9064770195233
+1970-05-10 11:00:00,12.9211118614732
+1970-05-10 12:00:00,11.8761277068516
+1970-05-10 13:00:00,10.9750021583164
+1970-05-10 14:00:00,14.5723641174365
+1970-05-10 15:00:00,12.4620656215882
+1970-05-10 16:00:00,13.2149525887212
+1970-05-10 17:00:00,14.0231958814985
+1970-05-10 18:00:00,13.2150676631489
+1970-05-10 19:00:00,30.4234906413873
+1970-05-10 20:00:00,18.3600336710945
+1970-05-10 21:00:00,11.3268610203235
+1970-05-10 22:00:00,11.088710710767
+1970-05-10 23:00:00,16.2877080573596
+1970-05-11 00:00:00,11.7047147812613
+1970-05-11 01:00:00,11.6648808383155
+1970-05-11 02:00:00,11.7027623434606
+1970-05-11 03:00:00,10.5416163731614
+1970-05-11 04:00:00,11.3117029197539
+1970-05-11 05:00:00,9.82018715608439
+1970-05-11 06:00:00,17.7683624263553
+1970-05-11 07:00:00,16.466588565959
+1970-05-11 08:00:00,15.8044444383245
+1970-05-11 09:00:00,18.3948621158814
+1970-05-11 10:00:00,13.8620951951793
+1970-05-11 11:00:00,16.6218750020745
+1970-05-11 12:00:00,15.3900088549713
+1970-05-11 13:00:00,18.8732125639261
+1970-05-11 14:00:00,15.8362374208723
+1970-05-11 15:00:00,18.6339738500188
+1970-05-11 16:00:00,13.646044668342
+1970-05-11 17:00:00,17.5375764668288
+1970-05-11 18:00:00,13.8923539361791
+1970-05-11 19:00:00,7.88983551808832
+1970-05-11 20:00:00,12.3766154636966
+1970-05-11 21:00:00,10.5197161417689
+1970-05-11 22:00:00,8.0075625244536
+1970-05-11 23:00:00,17.1291208970921
+1970-05-12 00:00:00,10.4040132025789
+1970-05-12 01:00:00,25.970744943633
+1970-05-12 02:00:00,21.973821394766
+1970-05-12 03:00:00,10.3423058834107
+1970-05-12 04:00:00,14.4799254488198
+1970-05-12 05:00:00,9.77869380081369
+1970-05-12 06:00:00,7.02286988347123
+1970-05-12 07:00:00,5.46021985994014
+1970-05-12 08:00:00,13.5617214872401
+1970-05-12 09:00:00,21.0870657530019
+1970-05-12 10:00:00,10.9303596963319
+1970-05-12 11:00:00,16.6056207202798
+1970-05-12 12:00:00,18.9564334172949
+1970-05-12 13:00:00,19.5031139866369
+1970-05-12 14:00:00,15.5987702471485
+1970-05-12 15:00:00,23.1024782905849
+1970-05-12 16:00:00,18.4793500198293
+1970-05-12 17:00:00,12.2880749295243
+1970-05-12 18:00:00,8.96096304230589
+1970-05-12 19:00:00,17.4582500078402
+1970-05-12 20:00:00,12.7982332263146
+1970-05-12 21:00:00,11.8330528112823
+1970-05-12 22:00:00,18.9258896140848
+1970-05-12 23:00:00,13.4986740755869
+1970-05-13 00:00:00,23.2420475536259
+1970-05-13 01:00:00,24.1451795406977
+1970-05-13 02:00:00,8.04187652972435
+1970-05-13 03:00:00,11.7243436414596
+1970-05-13 04:00:00,10.7943230481242
+1970-05-13 05:00:00,12.6999495717082
+1970-05-13 06:00:00,11.6497678309424
+1970-05-13 07:00:00,20.4341676753443
+1970-05-13 08:00:00,19.6243180905166
+1970-05-13 09:00:00,26.7600102564056
+1970-05-13 10:00:00,13.6417392386635
+1970-05-13 11:00:00,14.7270062517402
+1970-05-13 12:00:00,8.77742867679017
+1970-05-13 13:00:00,10.5667785570727
+1970-05-13 14:00:00,14.1528770399648
+1970-05-13 15:00:00,5.69199275132592
+1970-05-13 16:00:00,20.6034113246669
+1970-05-13 17:00:00,18.8189812323649
+1970-05-13 18:00:00,16.6845988534328
+1970-05-13 19:00:00,12.8320729606606
+1970-05-13 20:00:00,21.7081546413934
+1970-05-13 21:00:00,14.0826463888418
+1970-05-13 22:00:00,19.4762663376196
+1970-05-13 23:00:00,8.58491495976969
+1970-05-14 00:00:00,16.871916820941
+1970-05-14 01:00:00,18.3168456617571
+1970-05-14 02:00:00,19.9056563974327
+1970-05-14 03:00:00,7.86701623463167
+1970-05-14 04:00:00,14.8154570057031
+1970-05-14 05:00:00,7.31936233568634
+1970-05-14 06:00:00,13.6928808651389
+1970-05-14 07:00:00,15.0464917690232
+1970-05-14 08:00:00,11.4562142460064
+1970-05-14 09:00:00,23.2017971539925
+1970-05-14 10:00:00,17.6285045547572
+1970-05-14 11:00:00,13.9097185570208
+1970-05-14 12:00:00,13.8090866075239
+1970-05-14 13:00:00,13.1035929951731
+1970-05-14 14:00:00,13.6855420058115
+1970-05-14 15:00:00,10.491801654803
+1970-05-14 16:00:00,12.6170229067898
+1970-05-14 17:00:00,16.0625999750745
+1970-05-14 18:00:00,6.86910062443129
+1970-05-14 19:00:00,12.1321518878866
+1970-05-14 20:00:00,8.82981853890266
+1970-05-14 21:00:00,18.6534167197701
+1970-05-14 22:00:00,14.2584665167925
+1970-05-14 23:00:00,9.60051821224015
+1970-05-15 00:00:00,11.3739958138323
+1970-05-15 01:00:00,15.6556978921236
+1970-05-15 02:00:00,19.104670514003
+1970-05-15 03:00:00,16.7067988198943
+1970-05-15 04:00:00,13.4160334867541
+1970-05-15 05:00:00,21.7122312412464
+1970-05-15 06:00:00,8.46448380482944
+1970-05-15 07:00:00,18.8791851801826
+1970-05-15 08:00:00,13.8838561367183
+1970-05-15 09:00:00,8.18754488904996
+1970-05-15 10:00:00,10.4908448738329
+1970-05-15 11:00:00,10.7077179508127
+1970-05-15 12:00:00,8.43822497975071
+1970-05-15 13:00:00,18.9845223065465
+1970-05-15 14:00:00,8.99235026416652
+1970-05-15 15:00:00,15.3811926642473
+1970-05-15 16:00:00,10.3335429612472
+1970-05-15 17:00:00,21.5544578137903
+1970-05-15 18:00:00,8.71671671672004
+1970-05-15 19:00:00,10.3482630435517
+1970-05-15 20:00:00,27.1913992246798
+1970-05-15 21:00:00,16.0849692194544
+1970-05-15 22:00:00,9.9195823991307
+1970-05-15 23:00:00,21.2607988199682
+1970-05-16 00:00:00,10.4525264076494
+1970-05-16 01:00:00,14.6856135270132
+1970-05-16 02:00:00,13.9035262563047
+1970-05-16 03:00:00,9.32294137566813
+1970-05-16 04:00:00,14.8923954215013
+1970-05-16 05:00:00,13.6025371439692
+1970-05-16 06:00:00,10.6560707935581
+1970-05-16 07:00:00,17.7685617020454
+1970-05-16 08:00:00,22.152918030192
+1970-05-16 09:00:00,21.1062991911481
+1970-05-16 10:00:00,17.85503429038
+1970-05-16 11:00:00,18.3326013095938
+1970-05-16 12:00:00,9.13289024671517
+1970-05-16 13:00:00,13.3037962281691
+1970-05-16 14:00:00,11.4387142371662
+1970-05-16 15:00:00,18.8448272004973
+1970-05-16 16:00:00,14.6139330084259
+1970-05-16 17:00:00,9.83179030322108
+1970-05-16 18:00:00,20.6032865865973
+1970-05-16 19:00:00,17.9765382127782
+1970-05-16 20:00:00,22.8100309709077
+1970-05-16 21:00:00,13.0407716158174
+1970-05-16 22:00:00,11.3959486601458
+1970-05-16 23:00:00,24.3563148522577
+1970-05-17 00:00:00,19.6267448282952
+1970-05-17 01:00:00,14.7189513536798
+1970-05-17 02:00:00,17.0048760030298
+1970-05-17 03:00:00,22.9282795459015
+1970-05-17 04:00:00,19.4126293569618
+1970-05-17 05:00:00,20.3794920150512
+1970-05-17 06:00:00,13.6008636313066
+1970-05-17 07:00:00,11.0309110110008
+1970-05-17 08:00:00,14.7353053815687
+1970-05-17 09:00:00,16.8769424433873
+1970-05-17 10:00:00,16.138543525507
+1970-05-17 11:00:00,10.8635748371284
+1970-05-17 12:00:00,12.9428763502922
+1970-05-17 13:00:00,13.1598123171912
+1970-05-17 14:00:00,5.79211935576714
+1970-05-17 15:00:00,16.822996502498
+1970-05-17 16:00:00,6.25220087993596
+1970-05-17 17:00:00,14.3033240237613
+1970-05-17 18:00:00,10.342044804099
+1970-05-17 19:00:00,13.7415185643612
+1970-05-17 20:00:00,12.8815207600127
+1970-05-17 21:00:00,10.7700633099394
+1970-05-17 22:00:00,12.8208436652439
+1970-05-17 23:00:00,14.394770499176
+1970-05-18 00:00:00,11.4543703761521
+1970-05-18 01:00:00,12.3126989536016
+1970-05-18 02:00:00,16.2197208588231
+1970-05-18 03:00:00,11.7942590003026
+1970-05-18 04:00:00,11.4984555915803
+1970-05-18 05:00:00,11.8552520215332
+1970-05-18 06:00:00,16.0055176762155
+1970-05-18 07:00:00,13.9092202589216
+1970-05-18 08:00:00,12.7632663090607
+1970-05-18 09:00:00,16.9709949471735
+1970-05-18 10:00:00,16.1821071223615
+1970-05-18 11:00:00,13.9205240523062
+1970-05-18 12:00:00,19.2907413341377
+1970-05-18 13:00:00,17.2724174136681
+1970-05-18 14:00:00,13.4420465781745
+1970-05-18 15:00:00,15.94722961744
+1970-05-18 16:00:00,11.7075655580255
+1970-05-18 17:00:00,15.8993846376893
+1970-05-18 18:00:00,16.6228755808525
+1970-05-18 19:00:00,17.0915438651731
+1970-05-18 20:00:00,16.8504882922582
+1970-05-18 21:00:00,15.1395577999258
+1970-05-18 22:00:00,9.3425329659112
+1970-05-18 23:00:00,21.5373289469375
+1970-05-19 00:00:00,9.33773004749875
+1970-05-19 01:00:00,15.5012899187925
+1970-05-19 02:00:00,16.70669468902
+1970-05-19 03:00:00,7.58455280970289
+1970-05-19 04:00:00,9.85770876349869
+1970-05-19 05:00:00,17.6518766593681
+1970-05-19 06:00:00,9.66752552501354
+1970-05-19 07:00:00,14.610156705889
+1970-05-19 08:00:00,8.95033456739874
+1970-05-19 09:00:00,13.0804115445578
+1970-05-19 10:00:00,19.1352672565809
+1970-05-19 11:00:00,14.1085955502805
+1970-05-19 12:00:00,16.6766798042726
+1970-05-19 13:00:00,11.1994236751249
+1970-05-19 14:00:00,7.81924259533774
+1970-05-19 15:00:00,21.2832203803865
+1970-05-19 16:00:00,18.0323589657718
+1970-05-19 17:00:00,16.3286048665161
+1970-05-19 18:00:00,22.0436793365888
+1970-05-19 19:00:00,10.0085395786371
+1970-05-19 20:00:00,18.8766098190339
+1970-05-19 21:00:00,11.0926168565712
+1970-05-19 22:00:00,14.3613557660028
+1970-05-19 23:00:00,14.0813019360476
+1970-05-20 00:00:00,27.2140039869822
+1970-05-20 01:00:00,12.6943242843333
+1970-05-20 02:00:00,21.3268983279597
+1970-05-20 03:00:00,11.4045318091166
+1970-05-20 04:00:00,17.2218960192908
+1970-05-20 05:00:00,18.4453627239398
+1970-05-20 06:00:00,17.0451821823312
+1970-05-20 07:00:00,14.4626778257961
+1970-05-20 08:00:00,12.3558215379988
+1970-05-20 09:00:00,11.2492533996311
+1970-05-20 10:00:00,16.9256244831893
+1970-05-20 11:00:00,6.80566102938983
+1970-05-20 12:00:00,14.1731233133792
+1970-05-20 13:00:00,16.2484936630103
+1970-05-20 14:00:00,11.0216242292187
+1970-05-20 15:00:00,12.684546911628
+1970-05-20 16:00:00,11.5888429085103
+1970-05-20 17:00:00,18.3949331278072
+1970-05-20 18:00:00,11.4982962172521
+1970-05-20 19:00:00,15.3865935132838
+1970-05-20 20:00:00,10.561398662809
+1970-05-20 21:00:00,15.154116944734
+1970-05-20 22:00:00,12.3342559217585
+1970-05-20 23:00:00,12.4864927869997
+1970-05-21 00:00:00,21.906988347899
+1970-05-21 01:00:00,23.9746023879176
+1970-05-21 02:00:00,15.3195149088402
+1970-05-21 03:00:00,19.898495562117
+1970-05-21 04:00:00,12.2122875078236
+1970-05-21 05:00:00,10.6509314600424
+1970-05-21 06:00:00,27.3655923917783
+1970-05-21 07:00:00,19.7408228669563
+1970-05-21 08:00:00,11.0704352139244
+1970-05-21 09:00:00,9.05519774011217
+1970-05-21 10:00:00,16.4207657864948
+1970-05-21 11:00:00,21.1955853357137
+1970-05-21 12:00:00,16.3363232905473
+1970-05-21 13:00:00,7.52720309166417
+1970-05-21 14:00:00,24.1951364274908
+1970-05-21 15:00:00,22.3691846123251
+1970-05-21 16:00:00,12.0539944146135
+1970-05-21 17:00:00,11.5232433223234
+1970-05-21 18:00:00,7.07177801487197
+1970-05-21 19:00:00,8.96819936805065
+1970-05-21 20:00:00,24.8400716154383
+1970-05-21 21:00:00,16.48041911255
+1970-05-21 22:00:00,19.5708161151849
+1970-05-21 23:00:00,9.00219657627263
+1970-05-22 00:00:00,9.45120528850487
+1970-05-22 01:00:00,12.6383641883804
+1970-05-22 02:00:00,17.6080325533428
+1970-05-22 03:00:00,14.1883803445329
+1970-05-22 04:00:00,12.4996730963387
+1970-05-22 05:00:00,14.7447145795292
+1970-05-22 06:00:00,17.6315209337422
+1970-05-22 07:00:00,12.4392993366544
+1970-05-22 08:00:00,11.0016149756195
+1970-05-22 09:00:00,12.0532450216768
+1970-05-22 10:00:00,19.8908330552754
+1970-05-22 11:00:00,14.2449900133384
+1970-05-22 12:00:00,19.972283150978
+1970-05-22 13:00:00,10.2294782518504
+1970-05-22 14:00:00,19.036091126588
+1970-05-22 15:00:00,13.160426897689
+1970-05-22 16:00:00,23.5742343954064
+1970-05-22 17:00:00,22.5586628501719
+1970-05-22 18:00:00,13.0989231647701
+1970-05-22 19:00:00,13.1211713438809
+1970-05-22 20:00:00,25.1196874324273
+1970-05-22 21:00:00,11.9072618076291
+1970-05-22 22:00:00,11.7813723921841
+1970-05-22 23:00:00,15.7268591856737
+1970-05-23 00:00:00,18.4628123249154
+1970-05-23 01:00:00,8.61204938368315
+1970-05-23 02:00:00,10.9080704755916
+1970-05-23 03:00:00,14.5998845471837
+1970-05-23 04:00:00,13.793230581919
+1970-05-23 05:00:00,11.4424335113755
+1970-05-23 06:00:00,10.9638633772665
+1970-05-23 07:00:00,16.0747580584105
+1970-05-23 08:00:00,18.3253659019826
+1970-05-23 09:00:00,26.031620957234
+1970-05-23 10:00:00,23.6146418296042
+1970-05-23 11:00:00,12.0901279930905
+1970-05-23 12:00:00,10.5826487306004
+1970-05-23 13:00:00,6.16298478254704
+1970-05-23 14:00:00,21.2268667902367
+1970-05-23 15:00:00,10.3778173569562
+1970-05-23 16:00:00,16.5840456164171
+1970-05-23 17:00:00,8.38137919036693
+1970-05-23 18:00:00,11.9445628471731
+1970-05-23 19:00:00,13.6193667728244
+1970-05-23 20:00:00,7.71067405626863
+1970-05-23 21:00:00,11.8360996853523
+1970-05-23 22:00:00,12.3678078777573
+1970-05-23 23:00:00,18.3650492669687
+1970-05-24 00:00:00,17.3638617253586
+1970-05-24 01:00:00,23.1607291631744
+1970-05-24 02:00:00,19.031358858825
+1970-05-24 03:00:00,9.81726386952604
+1970-05-24 04:00:00,13.5009882877046
+1970-05-24 05:00:00,12.784116762728
+1970-05-24 06:00:00,14.9906757857111
+1970-05-24 07:00:00,17.333415819409
+1970-05-24 08:00:00,9.60962473315861
+1970-05-24 09:00:00,13.0680935961383
+1970-05-24 10:00:00,13.3313275021083
+1970-05-24 11:00:00,9.91135549082941
+1970-05-24 12:00:00,14.6605806213915
+1970-05-24 13:00:00,16.6829015270166
+1970-05-24 14:00:00,17.1953086072987
+1970-05-24 15:00:00,10.7938286193473
+1970-05-24 16:00:00,22.0526843429529
+1970-05-24 17:00:00,19.3625307140267
+1970-05-24 18:00:00,11.2598603716897
+1970-05-24 19:00:00,12.0910977134145
+1970-05-24 20:00:00,18.2190651498007
+1970-05-24 21:00:00,7.03558565338053
+1970-05-24 22:00:00,7.43267609989891
+1970-05-24 23:00:00,14.897941392643
+1970-05-25 00:00:00,15.1830099465205
+1970-05-25 01:00:00,13.5708440228526
+1970-05-25 02:00:00,12.0652952141932
+1970-05-25 03:00:00,18.1171546512126
+1970-05-25 04:00:00,10.8807179492598
+1970-05-25 05:00:00,14.1731105732691
+1970-05-25 06:00:00,12.7087918520436
+1970-05-25 07:00:00,5.8758009616096
+1970-05-25 08:00:00,6.95892378241794
+1970-05-25 09:00:00,15.4336980653059
+1970-05-25 10:00:00,7.04898819067049
+1970-05-25 11:00:00,13.3926019249117
+1970-05-25 12:00:00,6.47341463321156
+1970-05-25 13:00:00,21.325065314825
+1970-05-25 14:00:00,18.8837171152355
+1970-05-25 15:00:00,9.90124778784622
+1970-05-25 16:00:00,9.57486589085453
+1970-05-25 17:00:00,22.7489551336686
+1970-05-25 18:00:00,18.4612700333982
+1970-05-25 19:00:00,10.0452381225302
+1970-05-25 20:00:00,11.4357055855977
+1970-05-25 21:00:00,16.5610099920799
+1970-05-25 22:00:00,15.6368920887521
+1970-05-25 23:00:00,12.9650342076083
+1970-05-26 00:00:00,12.5755365429725
+1970-05-26 01:00:00,23.2880850251529
+1970-05-26 02:00:00,17.5770652559678
+1970-05-26 03:00:00,14.6659888632769
+1970-05-26 04:00:00,17.6943105500519
+1970-05-26 05:00:00,14.8738358213657
+1970-05-26 06:00:00,10.2295127837698
+1970-05-26 07:00:00,9.47559732120432
+1970-05-26 08:00:00,21.8105859521421
+1970-05-26 09:00:00,12.6960665815012
+1970-05-26 10:00:00,15.3267254023024
+1970-05-26 11:00:00,8.79576956992316
+1970-05-26 12:00:00,9.71331784237218
+1970-05-26 13:00:00,9.88080068619919
+1970-05-26 14:00:00,14.1095521277117
+1970-05-26 15:00:00,15.7537630056673
+1970-05-26 16:00:00,11.9461607320054
+1970-05-26 17:00:00,12.3488553586827
+1970-05-26 18:00:00,25.7688635001996
+1970-05-26 19:00:00,19.5941957560078
+1970-05-26 20:00:00,10.176670880035
+1970-05-26 21:00:00,10.5755011090288
+1970-05-26 22:00:00,11.5120606185608
+1970-05-26 23:00:00,18.5881424476816
+1970-05-27 00:00:00,21.8991503279427
+1970-05-27 01:00:00,12.9993036044102
+1970-05-27 02:00:00,12.3228591930134
+1970-05-27 03:00:00,9.57137021444701
+1970-05-27 04:00:00,9.52019761818358
+1970-05-27 05:00:00,9.51816833896208
+1970-05-27 06:00:00,14.6412918609779
+1970-05-27 07:00:00,12.5034398185258
+1970-05-27 08:00:00,13.6953460524621
+1970-05-27 09:00:00,9.13202371125669
+1970-05-27 10:00:00,8.64036840442326
+1970-05-27 11:00:00,14.9472720443434
+1970-05-27 12:00:00,9.77853221729221
+1970-05-27 13:00:00,15.3450163173621
+1970-05-27 14:00:00,9.57238972974601
+1970-05-27 15:00:00,23.4415616669663
+1970-05-27 16:00:00,21.4098312960396
+1970-05-27 17:00:00,13.2525340805458
+1970-05-27 18:00:00,17.9945294925256
+1970-05-27 19:00:00,10.9445249334794
+1970-05-27 20:00:00,15.0195221351829
+1970-05-27 21:00:00,9.6085225620006
+1970-05-27 22:00:00,10.6222260770366
+1970-05-27 23:00:00,8.28096773378426
+1970-05-28 00:00:00,12.6021617103817
+1970-05-28 01:00:00,22.7066816102972
+1970-05-28 02:00:00,12.4622057284751
+1970-05-28 03:00:00,10.4587553223932
+1970-05-28 04:00:00,14.6025486515393
+1970-05-28 05:00:00,14.069160082246
+1970-05-28 06:00:00,13.4652506404294
+1970-05-28 07:00:00,11.4661704083993
+1970-05-28 08:00:00,16.1984503747992
+1970-05-28 09:00:00,16.1524424773476
+1970-05-28 10:00:00,14.5602381577725
+1970-05-28 11:00:00,7.99050024568464
+1970-05-28 12:00:00,20.3724671834633
+1970-05-28 13:00:00,18.0505851913828
+1970-05-28 14:00:00,17.5252084093341
+1970-05-28 15:00:00,14.1850561480457
+1970-05-28 16:00:00,22.7503708826785
+1970-05-28 17:00:00,12.5304212502051
+1970-05-28 18:00:00,6.63089212904973
+1970-05-28 19:00:00,10.2466412300935
+1970-05-28 20:00:00,16.4600249202606
+1970-05-28 21:00:00,19.926409772732
+1970-05-28 22:00:00,10.4630385685535
+1970-05-28 23:00:00,11.130256034271
+1970-05-29 00:00:00,22.9459023259156
+1970-05-29 01:00:00,15.5638352028542
+1970-05-29 02:00:00,15.5502451086986
+1970-05-29 03:00:00,12.3431076727664
+1970-05-29 04:00:00,14.0666835470527
+1970-05-29 05:00:00,12.8687051350431
+1970-05-29 06:00:00,12.0558896820302
+1970-05-29 07:00:00,18.7538443277674
+1970-05-29 08:00:00,14.6026065124567
+1970-05-29 09:00:00,17.2434008499771
+1970-05-29 10:00:00,11.7783357810165
+1970-05-29 11:00:00,12.1086991093874
+1970-05-29 12:00:00,10.8172468315972
+1970-05-29 13:00:00,17.8970635975684
+1970-05-29 14:00:00,21.2706493051198
+1970-05-29 15:00:00,13.3636239848401
+1970-05-29 16:00:00,10.8679576571308
+1970-05-29 17:00:00,7.3253889763559
+1970-05-29 18:00:00,16.9609087191778
+1970-05-29 19:00:00,19.6114302400914
+1970-05-29 20:00:00,8.4856069099282
+1970-05-29 21:00:00,13.2772179481406
+1970-05-29 22:00:00,10.2511120420402
+1970-05-29 23:00:00,12.342588375564
+1970-05-30 00:00:00,12.7855528929055
+1970-05-30 01:00:00,15.1090388834239
+1970-05-30 02:00:00,14.8335200713322
+1970-05-30 03:00:00,17.045770027006
+1970-05-30 04:00:00,10.9805793222887
+1970-05-30 05:00:00,14.114097273937
+1970-05-30 06:00:00,12.7865312929365
+1970-05-30 07:00:00,21.0563974382843
+1970-05-30 08:00:00,12.0626708481161
+1970-05-30 09:00:00,10.5039860097561
+1970-05-30 10:00:00,19.3256672685171
+1970-05-30 11:00:00,17.4115489963889
+1970-05-30 12:00:00,10.6244047151138
+1970-05-30 13:00:00,13.5785966742254
+1970-05-30 14:00:00,12.4947430357463
+1970-05-30 15:00:00,13.4638528907414
+1970-05-30 16:00:00,27.3666219859631
+1970-05-30 17:00:00,13.5987756918403
+1970-05-30 18:00:00,8.82689905498211
+1970-05-30 19:00:00,18.9206870783351
+1970-05-30 20:00:00,17.6696893188016
+1970-05-30 21:00:00,13.7912292631684
+1970-05-30 22:00:00,23.1878581200651
+1970-05-30 23:00:00,9.75703942297921
+1970-05-31 00:00:00,18.3038535672579
+1970-05-31 01:00:00,25.1109073063911
+1970-05-31 02:00:00,16.8573809799581
+1970-05-31 03:00:00,9.3323415441596
+1970-05-31 04:00:00,19.5177423402326
+1970-05-31 05:00:00,21.6615920807704
+1970-05-31 06:00:00,11.5906067129486
+1970-05-31 07:00:00,14.5131480747347
+1970-05-31 08:00:00,12.623141255026
+1970-05-31 09:00:00,8.09216922785252
+1970-05-31 10:00:00,8.98905372525589
+1970-05-31 11:00:00,13.2843458460416
+1970-05-31 12:00:00,16.0803140473636
+1970-05-31 13:00:00,11.2259126891938
+1970-05-31 14:00:00,13.0062594901395
+1970-05-31 15:00:00,10.7659359364607
+1970-05-31 16:00:00,18.5127112696099
+1970-05-31 17:00:00,12.0444591232157
+1970-05-31 18:00:00,11.4416965561676
+1970-05-31 19:00:00,17.7787400029044
+1970-05-31 20:00:00,11.8677062519625
+1970-05-31 21:00:00,10.9910685351899
+1970-05-31 22:00:00,13.6655117139369
+1970-05-31 23:00:00,7.29088784665465
+1970-06-01 00:00:00,16.0936753059872
+1970-06-01 01:00:00,11.8843550712075
+1970-06-01 02:00:00,16.5837226062498
+1970-06-01 03:00:00,12.8084415052652
+1970-06-01 04:00:00,7.94597182386266
+1970-06-01 05:00:00,17.6615316508609
+1970-06-01 06:00:00,22.0891685697106
+1970-06-01 07:00:00,19.5146277520839
+1970-06-01 08:00:00,13.5777442496408
+1970-06-01 09:00:00,9.16849848803207
+1970-06-01 10:00:00,8.91098501790309
+1970-06-01 11:00:00,19.2916987510887
+1970-06-01 12:00:00,13.1692882312998
+1970-06-01 13:00:00,22.1652701603373
+1970-06-01 14:00:00,11.8583712638605
+1970-06-01 15:00:00,9.18533738809807
+1970-06-01 16:00:00,15.064761253804
+1970-06-01 17:00:00,10.8215285347829
+1970-06-01 18:00:00,14.5361676121927
+1970-06-01 19:00:00,16.4965614554492
+1970-06-01 20:00:00,10.7060259577735
+1970-06-01 21:00:00,17.9647612777353
+1970-06-01 22:00:00,16.077881020741
+1970-06-01 23:00:00,17.6586696281621
+1970-06-02 00:00:00,20.0869469770641
+1970-06-02 01:00:00,10.3318762110942
+1970-06-02 02:00:00,20.2961444608356
+1970-06-02 03:00:00,24.9013564436854
+1970-06-02 04:00:00,15.8699860316015
+1970-06-02 05:00:00,13.6646697167097
+1970-06-02 06:00:00,9.2160798680839
+1970-06-02 07:00:00,10.4281037221556
+1970-06-02 08:00:00,12.2672725995207
+1970-06-02 09:00:00,15.8049799201029
+1970-06-02 10:00:00,12.3790972784518
+1970-06-02 11:00:00,8.45200657905001
+1970-06-02 12:00:00,17.1086608634447
+1970-06-02 13:00:00,21.6218678579161
+1970-06-02 14:00:00,14.4505966847912
+1970-06-02 15:00:00,12.8206406512394
+1970-06-02 16:00:00,14.3751157469928
+1970-06-02 17:00:00,14.7872178564352
+1970-06-02 18:00:00,12.8743083325369
+1970-06-02 19:00:00,17.9973163249441
+1970-06-02 20:00:00,11.0118778755687
+1970-06-02 21:00:00,11.756558395694
+1970-06-02 22:00:00,10.1929466149309
+1970-06-02 23:00:00,14.9169957711358
+1970-06-03 00:00:00,10.1761450336207
+1970-06-03 01:00:00,8.8280577347077
+1970-06-03 02:00:00,7.44772937964807
+1970-06-03 03:00:00,17.798663783085
+1970-06-03 04:00:00,11.4771791407507
+1970-06-03 05:00:00,11.6683663139426
+1970-06-03 06:00:00,14.7862883177511
+1970-06-03 07:00:00,14.8650341008726
+1970-06-03 08:00:00,6.65534452690044
+1970-06-03 09:00:00,11.2001970068091
+1970-06-03 10:00:00,15.4935401923616
+1970-06-03 11:00:00,13.0123671489057
+1970-06-03 12:00:00,17.0114866421583
+1970-06-03 13:00:00,14.3854147183105
+1970-06-03 14:00:00,15.2123260282327
+1970-06-03 15:00:00,25.0720474594157
+1970-06-03 16:00:00,6.12819021384323
+1970-06-03 17:00:00,11.5658373813372
+1970-06-03 18:00:00,12.5916167768218
+1970-06-03 19:00:00,12.2799902271099
+1970-06-03 20:00:00,8.64970595758179
+1970-06-03 21:00:00,23.6979694899358
+1970-06-03 22:00:00,11.7498360238896
+1970-06-03 23:00:00,8.61603977926939
+1970-06-04 00:00:00,20.9179150245292
+1970-06-04 01:00:00,12.3110266143421
+1970-06-04 02:00:00,12.4636562145006
+1970-06-04 03:00:00,16.2025010654463
+1970-06-04 04:00:00,18.2800435041674
+1970-06-04 05:00:00,8.67827003920578
+1970-06-04 06:00:00,10.4391045378687
+1970-06-04 07:00:00,15.5566681565978
+1970-06-04 08:00:00,8.21308624600975
+1970-06-04 09:00:00,7.71859145466771
+1970-06-04 10:00:00,17.9169511256433
+1970-06-04 11:00:00,20.4726459345177
+1970-06-04 12:00:00,15.7567165456234
+1970-06-04 13:00:00,16.0841116769443
+1970-06-04 14:00:00,17.798199785888
+1970-06-04 15:00:00,15.7550300814183
+1970-06-04 16:00:00,29.3909144363221
+1970-06-04 17:00:00,18.9120145086496
+1970-06-04 18:00:00,13.5096532782147
+1970-06-04 19:00:00,11.0423203016047
+1970-06-04 20:00:00,8.35516362130847
+1970-06-04 21:00:00,16.9248556557927
+1970-06-04 22:00:00,14.6493358103689
+1970-06-04 23:00:00,13.0159618224555
+1970-06-05 00:00:00,10.3449663174174
+1970-06-05 01:00:00,13.1875468102768
+1970-06-05 02:00:00,13.0181530042927
+1970-06-05 03:00:00,15.7353738233916
+1970-06-05 04:00:00,19.3961211305432
+1970-06-05 05:00:00,13.0897318552456
+1970-06-05 06:00:00,11.96156662867
+1970-06-05 07:00:00,16.4390646025432
+1970-06-05 08:00:00,9.33595957935748
+1970-06-05 09:00:00,7.21204195850937
+1970-06-05 10:00:00,11.753047685265
+1970-06-05 11:00:00,19.0044649234583
+1970-06-05 12:00:00,10.2385554347936
+1970-06-05 13:00:00,11.3484062545625
+1970-06-05 14:00:00,19.9618413980216
+1970-06-05 15:00:00,14.5877989260305
+1970-06-05 16:00:00,11.0627321283848
+1970-06-05 17:00:00,8.86126775782476
+1970-06-05 18:00:00,18.0186024919839
+1970-06-05 19:00:00,11.5278334100869
+1970-06-05 20:00:00,14.2124470044144
+1970-06-05 21:00:00,19.4162242400008
+1970-06-05 22:00:00,6.82008604115806
+1970-06-05 23:00:00,22.6971292114855
+1970-06-06 00:00:00,13.6230925547495
+1970-06-06 01:00:00,13.3677311768522
+1970-06-06 02:00:00,15.4807013861136
+1970-06-06 03:00:00,13.5578137108947
+1970-06-06 04:00:00,19.5989027983132
+1970-06-06 05:00:00,14.097426237248
+1970-06-06 06:00:00,14.7662751965792
+1970-06-06 07:00:00,19.5657824232309
+1970-06-06 08:00:00,18.4476599281217
+1970-06-06 09:00:00,11.8241021314057
+1970-06-06 10:00:00,16.9687751916861
+1970-06-06 11:00:00,11.1517697140323
+1970-06-06 12:00:00,14.6840046664383
+1970-06-06 13:00:00,10.4663316368884
+1970-06-06 14:00:00,14.0287887505455
+1970-06-06 15:00:00,26.313115526748
+1970-06-06 16:00:00,16.840277623892
+1970-06-06 17:00:00,15.1098999335285
+1970-06-06 18:00:00,11.6648117001551
+1970-06-06 19:00:00,8.80913885709489
+1970-06-06 20:00:00,16.7482612860859
+1970-06-06 21:00:00,12.8191640171629
+1970-06-06 22:00:00,8.25760053319533
+1970-06-06 23:00:00,9.00362829030015
+1970-06-07 00:00:00,12.4743536909874
+1970-06-07 01:00:00,9.42430313632044
+1970-06-07 02:00:00,22.8601712943844
+1970-06-07 03:00:00,13.7972761876044
+1970-06-07 04:00:00,17.8017312868958
+1970-06-07 05:00:00,9.88091101728357
+1970-06-07 06:00:00,23.5204660536723
+1970-06-07 07:00:00,12.5678437195932
+1970-06-07 08:00:00,14.3943387353343
+1970-06-07 09:00:00,17.1585977946986
+1970-06-07 10:00:00,7.70297484649396
+1970-06-07 11:00:00,15.6275200637633
+1970-06-07 12:00:00,20.6524679228327
+1970-06-07 13:00:00,14.9431191317502
+1970-06-07 14:00:00,13.7825781658781
+1970-06-07 15:00:00,16.3800334662049
+1970-06-07 16:00:00,10.5267963185239
+1970-06-07 17:00:00,5.51660915190053
+1970-06-07 18:00:00,9.08127762381962
+1970-06-07 19:00:00,11.770002178859
+1970-06-07 20:00:00,17.0030678796989
+1970-06-07 21:00:00,9.888368519578
+1970-06-07 22:00:00,18.577359813072
+1970-06-07 23:00:00,14.4527696397129
+1970-06-08 00:00:00,10.1098307511692
+1970-06-08 01:00:00,16.5200285496197
+1970-06-08 02:00:00,14.501391607498
+1970-06-08 03:00:00,9.76593422605361
+1970-06-08 04:00:00,9.46850150547674
+1970-06-08 05:00:00,18.137819751136
+1970-06-08 06:00:00,13.3174842459919
+1970-06-08 07:00:00,22.7690689819943
+1970-06-08 08:00:00,18.6552582710894
+1970-06-08 09:00:00,8.534754151032
+1970-06-08 10:00:00,16.5943160496705
+1970-06-08 11:00:00,17.0323199268269
+1970-06-08 12:00:00,17.3070379692461
+1970-06-08 13:00:00,16.6849387330189
+1970-06-08 14:00:00,8.67428347813741
+1970-06-08 15:00:00,12.3675330515126
+1970-06-08 16:00:00,20.9031637414131
+1970-06-08 17:00:00,16.5345080400183
+1970-06-08 18:00:00,15.0863557722131
+1970-06-08 19:00:00,12.7279389687467
+1970-06-08 20:00:00,21.3827265698277
+1970-06-08 21:00:00,16.6892937899907
+1970-06-08 22:00:00,19.6702124884937
+1970-06-08 23:00:00,18.1423708875149
+1970-06-09 00:00:00,6.41208394489046
+1970-06-09 01:00:00,26.4354610107464
+1970-06-09 02:00:00,10.4045523690709
+1970-06-09 03:00:00,11.2734559416413
+1970-06-09 04:00:00,10.0335591984133
+1970-06-09 05:00:00,13.0801215770751
+1970-06-09 06:00:00,12.3054617550512
+1970-06-09 07:00:00,9.10501211262188
+1970-06-09 08:00:00,6.02584614573489
+1970-06-09 09:00:00,17.0720692655562
+1970-06-09 10:00:00,10.289007931741
+1970-06-09 11:00:00,14.1395299997221
+1970-06-09 12:00:00,11.4827236747338
+1970-06-09 13:00:00,10.9861506961756
+1970-06-09 14:00:00,22.9077321471357
+1970-06-09 15:00:00,10.9126073125394
+1970-06-09 16:00:00,7.82299016246196
+1970-06-09 17:00:00,23.5914337496649
+1970-06-09 18:00:00,11.7869995772667
+1970-06-09 19:00:00,18.6338658583127
+1970-06-09 20:00:00,14.3969937359001
+1970-06-09 21:00:00,15.302406688769
+1970-06-09 22:00:00,14.383721876912
+1970-06-09 23:00:00,13.3769953134217
+1970-06-10 00:00:00,19.1173106929089
+1970-06-10 01:00:00,9.49002118941233
+1970-06-10 02:00:00,10.9409298319799
+1970-06-10 03:00:00,12.4331324382606
+1970-06-10 04:00:00,14.4745381214679
+1970-06-10 05:00:00,27.3398981557496
+1970-06-10 06:00:00,16.5628358609682
+1970-06-10 07:00:00,14.5402999460907
+1970-06-10 08:00:00,20.6704922343552
+1970-06-10 09:00:00,15.5115477252286
+1970-06-10 10:00:00,11.7661724432825
+1970-06-10 11:00:00,14.6323297541259
+1970-06-10 12:00:00,18.5031606085267
+1970-06-10 13:00:00,10.496616888159
+1970-06-10 14:00:00,9.69384256204344
+1970-06-10 15:00:00,10.1995693292529
+1970-06-10 16:00:00,9.19427519490778
+1970-06-10 17:00:00,20.9617253818111
+1970-06-10 18:00:00,16.829972980853
+1970-06-10 19:00:00,13.8423745549536
+1970-06-10 20:00:00,15.1296429449787
+1970-06-10 21:00:00,18.1583580346417
+1970-06-10 22:00:00,17.2712510651714
+1970-06-10 23:00:00,9.56607880682028
+1970-06-11 00:00:00,16.5588004429457
+1970-06-11 01:00:00,15.9343457167504
+1970-06-11 02:00:00,14.4445815231307
+1970-06-11 03:00:00,15.5739864991349
+1970-06-11 04:00:00,16.2930176201916
+1970-06-11 05:00:00,16.7730742476985
+1970-06-11 06:00:00,18.9965483094801
+1970-06-11 07:00:00,14.6639500958765
+1970-06-11 08:00:00,10.3545242480071
+1970-06-11 09:00:00,14.1954852192023
+1970-06-11 10:00:00,15.8453402301551
+1970-06-11 11:00:00,11.3898450492261
+1970-06-11 12:00:00,16.069294250935
+1970-06-11 13:00:00,8.11554843933964
+1970-06-11 14:00:00,26.8210104014352
+1970-06-11 15:00:00,17.6909878547817
+1970-06-11 16:00:00,16.6209828722404
+1970-06-11 17:00:00,16.9753180234159
+1970-06-11 18:00:00,12.7788848222808
+1970-06-11 19:00:00,10.8176328120713
+1970-06-11 20:00:00,8.75360206150981
+1970-06-11 21:00:00,12.6812933900897
+1970-06-11 22:00:00,14.3317236941086
+1970-06-11 23:00:00,14.9067238948403
+1970-06-12 00:00:00,23.4478556777552
+1970-06-12 01:00:00,13.1082879942631
+1970-06-12 02:00:00,13.692428768068
+1970-06-12 03:00:00,9.6272818921746
+1970-06-12 04:00:00,12.603228639834
+1970-06-12 05:00:00,15.7317158947523
+1970-06-12 06:00:00,13.7198593472156
+1970-06-12 07:00:00,11.186122291272
+1970-06-12 08:00:00,19.3722358811084
+1970-06-12 09:00:00,27.3049226560051
+1970-06-12 10:00:00,15.550914719668
+1970-06-12 11:00:00,14.0710110502241
+1970-06-12 12:00:00,19.2481000946441
+1970-06-12 13:00:00,16.3415549390798
+1970-06-12 14:00:00,9.75795658209137
+1970-06-12 15:00:00,11.2438521647565
+1970-06-12 16:00:00,7.72923997864161
+1970-06-12 17:00:00,8.74228687050467
+1970-06-12 18:00:00,15.18066978427
+1970-06-12 19:00:00,15.0119054831204
+1970-06-12 20:00:00,22.0072000911753
+1970-06-12 21:00:00,12.9743508755775
+1970-06-12 22:00:00,8.91339378011941
+1970-06-12 23:00:00,10.1763897039025
+1970-06-13 00:00:00,5.76929854767787
+1970-06-13 01:00:00,14.1934127751583
+1970-06-13 02:00:00,22.0309658895361
+1970-06-13 03:00:00,9.5390407950959
+1970-06-13 04:00:00,16.8304717777284
+1970-06-13 05:00:00,13.2087979626025
+1970-06-13 06:00:00,7.95827445796899
+1970-06-13 07:00:00,8.64492968601632
+1970-06-13 08:00:00,14.2841188751498
+1970-06-13 09:00:00,15.1114590086786
+1970-06-13 10:00:00,9.2636954540022
+1970-06-13 11:00:00,6.87500526354031
+1970-06-13 12:00:00,15.1575870716719
+1970-06-13 13:00:00,10.9839698017122
+1970-06-13 14:00:00,13.2989909789162
+1970-06-13 15:00:00,9.09242624540961
+1970-06-13 16:00:00,12.5898751669719
+1970-06-13 17:00:00,17.2303670683858
+1970-06-13 18:00:00,14.11922547845
+1970-06-13 19:00:00,12.8306387597748
+1970-06-13 20:00:00,8.83026391843151
+1970-06-13 21:00:00,18.8141978550545
+1970-06-13 22:00:00,15.4225085929525
+1970-06-13 23:00:00,9.35650277218577
+1970-06-14 00:00:00,14.1321200413858
+1970-06-14 01:00:00,23.3774200761729
+1970-06-14 02:00:00,14.176347440443
+1970-06-14 03:00:00,11.6462276756605
+1970-06-14 04:00:00,10.6434996427584
+1970-06-14 05:00:00,13.1241967068437
+1970-06-14 06:00:00,9.49384216673713
+1970-06-14 07:00:00,16.6855196779368
+1970-06-14 08:00:00,23.5390907563402
+1970-06-14 09:00:00,14.8308802831597
+1970-06-14 10:00:00,6.65952149879293
+1970-06-14 11:00:00,11.8436463882127
+1970-06-14 12:00:00,19.4647694123819
+1970-06-14 13:00:00,12.0751556755674
+1970-06-14 14:00:00,13.5937540456579
+1970-06-14 15:00:00,8.92772393837342
+1970-06-14 16:00:00,10.2457351584943
+1970-06-14 17:00:00,11.2381350712345
+1970-06-14 18:00:00,12.7324729969888
+1970-06-14 19:00:00,15.7706232201342
+1970-06-14 20:00:00,12.0178078062537
+1970-06-14 21:00:00,9.36250943959207
+1970-06-14 22:00:00,13.2617209285538
+1970-06-14 23:00:00,13.2362989989318
+1970-06-15 00:00:00,6.43374985139827
+1970-06-15 01:00:00,17.2461189527001
+1970-06-15 02:00:00,13.8708399985684
+1970-06-15 03:00:00,13.9386594186449
+1970-06-15 04:00:00,19.4127210014197
+1970-06-15 05:00:00,16.0973936123462
+1970-06-15 06:00:00,15.3697206309886
+1970-06-15 07:00:00,17.0882592526861
+1970-06-15 08:00:00,13.5054720138817
+1970-06-15 09:00:00,14.3686318738414
+1970-06-15 10:00:00,13.9892449932409
+1970-06-15 11:00:00,20.5879755424196
+1970-06-15 12:00:00,8.66405163415761
+1970-06-15 13:00:00,17.3511945451326
+1970-06-15 14:00:00,12.9408599076057
+1970-06-15 15:00:00,19.0240688178572
+1970-06-15 16:00:00,18.2310574505944
+1970-06-15 17:00:00,18.7116982133919
+1970-06-15 18:00:00,18.3996886565796
+1970-06-15 19:00:00,13.6442770618763
+1970-06-15 20:00:00,6.90018510629958
+1970-06-15 21:00:00,10.1631674943697
+1970-06-15 22:00:00,14.4684208332331
+1970-06-15 23:00:00,11.5490269987179
+1970-06-16 00:00:00,16.1281593815178
+1970-06-16 01:00:00,9.33674057262989
+1970-06-16 02:00:00,8.41355748207856
+1970-06-16 03:00:00,14.9815490000253
+1970-06-16 04:00:00,18.3596263443907
+1970-06-16 05:00:00,10.5412423808697
+1970-06-16 06:00:00,9.45420670376994
+1970-06-16 07:00:00,12.9756828970576
+1970-06-16 08:00:00,18.0791341453736
+1970-06-16 09:00:00,10.7135755196145
+1970-06-16 10:00:00,9.86833871699605
+1970-06-16 11:00:00,15.8954555935314
+1970-06-16 12:00:00,8.96885958292222
+1970-06-16 13:00:00,15.3023098378884
+1970-06-16 14:00:00,14.3995770571015
+1970-06-16 15:00:00,14.7089542506821
+1970-06-16 16:00:00,10.3776359903476
+1970-06-16 17:00:00,16.302467582783
+1970-06-16 18:00:00,18.8075200648011
+1970-06-16 19:00:00,10.2205435791647
+1970-06-16 20:00:00,9.65361218784168
+1970-06-16 21:00:00,17.4423899380531
+1970-06-16 22:00:00,30.1124769298823
+1970-06-16 23:00:00,17.2860776758571
+1970-06-17 00:00:00,18.5401579527131
+1970-06-17 01:00:00,13.569622532185
+1970-06-17 02:00:00,11.4605329488348
+1970-06-17 03:00:00,24.1751855984487
+1970-06-17 04:00:00,10.8949586059744
+1970-06-17 05:00:00,17.3075607748576
+1970-06-17 06:00:00,20.7713227343038
+1970-06-17 07:00:00,23.7619738501374
+1970-06-17 08:00:00,8.97383428662364
+1970-06-17 09:00:00,7.61132844297048
+1970-06-17 10:00:00,3.53408533991228
+1970-06-17 11:00:00,22.7785295993648
+1970-06-17 12:00:00,15.8930140439952
+1970-06-17 13:00:00,11.5367140241958
+1970-06-17 14:00:00,12.0037973583974
+1970-06-17 15:00:00,9.1803636323545
+1970-06-17 16:00:00,28.1343980962995
+1970-06-17 17:00:00,14.9953613422426
+1970-06-17 18:00:00,17.0728309475976
+1970-06-17 19:00:00,11.6320378807022
+1970-06-17 20:00:00,9.43157937277561
+1970-06-17 21:00:00,12.8186946648324
+1970-06-17 22:00:00,12.0323941405879
+1970-06-17 23:00:00,6.10978597689971
+1970-06-18 00:00:00,10.7071012806457
+1970-06-18 01:00:00,17.4537405968745
+1970-06-18 02:00:00,11.8627357475913
+1970-06-18 03:00:00,6.51226867506634
+1970-06-18 04:00:00,12.6618887904309
+1970-06-18 05:00:00,19.4447465235625
+1970-06-18 06:00:00,11.8220474136085
+1970-06-18 07:00:00,21.862480641944
+1970-06-18 08:00:00,9.58967825250716
+1970-06-18 09:00:00,18.916655931598
+1970-06-18 10:00:00,12.9963305745916
+1970-06-18 11:00:00,20.6136459000129
+1970-06-18 12:00:00,12.756162894255
+1970-06-18 13:00:00,15.5349162652099
+1970-06-18 14:00:00,15.7829530932266
+1970-06-18 15:00:00,20.6173370087581
+1970-06-18 16:00:00,18.063582797419
+1970-06-18 17:00:00,18.3050413209924
+1970-06-18 18:00:00,12.708693140248
+1970-06-18 19:00:00,15.9096333522253
+1970-06-18 20:00:00,9.47414455664192
+1970-06-18 21:00:00,14.3728482745608
+1970-06-18 22:00:00,21.1144964477759
+1970-06-18 23:00:00,14.9863150627047
+1970-06-19 00:00:00,25.9858267501853
+1970-06-19 01:00:00,19.6712872367783
+1970-06-19 02:00:00,11.8723845271483
+1970-06-19 03:00:00,10.2213217320275
+1970-06-19 04:00:00,14.5707013623406
+1970-06-19 05:00:00,19.2537261249764
+1970-06-19 06:00:00,10.3904759288536
+1970-06-19 07:00:00,9.88269970957493
+1970-06-19 08:00:00,11.8167646313592
+1970-06-19 09:00:00,13.6397281861931
+1970-06-19 10:00:00,13.7925924667233
+1970-06-19 11:00:00,15.5402364672155
+1970-06-19 12:00:00,10.5732499294961
+1970-06-19 13:00:00,9.4533069405971
+1970-06-19 14:00:00,14.7216971503829
+1970-06-19 15:00:00,16.3697323644569
+1970-06-19 16:00:00,19.5118987253615
+1970-06-19 17:00:00,17.0556316529772
+1970-06-19 18:00:00,18.7402244827146
+1970-06-19 19:00:00,16.2695329195224
+1970-06-19 20:00:00,20.9226983974321
+1970-06-19 21:00:00,14.4229304444874
+1970-06-19 22:00:00,12.311778636345
+1970-06-19 23:00:00,15.9867780539391
+1970-06-20 00:00:00,10.9235563571458
+1970-06-20 01:00:00,15.5044547451574
+1970-06-20 02:00:00,17.2036770147779
+1970-06-20 03:00:00,13.1744878204007
+1970-06-20 04:00:00,16.3783631012879
+1970-06-20 05:00:00,7.96476190928752
+1970-06-20 06:00:00,19.5306943685777
+1970-06-20 07:00:00,13.1146296951078
+1970-06-20 08:00:00,23.3120293658
+1970-06-20 09:00:00,18.4268812274449
+1970-06-20 10:00:00,25.8558478201383
+1970-06-20 11:00:00,12.9062441024095
+1970-06-20 12:00:00,13.7979243530628
+1970-06-20 13:00:00,9.36025868608045
+1970-06-20 14:00:00,10.6305951218043
+1970-06-20 15:00:00,25.6678485764867
+1970-06-20 16:00:00,9.17521920706835
+1970-06-20 17:00:00,16.6323161418871
+1970-06-20 18:00:00,11.5494033624313
+1970-06-20 19:00:00,10.1916628192436
+1970-06-20 20:00:00,15.0933417963474
+1970-06-20 21:00:00,18.3031129891061
+1970-06-20 22:00:00,17.7344423607364
+1970-06-20 23:00:00,8.34034482604601
+1970-06-21 00:00:00,11.2192203720541
+1970-06-21 01:00:00,10.9460476204714
+1970-06-21 02:00:00,13.8356947428631
+1970-06-21 03:00:00,11.8479762472154
+1970-06-21 04:00:00,12.8135049384794
+1970-06-21 05:00:00,12.4337486418837
+1970-06-21 06:00:00,9.41666314237759
+1970-06-21 07:00:00,17.031415793374
+1970-06-21 08:00:00,13.9649715143389
+1970-06-21 09:00:00,8.37659131474368
+1970-06-21 10:00:00,18.4081761900929
+1970-06-21 11:00:00,9.23990022323448
+1970-06-21 12:00:00,15.1720013976117
+1970-06-21 13:00:00,15.1273398329037
+1970-06-21 14:00:00,15.630865535142
+1970-06-21 15:00:00,12.2397817281638
+1970-06-21 16:00:00,20.4213668873862
+1970-06-21 17:00:00,12.8532092048091
+1970-06-21 18:00:00,13.256394510313
+1970-06-21 19:00:00,14.5132374868786
+1970-06-21 20:00:00,10.1822028503678
+1970-06-21 21:00:00,13.39046395756
+1970-06-21 22:00:00,12.1306583575429
+1970-06-21 23:00:00,19.0368160236823
+1970-06-22 00:00:00,7.96347543351425
+1970-06-22 01:00:00,12.2432962687035
+1970-06-22 02:00:00,11.4473964761719
+1970-06-22 03:00:00,8.35251708306479
+1970-06-22 04:00:00,9.94645150040315
+1970-06-22 05:00:00,14.1590416472133
+1970-06-22 06:00:00,21.0157374966937
+1970-06-22 07:00:00,8.67126642031118
+1970-06-22 08:00:00,9.60242867980765
+1970-06-22 09:00:00,11.060478291354
+1970-06-22 10:00:00,14.4682961931578
+1970-06-22 11:00:00,13.4341775468163
+1970-06-22 12:00:00,8.78767872600642
+1970-06-22 13:00:00,13.4302910477783
+1970-06-22 14:00:00,15.8192020157464
+1970-06-22 15:00:00,12.8030604822321
+1970-06-22 16:00:00,12.4769143586254
+1970-06-22 17:00:00,7.63872842812324
+1970-06-22 18:00:00,12.4677722446707
+1970-06-22 19:00:00,9.44039264650934
+1970-06-22 20:00:00,12.9326489249249
+1970-06-22 21:00:00,11.90890085933
+1970-06-22 22:00:00,18.0111893659402
+1970-06-22 23:00:00,20.4190390612232
+1970-06-23 00:00:00,10.9845329451817
+1970-06-23 01:00:00,10.5520539433473
+1970-06-23 02:00:00,12.1806433279023
+1970-06-23 03:00:00,11.0181085920515
+1970-06-23 04:00:00,8.64838267737508
+1970-06-23 05:00:00,11.2932542483614
+1970-06-23 06:00:00,12.5451987826218
+1970-06-23 07:00:00,16.9326032305631
+1970-06-23 08:00:00,16.760479257673
+1970-06-23 09:00:00,15.6283810095104
+1970-06-23 10:00:00,17.9521069178255
+1970-06-23 11:00:00,21.6881485351464
+1970-06-23 12:00:00,16.5368908105626
+1970-06-23 13:00:00,29.1884004777247
+1970-06-23 14:00:00,12.2016768271016
+1970-06-23 15:00:00,21.1318130152661
+1970-06-23 16:00:00,14.1702868427449
+1970-06-23 17:00:00,18.1861639858196
+1970-06-23 18:00:00,21.0836978245917
+1970-06-23 19:00:00,17.2978859582449
+1970-06-23 20:00:00,9.75735635194081
+1970-06-23 21:00:00,16.8531798959556
+1970-06-23 22:00:00,10.7219320479305
+1970-06-23 23:00:00,6.79112717694806
+1970-06-24 00:00:00,10.0523299216587
+1970-06-24 01:00:00,15.2370776449364
+1970-06-24 02:00:00,12.9403613146741
+1970-06-24 03:00:00,10.1041855871204
+1970-06-24 04:00:00,22.9289539124565
+1970-06-24 05:00:00,17.6757957102676
+1970-06-24 06:00:00,14.0804238316469
+1970-06-24 07:00:00,15.3818862919424
+1970-06-24 08:00:00,16.338202067625
+1970-06-24 09:00:00,15.9528659009916
+1970-06-24 10:00:00,14.2277407277833
+1970-06-24 11:00:00,12.9104957427824
+1970-06-24 12:00:00,19.1304830162249
+1970-06-24 13:00:00,16.7078529032824
+1970-06-24 14:00:00,20.7583026299554
+1970-06-24 15:00:00,15.9406777210733
+1970-06-24 16:00:00,16.8068810437829
+1970-06-24 17:00:00,12.5243503663576
+1970-06-24 18:00:00,15.5495595358788
+1970-06-24 19:00:00,18.0623558848221
+1970-06-24 20:00:00,12.3622325396689
+1970-06-24 21:00:00,13.4501285100143
+1970-06-24 22:00:00,15.505274791458
+1970-06-24 23:00:00,11.7194251679032
+1970-06-25 00:00:00,18.5707595341338
+1970-06-25 01:00:00,16.6869072699747
+1970-06-25 02:00:00,20.2983482418885
+1970-06-25 03:00:00,16.1658436712402
+1970-06-25 04:00:00,9.04238288783433
+1970-06-25 05:00:00,12.4180745218939
+1970-06-25 06:00:00,5.62725465571673
+1970-06-25 07:00:00,12.8559382198334
+1970-06-25 08:00:00,13.2162484131516
+1970-06-25 09:00:00,10.4456461447587
+1970-06-25 10:00:00,15.4412265497926
+1970-06-25 11:00:00,20.3399922772696
+1970-06-25 12:00:00,9.50900334603761
+1970-06-25 13:00:00,9.00961519182776
+1970-06-25 14:00:00,11.4200986379657
+1970-06-25 15:00:00,10.0678495146461
+1970-06-25 16:00:00,8.06930569187808
+1970-06-25 17:00:00,16.0566830731246
+1970-06-25 18:00:00,12.421758912802
+1970-06-25 19:00:00,10.4761089832961
+1970-06-25 20:00:00,9.31087511512193
+1970-06-25 21:00:00,14.3227905354297
+1970-06-25 22:00:00,9.68761481258879
+1970-06-25 23:00:00,12.8176482040806
+1970-06-26 00:00:00,16.9967656375387
+1970-06-26 01:00:00,12.1549743875245
+1970-06-26 02:00:00,15.7729496699173
+1970-06-26 03:00:00,9.39591765542711
+1970-06-26 04:00:00,16.9378052063419
+1970-06-26 05:00:00,13.1311070506171
+1970-06-26 06:00:00,15.1396395672358
+1970-06-26 07:00:00,7.95760470956173
+1970-06-26 08:00:00,16.829095513721
+1970-06-26 09:00:00,8.63644442366501
+1970-06-26 10:00:00,12.3174360750067
+1970-06-26 11:00:00,10.1314238104609
+1970-06-26 12:00:00,18.1131311110185
+1970-06-26 13:00:00,15.7875458407245
+1970-06-26 14:00:00,10.7321456563513
+1970-06-26 15:00:00,11.920468845252
+1970-06-26 16:00:00,8.76560389069438
+1970-06-26 17:00:00,6.11546043716521
+1970-06-26 18:00:00,11.0685827017397
+1970-06-26 19:00:00,14.9668148991776
+1970-06-26 20:00:00,8.8148935208995
+1970-06-26 21:00:00,11.0217493354028
+1970-06-26 22:00:00,15.7597843227783
+1970-06-26 23:00:00,25.5315604549261
+1970-06-27 00:00:00,11.5420920914158
+1970-06-27 01:00:00,10.9645489950692
+1970-06-27 02:00:00,20.9848922690327
+1970-06-27 03:00:00,11.9667974318887
+1970-06-27 04:00:00,13.889488122465
+1970-06-27 05:00:00,11.4998469073867
+1970-06-27 06:00:00,13.8212837455009
+1970-06-27 07:00:00,12.165725098286
+1970-06-27 08:00:00,12.423380873303
+1970-06-27 09:00:00,11.0030686376744
+1970-06-27 10:00:00,13.1142947794456
+1970-06-27 11:00:00,12.4539105152837
+1970-06-27 12:00:00,12.0565768883649
+1970-06-27 13:00:00,16.5496420460056
+1970-06-27 14:00:00,12.7973152707904
+1970-06-27 15:00:00,14.2353573203339
+1970-06-27 16:00:00,4.69572929225864
+1970-06-27 17:00:00,11.3970002199076
+1970-06-27 18:00:00,19.3778628625097
+1970-06-27 19:00:00,15.3661478169332
+1970-06-27 20:00:00,11.6461362411224
+1970-06-27 21:00:00,16.1203538384953
+1970-06-27 22:00:00,19.3485837508439
+1970-06-27 23:00:00,19.5071174615714
+1970-06-28 00:00:00,15.1939677710687
+1970-06-28 01:00:00,10.5656977432196
+1970-06-28 02:00:00,13.3279627895225
+1970-06-28 03:00:00,11.1578185284192
+1970-06-28 04:00:00,13.8074789630486
+1970-06-28 05:00:00,14.9994679621687
+1970-06-28 06:00:00,12.627725691104
+1970-06-28 07:00:00,13.2931076596431
+1970-06-28 08:00:00,10.944442499139
+1970-06-28 09:00:00,8.75593239083346
+1970-06-28 10:00:00,14.9741449107007
+1970-06-28 11:00:00,20.7978433134329
+1970-06-28 12:00:00,18.0064659589365
+1970-06-28 13:00:00,10.3215381563883
+1970-06-28 14:00:00,10.9566892801006
+1970-06-28 15:00:00,23.1047560303849
+1970-06-28 16:00:00,17.7875472462578
+1970-06-28 17:00:00,19.6719023281741
+1970-06-28 18:00:00,13.4593627651572
+1970-06-28 19:00:00,13.5374818686467
+1970-06-28 20:00:00,18.6266733198413
+1970-06-28 21:00:00,13.6941945517876
+1970-06-28 22:00:00,29.3936460414635
+1970-06-28 23:00:00,15.3741766919291
+1970-06-29 00:00:00,14.9189423070502
+1970-06-29 01:00:00,10.7797141635419
+1970-06-29 02:00:00,14.6203886042774
+1970-06-29 03:00:00,11.8620874682516
+1970-06-29 04:00:00,19.5721800821552
+1970-06-29 05:00:00,12.5096665610943
+1970-06-29 06:00:00,14.0249937768222
+1970-06-29 07:00:00,19.8093965657314
+1970-06-29 08:00:00,16.1595597653674
+1970-06-29 09:00:00,16.2884408909022
+1970-06-29 10:00:00,9.08671240689567
+1970-06-29 11:00:00,16.7020385613798
+1970-06-29 12:00:00,13.5296759232529
+1970-06-29 13:00:00,11.295169333599
+1970-06-29 14:00:00,12.2961012112865
+1970-06-29 15:00:00,16.9633830772088
+1970-06-29 16:00:00,16.9542971372176
+1970-06-29 17:00:00,11.8648444593306
+1970-06-29 18:00:00,13.3171194865873
+1970-06-29 19:00:00,15.3683888150152
+1970-06-29 20:00:00,6.46683248192352
+1970-06-29 21:00:00,22.296604880189
+1970-06-29 22:00:00,11.4062967679869
+1970-06-29 23:00:00,14.3168041397655
+1970-06-30 00:00:00,8.43539491675521
+1970-06-30 01:00:00,16.5142363732034
+1970-06-30 02:00:00,26.9840519414238
+1970-06-30 03:00:00,13.2085318102535
+1970-06-30 04:00:00,19.0073933079776
+1970-06-30 05:00:00,9.82045495188808
+1970-06-30 06:00:00,8.59320300730194
+1970-06-30 07:00:00,16.864918447457
+1970-06-30 08:00:00,13.7576890866757
+1970-06-30 09:00:00,19.7586987745439
+1970-06-30 10:00:00,12.067425315217
+1970-06-30 11:00:00,8.29052122450433
+1970-06-30 12:00:00,18.2357987527304
+1970-06-30 13:00:00,18.7952724329207
+1970-06-30 14:00:00,18.6094093760118
+1970-06-30 15:00:00,15.8745299059283
+1970-06-30 16:00:00,19.9080950377338
+1970-06-30 17:00:00,16.067355315102
+1970-06-30 18:00:00,8.02037282704729
+1970-06-30 19:00:00,19.0897945447647
+1970-06-30 20:00:00,13.5164782367774
+1970-06-30 21:00:00,24.0579564473675
+1970-06-30 22:00:00,16.0004316742984
+1970-06-30 23:00:00,12.4853352140351
+1970-07-01 00:00:00,7.85725008211884
+1970-07-01 01:00:00,14.1374116812947
+1970-07-01 02:00:00,17.6184777893233
+1970-07-01 03:00:00,10.8118545915367
+1970-07-01 04:00:00,21.5413882965864
+1970-07-01 05:00:00,16.0165901422381
+1970-07-01 06:00:00,9.47246699216132
+1970-07-01 07:00:00,30.7887454837724
+1970-07-01 08:00:00,16.3368517909809
+1970-07-01 09:00:00,15.8035088847141
+1970-07-01 10:00:00,9.26716777688307
+1970-07-01 11:00:00,13.1545714124773
+1970-07-01 12:00:00,18.1700013321635
+1970-07-01 13:00:00,12.5762647220501
+1970-07-01 14:00:00,15.9206074924735
+1970-07-01 15:00:00,15.0101258724515
+1970-07-01 16:00:00,11.9856306873561
+1970-07-01 17:00:00,13.7341135701796
+1970-07-01 18:00:00,16.927645118228
+1970-07-01 19:00:00,20.051802194171
+1970-07-01 20:00:00,13.5082959581533
+1970-07-01 21:00:00,16.4134313244865
+1970-07-01 22:00:00,11.8649715119193
+1970-07-01 23:00:00,14.1481229263209
+1970-07-02 00:00:00,13.30814750855
+1970-07-02 01:00:00,14.7387518962456
+1970-07-02 02:00:00,16.5016425989864
+1970-07-02 03:00:00,13.691444471843
+1970-07-02 04:00:00,15.1029314558867
+1970-07-02 05:00:00,9.0737266362866
+1970-07-02 06:00:00,13.2859374411247
+1970-07-02 07:00:00,12.8107577064439
+1970-07-02 08:00:00,22.6633248404399
+1970-07-02 09:00:00,18.4659206627158
+1970-07-02 10:00:00,13.527682311078
+1970-07-02 11:00:00,10.7087843787398
+1970-07-02 12:00:00,8.61128725407316
+1970-07-02 13:00:00,9.36881849700131
+1970-07-02 14:00:00,18.3774947353933
+1970-07-02 15:00:00,6.83879890523278
+1970-07-02 16:00:00,15.5090043318974
+1970-07-02 17:00:00,8.05051332440478
+1970-07-02 18:00:00,14.2593338979419
+1970-07-02 19:00:00,19.9143391752017
+1970-07-02 20:00:00,14.5121971890926
+1970-07-02 21:00:00,7.60757267998026
+1970-07-02 22:00:00,12.589294372486
+1970-07-02 23:00:00,20.3255504021686
+1970-07-03 00:00:00,12.9433814600156
+1970-07-03 01:00:00,7.40858294508064
+1970-07-03 02:00:00,15.5834238843317
+1970-07-03 03:00:00,11.9391433102732
+1970-07-03 04:00:00,14.7639175675116
+1970-07-03 05:00:00,8.67283536001418
+1970-07-03 06:00:00,11.1116628524351
+1970-07-03 07:00:00,20.5231068463817
+1970-07-03 08:00:00,13.5773311761101
+1970-07-03 09:00:00,12.1802016330047
+1970-07-03 10:00:00,21.7562154670908
+1970-07-03 11:00:00,17.8928405948166
+1970-07-03 12:00:00,20.8237340960314
+1970-07-03 13:00:00,12.7337031812439
+1970-07-03 14:00:00,11.9410019903248
+1970-07-03 15:00:00,20.8331317110554
+1970-07-03 16:00:00,20.1258600090644
+1970-07-03 17:00:00,19.7587967572149
+1970-07-03 18:00:00,11.2769828621878
+1970-07-03 19:00:00,12.9063217022294
+1970-07-03 20:00:00,24.9659550175617
+1970-07-03 21:00:00,23.7219268345243
+1970-07-03 22:00:00,10.0033440138774
+1970-07-03 23:00:00,11.4828658808667
+1970-07-04 00:00:00,12.533420463857
+1970-07-04 01:00:00,12.4713162766418
+1970-07-04 02:00:00,11.3451773592802
+1970-07-04 03:00:00,14.4909967162033
+1970-07-04 04:00:00,20.7200924738217
+1970-07-04 05:00:00,15.6214270107921
+1970-07-04 06:00:00,17.7059464220319
+1970-07-04 07:00:00,17.0137782231384
+1970-07-04 08:00:00,10.5237370609707
+1970-07-04 09:00:00,8.86400865303192
+1970-07-04 10:00:00,13.4941892061529
+1970-07-04 11:00:00,7.10810551881394
+1970-07-04 12:00:00,18.5069076786273
+1970-07-04 13:00:00,28.1404469961053
+1970-07-04 14:00:00,13.358704631622
+1970-07-04 15:00:00,12.1337393152562
+1970-07-04 16:00:00,17.9898214417395
+1970-07-04 17:00:00,19.4209139698171
+1970-07-04 18:00:00,15.7149903670688
+1970-07-04 19:00:00,8.58452149093325
+1970-07-04 20:00:00,11.3886275236009
+1970-07-04 21:00:00,9.30207524299994
+1970-07-04 22:00:00,17.4056785503211
+1970-07-04 23:00:00,16.3271436381762
+1970-07-05 00:00:00,9.26548717390877
+1970-07-05 01:00:00,11.8688130488813
+1970-07-05 02:00:00,18.7070070277335
+1970-07-05 03:00:00,15.8125151333252
+1970-07-05 04:00:00,13.8155432732083
+1970-07-05 05:00:00,8.12134227592462
+1970-07-05 06:00:00,14.7471517163862
+1970-07-05 07:00:00,13.1771642345864
+1970-07-05 08:00:00,20.2343631925906
+1970-07-05 09:00:00,12.5341324682056
+1970-07-05 10:00:00,9.14474842478962
+1970-07-05 11:00:00,18.2799044380156
+1970-07-05 12:00:00,15.7114023421094
+1970-07-05 13:00:00,13.2853845775445
+1970-07-05 14:00:00,20.4525459039122
+1970-07-05 15:00:00,18.2839329564055
+1970-07-05 16:00:00,17.6370306251777
+1970-07-05 17:00:00,13.531588370046
+1970-07-05 18:00:00,11.2288540790712
+1970-07-05 19:00:00,12.1509810361777
+1970-07-05 20:00:00,13.6497728177261
+1970-07-05 21:00:00,14.8490789371194
+1970-07-05 22:00:00,9.57058052912385
+1970-07-05 23:00:00,15.2524074637462
+1970-07-06 00:00:00,22.0144858542085
+1970-07-06 01:00:00,16.8069526964954
+1970-07-06 02:00:00,13.9018570142883
+1970-07-06 03:00:00,16.631608912159
+1970-07-06 04:00:00,14.6258326050783
+1970-07-06 05:00:00,13.6230779336281
+1970-07-06 06:00:00,12.8929098221274
+1970-07-06 07:00:00,17.5084862874259
+1970-07-06 08:00:00,10.3087970745733
+1970-07-06 09:00:00,10.8380773205169
+1970-07-06 10:00:00,13.7324832784946
+1970-07-06 11:00:00,21.1516108837844
+1970-07-06 12:00:00,26.1297781260909
+1970-07-06 13:00:00,21.2156392372829
+1970-07-06 14:00:00,11.5879269108786
+1970-07-06 15:00:00,15.2975953240916
+1970-07-06 16:00:00,20.307860878789
+1970-07-06 17:00:00,12.880662541431
+1970-07-06 18:00:00,12.966432886886
+1970-07-06 19:00:00,15.3559147247288
+1970-07-06 20:00:00,16.0204275972811
+1970-07-06 21:00:00,17.9048211796432
+1970-07-06 22:00:00,10.2770482558635
+1970-07-06 23:00:00,14.4355515998303
+1970-07-07 00:00:00,21.9945054601384
+1970-07-07 01:00:00,4.42433148294538
+1970-07-07 02:00:00,22.2027531464093
+1970-07-07 03:00:00,13.8490264505315
+1970-07-07 04:00:00,10.0548491779433
+1970-07-07 05:00:00,15.7072512149659
+1970-07-07 06:00:00,11.7416095137744
+1970-07-07 07:00:00,20.6388070044553
+1970-07-07 08:00:00,10.9577213855997
+1970-07-07 09:00:00,15.0986823653991
+1970-07-07 10:00:00,12.0460286279926
+1970-07-07 11:00:00,8.77018180966782
+1970-07-07 12:00:00,14.8483034289782
+1970-07-07 13:00:00,12.539247533394
+1970-07-07 14:00:00,8.24120911107348
+1970-07-07 15:00:00,15.65420736889
+1970-07-07 16:00:00,22.7787991735667
+1970-07-07 17:00:00,15.4118767021287
+1970-07-07 18:00:00,10.7890256710983
+1970-07-07 19:00:00,7.71500793141593
+1970-07-07 20:00:00,18.5735517660733
+1970-07-07 21:00:00,13.9080114422843
+1970-07-07 22:00:00,19.9563368365143
+1970-07-07 23:00:00,13.5404218689472
+1970-07-08 00:00:00,12.685977516528
+1970-07-08 01:00:00,22.7636901742781
+1970-07-08 02:00:00,16.8920585045266
+1970-07-08 03:00:00,13.1036006462338
+1970-07-08 04:00:00,13.9119199500954
+1970-07-08 05:00:00,15.9342302509952
+1970-07-08 06:00:00,11.6278572837405
+1970-07-08 07:00:00,23.7183180389128
+1970-07-08 08:00:00,10.8953516172702
+1970-07-08 09:00:00,17.8205471704114
+1970-07-08 10:00:00,8.81399958687802
+1970-07-08 11:00:00,15.6893143744741
+1970-07-08 12:00:00,15.7177936833132
+1970-07-08 13:00:00,7.94054842633306
+1970-07-08 14:00:00,12.0706527156105
+1970-07-08 15:00:00,11.1334622931969
+1970-07-08 16:00:00,16.3741737755688
+1970-07-08 17:00:00,14.7605028925153
+1970-07-08 18:00:00,14.7544005967614
+1970-07-08 19:00:00,14.5524827949537
+1970-07-08 20:00:00,15.4486382052294
+1970-07-08 21:00:00,9.38724538979214
+1970-07-08 22:00:00,12.830392447422
+1970-07-08 23:00:00,20.1824876667801
+1970-07-09 00:00:00,13.530950972054
+1970-07-09 01:00:00,14.4692625141737
+1970-07-09 02:00:00,14.9613689049987
+1970-07-09 03:00:00,21.9289974956534
+1970-07-09 04:00:00,13.2041791836372
+1970-07-09 05:00:00,9.40117868936386
+1970-07-09 06:00:00,15.523173482648
+1970-07-09 07:00:00,14.1959297330003
+1970-07-09 08:00:00,5.30924315748632
+1970-07-09 09:00:00,15.876575487183
+1970-07-09 10:00:00,18.3337207474034
+1970-07-09 11:00:00,13.6643846270628
+1970-07-09 12:00:00,24.9223258437919
+1970-07-09 13:00:00,11.8056296133631
+1970-07-09 14:00:00,12.68451147635
+1970-07-09 15:00:00,24.5525407751797
+1970-07-09 16:00:00,24.7837962287389
+1970-07-09 17:00:00,15.4187264890925
+1970-07-09 18:00:00,14.4574615938844
+1970-07-09 19:00:00,11.7580133787437
+1970-07-09 20:00:00,15.0444346096917
+1970-07-09 21:00:00,11.9116101430033
+1970-07-09 22:00:00,9.05708198127162
+1970-07-09 23:00:00,19.0420533175365
+1970-07-10 00:00:00,9.00498654982961
+1970-07-10 01:00:00,12.8813976762355
+1970-07-10 02:00:00,13.5894398117223
+1970-07-10 03:00:00,11.310901300737
+1970-07-10 04:00:00,13.2638250614142
+1970-07-10 05:00:00,9.26759680778784
+1970-07-10 06:00:00,9.86459639398428
+1970-07-10 07:00:00,14.4623788307401
+1970-07-10 08:00:00,27.8250170912911
+1970-07-10 09:00:00,12.9290250743622
+1970-07-10 10:00:00,15.6883030704196
+1970-07-10 11:00:00,13.4489113340967
+1970-07-10 12:00:00,10.5062199367131
+1970-07-10 13:00:00,14.5440413051601
+1970-07-10 14:00:00,22.9724142555917
+1970-07-10 15:00:00,7.24678876716736
+1970-07-10 16:00:00,10.1678087335968
+1970-07-10 17:00:00,22.8625768302879
+1970-07-10 18:00:00,7.84284900044263
+1970-07-10 19:00:00,10.7744360640504
+1970-07-10 20:00:00,9.90335207549812
+1970-07-10 21:00:00,17.1921757446375
+1970-07-10 22:00:00,13.5754754989808
+1970-07-10 23:00:00,22.4596517121087
+1970-07-11 00:00:00,12.9186832270497
+1970-07-11 01:00:00,22.1668546683313
+1970-07-11 02:00:00,24.9421727025303
+1970-07-11 03:00:00,16.5679693580026
+1970-07-11 04:00:00,11.5236868288091
+1970-07-11 05:00:00,22.7437105910315
+1970-07-11 06:00:00,11.3264650278185
+1970-07-11 07:00:00,5.66600396833089
+1970-07-11 08:00:00,14.9823433056617
+1970-07-11 09:00:00,13.6328751189887
+1970-07-11 10:00:00,10.2908415827134
+1970-07-11 11:00:00,9.3310052492974
+1970-07-11 12:00:00,15.6494894122038
+1970-07-11 13:00:00,21.5272171911271
+1970-07-11 14:00:00,15.5455321858981
+1970-07-11 15:00:00,15.6412056216055
+1970-07-11 16:00:00,14.8233284580444
+1970-07-11 17:00:00,18.1088046879584
+1970-07-11 18:00:00,12.769192975083
+1970-07-11 19:00:00,23.9162168263302
+1970-07-11 20:00:00,6.34969751912691
+1970-07-11 21:00:00,10.5240073215051
+1970-07-11 22:00:00,20.510413726074
+1970-07-11 23:00:00,16.5154385057014
+1970-07-12 00:00:00,13.7916218649039
+1970-07-12 01:00:00,16.2375518755021
+1970-07-12 02:00:00,13.2095181595489
+1970-07-12 03:00:00,26.2157643163208
+1970-07-12 04:00:00,28.2167711941205
+1970-07-12 05:00:00,10.8615164612429
+1970-07-12 06:00:00,13.0455516106693
+1970-07-12 07:00:00,12.311601203171
+1970-07-12 08:00:00,10.7209822770036
+1970-07-12 09:00:00,15.8086942116158
+1970-07-12 10:00:00,19.7177530545156
+1970-07-12 11:00:00,11.8850740354171
+1970-07-12 12:00:00,17.4038675865104
+1970-07-12 13:00:00,12.1276840205225
+1970-07-12 14:00:00,7.37240663818078
+1970-07-12 15:00:00,11.8511319627925
+1970-07-12 16:00:00,7.75521341357406
+1970-07-12 17:00:00,16.8611422872933
+1970-07-12 18:00:00,9.10580003845588
+1970-07-12 19:00:00,18.6137035099026
+1970-07-12 20:00:00,12.6882641890369
+1970-07-12 21:00:00,14.4985801130413
+1970-07-12 22:00:00,13.755456411392
+1970-07-12 23:00:00,9.69524162749824
+1970-07-13 00:00:00,20.5506308636957
+1970-07-13 01:00:00,13.1448538189984
+1970-07-13 02:00:00,14.3030031844649
+1970-07-13 03:00:00,13.2414184592292
+1970-07-13 04:00:00,16.0499341823836
+1970-07-13 05:00:00,15.9196133182912
+1970-07-13 06:00:00,16.7477928983067
+1970-07-13 07:00:00,7.28639106481727
+1970-07-13 08:00:00,13.391060428632
+1970-07-13 09:00:00,16.4450090366198
+1970-07-13 10:00:00,17.6618562666552
+1970-07-13 11:00:00,10.5998577883419
+1970-07-13 12:00:00,13.9327890175945
+1970-07-13 13:00:00,13.080183259974
+1970-07-13 14:00:00,10.368081726247
+1970-07-13 15:00:00,4.82047989306056
+1970-07-13 16:00:00,15.5196490277591
+1970-07-13 17:00:00,9.12398622975682
+1970-07-13 18:00:00,12.9237913591012
+1970-07-13 19:00:00,13.065415712462
+1970-07-13 20:00:00,14.5712890121063
+1970-07-13 21:00:00,14.2225376382623
+1970-07-13 22:00:00,16.3725787970823
+1970-07-13 23:00:00,16.4408151172089
+1970-07-14 00:00:00,18.0129455585867
+1970-07-14 01:00:00,13.6657561019258
+1970-07-14 02:00:00,12.415188612431
+1970-07-14 03:00:00,15.6797557658084
+1970-07-14 04:00:00,16.9816925506051
+1970-07-14 05:00:00,18.0580892581431
+1970-07-14 06:00:00,14.677234227958
+1970-07-14 07:00:00,18.0002772383366
+1970-07-14 08:00:00,19.5102941248137
+1970-07-14 09:00:00,12.2294090249848
+1970-07-14 10:00:00,16.1940615687851
+1970-07-14 11:00:00,15.272884276655
+1970-07-14 12:00:00,16.7371690256504
+1970-07-14 13:00:00,17.42746553311
+1970-07-14 14:00:00,8.28490388391073
+1970-07-14 15:00:00,13.8802657206142
+1970-07-14 16:00:00,11.3912594675933
+1970-07-14 17:00:00,15.9607755725329
+1970-07-14 18:00:00,29.7462958804973
+1970-07-14 19:00:00,30.2171588194362
+1970-07-14 20:00:00,12.8006203768957
+1970-07-14 21:00:00,14.4706821668756
+1970-07-14 22:00:00,11.479032334403
+1970-07-14 23:00:00,13.1244810283618
+1970-07-15 00:00:00,11.554051979908
+1970-07-15 01:00:00,11.748398511861
+1970-07-15 02:00:00,9.07994268754971
+1970-07-15 03:00:00,12.7897192810032
+1970-07-15 04:00:00,23.1947971639104
+1970-07-15 05:00:00,13.1710137764028
+1970-07-15 06:00:00,14.834670653069
+1970-07-15 07:00:00,11.116006584729
+1970-07-15 08:00:00,18.4511640936614
+1970-07-15 09:00:00,10.8162052662763
+1970-07-15 10:00:00,19.1906357393861
+1970-07-15 11:00:00,25.3362137412444
+1970-07-15 12:00:00,13.9660623140229
+1970-07-15 13:00:00,13.1642755142032
+1970-07-15 14:00:00,14.4717515296854
+1970-07-15 15:00:00,13.6934272664
+1970-07-15 16:00:00,6.83429191867597
+1970-07-15 17:00:00,12.3386611175583
+1970-07-15 18:00:00,9.79107997640607
+1970-07-15 19:00:00,13.7803745573179
+1970-07-15 20:00:00,9.29310433888849
+1970-07-15 21:00:00,29.8641498285946
+1970-07-15 22:00:00,35.0466523608817
+1970-07-15 23:00:00,18.0485757578624
+1970-07-16 00:00:00,13.9427061661963
+1970-07-16 01:00:00,15.0544832859033
+1970-07-16 02:00:00,17.3658000532847
+1970-07-16 03:00:00,11.2476320129288
+1970-07-16 04:00:00,15.5931671373687
+1970-07-16 05:00:00,10.5364003238113
+1970-07-16 06:00:00,5.47612140860807
+1970-07-16 07:00:00,9.1162902632548
+1970-07-16 08:00:00,8.82814189482981
+1970-07-16 09:00:00,19.2482158088169
+1970-07-16 10:00:00,19.4533589947238
+1970-07-16 11:00:00,11.2860779381867
+1970-07-16 12:00:00,10.1964131905451
+1970-07-16 13:00:00,10.2129794160776
+1970-07-16 14:00:00,11.7841752597461
+1970-07-16 15:00:00,19.6378768867941
+1970-07-16 16:00:00,8.64475643994147
+1970-07-16 17:00:00,8.09523299262382
+1970-07-16 18:00:00,18.0159573781428
+1970-07-16 19:00:00,34.5570483751781
+1970-07-16 20:00:00,14.4432239628755
+1970-07-16 21:00:00,15.9478342401246
+1970-07-16 22:00:00,10.3734860868477
+1970-07-16 23:00:00,17.1242345611572
+1970-07-17 00:00:00,12.1716797682789
+1970-07-17 01:00:00,9.36225279739153
+1970-07-17 02:00:00,21.6605651636193
+1970-07-17 03:00:00,16.0167029954372
+1970-07-17 04:00:00,20.155469969675
+1970-07-17 05:00:00,9.91939073181276
+1970-07-17 06:00:00,9.51063849574292
+1970-07-17 07:00:00,14.5409403384164
+1970-07-17 08:00:00,12.7913165603315
+1970-07-17 09:00:00,13.5097385472117
+1970-07-17 10:00:00,7.7669257849015
+1970-07-17 11:00:00,9.32920108521911
+1970-07-17 12:00:00,21.9550790682056
+1970-07-17 13:00:00,20.6326786863941
+1970-07-17 14:00:00,11.1052667066076
+1970-07-17 15:00:00,10.3796016587551
+1970-07-17 16:00:00,14.8078587366818
+1970-07-17 17:00:00,14.4013174092004
+1970-07-17 18:00:00,12.130964980122
+1970-07-17 19:00:00,14.7909524794683
+1970-07-17 20:00:00,16.048784612834
+1970-07-17 21:00:00,8.69968301485353
+1970-07-17 22:00:00,9.37826957074362
+1970-07-17 23:00:00,12.0468357263979
+1970-07-18 00:00:00,11.6131195209186
+1970-07-18 01:00:00,16.685365803843
+1970-07-18 02:00:00,11.8531219031566
+1970-07-18 03:00:00,17.4543995270622
+1970-07-18 04:00:00,11.583641441476
+1970-07-18 05:00:00,19.2775774567109
+1970-07-18 06:00:00,10.8667038009983
+1970-07-18 07:00:00,11.3559524518295
+1970-07-18 08:00:00,12.8707683484958
+1970-07-18 09:00:00,18.1031842700498
+1970-07-18 10:00:00,7.07813433627334
+1970-07-18 11:00:00,18.7576133235664
+1970-07-18 12:00:00,10.3698426002238
+1970-07-18 13:00:00,11.0016442509611
+1970-07-18 14:00:00,17.883032021113
+1970-07-18 15:00:00,13.867304665087
+1970-07-18 16:00:00,16.6863459928642
+1970-07-18 17:00:00,18.0027023632621
+1970-07-18 18:00:00,15.2091473807935
+1970-07-18 19:00:00,23.2525041629523
+1970-07-18 20:00:00,7.49021853690837
+1970-07-18 21:00:00,15.7331136528341
+1970-07-18 22:00:00,12.9443447213062
+1970-07-18 23:00:00,10.1348187703625
+1970-07-19 00:00:00,17.0224442788415
+1970-07-19 01:00:00,16.4844953493881
+1970-07-19 02:00:00,13.7784537186958
+1970-07-19 03:00:00,18.4877793937279
+1970-07-19 04:00:00,21.9611294648039
+1970-07-19 05:00:00,18.045923915974
+1970-07-19 06:00:00,9.70910139510513
+1970-07-19 07:00:00,11.9012617706923
+1970-07-19 08:00:00,11.4027993192674
+1970-07-19 09:00:00,8.29837804906739
+1970-07-19 10:00:00,13.8244239411955
+1970-07-19 11:00:00,8.44988052332827
+1970-07-19 12:00:00,23.2545802181303
+1970-07-19 13:00:00,10.4431054787318
+1970-07-19 14:00:00,6.7161410050193
+1970-07-19 15:00:00,16.4360753969677
+1970-07-19 16:00:00,19.8887456346875
+1970-07-19 17:00:00,20.9623404109487
+1970-07-19 18:00:00,4.22992157034275
+1970-07-19 19:00:00,12.0332025663848
+1970-07-19 20:00:00,8.18976955884952
+1970-07-19 21:00:00,9.98803075942195
+1970-07-19 22:00:00,16.4740268078414
+1970-07-19 23:00:00,12.9439736436912
+1970-07-20 00:00:00,13.2253960226171
+1970-07-20 01:00:00,10.5841856014844
+1970-07-20 02:00:00,16.4837838261525
+1970-07-20 03:00:00,14.4763597179189
+1970-07-20 04:00:00,15.8284877050979
+1970-07-20 05:00:00,9.33538473262397
+1970-07-20 06:00:00,10.4453931137895
+1970-07-20 07:00:00,13.9279640170282
+1970-07-20 08:00:00,18.3854088001299
+1970-07-20 09:00:00,12.4692364215133
+1970-07-20 10:00:00,5.66722398078689
+1970-07-20 11:00:00,7.35240719237414
+1970-07-20 12:00:00,12.7711546779114
+1970-07-20 13:00:00,18.6849733434288
+1970-07-20 14:00:00,10.0483108707349
+1970-07-20 15:00:00,21.5485552606595
+1970-07-20 16:00:00,15.0630164641854
+1970-07-20 17:00:00,12.2754861203705
+1970-07-20 18:00:00,20.6485108823173
+1970-07-20 19:00:00,15.434685698531
+1970-07-20 20:00:00,9.69470694514794
+1970-07-20 21:00:00,9.41618234618851
+1970-07-20 22:00:00,11.456907925729
+1970-07-20 23:00:00,16.9852093545757
+1970-07-21 00:00:00,31.3858001002941
+1970-07-21 01:00:00,8.29166825069231
+1970-07-21 02:00:00,19.239568935676
+1970-07-21 03:00:00,22.8791923033356
+1970-07-21 04:00:00,14.4474406329345
+1970-07-21 05:00:00,8.68546519071358
+1970-07-21 06:00:00,8.99246664421231
+1970-07-21 07:00:00,15.7183412349052
+1970-07-21 08:00:00,13.6939552063316
+1970-07-21 09:00:00,16.2462523889099
+1970-07-21 10:00:00,22.99328739382
+1970-07-21 11:00:00,21.5163078696732
+1970-07-21 12:00:00,12.0503043034162
+1970-07-21 13:00:00,23.7399637579184
+1970-07-21 14:00:00,14.957172237224
+1970-07-21 15:00:00,10.1686871658963
+1970-07-21 16:00:00,7.67088049880376
+1970-07-21 17:00:00,16.6810878570067
+1970-07-21 18:00:00,17.1567332206995
+1970-07-21 19:00:00,16.3471240836119
+1970-07-21 20:00:00,8.38108765365838
+1970-07-21 21:00:00,13.9037228726094
+1970-07-21 22:00:00,16.7089095481731
+1970-07-21 23:00:00,10.6919737517179
+1970-07-22 00:00:00,19.840673893927
+1970-07-22 01:00:00,13.9628580478773
+1970-07-22 02:00:00,14.0993915976613
+1970-07-22 03:00:00,23.9836341003773
+1970-07-22 04:00:00,13.1205452226117
+1970-07-22 05:00:00,22.14364142481
+1970-07-22 06:00:00,10.8523844385023
+1970-07-22 07:00:00,11.1198697596566
+1970-07-22 08:00:00,9.62925736889704
+1970-07-22 09:00:00,13.9895877640668
+1970-07-22 10:00:00,18.7912989793501
+1970-07-22 11:00:00,10.2980625531415
+1970-07-22 12:00:00,10.9372480234515
+1970-07-22 13:00:00,12.6615395351391
+1970-07-22 14:00:00,12.821553293074
+1970-07-22 15:00:00,16.9283551549929
+1970-07-22 16:00:00,9.85229371009575
+1970-07-22 17:00:00,18.4759964903726
+1970-07-22 18:00:00,12.422126464048
+1970-07-22 19:00:00,18.5535593481577
+1970-07-22 20:00:00,13.5196943157745
+1970-07-22 21:00:00,15.7098447418213
+1970-07-22 22:00:00,19.6693889431276
+1970-07-22 23:00:00,15.6132111699635
+1970-07-23 00:00:00,11.2231609617548
+1970-07-23 01:00:00,17.0880339135685
+1970-07-23 02:00:00,15.7387652963226
+1970-07-23 03:00:00,15.788371656136
+1970-07-23 04:00:00,7.6085522817143
+1970-07-23 05:00:00,8.50200847284757
+1970-07-23 06:00:00,10.5439198969968
+1970-07-23 07:00:00,19.9503065008503
+1970-07-23 08:00:00,9.43965948468801
+1970-07-23 09:00:00,8.80425826432471
+1970-07-23 10:00:00,18.4408617721969
+1970-07-23 11:00:00,12.9818341848873
+1970-07-23 12:00:00,11.5310754630529
+1970-07-23 13:00:00,9.75947857868226
+1970-07-23 14:00:00,11.7036668135106
+1970-07-23 15:00:00,16.9943685767487
+1970-07-23 16:00:00,20.0690943107367
+1970-07-23 17:00:00,14.8620906397856
+1970-07-23 18:00:00,22.2793678439062
+1970-07-23 19:00:00,8.40504381094906
+1970-07-23 20:00:00,21.5000968440066
+1970-07-23 21:00:00,15.1342886721722
+1970-07-23 22:00:00,22.8191812464757
+1970-07-23 23:00:00,13.0655387753816
+1970-07-24 00:00:00,14.1223930979046
+1970-07-24 01:00:00,11.7800429002129
+1970-07-24 02:00:00,9.08128480889295
+1970-07-24 03:00:00,10.1167070128638
+1970-07-24 04:00:00,20.329019012471
+1970-07-24 05:00:00,15.1930427810075
+1970-07-24 06:00:00,9.10269393864845
+1970-07-24 07:00:00,10.7103195132254
+1970-07-24 08:00:00,17.3082961186315
+1970-07-24 09:00:00,14.8204564072532
+1970-07-24 10:00:00,7.84502402033488
+1970-07-24 11:00:00,20.8640975937
+1970-07-24 12:00:00,14.907633358927
+1970-07-24 13:00:00,16.0651602175796
+1970-07-24 14:00:00,9.30318995628508
+1970-07-24 15:00:00,14.3808242100136
+1970-07-24 16:00:00,9.22140056122302
+1970-07-24 17:00:00,10.0189032254472
+1970-07-24 18:00:00,8.25007661451255
+1970-07-24 19:00:00,14.2465928918796
+1970-07-24 20:00:00,14.4911435370254
+1970-07-24 21:00:00,20.404479862318
+1970-07-24 22:00:00,7.71119309874144
+1970-07-24 23:00:00,17.3627436437038
+1970-07-25 00:00:00,14.7212617801767
+1970-07-25 01:00:00,17.6429980835829
+1970-07-25 02:00:00,21.0750936223952
+1970-07-25 03:00:00,19.0606360881732
+1970-07-25 04:00:00,8.66039278214798
+1970-07-25 05:00:00,15.3447160294121
+1970-07-25 06:00:00,8.61595517616573
+1970-07-25 07:00:00,21.4477739138984
+1970-07-25 08:00:00,8.72809766182257
+1970-07-25 09:00:00,14.9700622466719
+1970-07-25 10:00:00,9.66870488613965
+1970-07-25 11:00:00,13.7097010911065
+1970-07-25 12:00:00,17.8451306884791
+1970-07-25 13:00:00,20.4018750071704
+1970-07-25 14:00:00,18.3253497694471
+1970-07-25 15:00:00,15.4049189184215
+1970-07-25 16:00:00,14.8220477998209
+1970-07-25 17:00:00,21.6318841220076
+1970-07-25 18:00:00,4.3297989812486
+1970-07-25 19:00:00,10.4933116915188
+1970-07-25 20:00:00,7.96400004146784
+1970-07-25 21:00:00,13.7364379366101
+1970-07-25 22:00:00,15.9763998637676
+1970-07-25 23:00:00,15.6949020470991
+1970-07-26 00:00:00,20.1762643723663
+1970-07-26 01:00:00,11.9622181748085
+1970-07-26 02:00:00,10.5222958574286
+1970-07-26 03:00:00,24.3966816389168
+1970-07-26 04:00:00,12.5384700947127
+1970-07-26 05:00:00,10.7145752682084
+1970-07-26 06:00:00,13.0810325536312
+1970-07-26 07:00:00,13.0452973764512
+1970-07-26 08:00:00,18.034555032238
+1970-07-26 09:00:00,18.1157417004382
+1970-07-26 10:00:00,14.3478982039115
+1970-07-26 11:00:00,12.9439537710124
+1970-07-26 12:00:00,13.4183798971948
+1970-07-26 13:00:00,18.4586468117573
+1970-07-26 14:00:00,17.8285211027836
+1970-07-26 15:00:00,15.3913890733839
+1970-07-26 16:00:00,19.7155247888298
+1970-07-26 17:00:00,10.55803394529
+1970-07-26 18:00:00,20.20782286907
+1970-07-26 19:00:00,8.97975511084091
+1970-07-26 20:00:00,21.1447965857467
+1970-07-26 21:00:00,9.80956075462517
+1970-07-26 22:00:00,6.49205152218709
+1970-07-26 23:00:00,18.4662686264804
+1970-07-27 00:00:00,12.118407399802
+1970-07-27 01:00:00,16.5326306429628
+1970-07-27 02:00:00,17.1197527997287
+1970-07-27 03:00:00,4.37708459314388
+1970-07-27 04:00:00,20.5999613754409
+1970-07-27 05:00:00,14.629027015091
+1970-07-27 06:00:00,20.3315252942896
+1970-07-27 07:00:00,14.6550139570379
+1970-07-27 08:00:00,16.2629046409604
+1970-07-27 09:00:00,13.7110652158135
+1970-07-27 10:00:00,11.1397758805838
+1970-07-27 11:00:00,6.2247506062813
+1970-07-27 12:00:00,16.7554687586027
+1970-07-27 13:00:00,21.8203460522378
+1970-07-27 14:00:00,7.48034727092368
+1970-07-27 15:00:00,15.3196684235703
+1970-07-27 16:00:00,20.5530089600134
+1970-07-27 17:00:00,11.8179838950452
+1970-07-27 18:00:00,11.5541397718254
+1970-07-27 19:00:00,20.0991924985594
+1970-07-27 20:00:00,17.1929496833176
+1970-07-27 21:00:00,13.8947326124023
+1970-07-27 22:00:00,14.6501394846124
+1970-07-27 23:00:00,17.7116176312883
+1970-07-28 00:00:00,12.8407265791124
+1970-07-28 01:00:00,14.2113626395649
+1970-07-28 02:00:00,12.1242211281684
+1970-07-28 03:00:00,13.6534773273726
+1970-07-28 04:00:00,7.09712765941965
+1970-07-28 05:00:00,18.263481074619
+1970-07-28 06:00:00,11.5862577942048
+1970-07-28 07:00:00,18.4510888534077
+1970-07-28 08:00:00,19.3990492297898
+1970-07-28 09:00:00,9.87261316016988
+1970-07-28 10:00:00,11.2591245257217
+1970-07-28 11:00:00,15.9298706776236
+1970-07-28 12:00:00,12.4975589945329
+1970-07-28 13:00:00,26.8339372128395
+1970-07-28 14:00:00,15.0354806990589
+1970-07-28 15:00:00,14.5714035446444
+1970-07-28 16:00:00,19.6365304839845
+1970-07-28 17:00:00,23.5687140521968
+1970-07-28 18:00:00,12.1399023692242
+1970-07-28 19:00:00,8.49959724957493
+1970-07-28 20:00:00,16.0625801835542
+1970-07-28 21:00:00,17.6169973364147
+1970-07-28 22:00:00,7.59435681366127
+1970-07-28 23:00:00,8.99960038147141
+1970-07-29 00:00:00,10.1102014996475
+1970-07-29 01:00:00,16.9868524230515
+1970-07-29 02:00:00,10.5008180904388
+1970-07-29 03:00:00,10.3727724099043
+1970-07-29 04:00:00,12.4724813487569
+1970-07-29 05:00:00,9.06432375395792
+1970-07-29 06:00:00,24.5193546854487
+1970-07-29 07:00:00,14.105356262776
+1970-07-29 08:00:00,10.7971645743228
+1970-07-29 09:00:00,11.3231645685821
+1970-07-29 10:00:00,15.6341931492408
+1970-07-29 11:00:00,14.9052416670445
+1970-07-29 12:00:00,31.083932838607
+1970-07-29 13:00:00,14.1454063720854
+1970-07-29 14:00:00,18.2081976925794
+1970-07-29 15:00:00,14.135075365568
+1970-07-29 16:00:00,21.9284276468632
+1970-07-29 17:00:00,13.7728177665306
+1970-07-29 18:00:00,12.5023434520141
+1970-07-29 19:00:00,15.6831330950939
+1970-07-29 20:00:00,16.324832425296
+1970-07-29 21:00:00,9.51351130247511
+1970-07-29 22:00:00,10.1419145195428
+1970-07-29 23:00:00,15.3162413999437
+1970-07-30 00:00:00,11.1509457108868
+1970-07-30 01:00:00,16.9745928656602
+1970-07-30 02:00:00,12.7026412136337
+1970-07-30 03:00:00,5.02320913759194
+1970-07-30 04:00:00,11.3221272866048
+1970-07-30 05:00:00,11.9009711327813
+1970-07-30 06:00:00,10.3619266736815
+1970-07-30 07:00:00,10.6560257063226
+1970-07-30 08:00:00,10.0481565198241
+1970-07-30 09:00:00,6.8700808288763
+1970-07-30 10:00:00,24.4308484411017
+1970-07-30 11:00:00,15.4093439827257
+1970-07-30 12:00:00,14.171814959121
+1970-07-30 13:00:00,10.2980037856891
+1970-07-30 14:00:00,15.0948982847109
+1970-07-30 15:00:00,19.5435255817841
+1970-07-30 16:00:00,7.8080474324538
+1970-07-30 17:00:00,16.771414684393
+1970-07-30 18:00:00,15.5287036395604
+1970-07-30 19:00:00,7.62990891998122
+1970-07-30 20:00:00,18.3052974792339
+1970-07-30 21:00:00,15.1933662137499
+1970-07-30 22:00:00,20.2801037385971
+1970-07-30 23:00:00,16.0702920741713
+1970-07-31 00:00:00,14.8050365981427
+1970-07-31 01:00:00,16.7381737031488
+1970-07-31 02:00:00,16.2428874877115
+1970-07-31 03:00:00,17.6677809547774
+1970-07-31 04:00:00,16.9805697669453
+1970-07-31 05:00:00,14.9656909115226
+1970-07-31 06:00:00,9.29322427240385
+1970-07-31 07:00:00,14.3402266261754
+1970-07-31 08:00:00,12.3803639312435
+1970-07-31 09:00:00,6.49111520828183
+1970-07-31 10:00:00,16.0964333748543
+1970-07-31 11:00:00,22.3816819264485
+1970-07-31 12:00:00,18.3212900446289
+1970-07-31 13:00:00,21.146336288564
+1970-07-31 14:00:00,13.7680506395175
+1970-07-31 15:00:00,11.1611928834345
+1970-07-31 16:00:00,11.8493097980633
+1970-07-31 17:00:00,11.0260901854422
+1970-07-31 18:00:00,17.3114248164245
+1970-07-31 19:00:00,9.00641980047224
+1970-07-31 20:00:00,11.9126834694886
+1970-07-31 21:00:00,13.7747817853939
+1970-07-31 22:00:00,12.4646930658316
+1970-07-31 23:00:00,13.9172600771139
+1970-08-01 00:00:00,10.9340021206852
+1970-08-01 01:00:00,11.5227958761197
+1970-08-01 02:00:00,9.82126213645521
+1970-08-01 03:00:00,18.730993414366
+1970-08-01 04:00:00,11.2609997268868
+1970-08-01 05:00:00,12.3620873831688
+1970-08-01 06:00:00,13.9536740600664
+1970-08-01 07:00:00,17.8007717013486
+1970-08-01 08:00:00,4.60372496666916
+1970-08-01 09:00:00,11.1062750943901
+1970-08-01 10:00:00,11.4693539215842
+1970-08-01 11:00:00,9.89138673031615
+1970-08-01 12:00:00,6.84742778299992
+1970-08-01 13:00:00,14.0721183842071
+1970-08-01 14:00:00,23.0099578813581
+1970-08-01 15:00:00,13.7431282049509
+1970-08-01 16:00:00,24.6513431519362
+1970-08-01 17:00:00,12.6288552282065
+1970-08-01 18:00:00,8.10940068558262
+1970-08-01 19:00:00,14.1817630243001
+1970-08-01 20:00:00,12.9586722385155
+1970-08-01 21:00:00,14.72085943603
+1970-08-01 22:00:00,17.8644544653746
+1970-08-01 23:00:00,16.343526511755
+1970-08-02 00:00:00,15.6077034427708
+1970-08-02 01:00:00,4.97071384455303
+1970-08-02 02:00:00,15.5302362849988
+1970-08-02 03:00:00,13.2964392682085
+1970-08-02 04:00:00,11.8439240812067
+1970-08-02 05:00:00,17.1678504757712
+1970-08-02 06:00:00,14.3600137555135
+1970-08-02 07:00:00,14.2058531153588
+1970-08-02 08:00:00,12.8763163041593
+1970-08-02 09:00:00,12.9353296136005
+1970-08-02 10:00:00,13.1782498606655
+1970-08-02 11:00:00,17.6146771906038
+1970-08-02 12:00:00,16.4173632951033
+1970-08-02 13:00:00,7.40962264729166
+1970-08-02 14:00:00,14.806767580471
+1970-08-02 15:00:00,10.4226243240157
+1970-08-02 16:00:00,12.6378114283246
+1970-08-02 17:00:00,16.1316682059953
+1970-08-02 18:00:00,13.9643529449963
+1970-08-02 19:00:00,14.5393417398519
+1970-08-02 20:00:00,18.7570128856299
+1970-08-02 21:00:00,10.2652954648784
+1970-08-02 22:00:00,10.1177045305268
+1970-08-02 23:00:00,19.1206184068304
+1970-08-03 00:00:00,15.2279349918335
+1970-08-03 01:00:00,13.0081693293502
+1970-08-03 02:00:00,17.543047256854
+1970-08-03 03:00:00,14.8473122082305
+1970-08-03 04:00:00,16.5903330922573
+1970-08-03 05:00:00,18.1199382392256
+1970-08-03 06:00:00,10.9541374687473
+1970-08-03 07:00:00,14.3818458613087
+1970-08-03 08:00:00,18.4628329824614
+1970-08-03 09:00:00,9.9543484372951
+1970-08-03 10:00:00,13.1668567223115
+1970-08-03 11:00:00,16.0385111544685
+1970-08-03 12:00:00,13.1212032813237
+1970-08-03 13:00:00,11.0202931867398
+1970-08-03 14:00:00,11.1040549085417
+1970-08-03 15:00:00,17.7751055662249
+1970-08-03 16:00:00,11.7552721168073
+1970-08-03 17:00:00,9.34403988203898
+1970-08-03 18:00:00,15.1446254854206
+1970-08-03 19:00:00,18.7330713962409
+1970-08-03 20:00:00,9.86043084806208
+1970-08-03 21:00:00,20.9910096534943
+1970-08-03 22:00:00,11.2347730964168
+1970-08-03 23:00:00,11.9401322150765
+1970-08-04 00:00:00,12.0479973777642
+1970-08-04 01:00:00,9.79457343967186
+1970-08-04 02:00:00,19.7912527750879
+1970-08-04 03:00:00,10.1055095163326
+1970-08-04 04:00:00,16.679695916925
+1970-08-04 05:00:00,10.0179982518236
+1970-08-04 06:00:00,9.54565295976696
+1970-08-04 07:00:00,16.9215276609923
+1970-08-04 08:00:00,14.7596054087995
+1970-08-04 09:00:00,12.2590657295213
+1970-08-04 10:00:00,12.4084166294929
+1970-08-04 11:00:00,18.2346258047924
+1970-08-04 12:00:00,16.2227122608573
+1970-08-04 13:00:00,16.475328522565
+1970-08-04 14:00:00,18.3051537657589
+1970-08-04 15:00:00,16.9719689663036
+1970-08-04 16:00:00,12.263476227409
+1970-08-04 17:00:00,14.9967942704937
+1970-08-04 18:00:00,14.2138806574936
+1970-08-04 19:00:00,10.1775995008174
+1970-08-04 20:00:00,17.120718558137
+1970-08-04 21:00:00,5.07167275318441
+1970-08-04 22:00:00,12.5232896513156
+1970-08-04 23:00:00,22.8463662877829
+1970-08-05 00:00:00,20.7652640570687
+1970-08-05 01:00:00,17.0575294748329
+1970-08-05 02:00:00,14.1455254440811
+1970-08-05 03:00:00,19.1844031992407
+1970-08-05 04:00:00,10.1855967652916
+1970-08-05 05:00:00,17.3961999938943
+1970-08-05 06:00:00,10.2070313891002
+1970-08-05 07:00:00,14.2649401888523
+1970-08-05 08:00:00,10.9042845462573
+1970-08-05 09:00:00,18.4670689545703
+1970-08-05 10:00:00,14.1540436366053
+1970-08-05 11:00:00,9.98168664794476
+1970-08-05 12:00:00,10.3342216238967
+1970-08-05 13:00:00,22.8395809401221
+1970-08-05 14:00:00,17.6964264993891
+1970-08-05 15:00:00,8.44374695021117
+1970-08-05 16:00:00,20.7247424615283
+1970-08-05 17:00:00,13.6301629796837
+1970-08-05 18:00:00,15.1181616648121
+1970-08-05 19:00:00,9.65349742862323
+1970-08-05 20:00:00,13.628295609953
+1970-08-05 21:00:00,14.1481174839003
+1970-08-05 22:00:00,15.3424754350744
+1970-08-05 23:00:00,14.335730939586
+1970-08-06 00:00:00,10.15955454467
+1970-08-06 01:00:00,11.0927082037383
+1970-08-06 02:00:00,15.0723605827711
+1970-08-06 03:00:00,12.3563414692586
+1970-08-06 04:00:00,14.9523443280959
+1970-08-06 05:00:00,16.0997720294317
+1970-08-06 06:00:00,14.4919829528252
+1970-08-06 07:00:00,11.9760990744338
+1970-08-06 08:00:00,5.72141752886488
+1970-08-06 09:00:00,14.6707556611212
+1970-08-06 10:00:00,17.3576572706291
+1970-08-06 11:00:00,15.0263385488631
+1970-08-06 12:00:00,10.4175787110609
+1970-08-06 13:00:00,15.8605135942178
+1970-08-06 14:00:00,6.45143006215358
+1970-08-06 15:00:00,11.4665464810441
+1970-08-06 16:00:00,8.88589800503822
+1970-08-06 17:00:00,9.46349841196656
+1970-08-06 18:00:00,12.0298723953702
+1970-08-06 19:00:00,13.8012939230911
+1970-08-06 20:00:00,17.737654358347
+1970-08-06 21:00:00,20.4766364705895
+1970-08-06 22:00:00,11.6205266121283
+1970-08-06 23:00:00,14.1050358594649
+1970-08-07 00:00:00,18.2650039663723
+1970-08-07 01:00:00,13.6382004013496
+1970-08-07 02:00:00,23.0783679379419
+1970-08-07 03:00:00,13.8618581951292
+1970-08-07 04:00:00,12.5455264456533
+1970-08-07 05:00:00,22.8163338495891
+1970-08-07 06:00:00,18.1794021143251
+1970-08-07 07:00:00,14.2683280544537
+1970-08-07 08:00:00,16.1919592182811
+1970-08-07 09:00:00,8.40618403700115
+1970-08-07 10:00:00,11.3358337677096
+1970-08-07 11:00:00,17.5973674147432
+1970-08-07 12:00:00,15.0762710527026
+1970-08-07 13:00:00,13.7233572930561
+1970-08-07 14:00:00,14.5201193367147
+1970-08-07 15:00:00,14.6419800020892
+1970-08-07 16:00:00,15.7843890267661
+1970-08-07 17:00:00,20.3020356819155
+1970-08-07 18:00:00,11.6228881458999
+1970-08-07 19:00:00,11.7860277328913
+1970-08-07 20:00:00,8.1835735171627
+1970-08-07 21:00:00,21.1511835639745
+1970-08-07 22:00:00,19.7015601880461
+1970-08-07 23:00:00,19.0711263443951
+1970-08-08 00:00:00,11.978379311982
+1970-08-08 01:00:00,13.8842120136447
+1970-08-08 02:00:00,21.3350927251802
+1970-08-08 03:00:00,23.3588875779991
+1970-08-08 04:00:00,27.3100368570066
+1970-08-08 05:00:00,18.1165456082933
+1970-08-08 06:00:00,16.9016919576985
+1970-08-08 07:00:00,9.62975370185975
+1970-08-08 08:00:00,13.0176943718001
+1970-08-08 09:00:00,13.2903932634023
+1970-08-08 10:00:00,13.4982885396613
+1970-08-08 11:00:00,14.7911853206871
+1970-08-08 12:00:00,16.5521083997974
+1970-08-08 13:00:00,13.1814643566577
+1970-08-08 14:00:00,15.2894242099774
+1970-08-08 15:00:00,11.2904263826177
+1970-08-08 16:00:00,17.7273311841446
+1970-08-08 17:00:00,11.4091530850981
+1970-08-08 18:00:00,12.0950695846941
+1970-08-08 19:00:00,6.77165956470536
+1970-08-08 20:00:00,10.3365567582274
+1970-08-08 21:00:00,15.8415644344548
+1970-08-08 22:00:00,12.7762630486003
+1970-08-08 23:00:00,12.1867523610914
+1970-08-09 00:00:00,19.8412297170496
+1970-08-09 01:00:00,14.70933462733
+1970-08-09 02:00:00,6.67373974740055
+1970-08-09 03:00:00,17.2715166024602
+1970-08-09 04:00:00,9.08115764176707
+1970-08-09 05:00:00,12.6390563395884
+1970-08-09 06:00:00,11.4694912200567
+1970-08-09 07:00:00,13.5122440188284
+1970-08-09 08:00:00,13.0441399659289
+1970-08-09 09:00:00,15.0803747846856
+1970-08-09 10:00:00,16.1901143426179
+1970-08-09 11:00:00,17.2567085787145
+1970-08-09 12:00:00,13.834582390098
+1970-08-09 13:00:00,7.43271363067404
+1970-08-09 14:00:00,11.5019511577687
+1970-08-09 15:00:00,13.5878369234158
+1970-08-09 16:00:00,13.8354998453317
+1970-08-09 17:00:00,14.6164252994639
+1970-08-09 18:00:00,8.6884611421721
+1970-08-09 19:00:00,11.7446053285022
+1970-08-09 20:00:00,10.2429971070175
+1970-08-09 21:00:00,19.786222683075
+1970-08-09 22:00:00,16.2644351773462
+1970-08-09 23:00:00,18.1552108448632
+1970-08-10 00:00:00,16.1837850280468
+1970-08-10 01:00:00,12.6566071984174
+1970-08-10 02:00:00,13.6370872893337
+1970-08-10 03:00:00,13.7739716800028
+1970-08-10 04:00:00,15.2633550128307
+1970-08-10 05:00:00,17.0832620686874
+1970-08-10 06:00:00,14.1982842671048
+1970-08-10 07:00:00,11.020646285681
+1970-08-10 08:00:00,12.8411074246333
+1970-08-10 09:00:00,23.0151579618283
+1970-08-10 10:00:00,12.791192812198
+1970-08-10 11:00:00,10.5806699858948
+1970-08-10 12:00:00,9.74003008215818
+1970-08-10 13:00:00,14.8908290406623
+1970-08-10 14:00:00,16.7317107490874
+1970-08-10 15:00:00,16.2894622140646
+1970-08-10 16:00:00,9.75948180096696
+1970-08-10 17:00:00,18.1560121407697
+1970-08-10 18:00:00,14.9814908374794
+1970-08-10 19:00:00,7.41959524842333
+1970-08-10 20:00:00,10.8340578042762
+1970-08-10 21:00:00,19.2734453817969
+1970-08-10 22:00:00,13.6225692182596
+1970-08-10 23:00:00,12.4267313682304
+1970-08-11 00:00:00,7.38158995735415
+1970-08-11 01:00:00,12.4697224197686
+1970-08-11 02:00:00,8.36358626369676
+1970-08-11 03:00:00,19.7473655997497
+1970-08-11 04:00:00,14.5366933888051
+1970-08-11 05:00:00,13.8711437697703
+1970-08-11 06:00:00,9.37091188490188
+1970-08-11 07:00:00,10.6573161260863
+1970-08-11 08:00:00,15.0315265432492
+1970-08-11 09:00:00,7.67621123563569
+1970-08-11 10:00:00,8.16643230385123
+1970-08-11 11:00:00,16.3731641507537
+1970-08-11 12:00:00,11.2786285644673
+1970-08-11 13:00:00,10.6755140758177
+1970-08-11 14:00:00,11.9612540286458
+1970-08-11 15:00:00,17.2968892125833
+1970-08-11 16:00:00,13.9711312707631
+1970-08-11 17:00:00,16.8714132222186
+1970-08-11 18:00:00,17.3746212462367
+1970-08-11 19:00:00,12.7504955087401
+1970-08-11 20:00:00,17.6625590237081
+1970-08-11 21:00:00,21.3131513252172
+1970-08-11 22:00:00,11.9953808600323
+1970-08-11 23:00:00,7.76441500424563
+1970-08-12 00:00:00,11.5357335499486
+1970-08-12 01:00:00,22.2514610044307
+1970-08-12 02:00:00,15.354680936744
+1970-08-12 03:00:00,9.2691819737685
+1970-08-12 04:00:00,23.7697008254194
+1970-08-12 05:00:00,16.1755624869621
+1970-08-12 06:00:00,10.5084086497834
+1970-08-12 07:00:00,10.934677411079
+1970-08-12 08:00:00,12.4285042176347
+1970-08-12 09:00:00,13.8356071539088
+1970-08-12 10:00:00,11.5391354531229
+1970-08-12 11:00:00,23.5222477759817
+1970-08-12 12:00:00,10.7671601931374
+1970-08-12 13:00:00,25.2013799330556
+1970-08-12 14:00:00,11.3058577378643
+1970-08-12 15:00:00,19.7613491925928
+1970-08-12 16:00:00,10.9552882789058
+1970-08-12 17:00:00,9.68627655868892
+1970-08-12 18:00:00,10.4792883734508
+1970-08-12 19:00:00,18.9579917190833
+1970-08-12 20:00:00,11.5147030287988
+1970-08-12 21:00:00,14.5785320119546
+1970-08-12 22:00:00,11.0366749084432
+1970-08-12 23:00:00,11.0825324913601
+1970-08-13 00:00:00,10.7904948659573
+1970-08-13 01:00:00,17.0121519348902
+1970-08-13 02:00:00,15.8278868106738
+1970-08-13 03:00:00,24.1400271114487
+1970-08-13 04:00:00,20.8481643287274
+1970-08-13 05:00:00,19.6087539187834
+1970-08-13 06:00:00,12.4863437688098
+1970-08-13 07:00:00,8.87079576392199
+1970-08-13 08:00:00,12.899884824565
+1970-08-13 09:00:00,14.9856085479793
+1970-08-13 10:00:00,11.255908524842
+1970-08-13 11:00:00,14.4340937996462
+1970-08-13 12:00:00,10.5902873138621
+1970-08-13 13:00:00,11.3762735061657
+1970-08-13 14:00:00,15.5131432239099
+1970-08-13 15:00:00,13.5041701521943
+1970-08-13 16:00:00,14.5754470391334
+1970-08-13 17:00:00,15.0791632221203
+1970-08-13 18:00:00,17.3972454953663
+1970-08-13 19:00:00,13.075622770622
+1970-08-13 20:00:00,13.1120175008762
+1970-08-13 21:00:00,11.7841154764679
+1970-08-13 22:00:00,11.933300012227
+1970-08-13 23:00:00,12.0758677650804
+1970-08-14 00:00:00,16.3975051184022
+1970-08-14 01:00:00,8.49490662614194
+1970-08-14 02:00:00,8.08298221150813
+1970-08-14 03:00:00,17.071225337912
+1970-08-14 04:00:00,11.2543397678098
+1970-08-14 05:00:00,6.77978324275324
+1970-08-14 06:00:00,22.216350834346
+1970-08-14 07:00:00,22.3073124168614
+1970-08-14 08:00:00,15.0079731576255
+1970-08-14 09:00:00,8.88258213069504
+1970-08-14 10:00:00,21.8206423798878
+1970-08-14 11:00:00,23.1375470377819
+1970-08-14 12:00:00,27.6005515372525
+1970-08-14 13:00:00,14.7444173158177
+1970-08-14 14:00:00,25.023048433897
+1970-08-14 15:00:00,10.6261739967005
+1970-08-14 16:00:00,17.9885737535412
+1970-08-14 17:00:00,11.1555039744091
+1970-08-14 18:00:00,22.0710643807679
+1970-08-14 19:00:00,24.4796814214971
+1970-08-14 20:00:00,13.0117331216598
+1970-08-14 21:00:00,8.10061890960876
+1970-08-14 22:00:00,24.5429972870185
+1970-08-14 23:00:00,13.7106709739316
+1970-08-15 00:00:00,14.1027703034204
+1970-08-15 01:00:00,26.6434912595002
+1970-08-15 02:00:00,15.845935398732
+1970-08-15 03:00:00,13.5027998321261
+1970-08-15 04:00:00,13.277131184781
+1970-08-15 05:00:00,17.9017340119219
+1970-08-15 06:00:00,18.9232682085056
+1970-08-15 07:00:00,11.0321148875904
+1970-08-15 08:00:00,7.82861539215645
+1970-08-15 09:00:00,18.5597860397112
+1970-08-15 10:00:00,15.9217226116466
+1970-08-15 11:00:00,10.6175065855343
+1970-08-15 12:00:00,14.5623279461758
+1970-08-15 13:00:00,13.1385849572414
+1970-08-15 14:00:00,10.4598050889767
+1970-08-15 15:00:00,17.7336772380933
+1970-08-15 16:00:00,8.88335435387498
+1970-08-15 17:00:00,11.4652088965725
+1970-08-15 18:00:00,12.2738423004012
+1970-08-15 19:00:00,11.6353797901128
+1970-08-15 20:00:00,12.2722658124142
+1970-08-15 21:00:00,24.0876835757155
+1970-08-15 22:00:00,15.2228121825945
+1970-08-15 23:00:00,11.6466455469934
+1970-08-16 00:00:00,18.9536757864118
+1970-08-16 01:00:00,16.4883765513266
+1970-08-16 02:00:00,6.86882104790137
+1970-08-16 03:00:00,11.6324631157466
+1970-08-16 04:00:00,15.9406049956959
+1970-08-16 05:00:00,13.5507418942849
+1970-08-16 06:00:00,13.0327662757069
+1970-08-16 07:00:00,19.9813572387347
+1970-08-16 08:00:00,14.5129957336351
+1970-08-16 09:00:00,21.2838390372509
+1970-08-16 10:00:00,26.8248437850972
+1970-08-16 11:00:00,9.22358428211857
+1970-08-16 12:00:00,13.0857970663919
+1970-08-16 13:00:00,21.1868318744721
+1970-08-16 14:00:00,6.13147891982299
+1970-08-16 15:00:00,10.6865318946714
+1970-08-16 16:00:00,12.8217457840356
+1970-08-16 17:00:00,10.5553963009341
+1970-08-16 18:00:00,8.5320164359414
+1970-08-16 19:00:00,12.7099630183867
+1970-08-16 20:00:00,7.72360021766312
+1970-08-16 21:00:00,13.0024478533954
+1970-08-16 22:00:00,8.81611515818475
+1970-08-16 23:00:00,11.6231681445859
+1970-08-17 00:00:00,13.2237798874411
+1970-08-17 01:00:00,17.8664437940406
+1970-08-17 02:00:00,16.7706113135862
+1970-08-17 03:00:00,16.2136093799685
+1970-08-17 04:00:00,7.83291205390323
+1970-08-17 05:00:00,16.2490180836515
+1970-08-17 06:00:00,12.529311723431
+1970-08-17 07:00:00,15.7174643460837
+1970-08-17 08:00:00,13.0167854428128
+1970-08-17 09:00:00,13.8205158905896
+1970-08-17 10:00:00,10.9948491452105
+1970-08-17 11:00:00,21.7041728644066
+1970-08-17 12:00:00,9.49737475739984
+1970-08-17 13:00:00,14.7557951613973
+1970-08-17 14:00:00,9.66622751748009
+1970-08-17 15:00:00,16.6601116847468
+1970-08-17 16:00:00,24.2679970730611
+1970-08-17 17:00:00,12.9825658264006
+1970-08-17 18:00:00,9.88757765116884
+1970-08-17 19:00:00,9.71860962031497
+1970-08-17 20:00:00,16.3445776036599
+1970-08-17 21:00:00,12.9542112974655
+1970-08-17 22:00:00,8.63637662015958
+1970-08-17 23:00:00,12.4724795308236
+1970-08-18 00:00:00,14.6088271213085
+1970-08-18 01:00:00,11.5298261987971
+1970-08-18 02:00:00,13.2664978237303
+1970-08-18 03:00:00,17.3726168948491
+1970-08-18 04:00:00,14.0547148315325
+1970-08-18 05:00:00,9.51954029719504
+1970-08-18 06:00:00,8.50010699678008
+1970-08-18 07:00:00,11.4660034485054
+1970-08-18 08:00:00,8.9696524660559
+1970-08-18 09:00:00,16.6560926038542
+1970-08-18 10:00:00,6.72852664952408
+1970-08-18 11:00:00,11.2949990020939
+1970-08-18 12:00:00,12.8228197692911
+1970-08-18 13:00:00,13.7438914065496
+1970-08-18 14:00:00,12.3945467959883
+1970-08-18 15:00:00,18.2114292737787
+1970-08-18 16:00:00,11.8958495356904
+1970-08-18 17:00:00,6.88485185607903
+1970-08-18 18:00:00,12.7202217576654
+1970-08-18 19:00:00,11.4974091070707
+1970-08-18 20:00:00,37.8726170887608
+1970-08-18 21:00:00,11.1260035939693
+1970-08-18 22:00:00,9.58285781832974
+1970-08-18 23:00:00,5.89034937345424
+1970-08-19 00:00:00,19.0507931923564
+1970-08-19 01:00:00,12.8530278172629
+1970-08-19 02:00:00,22.4156692643609
+1970-08-19 03:00:00,9.41568654602308
+1970-08-19 04:00:00,10.4449579241552
+1970-08-19 05:00:00,12.236256213698
+1970-08-19 06:00:00,16.1679892751735
+1970-08-19 07:00:00,18.3262343202225
+1970-08-19 08:00:00,14.8141366033656
+1970-08-19 09:00:00,14.6982195560652
+1970-08-19 10:00:00,12.1545667511367
+1970-08-19 11:00:00,15.9027304973253
+1970-08-19 12:00:00,18.802156174672
+1970-08-19 13:00:00,11.0942611366629
+1970-08-19 14:00:00,12.8503819448459
+1970-08-19 15:00:00,13.6638619122342
+1970-08-19 16:00:00,13.1852340896942
+1970-08-19 17:00:00,16.0667624356367
+1970-08-19 18:00:00,12.3342974038924
+1970-08-19 19:00:00,16.3995790590545
+1970-08-19 20:00:00,8.17442445936565
+1970-08-19 21:00:00,13.1060166661728
+1970-08-19 22:00:00,15.2863806192072
+1970-08-19 23:00:00,14.5036497818931
+1970-08-20 00:00:00,11.8018143310777
+1970-08-20 01:00:00,17.7479984550688
+1970-08-20 02:00:00,17.8699191725774
+1970-08-20 03:00:00,35.2636128506034
+1970-08-20 04:00:00,16.7412512405546
+1970-08-20 05:00:00,16.5913278914638
+1970-08-20 06:00:00,21.0997570304275
+1970-08-20 07:00:00,15.3259087405265
+1970-08-20 08:00:00,14.7314644826007
+1970-08-20 09:00:00,8.00096146823856
+1970-08-20 10:00:00,20.5256890708895
+1970-08-20 11:00:00,14.7451700253371
+1970-08-20 12:00:00,16.2498016479084
+1970-08-20 13:00:00,18.8916861563731
+1970-08-20 14:00:00,12.2035424199411
+1970-08-20 15:00:00,11.2990438013758
+1970-08-20 16:00:00,18.9424682896542
+1970-08-20 17:00:00,13.5572552516792
+1970-08-20 18:00:00,15.6972188735871
+1970-08-20 19:00:00,11.4651900315931
+1970-08-20 20:00:00,11.2373490555498
+1970-08-20 21:00:00,20.5392084840046
+1970-08-20 22:00:00,16.4017750220515
+1970-08-20 23:00:00,14.1670648290418
+1970-08-21 00:00:00,18.225355985759
+1970-08-21 01:00:00,17.7291705009583
+1970-08-21 02:00:00,11.4098424238394
+1970-08-21 03:00:00,11.2900792382445
+1970-08-21 04:00:00,13.0040281752709
+1970-08-21 05:00:00,12.8907313330076
+1970-08-21 06:00:00,8.50855966230024
+1970-08-21 07:00:00,16.5986118160944
+1970-08-21 08:00:00,12.8774142660375
+1970-08-21 09:00:00,18.096947848913
+1970-08-21 10:00:00,18.4777338262539
+1970-08-21 11:00:00,14.9347819521491
+1970-08-21 12:00:00,10.2259979695781
+1970-08-21 13:00:00,9.89698154948421
+1970-08-21 14:00:00,12.2619464705526
+1970-08-21 15:00:00,13.4113527128973
+1970-08-21 16:00:00,6.78496043356308
+1970-08-21 17:00:00,11.4461449611757
+1970-08-21 18:00:00,13.5759373416007
+1970-08-21 19:00:00,8.49815195042264
+1970-08-21 20:00:00,11.9481307181606
+1970-08-21 21:00:00,27.510324074268
+1970-08-21 22:00:00,11.5912448204862
+1970-08-21 23:00:00,9.59595987985803
+1970-08-22 00:00:00,14.2932263811684
+1970-08-22 01:00:00,14.6150293039002
+1970-08-22 02:00:00,14.1775809845424
+1970-08-22 03:00:00,15.3015328661448
+1970-08-22 04:00:00,8.60233502497003
+1970-08-22 05:00:00,14.4878981006903
+1970-08-22 06:00:00,10.134192039232
+1970-08-22 07:00:00,8.59883605339935
+1970-08-22 08:00:00,17.0379745536089
+1970-08-22 09:00:00,14.9747824535148
+1970-08-22 10:00:00,17.695608275262
+1970-08-22 11:00:00,14.209396933537
+1970-08-22 12:00:00,9.6376026783375
+1970-08-22 13:00:00,23.3531828427167
+1970-08-22 14:00:00,11.1909147027805
+1970-08-22 15:00:00,13.5762524715445
+1970-08-22 16:00:00,11.8029168954816
+1970-08-22 17:00:00,16.1454160580122
+1970-08-22 18:00:00,16.5903619493956
+1970-08-22 19:00:00,14.6951922874482
+1970-08-22 20:00:00,13.2302398551118
+1970-08-22 21:00:00,15.088949810925
+1970-08-22 22:00:00,19.5270874206599
+1970-08-22 23:00:00,18.4847149812189
+1970-08-23 00:00:00,9.30630425990568
+1970-08-23 01:00:00,11.8905669656287
+1970-08-23 02:00:00,9.02470264774697
+1970-08-23 03:00:00,20.3634738092041
+1970-08-23 04:00:00,15.8688297471551
+1970-08-23 05:00:00,13.3676332094439
+1970-08-23 06:00:00,9.74933692979011
+1970-08-23 07:00:00,11.8928761127664
+1970-08-23 08:00:00,16.0488652017995
+1970-08-23 09:00:00,18.8218249125033
+1970-08-23 10:00:00,19.487203743331
+1970-08-23 11:00:00,14.4032709563202
+1970-08-23 12:00:00,13.7170316355235
+1970-08-23 13:00:00,19.6161224614534
+1970-08-23 14:00:00,13.0005032605076
+1970-08-23 15:00:00,13.9090173904785
+1970-08-23 16:00:00,10.1902149156313
+1970-08-23 17:00:00,22.9180650481856
+1970-08-23 18:00:00,16.0175580267639
+1970-08-23 19:00:00,15.1073937875231
+1970-08-23 20:00:00,16.3513242003337
+1970-08-23 21:00:00,14.9899859502725
+1970-08-23 22:00:00,17.7556469433108
+1970-08-23 23:00:00,14.8949078891234
+1970-08-24 00:00:00,7.81394059851317
+1970-08-24 01:00:00,12.2979083106218
+1970-08-24 02:00:00,10.3099761742044
+1970-08-24 03:00:00,17.466551232826
+1970-08-24 04:00:00,12.5225183276113
+1970-08-24 05:00:00,15.0569010375615
+1970-08-24 06:00:00,10.1801990640581
+1970-08-24 07:00:00,19.4260272166568
+1970-08-24 08:00:00,15.2950671073951
+1970-08-24 09:00:00,18.0421000697059
+1970-08-24 10:00:00,13.1571634796828
+1970-08-24 11:00:00,15.2148235340746
+1970-08-24 12:00:00,7.99693297105103
+1970-08-24 13:00:00,12.12073771853
+1970-08-24 14:00:00,17.5274789757193
+1970-08-24 15:00:00,17.4210919900597
+1970-08-24 16:00:00,10.3155325794836
+1970-08-24 17:00:00,8.95080771667492
+1970-08-24 18:00:00,15.1906556513608
+1970-08-24 19:00:00,15.7381080763682
+1970-08-24 20:00:00,10.909567681865
+1970-08-24 21:00:00,13.9211815419696
+1970-08-24 22:00:00,7.83962466147626
+1970-08-24 23:00:00,14.9642094533564
+1970-08-25 00:00:00,10.2397256222647
+1970-08-25 01:00:00,11.5535901327511
+1970-08-25 02:00:00,10.0809240932945
+1970-08-25 03:00:00,7.92901746866605
+1970-08-25 04:00:00,23.2260564198616
+1970-08-25 05:00:00,10.8526003638651
+1970-08-25 06:00:00,10.0218275165042
+1970-08-25 07:00:00,11.7642629297023
+1970-08-25 08:00:00,13.9954860719107
+1970-08-25 09:00:00,13.3714738892779
+1970-08-25 10:00:00,18.8573042235383
+1970-08-25 11:00:00,11.9880658919133
+1970-08-25 12:00:00,23.3991267292784
+1970-08-25 13:00:00,14.9345920979905
+1970-08-25 14:00:00,5.23802275050958
+1970-08-25 15:00:00,10.3416699829055
+1970-08-25 16:00:00,15.9131412714228
+1970-08-25 17:00:00,8.81968467153266
+1970-08-25 18:00:00,20.4169271491947
+1970-08-25 19:00:00,15.5704571943858
+1970-08-25 20:00:00,7.81366210077797
+1970-08-25 21:00:00,10.3103703655997
+1970-08-25 22:00:00,12.9662249641439
+1970-08-25 23:00:00,7.0031015177952
+1970-08-26 00:00:00,15.7803296162485
+1970-08-26 01:00:00,15.2011991553045
+1970-08-26 02:00:00,11.153767896898
+1970-08-26 03:00:00,14.8193037814983
+1970-08-26 04:00:00,11.0331767488906
+1970-08-26 05:00:00,10.1946132654873
+1970-08-26 06:00:00,14.1769881545711
+1970-08-26 07:00:00,12.5615978882232
+1970-08-26 08:00:00,15.5491516575446
+1970-08-26 09:00:00,13.2675341747327
+1970-08-26 10:00:00,16.2450840406569
+1970-08-26 11:00:00,7.36876249298165
+1970-08-26 12:00:00,8.93360387737497
+1970-08-26 13:00:00,16.8709006098764
+1970-08-26 14:00:00,6.88999094652556
+1970-08-26 15:00:00,22.8323419529466
+1970-08-26 16:00:00,13.6537669948669
+1970-08-26 17:00:00,11.3143801572147
+1970-08-26 18:00:00,19.0746776625868
+1970-08-26 19:00:00,13.0257460175572
+1970-08-26 20:00:00,12.3977884626725
+1970-08-26 21:00:00,17.4863088760932
+1970-08-26 22:00:00,10.9992675811832
+1970-08-26 23:00:00,18.2891613139483
+1970-08-27 00:00:00,20.158559026833
+1970-08-27 01:00:00,17.6041528139641
+1970-08-27 02:00:00,11.0980672410354
+1970-08-27 03:00:00,10.4583830924597
+1970-08-27 04:00:00,8.66853657892507
+1970-08-27 05:00:00,13.5456271403274
+1970-08-27 06:00:00,27.8310765730377
+1970-08-27 07:00:00,8.78931590537944
+1970-08-27 08:00:00,12.069935869595
+1970-08-27 09:00:00,15.579583727509
+1970-08-27 10:00:00,11.2615775005789
+1970-08-27 11:00:00,10.9046608866245
+1970-08-27 12:00:00,16.9225787780556
+1970-08-27 13:00:00,20.3024299992871
+1970-08-27 14:00:00,12.8081886752325
+1970-08-27 15:00:00,21.0966483926263
+1970-08-27 16:00:00,18.9130478269143
+1970-08-27 17:00:00,20.2636055459141
+1970-08-27 18:00:00,13.5961332622828
+1970-08-27 19:00:00,17.1360391956753
+1970-08-27 20:00:00,6.02391219086771
+1970-08-27 21:00:00,11.4881982352733
+1970-08-27 22:00:00,11.4270520173999
+1970-08-27 23:00:00,10.4088525353342
+1970-08-28 00:00:00,11.8361494699301
+1970-08-28 01:00:00,15.6295693330338
+1970-08-28 02:00:00,17.7773607378112
+1970-08-28 03:00:00,11.8751730784071
+1970-08-28 04:00:00,14.7002370579799
+1970-08-28 05:00:00,15.3264002246329
+1970-08-28 06:00:00,12.0211731444725
+1970-08-28 07:00:00,26.6891416640868
+1970-08-28 08:00:00,18.7688518528529
+1970-08-28 09:00:00,20.8031447848393
+1970-08-28 10:00:00,18.9164491182087
+1970-08-28 11:00:00,8.36644125746822
+1970-08-28 12:00:00,14.0187815680742
+1970-08-28 13:00:00,13.3514672008727
+1970-08-28 14:00:00,9.64452338473497
+1970-08-28 15:00:00,11.5715848990348
+1970-08-28 16:00:00,11.453584287626
+1970-08-28 17:00:00,20.7686378644779
+1970-08-28 18:00:00,11.937650401438
+1970-08-28 19:00:00,15.7909850531455
+1970-08-28 20:00:00,12.3696827286552
+1970-08-28 21:00:00,17.5560168204831
+1970-08-28 22:00:00,6.33905029088174
+1970-08-28 23:00:00,14.5746730827827
+1970-08-29 00:00:00,15.3906633862224
+1970-08-29 01:00:00,10.4841270732287
+1970-08-29 02:00:00,19.0752497610089
+1970-08-29 03:00:00,17.2304446020794
+1970-08-29 04:00:00,15.5628112124025
+1970-08-29 05:00:00,4.50152529025465
+1970-08-29 06:00:00,9.70689488574124
+1970-08-29 07:00:00,14.6692061863545
+1970-08-29 08:00:00,10.4839312276343
+1970-08-29 09:00:00,31.3714739772094
+1970-08-29 10:00:00,13.2208631928036
+1970-08-29 11:00:00,10.1856605697912
+1970-08-29 12:00:00,16.5913604320175
+1970-08-29 13:00:00,11.2099990772191
+1970-08-29 14:00:00,12.5392271606998
+1970-08-29 15:00:00,9.90826389969571
+1970-08-29 16:00:00,14.6764572137288
+1970-08-29 17:00:00,15.8876320925211
+1970-08-29 18:00:00,9.0090787151733
+1970-08-29 19:00:00,9.87695119482547
+1970-08-29 20:00:00,17.7713730764745
+1970-08-29 21:00:00,6.04178541454379
+1970-08-29 22:00:00,12.4940430518448
+1970-08-29 23:00:00,18.0424511772711
+1970-08-30 00:00:00,15.0430930358007
+1970-08-30 01:00:00,10.3854582713774
+1970-08-30 02:00:00,16.0590234423686
+1970-08-30 03:00:00,10.6805283029296
+1970-08-30 04:00:00,23.1347691724376
+1970-08-30 05:00:00,18.5687154581384
+1970-08-30 06:00:00,9.70181978275393
+1970-08-30 07:00:00,20.7637573613428
+1970-08-30 08:00:00,11.3854702303385
+1970-08-30 09:00:00,12.7902274955207
+1970-08-30 10:00:00,15.0521284647268
+1970-08-30 11:00:00,18.5009569287834
+1970-08-30 12:00:00,15.8823958335862
+1970-08-30 13:00:00,20.9553655838753
+1970-08-30 14:00:00,13.428845561529
+1970-08-30 15:00:00,13.1346765256294
+1970-08-30 16:00:00,10.3072012331462
+1970-08-30 17:00:00,11.9890660955761
+1970-08-30 18:00:00,21.0666998640527
+1970-08-30 19:00:00,9.1713340697181
+1970-08-30 20:00:00,11.9200638917046
+1970-08-30 21:00:00,11.3637719194876
+1970-08-30 22:00:00,18.2061902454854
+1970-08-30 23:00:00,13.5204632543676
+1970-08-31 00:00:00,10.4829305903469
+1970-08-31 01:00:00,15.4076355268865
+1970-08-31 02:00:00,14.8280176290253
+1970-08-31 03:00:00,11.9559197137096
+1970-08-31 04:00:00,13.1499688085413
+1970-08-31 05:00:00,9.6110208120639
+1970-08-31 06:00:00,21.6656024540725
+1970-08-31 07:00:00,14.8958970725917
+1970-08-31 08:00:00,9.47173250650216
+1970-08-31 09:00:00,11.656396275215
+1970-08-31 10:00:00,9.51706060141074
+1970-08-31 11:00:00,11.2622078189262
+1970-08-31 12:00:00,12.6383283451806
+1970-08-31 13:00:00,11.3302979260112
+1970-08-31 14:00:00,13.3098558266897
+1970-08-31 15:00:00,11.1505077442458
+1970-08-31 16:00:00,16.640630963837
+1970-08-31 17:00:00,14.8938578437193
+1970-08-31 18:00:00,12.4729049977377
+1970-08-31 19:00:00,14.4640074196088
+1970-08-31 20:00:00,16.946928389577
+1970-08-31 21:00:00,16.5277369218377
+1970-08-31 22:00:00,16.3511067829761
+1970-08-31 23:00:00,10.6178863424076
+1970-09-01 00:00:00,15.8352484168524
+1970-09-01 01:00:00,17.430834304744
+1970-09-01 02:00:00,11.7896342804301
+1970-09-01 03:00:00,14.2940044787003
+1970-09-01 04:00:00,13.6783224415894
+1970-09-01 05:00:00,20.9248470304703
+1970-09-01 06:00:00,7.01802791667236
+1970-09-01 07:00:00,16.7306214190254
+1970-09-01 08:00:00,9.51988434603508
+1970-09-01 09:00:00,9.71330699246037
+1970-09-01 10:00:00,10.8458206728474
+1970-09-01 11:00:00,15.7056349979742
+1970-09-01 12:00:00,20.2751568516054
+1970-09-01 13:00:00,17.394210143568
+1970-09-01 14:00:00,20.3764892726565
+1970-09-01 15:00:00,18.1453491468087
+1970-09-01 16:00:00,17.6618258333216
+1970-09-01 17:00:00,14.7551266641479
+1970-09-01 18:00:00,12.2113018129352
+1970-09-01 19:00:00,11.9072641118183
+1970-09-01 20:00:00,10.3533666565088
+1970-09-01 21:00:00,14.0038463849676
+1970-09-01 22:00:00,12.6533980176182
+1970-09-01 23:00:00,9.44299071365964
+1970-09-02 00:00:00,12.3938771114626
+1970-09-02 01:00:00,15.5572801072846
+1970-09-02 02:00:00,13.6077985077863
+1970-09-02 03:00:00,18.6938177434705
+1970-09-02 04:00:00,33.3834471000408
+1970-09-02 05:00:00,12.7551096416265
+1970-09-02 06:00:00,15.7817014370149
+1970-09-02 07:00:00,12.169493215656
+1970-09-02 08:00:00,12.5098328144894
+1970-09-02 09:00:00,12.2159767992037
+1970-09-02 10:00:00,6.85707203037637
+1970-09-02 11:00:00,17.8864700799254
+1970-09-02 12:00:00,18.8156445156633
+1970-09-02 13:00:00,12.1319131882437
+1970-09-02 14:00:00,15.1725837416662
+1970-09-02 15:00:00,12.2408244932986
+1970-09-02 16:00:00,8.81117804426785
+1970-09-02 17:00:00,11.4577521868855
+1970-09-02 18:00:00,21.8409104557567
+1970-09-02 19:00:00,10.0555290033055
+1970-09-02 20:00:00,18.5152263395169
+1970-09-02 21:00:00,12.3229792160091
+1970-09-02 22:00:00,10.715482109481
+1970-09-02 23:00:00,9.71539071697252
+1970-09-03 00:00:00,19.7042177884049
+1970-09-03 01:00:00,10.6085048827583
+1970-09-03 02:00:00,16.7856626749061
+1970-09-03 03:00:00,20.2748795438447
+1970-09-03 04:00:00,33.1377485935004
+1970-09-03 05:00:00,13.0738994496166
+1970-09-03 06:00:00,12.9752018964627
+1970-09-03 07:00:00,15.4151270451354
+1970-09-03 08:00:00,12.5168986777892
+1970-09-03 09:00:00,12.1137971499624
+1970-09-03 10:00:00,12.4167741523697
+1970-09-03 11:00:00,14.1325728433166
+1970-09-03 12:00:00,11.1019511744871
+1970-09-03 13:00:00,13.5038638002183
+1970-09-03 14:00:00,22.2493923451089
+1970-09-03 15:00:00,13.0583082779259
+1970-09-03 16:00:00,27.7707965141779
+1970-09-03 17:00:00,8.35315991442578
+1970-09-03 18:00:00,8.39934721836556
+1970-09-03 19:00:00,18.4962187564959
+1970-09-03 20:00:00,11.4336044042051
+1970-09-03 21:00:00,6.9141099249356
+1970-09-03 22:00:00,13.0431404046333
+1970-09-03 23:00:00,16.8439494986393
+1970-09-04 00:00:00,5.91763658127569
+1970-09-04 01:00:00,13.8190073996074
+1970-09-04 02:00:00,14.2495664934621
+1970-09-04 03:00:00,14.6118604036224
+1970-09-04 04:00:00,14.9705308135557
+1970-09-04 05:00:00,17.7551213718183
+1970-09-04 06:00:00,8.11973471352163
+1970-09-04 07:00:00,15.3798322788334
+1970-09-04 08:00:00,12.6907636407787
+1970-09-04 09:00:00,12.910121995578
+1970-09-04 10:00:00,15.2491199601858
+1970-09-04 11:00:00,23.2688764546726
+1970-09-04 12:00:00,12.8249337312656
+1970-09-04 13:00:00,14.0381434785678
+1970-09-04 14:00:00,16.2808937563501
+1970-09-04 15:00:00,8.92744216587462
+1970-09-04 16:00:00,8.26744882152305
+1970-09-04 17:00:00,5.98354690666091
+1970-09-04 18:00:00,18.6549558269884
+1970-09-04 19:00:00,12.9410403746673
+1970-09-04 20:00:00,21.7338062501765
+1970-09-04 21:00:00,15.6327631589082
+1970-09-04 22:00:00,17.3968752249922
+1970-09-04 23:00:00,16.3169908820694
+1970-09-05 00:00:00,17.6076302222943
+1970-09-05 01:00:00,12.4241154135955
+1970-09-05 02:00:00,10.7305607410752
+1970-09-05 03:00:00,17.1427518788524
+1970-09-05 04:00:00,13.8164616900847
+1970-09-05 05:00:00,10.2085560219749
+1970-09-05 06:00:00,14.9882519835402
+1970-09-05 07:00:00,16.4078597354864
+1970-09-05 08:00:00,17.0001692815524
+1970-09-05 09:00:00,23.8367802178725
+1970-09-05 10:00:00,14.7724750331048
+1970-09-05 11:00:00,14.4955308768061
+1970-09-05 12:00:00,10.1996051040594
+1970-09-05 13:00:00,9.65448100512168
+1970-09-05 14:00:00,27.3870850754554
+1970-09-05 15:00:00,23.9009966477797
+1970-09-05 16:00:00,13.5147292192844
+1970-09-05 17:00:00,10.9639139928923
+1970-09-05 18:00:00,16.9564456373324
+1970-09-05 19:00:00,5.34624173004105
+1970-09-05 20:00:00,17.6635918535384
+1970-09-05 21:00:00,23.8561977519445
+1970-09-05 22:00:00,11.0272680544823
+1970-09-05 23:00:00,16.617914232202
+1970-09-06 00:00:00,16.5305096805112
+1970-09-06 01:00:00,11.5519640394784
+1970-09-06 02:00:00,12.4948150079689
+1970-09-06 03:00:00,8.61565519798058
+1970-09-06 04:00:00,17.1301360848758
+1970-09-06 05:00:00,18.2057391283308
+1970-09-06 06:00:00,20.2239972642486
+1970-09-06 07:00:00,14.0718981675865
+1970-09-06 08:00:00,7.36048178944325
+1970-09-06 09:00:00,12.7002775529537
+1970-09-06 10:00:00,11.4472342870258
+1970-09-06 11:00:00,9.07351303143792
+1970-09-06 12:00:00,18.2368890276763
+1970-09-06 13:00:00,7.50394659016215
+1970-09-06 14:00:00,14.3749900364529
+1970-09-06 15:00:00,9.11930997675957
+1970-09-06 16:00:00,9.53952143256455
+1970-09-06 17:00:00,9.31435700651731
+1970-09-06 18:00:00,11.1572063971841
+1970-09-06 19:00:00,11.9816643882174
+1970-09-06 20:00:00,16.3658681268343
+1970-09-06 21:00:00,18.0359340667364
+1970-09-06 22:00:00,14.4425087363038
+1970-09-06 23:00:00,18.0054883336804
+1970-09-07 00:00:00,18.2396727897468
+1970-09-07 01:00:00,27.8388028920712
+1970-09-07 02:00:00,15.4626387476833
+1970-09-07 03:00:00,14.7119387767896
+1970-09-07 04:00:00,16.2818127399623
+1970-09-07 05:00:00,14.6263661195682
+1970-09-07 06:00:00,8.30227713468838
+1970-09-07 07:00:00,15.0901721656187
+1970-09-07 08:00:00,21.4914169774319
+1970-09-07 09:00:00,9.78523961253943
+1970-09-07 10:00:00,8.44748188383951
+1970-09-07 11:00:00,14.1144553483271
+1970-09-07 12:00:00,4.37633742817795
+1970-09-07 13:00:00,15.5315070357285
+1970-09-07 14:00:00,18.1493211861192
+1970-09-07 15:00:00,13.6500662625406
+1970-09-07 16:00:00,13.6742686295867
+1970-09-07 17:00:00,18.3504066121875
+1970-09-07 18:00:00,16.0578460271121
+1970-09-07 19:00:00,10.7486369516358
+1970-09-07 20:00:00,20.2738455511022
+1970-09-07 21:00:00,10.3798721198845
+1970-09-07 22:00:00,16.895727782982
+1970-09-07 23:00:00,14.4523878823396
+1970-09-08 00:00:00,19.0780604851388
+1970-09-08 01:00:00,10.58680725056
+1970-09-08 02:00:00,13.2897589266266
+1970-09-08 03:00:00,15.4494021753201
+1970-09-08 04:00:00,14.52940630338
+1970-09-08 05:00:00,12.425343521214
+1970-09-08 06:00:00,16.7633576933533
+1970-09-08 07:00:00,11.0023872781826
+1970-09-08 08:00:00,15.5818792535225
+1970-09-08 09:00:00,17.0724430848877
+1970-09-08 10:00:00,13.2560803777049
+1970-09-08 11:00:00,14.3223628569735
+1970-09-08 12:00:00,20.5658046668388
+1970-09-08 13:00:00,11.1058517168456
+1970-09-08 14:00:00,15.3341107401491
+1970-09-08 15:00:00,22.648496827469
+1970-09-08 16:00:00,18.9196836647055
+1970-09-08 17:00:00,14.7248805200872
+1970-09-08 18:00:00,13.5458616141817
+1970-09-08 19:00:00,16.2970138897085
+1970-09-08 20:00:00,13.8005123568322
+1970-09-08 21:00:00,24.0734319111304
+1970-09-08 22:00:00,9.83267756172901
+1970-09-08 23:00:00,18.9487733702259
+1970-09-09 00:00:00,8.11108202219181
+1970-09-09 01:00:00,15.8923353369192
+1970-09-09 02:00:00,18.4526860721106
+1970-09-09 03:00:00,14.4257956535911
+1970-09-09 04:00:00,17.0445135968857
+1970-09-09 05:00:00,15.6552957965588
+1970-09-09 06:00:00,15.650643530422
+1970-09-09 07:00:00,10.2257009697752
+1970-09-09 08:00:00,11.2727453730777
+1970-09-09 09:00:00,16.6774160772647
+1970-09-09 10:00:00,10.9286707407832
+1970-09-09 11:00:00,12.4895879183845
+1970-09-09 12:00:00,23.5139500938065
+1970-09-09 13:00:00,11.4855563901299
+1970-09-09 14:00:00,18.0059552213681
+1970-09-09 15:00:00,18.7118371086776
+1970-09-09 16:00:00,21.8255095123643
+1970-09-09 17:00:00,13.5430874981562
+1970-09-09 18:00:00,7.06382619964711
+1970-09-09 19:00:00,12.241020811954
+1970-09-09 20:00:00,11.9863078469326
+1970-09-09 21:00:00,9.96541554913119
+1970-09-09 22:00:00,17.7197502516452
+1970-09-09 23:00:00,22.2025744196016
+1970-09-10 00:00:00,10.0076483831384
+1970-09-10 01:00:00,16.9194488294667
+1970-09-10 02:00:00,12.8631377947783
+1970-09-10 03:00:00,17.90545066707
+1970-09-10 04:00:00,11.7399546109101
+1970-09-10 05:00:00,5.80583348311998
+1970-09-10 06:00:00,18.9153532157398
+1970-09-10 07:00:00,13.4796600129719
+1970-09-10 08:00:00,9.78746216255923
+1970-09-10 09:00:00,14.0385082406943
+1970-09-10 10:00:00,13.6210527718031
+1970-09-10 11:00:00,16.2341846248823
+1970-09-10 12:00:00,8.84729432374582
+1970-09-10 13:00:00,14.0700104540448
+1970-09-10 14:00:00,7.20950618971691
+1970-09-10 15:00:00,7.84484866762464
+1970-09-10 16:00:00,18.0376969958709
+1970-09-10 17:00:00,18.3601394257114
+1970-09-10 18:00:00,8.84978548265017
+1970-09-10 19:00:00,21.9230484410236
+1970-09-10 20:00:00,18.6829961559121
+1970-09-10 21:00:00,21.5327724964357
+1970-09-10 22:00:00,17.2165972024119
+1970-09-10 23:00:00,11.1099987636349
+1970-09-11 00:00:00,21.4494665466458
+1970-09-11 01:00:00,10.4371653264213
+1970-09-11 02:00:00,20.0766745451469
+1970-09-11 03:00:00,9.96200408130647
+1970-09-11 04:00:00,11.7325490114124
+1970-09-11 05:00:00,14.3284722041025
+1970-09-11 06:00:00,13.9831935679509
+1970-09-11 07:00:00,16.7547361084979
+1970-09-11 08:00:00,12.5977937569863
+1970-09-11 09:00:00,12.1730809663259
+1970-09-11 10:00:00,10.785268432653
+1970-09-11 11:00:00,20.4647501049625
+1970-09-11 12:00:00,22.4104147425877
+1970-09-11 13:00:00,10.4941947717531
+1970-09-11 14:00:00,8.5407669434411
+1970-09-11 15:00:00,16.8850631941468
+1970-09-11 16:00:00,15.0245950153192
+1970-09-11 17:00:00,10.5800939113114
+1970-09-11 18:00:00,7.19758085910315
+1970-09-11 19:00:00,21.7796234642482
+1970-09-11 20:00:00,12.0697017850187
+1970-09-11 21:00:00,28.7133278987683
+1970-09-11 22:00:00,19.3653561712313
+1970-09-11 23:00:00,16.5417027748455
+1970-09-12 00:00:00,10.4475499029662
+1970-09-12 01:00:00,17.17598380716
+1970-09-12 02:00:00,9.54597280818438
+1970-09-12 03:00:00,10.6881807829581
+1970-09-12 04:00:00,15.0902837662476
+1970-09-12 05:00:00,19.8167436574767
+1970-09-12 06:00:00,18.865106975748
+1970-09-12 07:00:00,17.9568622503817
+1970-09-12 08:00:00,9.03128522897578
+1970-09-12 09:00:00,19.1378326216582
+1970-09-12 10:00:00,18.5917059147586
+1970-09-12 11:00:00,16.7123642394852
+1970-09-12 12:00:00,9.58667993734873
+1970-09-12 13:00:00,25.8897589024193
+1970-09-12 14:00:00,23.0019012150896
+1970-09-12 15:00:00,11.8480887299579
+1970-09-12 16:00:00,13.5868000899943
+1970-09-12 17:00:00,13.6898759020963
+1970-09-12 18:00:00,15.9032309638761
+1970-09-12 19:00:00,17.8830460415192
+1970-09-12 20:00:00,14.8777437601121
+1970-09-12 21:00:00,17.1061766049832
+1970-09-12 22:00:00,19.9053343273154
+1970-09-12 23:00:00,11.5643016916426
+1970-09-13 00:00:00,17.2042753223863
+1970-09-13 01:00:00,7.8767271508806
+1970-09-13 02:00:00,11.2037524406842
+1970-09-13 03:00:00,14.658005963295
+1970-09-13 04:00:00,11.8480591732197
+1970-09-13 05:00:00,19.5778197700843
+1970-09-13 06:00:00,7.91971668960038
+1970-09-13 07:00:00,15.4338331698317
+1970-09-13 08:00:00,18.0264173317447
+1970-09-13 09:00:00,12.550799501818
+1970-09-13 10:00:00,11.029375173139
+1970-09-13 11:00:00,14.4139592392144
+1970-09-13 12:00:00,13.177152443656
+1970-09-13 13:00:00,11.9810852648556
+1970-09-13 14:00:00,15.3404811260855
+1970-09-13 15:00:00,12.6654017788303
+1970-09-13 16:00:00,10.0989258947067
+1970-09-13 17:00:00,15.7477930099745
+1970-09-13 18:00:00,8.90101448467913
+1970-09-13 19:00:00,15.3677687712384
+1970-09-13 20:00:00,6.34287545206405
+1970-09-13 21:00:00,21.9616029793395
+1970-09-13 22:00:00,10.1814004621268
+1970-09-13 23:00:00,13.2433321039163
+1970-09-14 00:00:00,15.8869746060769
+1970-09-14 01:00:00,17.2131921302209
+1970-09-14 02:00:00,17.759481214331
+1970-09-14 03:00:00,16.1318171368409
+1970-09-14 04:00:00,12.2876340479374
+1970-09-14 05:00:00,14.2741793979749
+1970-09-14 06:00:00,25.7832343102215
+1970-09-14 07:00:00,22.9080801744749
+1970-09-14 08:00:00,16.5544851086371
+1970-09-14 09:00:00,26.1753480800387
+1970-09-14 10:00:00,10.9851893517669
+1970-09-14 11:00:00,17.3451457673238
+1970-09-14 12:00:00,21.306954513817
+1970-09-14 13:00:00,19.2109981226054
+1970-09-14 14:00:00,22.0304259448628
+1970-09-14 15:00:00,23.6981215653097
+1970-09-14 16:00:00,6.52460951633485
+1970-09-14 17:00:00,12.3459103114497
+1970-09-14 18:00:00,17.3137459864654
+1970-09-14 19:00:00,9.86176524337371
+1970-09-14 20:00:00,12.0463144553837
+1970-09-14 21:00:00,10.7765797061946
+1970-09-14 22:00:00,14.5683879500123
+1970-09-14 23:00:00,8.55041889993914
+1970-09-15 00:00:00,12.9342227271555
+1970-09-15 01:00:00,10.4114630530914
+1970-09-15 02:00:00,8.76397165563336
+1970-09-15 03:00:00,16.4746153340081
+1970-09-15 04:00:00,14.9339365693728
+1970-09-15 05:00:00,13.6331529331831
+1970-09-15 06:00:00,7.54172538614419
+1970-09-15 07:00:00,11.7905315755432
+1970-09-15 08:00:00,17.4208954693909
+1970-09-15 09:00:00,17.9241965771515
+1970-09-15 10:00:00,10.4921261840328
+1970-09-15 11:00:00,13.8836176817559
+1970-09-15 12:00:00,16.6680820134485
+1970-09-15 13:00:00,9.06126011314301
+1970-09-15 14:00:00,7.22285734043245
+1970-09-15 15:00:00,16.8984922403461
+1970-09-15 16:00:00,10.3781479648425
+1970-09-15 17:00:00,14.0862930288613
+1970-09-15 18:00:00,17.4071962677279
+1970-09-15 19:00:00,16.8613209339743
+1970-09-15 20:00:00,29.2731481705875
+1970-09-15 21:00:00,14.166349359269
+1970-09-15 22:00:00,16.1512232956339
+1970-09-15 23:00:00,15.466502474462
+1970-09-16 00:00:00,13.3644107793174
+1970-09-16 01:00:00,10.9069122291873
+1970-09-16 02:00:00,11.2324863618252
+1970-09-16 03:00:00,17.1546276750951
+1970-09-16 04:00:00,9.37878436067744
+1970-09-16 05:00:00,19.5742478672671
+1970-09-16 06:00:00,8.91541075091573
+1970-09-16 07:00:00,15.1568047485466
+1970-09-16 08:00:00,7.40185996814007
+1970-09-16 09:00:00,14.3944491165711
+1970-09-16 10:00:00,15.0938383040008
+1970-09-16 11:00:00,7.68196876186241
+1970-09-16 12:00:00,17.9240300508039
+1970-09-16 13:00:00,17.3092682619928
+1970-09-16 14:00:00,8.48858534164439
+1970-09-16 15:00:00,8.11371319970049
+1970-09-16 16:00:00,14.2046453746127
+1970-09-16 17:00:00,13.0169387250418
+1970-09-16 18:00:00,11.4102129391109
+1970-09-16 19:00:00,8.70952320276456
+1970-09-16 20:00:00,19.7348896700154
+1970-09-16 21:00:00,11.9113886541163
+1970-09-16 22:00:00,13.5627522051873
+1970-09-16 23:00:00,16.235758473723
+1970-09-17 00:00:00,12.6313976771721
+1970-09-17 01:00:00,9.67735630220331
+1970-09-17 02:00:00,9.05584095905693
+1970-09-17 03:00:00,15.7911089628969
+1970-09-17 04:00:00,12.6208792928537
+1970-09-17 05:00:00,14.0617922639138
+1970-09-17 06:00:00,16.405258208898
+1970-09-17 07:00:00,16.2600073797495
+1970-09-17 08:00:00,11.1542502852507
+1970-09-17 09:00:00,22.8481868689232
+1970-09-17 10:00:00,13.7226982345642
+1970-09-17 11:00:00,16.0903455293489
+1970-09-17 12:00:00,8.71319635570078
+1970-09-17 13:00:00,8.36819433056557
+1970-09-17 14:00:00,11.9192028994547
+1970-09-17 15:00:00,21.078598207066
+1970-09-17 16:00:00,16.1934350128934
+1970-09-17 17:00:00,9.58867730500867
+1970-09-17 18:00:00,29.8133781841082
+1970-09-17 19:00:00,14.9595045653863
+1970-09-17 20:00:00,21.7328138910843
+1970-09-17 21:00:00,17.2761932110764
+1970-09-17 22:00:00,12.3596733267364
+1970-09-17 23:00:00,17.5037407023894
+1970-09-18 00:00:00,11.8304778345928
+1970-09-18 01:00:00,11.7995720780776
+1970-09-18 02:00:00,21.7406877417383
+1970-09-18 03:00:00,19.241962911748
+1970-09-18 04:00:00,12.9225164194385
+1970-09-18 05:00:00,11.6444134891739
+1970-09-18 06:00:00,8.94717806499276
+1970-09-18 07:00:00,11.1689387526501
+1970-09-18 08:00:00,25.1839139186329
+1970-09-18 09:00:00,10.1399297228028
+1970-09-18 10:00:00,16.413477320427
+1970-09-18 11:00:00,6.52377175004147
+1970-09-18 12:00:00,16.7866988426557
+1970-09-18 13:00:00,17.6887233956784
+1970-09-18 14:00:00,17.9792479627427
+1970-09-18 15:00:00,20.5221400676749
+1970-09-18 16:00:00,14.2732459184042
+1970-09-18 17:00:00,8.01105830255194
+1970-09-18 18:00:00,8.82571140581818
+1970-09-18 19:00:00,17.8783366267207
+1970-09-18 20:00:00,10.6011710921522
+1970-09-18 21:00:00,10.6054463377999
+1970-09-18 22:00:00,14.3463112310323
+1970-09-18 23:00:00,9.837893859199
+1970-09-19 00:00:00,15.7930968439386
+1970-09-19 01:00:00,11.9006409911121
+1970-09-19 02:00:00,13.9391512503138
+1970-09-19 03:00:00,15.1340492372031
+1970-09-19 04:00:00,18.2313832905198
+1970-09-19 05:00:00,9.91111312662366
+1970-09-19 06:00:00,11.6731274926024
+1970-09-19 07:00:00,13.2142500969032
+1970-09-19 08:00:00,13.4476754937986
+1970-09-19 09:00:00,19.9601251358793
+1970-09-19 10:00:00,13.1226422302977
+1970-09-19 11:00:00,14.198983778327
+1970-09-19 12:00:00,10.8189567416402
+1970-09-19 13:00:00,14.7845552778234
+1970-09-19 14:00:00,14.866649596017
+1970-09-19 15:00:00,11.0039183513393
+1970-09-19 16:00:00,20.7566366163348
+1970-09-19 17:00:00,13.4105793864676
+1970-09-19 18:00:00,12.4078156141806
+1970-09-19 19:00:00,6.55143378756725
+1970-09-19 20:00:00,11.5276523025932
+1970-09-19 21:00:00,14.6788138458133
+1970-09-19 22:00:00,14.8257372780029
+1970-09-19 23:00:00,11.0825880247561
+1970-09-20 00:00:00,15.0067571978806
+1970-09-20 01:00:00,17.4205187396204
+1970-09-20 02:00:00,10.8085600966102
+1970-09-20 03:00:00,9.31221960630946
+1970-09-20 04:00:00,10.5823377520225
+1970-09-20 05:00:00,16.4953847662532
+1970-09-20 06:00:00,10.5257944367866
+1970-09-20 07:00:00,12.6062275990543
+1970-09-20 08:00:00,8.99835984945638
+1970-09-20 09:00:00,19.003758676147
+1970-09-20 10:00:00,16.3425920131783
+1970-09-20 11:00:00,13.0943790673797
+1970-09-20 12:00:00,19.9083843323595
+1970-09-20 13:00:00,10.5985002270611
+1970-09-20 14:00:00,17.0194543656992
+1970-09-20 15:00:00,12.7436398639005
+1970-09-20 16:00:00,13.1393397791347
+1970-09-20 17:00:00,18.5885994087515
+1970-09-20 18:00:00,22.1438865176427
+1970-09-20 19:00:00,15.734813994106
+1970-09-20 20:00:00,12.7656328569487
+1970-09-20 21:00:00,14.2910419874009
+1970-09-20 22:00:00,17.0543193383136
+1970-09-20 23:00:00,18.7786103617582
+1970-09-21 00:00:00,9.90722624875155
+1970-09-21 01:00:00,15.3777320640373
+1970-09-21 02:00:00,13.8172713215769
+1970-09-21 03:00:00,25.7617966640355
+1970-09-21 04:00:00,11.6836281678348
+1970-09-21 05:00:00,7.90635600956917
+1970-09-21 06:00:00,22.0807061298537
+1970-09-21 07:00:00,23.9034975936023
+1970-09-21 08:00:00,7.74914954702897
+1970-09-21 09:00:00,15.8764414411668
+1970-09-21 10:00:00,12.6897053777031
+1970-09-21 11:00:00,8.99322326824172
+1970-09-21 12:00:00,16.718144725711
+1970-09-21 13:00:00,12.1341714480572
+1970-09-21 14:00:00,16.3635518224121
+1970-09-21 15:00:00,8.28765854716328
+1970-09-21 16:00:00,14.5027533212695
+1970-09-21 17:00:00,7.88252434905245
+1970-09-21 18:00:00,15.7078292258981
+1970-09-21 19:00:00,11.5342383393805
+1970-09-21 20:00:00,10.5564538077506
+1970-09-21 21:00:00,14.2025138100357
+1970-09-21 22:00:00,7.51981730776522
+1970-09-21 23:00:00,16.2539702421969
+1970-09-22 00:00:00,10.0002353670609
+1970-09-22 01:00:00,16.5881131153523
+1970-09-22 02:00:00,16.2073013167524
+1970-09-22 03:00:00,19.4266064232377
+1970-09-22 04:00:00,4.7592936048499
+1970-09-22 05:00:00,10.7744381411899
+1970-09-22 06:00:00,11.4831632105316
+1970-09-22 07:00:00,23.3108703743887
+1970-09-22 08:00:00,19.8762829624443
+1970-09-22 09:00:00,8.93199326199556
+1970-09-22 10:00:00,11.8876223909675
+1970-09-22 11:00:00,14.3838887966782
+1970-09-22 12:00:00,10.8721752672175
+1970-09-22 13:00:00,12.2628526608786
+1970-09-22 14:00:00,15.0680629963353
+1970-09-22 15:00:00,17.3988185893045
+1970-09-22 16:00:00,17.8422805409348
+1970-09-22 17:00:00,21.2195284332802
+1970-09-22 18:00:00,14.4302801744403
+1970-09-22 19:00:00,14.7150858766127
+1970-09-22 20:00:00,7.27361936018786
+1970-09-22 21:00:00,15.3223131998672
+1970-09-22 22:00:00,8.17567827223919
+1970-09-22 23:00:00,10.9002695458307
+1970-09-23 00:00:00,14.4242695566745
+1970-09-23 01:00:00,16.0431655417031
+1970-09-23 02:00:00,35.070391485176
+1970-09-23 03:00:00,13.8185195832217
+1970-09-23 04:00:00,17.367273726295
+1970-09-23 05:00:00,14.2204067399645
+1970-09-23 06:00:00,12.4733765960288
+1970-09-23 07:00:00,18.5130021389811
+1970-09-23 08:00:00,12.1767116116929
+1970-09-23 09:00:00,10.6648153008592
+1970-09-23 10:00:00,10.2902990146092
+1970-09-23 11:00:00,12.0678709888932
+1970-09-23 12:00:00,22.8301153493235
+1970-09-23 13:00:00,12.001784345263
+1970-09-23 14:00:00,13.159425322252
+1970-09-23 15:00:00,12.5511925590567
+1970-09-23 16:00:00,17.980094037427
+1970-09-23 17:00:00,10.2759701005192
+1970-09-23 18:00:00,14.3860244573693
+1970-09-23 19:00:00,12.9406599941269
+1970-09-23 20:00:00,14.3411445584921
+1970-09-23 21:00:00,22.7541459138031
+1970-09-23 22:00:00,12.8836467335217
+1970-09-23 23:00:00,14.1886288005271
+1970-09-24 00:00:00,21.1474332289227
+1970-09-24 01:00:00,12.5272077929524
+1970-09-24 02:00:00,18.3071138140867
+1970-09-24 03:00:00,16.0971234257859
+1970-09-24 04:00:00,13.9953861546913
+1970-09-24 05:00:00,12.4828934150447
+1970-09-24 06:00:00,13.5105750773271
+1970-09-24 07:00:00,12.160345288414
+1970-09-24 08:00:00,14.8211357742792
+1970-09-24 09:00:00,14.1664320517218
+1970-09-24 10:00:00,12.4505928935468
+1970-09-24 11:00:00,17.9857007707855
+1970-09-24 12:00:00,19.6834093792509
+1970-09-24 13:00:00,10.0687862738187
+1970-09-24 14:00:00,8.83120696106033
+1970-09-24 15:00:00,10.2508288758235
+1970-09-24 16:00:00,11.5967655200161
+1970-09-24 17:00:00,9.95921415233017
+1970-09-24 18:00:00,13.0427323448991
+1970-09-24 19:00:00,11.6958889191655
+1970-09-24 20:00:00,17.1807092132493
+1970-09-24 21:00:00,11.7091632184906
+1970-09-24 22:00:00,8.48033069442651
+1970-09-24 23:00:00,18.6132462303107
+1970-09-25 00:00:00,15.539329075666
+1970-09-25 01:00:00,22.2699870437028
+1970-09-25 02:00:00,12.3252732335313
+1970-09-25 03:00:00,19.2526029211235
+1970-09-25 04:00:00,8.33646717820783
+1970-09-25 05:00:00,15.3968979674536
+1970-09-25 06:00:00,10.6423749941347
+1970-09-25 07:00:00,7.66436559771741
+1970-09-25 08:00:00,7.83641547408836
+1970-09-25 09:00:00,16.0518310857713
+1970-09-25 10:00:00,23.0498636373066
+1970-09-25 11:00:00,12.0195304815287
+1970-09-25 12:00:00,15.2444184148891
+1970-09-25 13:00:00,11.733490177967
+1970-09-25 14:00:00,14.2489943618792
+1970-09-25 15:00:00,13.8191467137812
+1970-09-25 16:00:00,11.5139779139612
+1970-09-25 17:00:00,14.1143198542435
+1970-09-25 18:00:00,8.16538007311622
+1970-09-25 19:00:00,9.90908763331253
+1970-09-25 20:00:00,6.14804493847621
+1970-09-25 21:00:00,18.8114945959613
+1970-09-25 22:00:00,14.0336619334258
+1970-09-25 23:00:00,10.6469137824412
+1970-09-26 00:00:00,19.9823586139914
+1970-09-26 01:00:00,7.44418951531498
+1970-09-26 02:00:00,9.10433869772755
+1970-09-26 03:00:00,16.7862614561344
+1970-09-26 04:00:00,12.8851559328864
+1970-09-26 05:00:00,9.38316095820372
+1970-09-26 06:00:00,23.9350400676353
+1970-09-26 07:00:00,21.592599027949
+1970-09-26 08:00:00,15.0735566844605
+1970-09-26 09:00:00,10.6944596993199
+1970-09-26 10:00:00,9.92917367316338
+1970-09-26 11:00:00,15.038096898777
+1970-09-26 12:00:00,16.0710120019678
+1970-09-26 13:00:00,12.7812307069481
+1970-09-26 14:00:00,14.1769640447388
+1970-09-26 15:00:00,17.9890617950455
+1970-09-26 16:00:00,10.5518752984144
+1970-09-26 17:00:00,12.4504435650896
+1970-09-26 18:00:00,18.6049872265168
+1970-09-26 19:00:00,11.8304905603159
+1970-09-26 20:00:00,9.56886271787416
+1970-09-26 21:00:00,8.09210804074092
+1970-09-26 22:00:00,8.82217566817514
+1970-09-26 23:00:00,18.9158438178796
+1970-09-27 00:00:00,17.3142575851299
+1970-09-27 01:00:00,13.7728159800488
+1970-09-27 02:00:00,6.52832964748067
+1970-09-27 03:00:00,12.5653544930305
+1970-09-27 04:00:00,11.0970794278663
+1970-09-27 05:00:00,9.973406515416
+1970-09-27 06:00:00,24.4667929029877
+1970-09-27 07:00:00,17.5956017071191
+1970-09-27 08:00:00,22.1458299045315
+1970-09-27 09:00:00,15.0226623112957
+1970-09-27 10:00:00,16.1947526557539
+1970-09-27 11:00:00,15.8162930348654
+1970-09-27 12:00:00,10.0193667073355
+1970-09-27 13:00:00,19.7319629174685
+1970-09-27 14:00:00,9.39140095102463
+1970-09-27 15:00:00,14.2681060084568
+1970-09-27 16:00:00,14.9434149867253
+1970-09-27 17:00:00,14.0232773293762
+1970-09-27 18:00:00,14.4070995813288
+1970-09-27 19:00:00,16.8958496542043
+1970-09-27 20:00:00,20.8711500939052
+1970-09-27 21:00:00,10.1146724931418
+1970-09-27 22:00:00,15.5426141832091
+1970-09-27 23:00:00,16.1723252493458
+1970-09-28 00:00:00,11.8757956132324
+1970-09-28 01:00:00,15.905821464917
+1970-09-28 02:00:00,12.0873992055487
+1970-09-28 03:00:00,12.3033683541635
+1970-09-28 04:00:00,14.1103910369785
+1970-09-28 05:00:00,10.2397820912097
+1970-09-28 06:00:00,14.8962167229744
+1970-09-28 07:00:00,12.2093978569395
+1970-09-28 08:00:00,14.9657068638455
+1970-09-28 09:00:00,26.175267119212
+1970-09-28 10:00:00,10.9044747826956
+1970-09-28 11:00:00,13.1184129326662
+1970-09-28 12:00:00,20.0928156801576
+1970-09-28 13:00:00,16.1541455317757
+1970-09-28 14:00:00,27.0627643934754
+1970-09-28 15:00:00,6.47416539031768
+1970-09-28 16:00:00,10.4365215764672
+1970-09-28 17:00:00,12.9760339614465
+1970-09-28 18:00:00,12.8545779788898
+1970-09-28 19:00:00,14.9742899514786
+1970-09-28 20:00:00,12.7650810087129
+1970-09-28 21:00:00,18.2728384717569
+1970-09-28 22:00:00,7.99663264017579
+1970-09-28 23:00:00,22.1115133972624
+1970-09-29 00:00:00,16.0722218027732
+1970-09-29 01:00:00,13.4884143910884
+1970-09-29 02:00:00,9.87805322041335
+1970-09-29 03:00:00,14.3631901623558
+1970-09-29 04:00:00,16.9711072868856
+1970-09-29 05:00:00,18.4762648093286
+1970-09-29 06:00:00,13.9065482369281
+1970-09-29 07:00:00,12.9155627940051
+1970-09-29 08:00:00,11.5990027588976
+1970-09-29 09:00:00,17.4189853676881
+1970-09-29 10:00:00,7.91736880559416
+1970-09-29 11:00:00,11.3355203783625
+1970-09-29 12:00:00,18.0496956935857
+1970-09-29 13:00:00,11.886094888502
+1970-09-29 14:00:00,13.1979360910287
+1970-09-29 15:00:00,11.7374684533433
+1970-09-29 16:00:00,20.8484226882584
+1970-09-29 17:00:00,19.3170645633144
+1970-09-29 18:00:00,12.5876338698688
+1970-09-29 19:00:00,17.2090758497343
+1970-09-29 20:00:00,24.1564075567554
+1970-09-29 21:00:00,11.9779554532907
+1970-09-29 22:00:00,9.17528665367647
+1970-09-29 23:00:00,26.4497963052448
+1970-09-30 00:00:00,11.1381527222054
+1970-09-30 01:00:00,15.0213529212603
+1970-09-30 02:00:00,9.37082525597868
+1970-09-30 03:00:00,10.998539051423
+1970-09-30 04:00:00,9.90125353020074
+1970-09-30 05:00:00,10.8633652657901
+1970-09-30 06:00:00,7.32773356747402
+1970-09-30 07:00:00,15.1974030713959
+1970-09-30 08:00:00,15.6888017588725
+1970-09-30 09:00:00,20.0049779794804
+1970-09-30 10:00:00,15.2658475061123
+1970-09-30 11:00:00,12.4109910377204
+1970-09-30 12:00:00,17.2322803962402
+1970-09-30 13:00:00,5.93917348894673
+1970-09-30 14:00:00,10.8016240280822
+1970-09-30 15:00:00,18.5721540492993
+1970-09-30 16:00:00,21.5905302697951
+1970-09-30 17:00:00,27.1977365105914
+1970-09-30 18:00:00,15.7684603240361
+1970-09-30 19:00:00,13.4306980620326
+1970-09-30 20:00:00,14.2757978816782
+1970-09-30 21:00:00,10.9017597213971
+1970-09-30 22:00:00,14.7057307080912
+1970-09-30 23:00:00,12.6074050582285
+1970-10-01 00:00:00,19.3447575018809
+1970-10-01 01:00:00,20.2445227584905
+1970-10-01 02:00:00,13.5183975365124
+1970-10-01 03:00:00,11.2316541194284
+1970-10-01 04:00:00,11.4137395183649
+1970-10-01 05:00:00,16.0685629855371
+1970-10-01 06:00:00,13.7167929595768
+1970-10-01 07:00:00,17.9846124389411
+1970-10-01 08:00:00,17.3333020792889
+1970-10-01 09:00:00,16.0663133004604
+1970-10-01 10:00:00,9.32419126342405
+1970-10-01 11:00:00,17.1492392920521
+1970-10-01 12:00:00,21.556681353705
+1970-10-01 13:00:00,10.4163034868964
+1970-10-01 14:00:00,14.7993536493483
+1970-10-01 15:00:00,7.20933238605663
+1970-10-01 16:00:00,9.5607380973639
+1970-10-01 17:00:00,19.4394684665601
+1970-10-01 18:00:00,10.4603205759393
+1970-10-01 19:00:00,7.48490704902483
+1970-10-01 20:00:00,7.79565050138179
+1970-10-01 21:00:00,19.3610070341249
+1970-10-01 22:00:00,14.2913775680417
+1970-10-01 23:00:00,9.26870073448802
+1970-10-02 00:00:00,8.30141466044025
+1970-10-02 01:00:00,27.9450385571115
+1970-10-02 02:00:00,16.6921259641098
+1970-10-02 03:00:00,10.1923017510625
+1970-10-02 04:00:00,12.3586757162836
+1970-10-02 05:00:00,12.3551974483283
+1970-10-02 06:00:00,17.9909953741911
+1970-10-02 07:00:00,21.0298039994245
+1970-10-02 08:00:00,8.03845013081968
+1970-10-02 09:00:00,12.8996668184862
+1970-10-02 10:00:00,21.1227121724998
+1970-10-02 11:00:00,12.7047413517477
+1970-10-02 12:00:00,21.1168744522466
+1970-10-02 13:00:00,9.62630078569673
+1970-10-02 14:00:00,15.2164860200146
+1970-10-02 15:00:00,14.2971167302499
+1970-10-02 16:00:00,17.0400592417925
+1970-10-02 17:00:00,17.57856873484
+1970-10-02 18:00:00,23.2831120968237
+1970-10-02 19:00:00,14.7141245166355
+1970-10-02 20:00:00,10.7867600324667
+1970-10-02 21:00:00,27.020740509686
+1970-10-02 22:00:00,15.8269636519241
+1970-10-02 23:00:00,16.0200488571822
+1970-10-03 00:00:00,18.2649808639263
+1970-10-03 01:00:00,16.6909042240406
+1970-10-03 02:00:00,12.2754574734845
+1970-10-03 03:00:00,6.72519782567261
+1970-10-03 04:00:00,9.92855936719872
+1970-10-03 05:00:00,14.7987172109873
+1970-10-03 06:00:00,9.69631159876556
+1970-10-03 07:00:00,9.56763677171669
+1970-10-03 08:00:00,20.059293334921
+1970-10-03 09:00:00,11.9616607599553
+1970-10-03 10:00:00,20.6023083331498
+1970-10-03 11:00:00,20.4476390328507
+1970-10-03 12:00:00,11.7452978361438
+1970-10-03 13:00:00,13.2801733667983
+1970-10-03 14:00:00,12.3882161997273
+1970-10-03 15:00:00,22.4809579326198
+1970-10-03 16:00:00,9.56208015549356
+1970-10-03 17:00:00,17.5431432042899
+1970-10-03 18:00:00,16.8305449481725
+1970-10-03 19:00:00,9.54730545014029
+1970-10-03 20:00:00,21.6370054542453
+1970-10-03 21:00:00,17.58937853434
+1970-10-03 22:00:00,11.8866860828208
+1970-10-03 23:00:00,10.7793770979305
+1970-10-04 00:00:00,22.1966473168331
+1970-10-04 01:00:00,17.6591937314749
+1970-10-04 02:00:00,9.06821076886905
+1970-10-04 03:00:00,14.6040196772738
+1970-10-04 04:00:00,11.1721762851109
+1970-10-04 05:00:00,9.42200255663229
+1970-10-04 06:00:00,19.6868696549203
+1970-10-04 07:00:00,8.30393861681913
+1970-10-04 08:00:00,16.4308405543085
+1970-10-04 09:00:00,7.58213984726858
+1970-10-04 10:00:00,7.81625342820497
+1970-10-04 11:00:00,17.1376261860785
+1970-10-04 12:00:00,16.6488928682274
+1970-10-04 13:00:00,20.3853947303822
+1970-10-04 14:00:00,13.1433616246107
+1970-10-04 15:00:00,7.80157040999567
+1970-10-04 16:00:00,12.3905890917618
+1970-10-04 17:00:00,11.2678110121475
+1970-10-04 18:00:00,17.4798343443562
+1970-10-04 19:00:00,11.3343045439714
+1970-10-04 20:00:00,17.0012087545743
+1970-10-04 21:00:00,24.26768429286
+1970-10-04 22:00:00,12.9413983813054
+1970-10-04 23:00:00,13.9435549967228
+1970-10-05 00:00:00,15.0655643941439
+1970-10-05 01:00:00,13.1236310058074
+1970-10-05 02:00:00,24.128697714609
+1970-10-05 03:00:00,19.9960674753559
+1970-10-05 04:00:00,17.3020423534144
+1970-10-05 05:00:00,8.84907989843396
+1970-10-05 06:00:00,19.3695942539853
+1970-10-05 07:00:00,10.1269055930141
+1970-10-05 08:00:00,12.7965943900247
+1970-10-05 09:00:00,16.8329396982118
+1970-10-05 10:00:00,17.1493779357148
+1970-10-05 11:00:00,22.7188605791359
+1970-10-05 12:00:00,15.5496833857636
+1970-10-05 13:00:00,15.7187632057946
+1970-10-05 14:00:00,17.770364822937
+1970-10-05 15:00:00,11.3111662867496
+1970-10-05 16:00:00,21.332904620713
+1970-10-05 17:00:00,11.5914007110315
+1970-10-05 18:00:00,13.6471338899226
+1970-10-05 19:00:00,6.63811994530895
+1970-10-05 20:00:00,12.6062359690555
+1970-10-05 21:00:00,15.5333639371146
+1970-10-05 22:00:00,15.6537028904535
+1970-10-05 23:00:00,8.84973407682224
+1970-10-06 00:00:00,11.5523281536444
+1970-10-06 01:00:00,16.7494219626958
+1970-10-06 02:00:00,9.76573965153543
+1970-10-06 03:00:00,9.63540549980162
+1970-10-06 04:00:00,8.02988184220152
+1970-10-06 05:00:00,12.9937460878255
+1970-10-06 06:00:00,11.6047424949654
+1970-10-06 07:00:00,12.4145861129279
+1970-10-06 08:00:00,15.2656954710981
+1970-10-06 09:00:00,12.8866670273224
+1970-10-06 10:00:00,19.098609504671
+1970-10-06 11:00:00,18.1758594630551
+1970-10-06 12:00:00,21.5222495985871
+1970-10-06 13:00:00,13.9574140446888
+1970-10-06 14:00:00,11.7282418387287
+1970-10-06 15:00:00,23.9849885551935
+1970-10-06 16:00:00,4.01262044723791
+1970-10-06 17:00:00,12.5649045046468
+1970-10-06 18:00:00,27.4113430937651
+1970-10-06 19:00:00,20.0863323103134
+1970-10-06 20:00:00,17.9429178204187
+1970-10-06 21:00:00,20.399571177175
+1970-10-06 22:00:00,14.0554361223604
+1970-10-06 23:00:00,17.7038800865816
+1970-10-07 00:00:00,11.2799362333814
+1970-10-07 01:00:00,10.6314176463835
+1970-10-07 02:00:00,16.5550384483984
+1970-10-07 03:00:00,17.6724835592494
+1970-10-07 04:00:00,13.0706437796147
+1970-10-07 05:00:00,16.1443555497187
+1970-10-07 06:00:00,12.2262025933203
+1970-10-07 07:00:00,15.9158504051074
+1970-10-07 08:00:00,12.7879814662703
+1970-10-07 09:00:00,9.5176910691139
+1970-10-07 10:00:00,14.273577874721
+1970-10-07 11:00:00,11.4749761742034
+1970-10-07 12:00:00,21.9253225417878
+1970-10-07 13:00:00,21.8011385281677
+1970-10-07 14:00:00,15.1607658387518
+1970-10-07 15:00:00,10.4970471296832
+1970-10-07 16:00:00,7.07225941294262
+1970-10-07 17:00:00,15.8767169091491
+1970-10-07 18:00:00,11.4898224631274
+1970-10-07 19:00:00,9.80506245995157
+1970-10-07 20:00:00,11.6490985467827
+1970-10-07 21:00:00,19.1097496681884
+1970-10-07 22:00:00,15.872509634883
+1970-10-07 23:00:00,22.3488290036032
+1970-10-08 00:00:00,15.1303048329272
+1970-10-08 01:00:00,26.5813923131881
+1970-10-08 02:00:00,15.5298268047894
+1970-10-08 03:00:00,17.3128447645791
+1970-10-08 04:00:00,13.1182020111951
+1970-10-08 05:00:00,5.87405211885832
+1970-10-08 06:00:00,12.9832691212752
+1970-10-08 07:00:00,18.492733678037
+1970-10-08 08:00:00,11.29457208774
+1970-10-08 09:00:00,9.69951643260621
+1970-10-08 10:00:00,13.5670545839694
+1970-10-08 11:00:00,16.3387516623893
+1970-10-08 12:00:00,11.6941570635219
+1970-10-08 13:00:00,8.46832530839807
+1970-10-08 14:00:00,21.0837147590569
+1970-10-08 15:00:00,12.8251510143871
+1970-10-08 16:00:00,7.92895292967622
+1970-10-08 17:00:00,16.1781883696803
+1970-10-08 18:00:00,12.1887214566189
+1970-10-08 19:00:00,9.12518045205774
+1970-10-08 20:00:00,8.51539350050406
+1970-10-08 21:00:00,11.6999806068938
+1970-10-08 22:00:00,12.1242435138218
+1970-10-08 23:00:00,18.3554087660936
+1970-10-09 00:00:00,13.6578927042537
+1970-10-09 01:00:00,19.8368835784767
+1970-10-09 02:00:00,12.3463719303817
+1970-10-09 03:00:00,16.9890922016661
+1970-10-09 04:00:00,12.0153925116136
+1970-10-09 05:00:00,8.18500713088638
+1970-10-09 06:00:00,17.9956538341451
+1970-10-09 07:00:00,12.0510471834864
+1970-10-09 08:00:00,12.8211898809741
+1970-10-09 09:00:00,13.0860723366943
+1970-10-09 10:00:00,15.5939629757149
+1970-10-09 11:00:00,11.2299294151788
+1970-10-09 12:00:00,15.0485163415164
+1970-10-09 13:00:00,14.7700492965651
+1970-10-09 14:00:00,13.0899125824711
+1970-10-09 15:00:00,13.304081278373
+1970-10-09 16:00:00,15.0921094620828
+1970-10-09 17:00:00,15.0528598747127
+1970-10-09 18:00:00,10.3121647338505
+1970-10-09 19:00:00,19.5714683590241
+1970-10-09 20:00:00,15.1149548319994
+1970-10-09 21:00:00,10.7451337472764
+1970-10-09 22:00:00,20.6167211736205
+1970-10-09 23:00:00,18.1164295147956
+1970-10-10 00:00:00,17.3272218357486
+1970-10-10 01:00:00,17.7413800220432
+1970-10-10 02:00:00,22.5571683803755
+1970-10-10 03:00:00,11.3551865431322
+1970-10-10 04:00:00,11.2257351207731
+1970-10-10 05:00:00,9.08634646859484
+1970-10-10 06:00:00,16.9372601462927
+1970-10-10 07:00:00,20.5702060461033
+1970-10-10 08:00:00,11.740547262519
+1970-10-10 09:00:00,19.1968491515098
+1970-10-10 10:00:00,6.84964026323721
+1970-10-10 11:00:00,14.4965586262215
+1970-10-10 12:00:00,6.34532990037818
+1970-10-10 13:00:00,13.49432546346
+1970-10-10 14:00:00,19.0835552196062
+1970-10-10 15:00:00,11.7731149658606
+1970-10-10 16:00:00,18.9922550120476
+1970-10-10 17:00:00,15.5848525916252
+1970-10-10 18:00:00,16.4378723855924
+1970-10-10 19:00:00,6.64368400623987
+1970-10-10 20:00:00,12.7861994155742
+1970-10-10 21:00:00,19.5710229440473
+1970-10-10 22:00:00,14.5958168601073
+1970-10-10 23:00:00,12.9767934182834
+1970-10-11 00:00:00,18.3404078779279
+1970-10-11 01:00:00,10.4506197129679
+1970-10-11 02:00:00,8.06513470098198
+1970-10-11 03:00:00,12.2267823632854
+1970-10-11 04:00:00,12.1735108652153
+1970-10-11 05:00:00,12.382112820303
+1970-10-11 06:00:00,18.3146640987541
+1970-10-11 07:00:00,11.729022758173
+1970-10-11 08:00:00,7.23130972913817
+1970-10-11 09:00:00,15.8697505061104
+1970-10-11 10:00:00,9.0659462384278
+1970-10-11 11:00:00,9.75871487474918
+1970-10-11 12:00:00,9.88209109309316
+1970-10-11 13:00:00,15.6311247511736
+1970-10-11 14:00:00,19.5009900815429
+1970-10-11 15:00:00,8.00082997468232
+1970-10-11 16:00:00,15.4501973928441
+1970-10-11 17:00:00,16.3659417315665
+1970-10-11 18:00:00,14.8020324819345
+1970-10-11 19:00:00,19.7076200778039
+1970-10-11 20:00:00,12.399190360377
+1970-10-11 21:00:00,24.873057128217
+1970-10-11 22:00:00,14.6892521585611
+1970-10-11 23:00:00,19.8122941925713
+1970-10-12 00:00:00,9.02825084357295
+1970-10-12 01:00:00,18.7617195629819
+1970-10-12 02:00:00,21.8342368470415
+1970-10-12 03:00:00,22.0386839480107
+1970-10-12 04:00:00,21.7255585016867
+1970-10-12 05:00:00,10.2199720048111
+1970-10-12 06:00:00,14.2515448582335
+1970-10-12 07:00:00,12.1798756822977
+1970-10-12 08:00:00,14.3992217542354
+1970-10-12 09:00:00,10.306932950986
+1970-10-12 10:00:00,11.995469137216
+1970-10-12 11:00:00,17.5829384398335
+1970-10-12 12:00:00,13.1076487736875
+1970-10-12 13:00:00,19.7900808931602
+1970-10-12 14:00:00,13.1001603973222
+1970-10-12 15:00:00,12.5309060093979
+1970-10-12 16:00:00,13.6465242099953
+1970-10-12 17:00:00,14.3063228791562
+1970-10-12 18:00:00,18.5301020551543
+1970-10-12 19:00:00,16.9481068136957
+1970-10-12 20:00:00,20.1663326929988
+1970-10-12 21:00:00,14.1377397668198
+1970-10-12 22:00:00,11.6364587053801
+1970-10-12 23:00:00,15.7827959593601
+1970-10-13 00:00:00,15.4937570120634
+1970-10-13 01:00:00,17.1354309238452
+1970-10-13 02:00:00,14.8803579918215
+1970-10-13 03:00:00,15.1387689492654
+1970-10-13 04:00:00,12.5986075328273
+1970-10-13 05:00:00,10.0159100074861
+1970-10-13 06:00:00,11.9611820818411
+1970-10-13 07:00:00,8.11579154618168
+1970-10-13 08:00:00,6.71549430563769
+1970-10-13 09:00:00,8.54994809941412
+1970-10-13 10:00:00,12.4481943921569
+1970-10-13 11:00:00,17.6240349874685
+1970-10-13 12:00:00,21.2801912340951
+1970-10-13 13:00:00,16.6683610900826
+1970-10-13 14:00:00,16.8937628780944
+1970-10-13 15:00:00,12.1251073807569
+1970-10-13 16:00:00,19.3256664013429
+1970-10-13 17:00:00,13.3006717909548
+1970-10-13 18:00:00,17.4191641959865
+1970-10-13 19:00:00,16.5717598518394
+1970-10-13 20:00:00,8.26111264355717
+1970-10-13 21:00:00,12.8379809179541
+1970-10-13 22:00:00,18.0499010727778
+1970-10-13 23:00:00,18.3493939361079
+1970-10-14 00:00:00,10.7948577677419
+1970-10-14 01:00:00,14.7562717203085
+1970-10-14 02:00:00,21.2389054175109
+1970-10-14 03:00:00,12.2765859126423
+1970-10-14 04:00:00,11.1518987552014
+1970-10-14 05:00:00,9.7478093204956
+1970-10-14 06:00:00,9.90718638287455
+1970-10-14 07:00:00,16.2268365841892
+1970-10-14 08:00:00,18.6425461317279
+1970-10-14 09:00:00,13.4979856112066
+1970-10-14 10:00:00,5.91686650623035
+1970-10-14 11:00:00,21.5836497871097
+1970-10-14 12:00:00,9.0969924392856
+1970-10-14 13:00:00,12.6655441602126
+1970-10-14 14:00:00,18.3496722118684
+1970-10-14 15:00:00,11.9285017490336
+1970-10-14 16:00:00,19.6586496591491
+1970-10-14 17:00:00,16.0660294374118
+1970-10-14 18:00:00,11.2718881795107
+1970-10-14 19:00:00,13.835276272743
+1970-10-14 20:00:00,16.5407484171118
+1970-10-14 21:00:00,14.5973827916276
+1970-10-14 22:00:00,17.3192859310325
+1970-10-14 23:00:00,15.9602015771104
+1970-10-15 00:00:00,20.1576039315208
+1970-10-15 01:00:00,9.11860925777206
+1970-10-15 02:00:00,18.1077153847067
+1970-10-15 03:00:00,20.4508295119895
+1970-10-15 04:00:00,15.2952550494016
+1970-10-15 05:00:00,15.7418755405485
+1970-10-15 06:00:00,10.5392623979376
+1970-10-15 07:00:00,11.5050508718689
+1970-10-15 08:00:00,11.4741585356949
+1970-10-15 09:00:00,12.4549200896389
+1970-10-15 10:00:00,14.3888605170421
+1970-10-15 11:00:00,12.3709594872741
+1970-10-15 12:00:00,16.037096146766
+1970-10-15 13:00:00,11.4316390375181
+1970-10-15 14:00:00,9.52439145398013
+1970-10-15 15:00:00,5.72773688991228
+1970-10-15 16:00:00,20.010689312113
+1970-10-15 17:00:00,11.6390877701125
+1970-10-15 18:00:00,17.6218608990882
+1970-10-15 19:00:00,12.390011510624
+1970-10-15 20:00:00,18.1213956233923
+1970-10-15 21:00:00,21.8477050432672
+1970-10-15 22:00:00,19.0011714935017
+1970-10-15 23:00:00,9.97451078196316
+1970-10-16 00:00:00,21.7019878412206
+1970-10-16 01:00:00,13.089793581412
+1970-10-16 02:00:00,14.7999189885095
+1970-10-16 03:00:00,17.1654412391018
+1970-10-16 04:00:00,13.9029598162519
+1970-10-16 05:00:00,9.95035061186109
+1970-10-16 06:00:00,24.531083045565
+1970-10-16 07:00:00,8.29909039652384
+1970-10-16 08:00:00,10.8233529801096
+1970-10-16 09:00:00,12.3912624541532
+1970-10-16 10:00:00,19.0444592064884
+1970-10-16 11:00:00,16.4087201172428
+1970-10-16 12:00:00,13.5104379590573
+1970-10-16 13:00:00,16.2788206922088
+1970-10-16 14:00:00,8.55973205621931
+1970-10-16 15:00:00,10.352179264503
+1970-10-16 16:00:00,9.94201924802072
+1970-10-16 17:00:00,21.2646841326638
+1970-10-16 18:00:00,8.54163038196023
+1970-10-16 19:00:00,23.3016634691726
+1970-10-16 20:00:00,8.12166444256617
+1970-10-16 21:00:00,11.3881824486053
+1970-10-16 22:00:00,8.1450081784089
+1970-10-16 23:00:00,23.4009058781733
+1970-10-17 00:00:00,8.77925393607201
+1970-10-17 01:00:00,14.1171746801868
+1970-10-17 02:00:00,10.9336928692655
+1970-10-17 03:00:00,13.3197697715106
+1970-10-17 04:00:00,12.410585979714
+1970-10-17 05:00:00,9.72221507898259
+1970-10-17 06:00:00,13.0388721002976
+1970-10-17 07:00:00,15.3721235055579
+1970-10-17 08:00:00,16.0999139775545
+1970-10-17 09:00:00,9.66372113543963
+1970-10-17 10:00:00,18.4830214089395
+1970-10-17 11:00:00,13.3819591032586
+1970-10-17 12:00:00,8.54309186682985
+1970-10-17 13:00:00,10.4193477293666
+1970-10-17 14:00:00,15.1993915293469
+1970-10-17 15:00:00,12.6538226173432
+1970-10-17 16:00:00,11.5910988800101
+1970-10-17 17:00:00,17.0673261151051
+1970-10-17 18:00:00,22.1582331636763
+1970-10-17 19:00:00,15.498031501326
+1970-10-17 20:00:00,7.69996228954497
+1970-10-17 21:00:00,11.0075759869847
+1970-10-17 22:00:00,5.9527658669873
+1970-10-17 23:00:00,9.57299226120175
+1970-10-18 00:00:00,25.9526917834957
+1970-10-18 01:00:00,10.2296127145948
+1970-10-18 02:00:00,13.2019041612477
+1970-10-18 03:00:00,13.0679038200269
+1970-10-18 04:00:00,13.2476044632882
+1970-10-18 05:00:00,15.8041001260776
+1970-10-18 06:00:00,16.9187257792166
+1970-10-18 07:00:00,20.8352916662479
+1970-10-18 08:00:00,12.0001364652393
+1970-10-18 09:00:00,15.7917756332563
+1970-10-18 10:00:00,19.3433126955431
+1970-10-18 11:00:00,18.4554637800932
+1970-10-18 12:00:00,17.7361880690287
+1970-10-18 13:00:00,12.4409332073706
+1970-10-18 14:00:00,13.0872049617402
+1970-10-18 15:00:00,9.3962539024239
+1970-10-18 16:00:00,6.77545188067594
+1970-10-18 17:00:00,12.5376596689098
+1970-10-18 18:00:00,10.3409971857884
+1970-10-18 19:00:00,15.4556847037065
+1970-10-18 20:00:00,12.8606056516786
+1970-10-18 21:00:00,15.6257915407158
+1970-10-18 22:00:00,8.30086816659272
+1970-10-18 23:00:00,11.4459856324228
+1970-10-19 00:00:00,10.8203833943068
+1970-10-19 01:00:00,19.6505557925998
+1970-10-19 02:00:00,11.9807370875457
+1970-10-19 03:00:00,15.3589137185237
+1970-10-19 04:00:00,12.8233912624939
+1970-10-19 05:00:00,17.0234375914923
+1970-10-19 06:00:00,9.0219422556461
+1970-10-19 07:00:00,11.1112955870633
+1970-10-19 08:00:00,6.16365507207245
+1970-10-19 09:00:00,10.3606372180469
+1970-10-19 10:00:00,18.4930451455524
+1970-10-19 11:00:00,12.7247344502831
+1970-10-19 12:00:00,12.1170865546311
+1970-10-19 13:00:00,10.2863328681556
+1970-10-19 14:00:00,18.1063797005007
+1970-10-19 15:00:00,20.7214604330313
+1970-10-19 16:00:00,20.2248145167067
+1970-10-19 17:00:00,11.124286910455
+1970-10-19 18:00:00,14.0928200395182
+1970-10-19 19:00:00,21.4739092670333
+1970-10-19 20:00:00,14.2377970182211
+1970-10-19 21:00:00,7.35577811082178
+1970-10-19 22:00:00,16.6660394708305
+1970-10-19 23:00:00,10.9301815903026
+1970-10-20 00:00:00,17.2546747511727
+1970-10-20 01:00:00,7.37972712008847
+1970-10-20 02:00:00,9.15142555488998
+1970-10-20 03:00:00,8.61545984209507
+1970-10-20 04:00:00,12.5355629132448
+1970-10-20 05:00:00,17.3873214149333
+1970-10-20 06:00:00,9.00475365941068
+1970-10-20 07:00:00,10.8534934716342
+1970-10-20 08:00:00,24.8393866971575
+1970-10-20 09:00:00,16.5648302687728
+1970-10-20 10:00:00,18.9243008636202
+1970-10-20 11:00:00,14.6811549537367
+1970-10-20 12:00:00,15.7412707447607
+1970-10-20 13:00:00,8.95392435758029
+1970-10-20 14:00:00,20.3642091707405
+1970-10-20 15:00:00,7.72884913566975
+1970-10-20 16:00:00,16.3528116608237
+1970-10-20 17:00:00,16.4471882644833
+1970-10-20 18:00:00,11.2826428712032
+1970-10-20 19:00:00,15.8452922585877
+1970-10-20 20:00:00,10.7286836371064
+1970-10-20 21:00:00,14.56679527755
+1970-10-20 22:00:00,13.8162310183606
+1970-10-20 23:00:00,18.1940888137174
+1970-10-21 00:00:00,13.4283037249139
+1970-10-21 01:00:00,13.449520258701
+1970-10-21 02:00:00,17.9235537681543
+1970-10-21 03:00:00,11.1374900081182
+1970-10-21 04:00:00,13.1457899510088
+1970-10-21 05:00:00,9.5729255890054
+1970-10-21 06:00:00,14.4251661062168
+1970-10-21 07:00:00,14.0045520099446
+1970-10-21 08:00:00,20.5703037062022
+1970-10-21 09:00:00,19.1130191494902
+1970-10-21 10:00:00,14.2086489381128
+1970-10-21 11:00:00,9.5672972232774
+1970-10-21 12:00:00,22.0443172446277
+1970-10-21 13:00:00,18.5105823804743
+1970-10-21 14:00:00,16.157102799199
+1970-10-21 15:00:00,13.1389935317423
+1970-10-21 16:00:00,17.9250039373923
+1970-10-21 17:00:00,11.5199671790353
+1970-10-21 18:00:00,16.4182339779589
+1970-10-21 19:00:00,10.7490392314969
+1970-10-21 20:00:00,16.7097185557273
+1970-10-21 21:00:00,13.709779049543
+1970-10-21 22:00:00,9.79228899343007
+1970-10-21 23:00:00,13.9396560687705
+1970-10-22 00:00:00,9.39769740511288
+1970-10-22 01:00:00,10.3356688974855
+1970-10-22 02:00:00,20.7622405153062
+1970-10-22 03:00:00,14.3316285922416
+1970-10-22 04:00:00,22.2557146800543
+1970-10-22 05:00:00,12.0369350397122
+1970-10-22 06:00:00,15.352590411718
+1970-10-22 07:00:00,5.9893708610767
+1970-10-22 08:00:00,7.01417136097064
+1970-10-22 09:00:00,8.25510483824318
+1970-10-22 10:00:00,12.6010557627527
+1970-10-22 11:00:00,11.0196121748592
+1970-10-22 12:00:00,13.8818218691012
+1970-10-22 13:00:00,14.1569063918068
+1970-10-22 14:00:00,7.5261613555664
+1970-10-22 15:00:00,16.1403491300893
+1970-10-22 16:00:00,9.72469551815207
+1970-10-22 17:00:00,10.281450116868
+1970-10-22 18:00:00,11.0044815932594
+1970-10-22 19:00:00,15.7434190208104
+1970-10-22 20:00:00,14.363913417074
+1970-10-22 21:00:00,9.68087492053722
+1970-10-22 22:00:00,11.2739339556472
+1970-10-22 23:00:00,13.7830363501073
+1970-10-23 00:00:00,12.2296402047834
+1970-10-23 01:00:00,16.9299183722237
+1970-10-23 02:00:00,21.7716663890675
+1970-10-23 03:00:00,14.7102012075497
+1970-10-23 04:00:00,13.3549542163741
+1970-10-23 05:00:00,13.9749078618214
+1970-10-23 06:00:00,12.1649730181962
+1970-10-23 07:00:00,13.4539573249819
+1970-10-23 08:00:00,14.2376450815202
+1970-10-23 09:00:00,22.1416149977123
+1970-10-23 10:00:00,14.3259068977638
+1970-10-23 11:00:00,13.2621536477194
+1970-10-23 12:00:00,7.98720434315857
+1970-10-23 13:00:00,12.4155845026712
+1970-10-23 14:00:00,4.8266439942253
+1970-10-23 15:00:00,12.8472021306068
+1970-10-23 16:00:00,16.1433323159936
+1970-10-23 17:00:00,18.2401878797136
+1970-10-23 18:00:00,13.5132544352874
+1970-10-23 19:00:00,18.9943924422072
+1970-10-23 20:00:00,7.46955358758299
+1970-10-23 21:00:00,10.3158344327407
+1970-10-23 22:00:00,13.214166808437
+1970-10-23 23:00:00,15.7992321882814
+1970-10-24 00:00:00,7.69884856983076
+1970-10-24 01:00:00,14.2757249643894
+1970-10-24 02:00:00,13.0603950495359
+1970-10-24 03:00:00,13.6447833009976
+1970-10-24 04:00:00,15.5486371732958
+1970-10-24 05:00:00,8.91383659657248
+1970-10-24 06:00:00,10.9105938061281
+1970-10-24 07:00:00,15.4858139683342
+1970-10-24 08:00:00,10.6965661473572
+1970-10-24 09:00:00,23.2732351391219
+1970-10-24 10:00:00,18.4071484138831
+1970-10-24 11:00:00,12.8382464074361
+1970-10-24 12:00:00,14.7797402973677
+1970-10-24 13:00:00,22.4746922931732
+1970-10-24 14:00:00,24.9438927917014
+1970-10-24 15:00:00,15.0105491789677
+1970-10-24 16:00:00,17.0888789810539
+1970-10-24 17:00:00,12.1926548223824
+1970-10-24 18:00:00,6.64909280296836
+1970-10-24 19:00:00,16.7074170913722
+1970-10-24 20:00:00,8.77634957640305
+1970-10-24 21:00:00,8.08516416109135
+1970-10-24 22:00:00,16.0628137772554
+1970-10-24 23:00:00,11.6049050643349
+1970-10-25 00:00:00,7.52238660253424
+1970-10-25 01:00:00,18.7948271955391
+1970-10-25 02:00:00,16.402582492246
+1970-10-25 03:00:00,17.4202798916195
+1970-10-25 04:00:00,12.9246875954269
+1970-10-25 05:00:00,12.9689123327426
+1970-10-25 06:00:00,21.5317105727164
+1970-10-25 07:00:00,12.1640679210059
+1970-10-25 08:00:00,16.4581910722971
+1970-10-25 09:00:00,15.4077020262548
+1970-10-25 10:00:00,11.0348646049945
+1970-10-25 11:00:00,13.7735923378391
+1970-10-25 12:00:00,13.480365420909
+1970-10-25 13:00:00,15.5944058577051
+1970-10-25 14:00:00,18.3818063847096
+1970-10-25 15:00:00,17.6555028200458
+1970-10-25 16:00:00,20.4722245275607
+1970-10-25 17:00:00,13.8331144121539
+1970-10-25 18:00:00,4.91288710522791
+1970-10-25 19:00:00,11.4836432941884
+1970-10-25 20:00:00,10.0917738141235
+1970-10-25 21:00:00,14.8965947768838
+1970-10-25 22:00:00,19.775716819867
+1970-10-25 23:00:00,18.4576461678542
+1970-10-26 00:00:00,9.57430163963169
+1970-10-26 01:00:00,28.6529161677803
+1970-10-26 02:00:00,7.58669367207948
+1970-10-26 03:00:00,12.1514519137646
+1970-10-26 04:00:00,11.6219809181304
+1970-10-26 05:00:00,9.96885867341601
+1970-10-26 06:00:00,16.5333252298688
+1970-10-26 07:00:00,12.3058084859703
+1970-10-26 08:00:00,10.3092868429655
+1970-10-26 09:00:00,20.7244839093176
+1970-10-26 10:00:00,21.289696829766
+1970-10-26 11:00:00,14.1849190859845
+1970-10-26 12:00:00,14.7302019731251
+1970-10-26 13:00:00,11.3831870152335
+1970-10-26 14:00:00,14.2427719540156
+1970-10-26 15:00:00,14.2298692009428
+1970-10-26 16:00:00,18.576239467894
+1970-10-26 17:00:00,10.0388170378426
+1970-10-26 18:00:00,18.0351332236029
+1970-10-26 19:00:00,14.4526851326393
+1970-10-26 20:00:00,6.68423735839092
+1970-10-26 21:00:00,16.5707378383245
+1970-10-26 22:00:00,30.5074887633508
+1970-10-26 23:00:00,9.67018820513674
+1970-10-27 00:00:00,11.0273464053609
+1970-10-27 01:00:00,13.405413921129
+1970-10-27 02:00:00,15.9432602382388
+1970-10-27 03:00:00,20.360740292959
+1970-10-27 04:00:00,10.8783354213165
+1970-10-27 05:00:00,11.7669357812789
+1970-10-27 06:00:00,7.203287824492
+1970-10-27 07:00:00,9.25144581956282
+1970-10-27 08:00:00,9.81784094863213
+1970-10-27 09:00:00,12.4463508425743
+1970-10-27 10:00:00,16.4767825816684
+1970-10-27 11:00:00,8.3970509214712
+1970-10-27 12:00:00,14.0231001901823
+1970-10-27 13:00:00,13.8755945355888
+1970-10-27 14:00:00,17.0746773921909
+1970-10-27 15:00:00,13.4449728123047
+1970-10-27 16:00:00,6.01597591351488
+1970-10-27 17:00:00,18.3702054801581
+1970-10-27 18:00:00,10.3177590296627
+1970-10-27 19:00:00,7.31729901609278
+1970-10-27 20:00:00,14.7877154868002
+1970-10-27 21:00:00,21.7915621949497
+1970-10-27 22:00:00,21.7640935902751
+1970-10-27 23:00:00,16.447035509325
+1970-10-28 00:00:00,11.1422496709518
+1970-10-28 01:00:00,18.7738529085693
+1970-10-28 02:00:00,19.8164950289074
+1970-10-28 03:00:00,17.8912803275381
+1970-10-28 04:00:00,18.727058337111
+1970-10-28 05:00:00,4.08913218333034
+1970-10-28 06:00:00,15.9893369381228
+1970-10-28 07:00:00,21.6141011248113
+1970-10-28 08:00:00,13.4999807711503
+1970-10-28 09:00:00,9.46939524857552
+1970-10-28 10:00:00,15.9690237882802
+1970-10-28 11:00:00,9.83032361490664
+1970-10-28 12:00:00,17.0212995016599
+1970-10-28 13:00:00,10.3691721759846
+1970-10-28 14:00:00,15.4261613464398
+1970-10-28 15:00:00,17.0093994073293
+1970-10-28 16:00:00,9.20301781605913
+1970-10-28 17:00:00,15.4794473870836
+1970-10-28 18:00:00,17.7224806759104
+1970-10-28 19:00:00,15.3605272779638
+1970-10-28 20:00:00,8.17287985150095
+1970-10-28 21:00:00,7.26679980411477
+1970-10-28 22:00:00,8.93249909451105
+1970-10-28 23:00:00,14.2345234919172
+1970-10-29 00:00:00,13.9183427403671
+1970-10-29 01:00:00,6.76084113222553
+1970-10-29 02:00:00,21.4837008403418
+1970-10-29 03:00:00,15.9630844222
+1970-10-29 04:00:00,8.23019047864038
+1970-10-29 05:00:00,14.3825922528723
+1970-10-29 06:00:00,15.4278406530029
+1970-10-29 07:00:00,9.83246135074257
+1970-10-29 08:00:00,18.7574274777116
+1970-10-29 09:00:00,16.6020380132287
+1970-10-29 10:00:00,17.3778091025272
+1970-10-29 11:00:00,16.7272217799998
+1970-10-29 12:00:00,16.3476167083712
+1970-10-29 13:00:00,16.0886188026451
+1970-10-29 14:00:00,11.27229815414
+1970-10-29 15:00:00,15.5548538686981
+1970-10-29 16:00:00,22.7742271305391
+1970-10-29 17:00:00,18.9598606418518
+1970-10-29 18:00:00,11.8015331152178
+1970-10-29 19:00:00,16.4459538514431
+1970-10-29 20:00:00,13.5239708317124
+1970-10-29 21:00:00,10.2782641222008
+1970-10-29 22:00:00,10.549095179429
+1970-10-29 23:00:00,20.4787702088733
+1970-10-30 00:00:00,7.44759153937894
+1970-10-30 01:00:00,18.6202496439484
+1970-10-30 02:00:00,15.5073939391346
+1970-10-30 03:00:00,11.433945724607
+1970-10-30 04:00:00,25.49841923576
+1970-10-30 05:00:00,9.52475605655835
+1970-10-30 06:00:00,8.17469350432487
+1970-10-30 07:00:00,12.5493030463247
+1970-10-30 08:00:00,21.529409946911
+1970-10-30 09:00:00,19.4620061726454
+1970-10-30 10:00:00,19.8216450373915
+1970-10-30 11:00:00,15.5863679387043
+1970-10-30 12:00:00,17.121434016528
+1970-10-30 13:00:00,18.1888465610196
+1970-10-30 14:00:00,16.9292697157979
+1970-10-30 15:00:00,15.5079094504448
+1970-10-30 16:00:00,20.6370204301413
+1970-10-30 17:00:00,8.69249673826037
+1970-10-30 18:00:00,17.7683810308952
+1970-10-30 19:00:00,11.7414994929769
+1970-10-30 20:00:00,26.1776886943663
+1970-10-30 21:00:00,11.260210372001
+1970-10-30 22:00:00,19.9560349251491
+1970-10-30 23:00:00,19.6782587322462
+1970-10-31 00:00:00,18.3820954646843
+1970-10-31 01:00:00,9.57668186461651
+1970-10-31 02:00:00,14.7943472597274
+1970-10-31 03:00:00,12.6504138185742
+1970-10-31 04:00:00,18.1876054144017
+1970-10-31 05:00:00,14.6267183572663
+1970-10-31 06:00:00,21.4443497772118
+1970-10-31 07:00:00,11.8465354042314
+1970-10-31 08:00:00,9.50175176455658
+1970-10-31 09:00:00,10.2731854914982
+1970-10-31 10:00:00,23.929368473371
+1970-10-31 11:00:00,17.1747153234632
+1970-10-31 12:00:00,12.7953330211499
+1970-10-31 13:00:00,14.8936350030647
+1970-10-31 14:00:00,10.7556574632338
+1970-10-31 15:00:00,12.522559972898
+1970-10-31 16:00:00,21.9857238638649
+1970-10-31 17:00:00,15.6585463813647
+1970-10-31 18:00:00,15.5000733280753
+1970-10-31 19:00:00,11.1718374374108
+1970-10-31 20:00:00,13.1135825834147
+1970-10-31 21:00:00,27.4775158970941
+1970-10-31 22:00:00,16.5626061671722
+1970-10-31 23:00:00,11.9639540122146
+1970-11-01 00:00:00,16.6226790035978
+1970-11-01 01:00:00,10.4687823593104
+1970-11-01 02:00:00,9.83980832323507
+1970-11-01 03:00:00,7.63527803428459
+1970-11-01 04:00:00,18.6241941973572
+1970-11-01 05:00:00,15.9543000745137
+1970-11-01 06:00:00,10.6117901856269
+1970-11-01 07:00:00,6.41294044753538
+1970-11-01 08:00:00,14.7818624539101
+1970-11-01 09:00:00,15.8275871709237
+1970-11-01 10:00:00,12.3522585258669
+1970-11-01 11:00:00,9.98261230897155
+1970-11-01 12:00:00,14.808186156782
+1970-11-01 13:00:00,21.6961724563531
+1970-11-01 14:00:00,21.2039027935506
+1970-11-01 15:00:00,17.9065613727271
+1970-11-01 16:00:00,20.3705433891584
+1970-11-01 17:00:00,8.70126008800483
+1970-11-01 18:00:00,15.5039268250015
+1970-11-01 19:00:00,9.83945727701473
+1970-11-01 20:00:00,12.7501981954491
+1970-11-01 21:00:00,19.6553511104083
+1970-11-01 22:00:00,16.4998980462032
+1970-11-01 23:00:00,8.41192733664246
+1970-11-02 00:00:00,12.9084706115648
+1970-11-02 01:00:00,9.30994120152309
+1970-11-02 02:00:00,6.7786807107987
+1970-11-02 03:00:00,26.6058661956575
+1970-11-02 04:00:00,11.9963493860733
+1970-11-02 05:00:00,14.5179667063836
+1970-11-02 06:00:00,20.8913845074526
+1970-11-02 07:00:00,20.0944018654914
+1970-11-02 08:00:00,16.5911427663103
+1970-11-02 09:00:00,18.8104633052188
+1970-11-02 10:00:00,8.56314564951611
+1970-11-02 11:00:00,15.1118994358653
+1970-11-02 12:00:00,21.71024923189
+1970-11-02 13:00:00,5.24530582613709
+1970-11-02 14:00:00,11.2997834180687
+1970-11-02 15:00:00,7.65578586074039
+1970-11-02 16:00:00,18.2909247470804
+1970-11-02 17:00:00,7.9016247463928
+1970-11-02 18:00:00,9.65261242590832
+1970-11-02 19:00:00,22.8129804859032
+1970-11-02 20:00:00,14.522878693475
+1970-11-02 21:00:00,11.6238237383541
+1970-11-02 22:00:00,12.3149359491019
+1970-11-02 23:00:00,16.3772549054551
+1970-11-03 00:00:00,6.6934155338524
+1970-11-03 01:00:00,17.5409450100219
+1970-11-03 02:00:00,11.4913888914778
+1970-11-03 03:00:00,16.2898642761128
+1970-11-03 04:00:00,16.7592272506561
+1970-11-03 05:00:00,14.0324072245172
+1970-11-03 06:00:00,13.6905236242544
+1970-11-03 07:00:00,9.92833189393284
+1970-11-03 08:00:00,25.3899474373325
+1970-11-03 09:00:00,23.0177768397783
+1970-11-03 10:00:00,9.48288658167601
+1970-11-03 11:00:00,17.0230972811525
+1970-11-03 12:00:00,17.4147885091205
+1970-11-03 13:00:00,7.75282022746417
+1970-11-03 14:00:00,16.4461762411711
+1970-11-03 15:00:00,11.7770895273655
+1970-11-03 16:00:00,7.74054851412398
+1970-11-03 17:00:00,10.3178146781835
+1970-11-03 18:00:00,13.611934924919
+1970-11-03 19:00:00,19.0847701085636
+1970-11-03 20:00:00,17.9500434816752
+1970-11-03 21:00:00,12.0904797830332
+1970-11-03 22:00:00,12.8699517704958
+1970-11-03 23:00:00,16.0320003687289
+1970-11-04 00:00:00,6.26357166625537
+1970-11-04 01:00:00,16.8752050058096
+1970-11-04 02:00:00,14.7856013514746
+1970-11-04 03:00:00,19.7375415965523
+1970-11-04 04:00:00,17.6735345783827
+1970-11-04 05:00:00,13.3138932013189
+1970-11-04 06:00:00,10.4229516376035
+1970-11-04 07:00:00,14.7751707458264
+1970-11-04 08:00:00,15.2123166029236
+1970-11-04 09:00:00,11.2013492366556
+1970-11-04 10:00:00,12.8369129046606
+1970-11-04 11:00:00,6.79575975339479
+1970-11-04 12:00:00,17.2959061224393
+1970-11-04 13:00:00,14.8738201421149
+1970-11-04 14:00:00,15.7181193980111
+1970-11-04 15:00:00,26.4453592656675
+1970-11-04 16:00:00,18.4400986598665
+1970-11-04 17:00:00,7.06954241190257
+1970-11-04 18:00:00,9.09407840975105
+1970-11-04 19:00:00,25.684205946046
+1970-11-04 20:00:00,12.9048829919969
+1970-11-04 21:00:00,15.149603385579
+1970-11-04 22:00:00,22.2045128639399
+1970-11-04 23:00:00,10.2714155162603
+1970-11-05 00:00:00,13.8433108881147
+1970-11-05 01:00:00,26.4234472407735
+1970-11-05 02:00:00,17.1284191312319
+1970-11-05 03:00:00,12.1990180051495
+1970-11-05 04:00:00,13.6057576968118
+1970-11-05 05:00:00,10.1841156066428
+1970-11-05 06:00:00,14.0188643710692
+1970-11-05 07:00:00,19.4469864762377
+1970-11-05 08:00:00,21.2748195734221
+1970-11-05 09:00:00,11.0257959036236
+1970-11-05 10:00:00,12.3774735888493
+1970-11-05 11:00:00,14.5220333649881
+1970-11-05 12:00:00,28.5575569529287
+1970-11-05 13:00:00,22.4277905763032
+1970-11-05 14:00:00,18.9169553573957
+1970-11-05 15:00:00,12.5988824508365
+1970-11-05 16:00:00,16.8731088432852
+1970-11-05 17:00:00,8.99745223023072
+1970-11-05 18:00:00,16.5210983664491
+1970-11-05 19:00:00,12.6072738961234
+1970-11-05 20:00:00,10.9355539936544
+1970-11-05 21:00:00,12.3359961963148
+1970-11-05 22:00:00,8.93266431284334
+1970-11-05 23:00:00,14.0681406957579
+1970-11-06 00:00:00,12.7012342407047
+1970-11-06 01:00:00,8.10618174365113
+1970-11-06 02:00:00,7.16290126559933
+1970-11-06 03:00:00,9.50640150831936
+1970-11-06 04:00:00,16.9050186082097
+1970-11-06 05:00:00,19.2816097503421
+1970-11-06 06:00:00,8.09191573254168
+1970-11-06 07:00:00,9.4629338690348
+1970-11-06 08:00:00,23.219980082801
+1970-11-06 09:00:00,16.9543106484102
+1970-11-06 10:00:00,17.710619055146
+1970-11-06 11:00:00,6.00453514408008
+1970-11-06 12:00:00,18.9293345203487
+1970-11-06 13:00:00,10.3245095046308
+1970-11-06 14:00:00,16.9123119010486
+1970-11-06 15:00:00,14.0898658801751
+1970-11-06 16:00:00,13.6467700445483
+1970-11-06 17:00:00,20.6715544612317
+1970-11-06 18:00:00,16.8135509517211
+1970-11-06 19:00:00,19.4246181286043
+1970-11-06 20:00:00,14.9697822635245
+1970-11-06 21:00:00,16.6477644194156
+1970-11-06 22:00:00,24.0776000697931
+1970-11-06 23:00:00,8.61194747355138
+1970-11-07 00:00:00,10.6380874526579
+1970-11-07 01:00:00,15.0500377014014
+1970-11-07 02:00:00,14.8433889401316
+1970-11-07 03:00:00,13.6263586489145
+1970-11-07 04:00:00,15.5980697373723
+1970-11-07 05:00:00,8.93698637671589
+1970-11-07 06:00:00,16.8054358045308
+1970-11-07 07:00:00,7.61907576073675
+1970-11-07 08:00:00,13.9576337078906
+1970-11-07 09:00:00,11.3665065846051
+1970-11-07 10:00:00,17.8820090366427
+1970-11-07 11:00:00,10.4909816600332
+1970-11-07 12:00:00,18.1082542755547
+1970-11-07 13:00:00,16.2175525374504
+1970-11-07 14:00:00,17.8444466839321
+1970-11-07 15:00:00,7.28171151387093
+1970-11-07 16:00:00,13.9081485126449
+1970-11-07 17:00:00,7.08214132155503
+1970-11-07 18:00:00,16.4903437585809
+1970-11-07 19:00:00,17.6270520871074
+1970-11-07 20:00:00,8.76941261038348
+1970-11-07 21:00:00,16.7203374553993
+1970-11-07 22:00:00,14.2097642878981
+1970-11-07 23:00:00,12.3515857645452
+1970-11-08 00:00:00,15.9165052678068
+1970-11-08 01:00:00,28.1137426735232
+1970-11-08 02:00:00,12.3919840150774
+1970-11-08 03:00:00,11.6883177135091
+1970-11-08 04:00:00,14.5488147431701
+1970-11-08 05:00:00,10.5820533712628
+1970-11-08 06:00:00,17.5132037398999
+1970-11-08 07:00:00,16.0238907036186
+1970-11-08 08:00:00,18.1963190200086
+1970-11-08 09:00:00,10.0422487020215
+1970-11-08 10:00:00,17.7967698029045
+1970-11-08 11:00:00,18.5178718817052
+1970-11-08 12:00:00,11.1061959461083
+1970-11-08 13:00:00,17.0353385942174
+1970-11-08 14:00:00,23.3530648394039
+1970-11-08 15:00:00,15.8582218720843
+1970-11-08 16:00:00,10.4979282233463
+1970-11-08 17:00:00,10.5383698476754
+1970-11-08 18:00:00,10.9382007936866
+1970-11-08 19:00:00,6.96771086846468
+1970-11-08 20:00:00,18.2351220844567
+1970-11-08 21:00:00,11.0765840177671
+1970-11-08 22:00:00,11.0566803559889
+1970-11-08 23:00:00,19.0668688689489
+1970-11-09 00:00:00,11.7843183681359
+1970-11-09 01:00:00,8.19366637700052
+1970-11-09 02:00:00,13.4195918181982
+1970-11-09 03:00:00,8.37810188395735
+1970-11-09 04:00:00,16.7056954220246
+1970-11-09 05:00:00,8.61477387747178
+1970-11-09 06:00:00,20.3260540740119
+1970-11-09 07:00:00,21.8527427305791
+1970-11-09 08:00:00,19.2453058331787
+1970-11-09 09:00:00,14.9656630428627
+1970-11-09 10:00:00,13.9356947952817
+1970-11-09 11:00:00,18.7737563132812
+1970-11-09 12:00:00,9.26431740947157
+1970-11-09 13:00:00,9.29004619500822
+1970-11-09 14:00:00,11.9629812312181
+1970-11-09 15:00:00,14.1591979492601
+1970-11-09 16:00:00,6.65875346003139
+1970-11-09 17:00:00,15.5919588896725
+1970-11-09 18:00:00,7.43967679004038
+1970-11-09 19:00:00,7.87327325243205
+1970-11-09 20:00:00,8.94705677293573
+1970-11-09 21:00:00,13.6987449519218
+1970-11-09 22:00:00,12.3030696301506
+1970-11-09 23:00:00,18.8693712538173
+1970-11-10 00:00:00,7.71699142607205
+1970-11-10 01:00:00,20.8874093963141
+1970-11-10 02:00:00,16.6905909497988
+1970-11-10 03:00:00,20.618141861012
+1970-11-10 04:00:00,6.96142354825522
+1970-11-10 05:00:00,13.9055657511333
+1970-11-10 06:00:00,14.1020292474766
+1970-11-10 07:00:00,8.44322722528415
+1970-11-10 08:00:00,9.45674686553512
+1970-11-10 09:00:00,20.5426834077507
+1970-11-10 10:00:00,11.7518611085239
+1970-11-10 11:00:00,13.7942867754679
+1970-11-10 12:00:00,20.0728159393041
+1970-11-10 13:00:00,16.2537277361212
+1970-11-10 14:00:00,9.56950160838049
+1970-11-10 15:00:00,15.0367521325256
+1970-11-10 16:00:00,21.1925070908679
+1970-11-10 17:00:00,13.2353927452254
+1970-11-10 18:00:00,9.41592114987237
+1970-11-10 19:00:00,14.5724646192269
+1970-11-10 20:00:00,25.2476324491925
+1970-11-10 21:00:00,17.2860138563985
+1970-11-10 22:00:00,11.4590403645336
+1970-11-10 23:00:00,16.2194591552075
+1970-11-11 00:00:00,11.612609217962
+1970-11-11 01:00:00,9.21727789200392
+1970-11-11 02:00:00,17.0855865123735
+1970-11-11 03:00:00,7.79162331066362
+1970-11-11 04:00:00,12.8688050490934
+1970-11-11 05:00:00,16.0364017963443
+1970-11-11 06:00:00,10.1792062973983
+1970-11-11 07:00:00,13.4637095780961
+1970-11-11 08:00:00,11.1039041294262
+1970-11-11 09:00:00,9.76005779126803
+1970-11-11 10:00:00,12.2595871283319
+1970-11-11 11:00:00,12.8171730454989
+1970-11-11 12:00:00,13.180581951739
+1970-11-11 13:00:00,13.8886133478635
+1970-11-11 14:00:00,17.3061259982556
+1970-11-11 15:00:00,14.6441901063907
+1970-11-11 16:00:00,13.870448996061
+1970-11-11 17:00:00,17.5222632832016
+1970-11-11 18:00:00,10.7377433116338
+1970-11-11 19:00:00,20.1106328752345
+1970-11-11 20:00:00,12.8920693934275
+1970-11-11 21:00:00,18.2854493117504
+1970-11-11 22:00:00,10.4548670440766
+1970-11-11 23:00:00,15.5971354513602
+1970-11-12 00:00:00,10.9975237405397
+1970-11-12 01:00:00,10.4894865799551
+1970-11-12 02:00:00,17.1074812891867
+1970-11-12 03:00:00,5.08114559623788
+1970-11-12 04:00:00,9.1280953253047
+1970-11-12 05:00:00,20.3519480184732
+1970-11-12 06:00:00,20.0835177063393
+1970-11-12 07:00:00,15.597501851887
+1970-11-12 08:00:00,19.3950580737867
+1970-11-12 09:00:00,16.9893591597823
+1970-11-12 10:00:00,19.5039865780261
+1970-11-12 11:00:00,21.2211010720124
+1970-11-12 12:00:00,15.9192727103895
+1970-11-12 13:00:00,15.878389618776
+1970-11-12 14:00:00,16.411094796867
+1970-11-12 15:00:00,16.1103281916191
+1970-11-12 16:00:00,9.95954527768761
+1970-11-12 17:00:00,11.5629925781299
+1970-11-12 18:00:00,11.6744938774543
+1970-11-12 19:00:00,6.61054984950918
+1970-11-12 20:00:00,16.5160204842473
+1970-11-12 21:00:00,11.3487961266965
+1970-11-12 22:00:00,12.830392868531
+1970-11-12 23:00:00,10.2405877219978
+1970-11-13 00:00:00,14.1260743622168
+1970-11-13 01:00:00,7.99389239220885
+1970-11-13 02:00:00,13.7900652127572
+1970-11-13 03:00:00,10.9878407778142
+1970-11-13 04:00:00,10.9323452763505
+1970-11-13 05:00:00,13.8755751588331
+1970-11-13 06:00:00,11.3184358038358
+1970-11-13 07:00:00,17.2809135274244
+1970-11-13 08:00:00,23.703676477293
+1970-11-13 09:00:00,9.05203559569607
+1970-11-13 10:00:00,18.1785758446749
+1970-11-13 11:00:00,10.3963681103513
+1970-11-13 12:00:00,21.0483184749752
+1970-11-13 13:00:00,13.9202991452289
+1970-11-13 14:00:00,21.1670918456011
+1970-11-13 15:00:00,26.202061778199
+1970-11-13 16:00:00,14.6818468668636
+1970-11-13 17:00:00,17.4246785329016
+1970-11-13 18:00:00,29.2496536843398
+1970-11-13 19:00:00,8.00824567059548
+1970-11-13 20:00:00,12.2342498703752
+1970-11-13 21:00:00,14.4793078912724
+1970-11-13 22:00:00,10.7113294767743
+1970-11-13 23:00:00,11.8795627391153
+1970-11-14 00:00:00,8.19918747386642
+1970-11-14 01:00:00,11.9940429125556
+1970-11-14 02:00:00,12.6334258162641
+1970-11-14 03:00:00,12.3982430339875
+1970-11-14 04:00:00,6.69492475760127
+1970-11-14 05:00:00,13.5877370819355
+1970-11-14 06:00:00,16.8014517402252
+1970-11-14 07:00:00,14.868631612731
+1970-11-14 08:00:00,13.9208100805441
+1970-11-14 09:00:00,13.9428494963995
+1970-11-14 10:00:00,14.7643183710305
+1970-11-14 11:00:00,8.61877714256458
+1970-11-14 12:00:00,17.3772561130324
+1970-11-14 13:00:00,14.644524068855
+1970-11-14 14:00:00,12.7943858304642
+1970-11-14 15:00:00,8.92787841059694
+1970-11-14 16:00:00,16.8562324982457
+1970-11-14 17:00:00,19.1431289436155
+1970-11-14 18:00:00,9.73878625947492
+1970-11-14 19:00:00,8.31329707962863
+1970-11-14 20:00:00,15.612236155795
+1970-11-14 21:00:00,17.6584623113044
+1970-11-14 22:00:00,9.7972118713565
+1970-11-14 23:00:00,19.6876304534454
+1970-11-15 00:00:00,13.4645817667638
+1970-11-15 01:00:00,11.1290774379528
+1970-11-15 02:00:00,9.12657006280561
+1970-11-15 03:00:00,7.39918049799015
+1970-11-15 04:00:00,15.2589696845103
+1970-11-15 05:00:00,11.2584008274003
+1970-11-15 06:00:00,17.3221231518391
+1970-11-15 07:00:00,11.857751718595
+1970-11-15 08:00:00,10.4058912949999
+1970-11-15 09:00:00,7.84832895195711
+1970-11-15 10:00:00,9.68137216999854
+1970-11-15 11:00:00,22.2967725638107
+1970-11-15 12:00:00,10.1533792462325
+1970-11-15 13:00:00,15.4655704071614
+1970-11-15 14:00:00,11.5080316418879
+1970-11-15 15:00:00,19.366470069022
+1970-11-15 16:00:00,15.0518746128129
+1970-11-15 17:00:00,14.1485971980387
+1970-11-15 18:00:00,12.1016821114282
+1970-11-15 19:00:00,9.68963291132995
+1970-11-15 20:00:00,16.3812312626608
+1970-11-15 21:00:00,10.2654104302733
+1970-11-15 22:00:00,21.0648246996776
+1970-11-15 23:00:00,19.7799968480777
+1970-11-16 00:00:00,20.2381418778672
+1970-11-16 01:00:00,14.8540224871113
+1970-11-16 02:00:00,13.017478105952
+1970-11-16 03:00:00,14.162814435898
+1970-11-16 04:00:00,13.0928281845178
+1970-11-16 05:00:00,12.5956659018777
+1970-11-16 06:00:00,14.5551212133687
+1970-11-16 07:00:00,17.6461883705685
+1970-11-16 08:00:00,12.9092633113052
+1970-11-16 09:00:00,22.3651765607322
+1970-11-16 10:00:00,11.4249953946951
+1970-11-16 11:00:00,19.2189615302803
+1970-11-16 12:00:00,17.5740602702296
+1970-11-16 13:00:00,20.0764386786841
+1970-11-16 14:00:00,10.6151557308229
+1970-11-16 15:00:00,11.3745128949549
+1970-11-16 16:00:00,12.8167427895935
+1970-11-16 17:00:00,7.70568387132105
+1970-11-16 18:00:00,10.2796851548037
+1970-11-16 19:00:00,7.35448186284664
+1970-11-16 20:00:00,13.195570933827
+1970-11-16 21:00:00,11.4728501020385
+1970-11-16 22:00:00,16.6962598037012
+1970-11-16 23:00:00,12.1833993101463
+1970-11-17 00:00:00,14.4521218444189
+1970-11-17 01:00:00,8.33988035344986
+1970-11-17 02:00:00,17.9739793491859
+1970-11-17 03:00:00,15.0010424065277
+1970-11-17 04:00:00,16.4984672009268
+1970-11-17 05:00:00,18.6955520128661
+1970-11-17 06:00:00,25.1106592906149
+1970-11-17 07:00:00,11.0945154090909
+1970-11-17 08:00:00,13.3304739144374
+1970-11-17 09:00:00,18.4645123948876
+1970-11-17 10:00:00,10.2748032172289
+1970-11-17 11:00:00,13.7187774550913
+1970-11-17 12:00:00,11.5225601313727
+1970-11-17 13:00:00,10.2939200870565
+1970-11-17 14:00:00,17.396929187429
+1970-11-17 15:00:00,14.5137598529764
+1970-11-17 16:00:00,16.943796209157
+1970-11-17 17:00:00,9.23161555127918
+1970-11-17 18:00:00,9.28276346369399
+1970-11-17 19:00:00,10.6056266155137
+1970-11-17 20:00:00,13.0404512538483
+1970-11-17 21:00:00,32.1092587940517
+1970-11-17 22:00:00,7.79423586157342
+1970-11-17 23:00:00,10.1732087078042
+1970-11-18 00:00:00,15.916641671188
+1970-11-18 01:00:00,15.5136199182816
+1970-11-18 02:00:00,12.066558934744
+1970-11-18 03:00:00,15.6438927684902
+1970-11-18 04:00:00,19.4595538881435
+1970-11-18 05:00:00,13.6645345232373
+1970-11-18 06:00:00,12.0917356022421
+1970-11-18 07:00:00,12.2583701550738
+1970-11-18 08:00:00,6.40958990833428
+1970-11-18 09:00:00,18.3397936619346
+1970-11-18 10:00:00,15.4557763033298
+1970-11-18 11:00:00,17.3950152737536
+1970-11-18 12:00:00,9.28602330074065
+1970-11-18 13:00:00,9.54749946606379
+1970-11-18 14:00:00,9.33035594444991
+1970-11-18 15:00:00,19.004654917531
+1970-11-18 16:00:00,6.2244946044466
+1970-11-18 17:00:00,11.0479428898458
+1970-11-18 18:00:00,9.75828999188226
+1970-11-18 19:00:00,15.5745621431121
+1970-11-18 20:00:00,18.2477036128005
+1970-11-18 21:00:00,11.1223023051496
+1970-11-18 22:00:00,12.6159939208621
+1970-11-18 23:00:00,11.0523391919061
+1970-11-19 00:00:00,9.82533790143274
+1970-11-19 01:00:00,14.5556111141098
+1970-11-19 02:00:00,12.1404195877678
+1970-11-19 03:00:00,21.1855664499383
+1970-11-19 04:00:00,11.6586988811454
+1970-11-19 05:00:00,29.9946683431591
+1970-11-19 06:00:00,12.996116645038
+1970-11-19 07:00:00,21.7072144186174
+1970-11-19 08:00:00,15.1685138372213
+1970-11-19 09:00:00,16.0393137758595
+1970-11-19 10:00:00,13.268671093342
+1970-11-19 11:00:00,7.05737401615409
+1970-11-19 12:00:00,11.8088420697472
+1970-11-19 13:00:00,22.1599455893416
+1970-11-19 14:00:00,24.2360019985079
+1970-11-19 15:00:00,14.6692647859951
+1970-11-19 16:00:00,17.291981480979
+1970-11-19 17:00:00,13.4505533661114
+1970-11-19 18:00:00,16.4332422080581
+1970-11-19 19:00:00,16.550051280141
+1970-11-19 20:00:00,23.214645334758
+1970-11-19 21:00:00,9.39618652955748
+1970-11-19 22:00:00,5.46645998002923
+1970-11-19 23:00:00,11.5905577320565
+1970-11-20 00:00:00,17.6398356278296
+1970-11-20 01:00:00,16.4805998094731
+1970-11-20 02:00:00,18.4817885882233
+1970-11-20 03:00:00,14.8981561096158
+1970-11-20 04:00:00,14.0210732351521
+1970-11-20 05:00:00,7.46512477587286
+1970-11-20 06:00:00,17.8049760750156
+1970-11-20 07:00:00,12.7426190623165
+1970-11-20 08:00:00,17.6121699324066
+1970-11-20 09:00:00,29.2802317977422
+1970-11-20 10:00:00,9.41102306260946
+1970-11-20 11:00:00,23.1928148026849
+1970-11-20 12:00:00,15.4754773549743
+1970-11-20 13:00:00,18.6833779930651
+1970-11-20 14:00:00,13.9128742590485
+1970-11-20 15:00:00,11.878299050685
+1970-11-20 16:00:00,23.1016596625467
+1970-11-20 17:00:00,17.6187237104738
+1970-11-20 18:00:00,23.6248688443875
+1970-11-20 19:00:00,8.59890084743686
+1970-11-20 20:00:00,17.3975055526053
+1970-11-20 21:00:00,12.6254423591473
+1970-11-20 22:00:00,12.2095309856555
+1970-11-20 23:00:00,18.7338929567751
+1970-11-21 00:00:00,11.2427524806436
+1970-11-21 01:00:00,12.4026736776415
+1970-11-21 02:00:00,18.1050715766932
+1970-11-21 03:00:00,11.6219859836265
+1970-11-21 04:00:00,14.0328365347522
+1970-11-21 05:00:00,12.2529585358162
+1970-11-21 06:00:00,8.29299239577276
+1970-11-21 07:00:00,10.1883806402347
+1970-11-21 08:00:00,12.6434959251911
+1970-11-21 09:00:00,20.0176949521448
+1970-11-21 10:00:00,24.4726215367143
+1970-11-21 11:00:00,13.4222724009214
+1970-11-21 12:00:00,16.0580324770403
+1970-11-21 13:00:00,15.740949446917
+1970-11-21 14:00:00,19.4140463586016
+1970-11-21 15:00:00,17.4641269142572
+1970-11-21 16:00:00,13.7388319286565
+1970-11-21 17:00:00,9.23268295806503
+1970-11-21 18:00:00,18.2615600878526
+1970-11-21 19:00:00,17.6202444157627
+1970-11-21 20:00:00,13.3645213724114
+1970-11-21 21:00:00,11.2837586062739
+1970-11-21 22:00:00,11.7116424021508
+1970-11-21 23:00:00,15.3944089639605
+1970-11-22 00:00:00,10.859369755075
+1970-11-22 01:00:00,19.9427958006917
+1970-11-22 02:00:00,11.2933775662318
+1970-11-22 03:00:00,8.55915954251744
+1970-11-22 04:00:00,12.1896182538692
+1970-11-22 05:00:00,14.3253143922539
+1970-11-22 06:00:00,16.2572324810872
+1970-11-22 07:00:00,13.7684580067005
+1970-11-22 08:00:00,13.9197935001447
+1970-11-22 09:00:00,14.7893094674633
+1970-11-22 10:00:00,16.5781618331846
+1970-11-22 11:00:00,15.1039297803062
+1970-11-22 12:00:00,11.4698419187234
+1970-11-22 13:00:00,23.2738920203579
+1970-11-22 14:00:00,15.1571800568511
+1970-11-22 15:00:00,15.837556129173
+1970-11-22 16:00:00,13.9336267269511
+1970-11-22 17:00:00,13.954353135394
+1970-11-22 18:00:00,14.5334071891966
+1970-11-22 19:00:00,9.57149465138619
+1970-11-22 20:00:00,12.9780638885845
+1970-11-22 21:00:00,15.7943235436167
+1970-11-22 22:00:00,13.3420463787439
+1970-11-22 23:00:00,15.2017707254174
+1970-11-23 00:00:00,10.3694924942092
+1970-11-23 01:00:00,13.8777592587136
+1970-11-23 02:00:00,11.8296586701529
+1970-11-23 03:00:00,8.87847864277767
+1970-11-23 04:00:00,11.7963156503441
+1970-11-23 05:00:00,9.37972861295705
+1970-11-23 06:00:00,13.9737750552154
+1970-11-23 07:00:00,20.9664468449044
+1970-11-23 08:00:00,19.0888039341827
+1970-11-23 09:00:00,9.93442586512102
+1970-11-23 10:00:00,19.179761972482
+1970-11-23 11:00:00,10.3921335472965
+1970-11-23 12:00:00,16.5415017380194
+1970-11-23 13:00:00,16.0903988274914
+1970-11-23 14:00:00,11.6852571158763
+1970-11-23 15:00:00,11.3210473004859
+1970-11-23 16:00:00,11.8058777422613
+1970-11-23 17:00:00,12.295211693058
+1970-11-23 18:00:00,22.7122321504374
+1970-11-23 19:00:00,21.7781934749167
+1970-11-23 20:00:00,16.1848159527428
+1970-11-23 21:00:00,12.1452197708795
+1970-11-23 22:00:00,14.8615615647443
+1970-11-23 23:00:00,19.6109699913141
+1970-11-24 00:00:00,13.5385875741183
+1970-11-24 01:00:00,11.0863672833528
+1970-11-24 02:00:00,14.7721676050675
+1970-11-24 03:00:00,9.00593074114024
+1970-11-24 04:00:00,11.6176207899396
+1970-11-24 05:00:00,27.4964495760503
+1970-11-24 06:00:00,14.2681412623443
+1970-11-24 07:00:00,20.1005021661555
+1970-11-24 08:00:00,10.9395237399035
+1970-11-24 09:00:00,14.8708530676088
+1970-11-24 10:00:00,10.4714208974457
+1970-11-24 11:00:00,30.3001913397433
+1970-11-24 12:00:00,18.6665577261832
+1970-11-24 13:00:00,11.4384491265659
+1970-11-24 14:00:00,10.7724975118592
+1970-11-24 15:00:00,11.2473845615966
+1970-11-24 16:00:00,22.1793938139925
+1970-11-24 17:00:00,12.8140536127199
+1970-11-24 18:00:00,22.693282021255
+1970-11-24 19:00:00,11.8890308522322
+1970-11-24 20:00:00,19.9893927013053
+1970-11-24 21:00:00,26.6869762594754
+1970-11-24 22:00:00,14.0958407821299
+1970-11-24 23:00:00,13.8035770750089
+1970-11-25 00:00:00,6.88481490202289
+1970-11-25 01:00:00,13.0530189240127
+1970-11-25 02:00:00,10.2574366287432
+1970-11-25 03:00:00,11.8413945347542
+1970-11-25 04:00:00,16.5971602470908
+1970-11-25 05:00:00,14.1066337436022
+1970-11-25 06:00:00,18.2235205348335
+1970-11-25 07:00:00,11.5709857048941
+1970-11-25 08:00:00,15.4704036218211
+1970-11-25 09:00:00,6.55210284553428
+1970-11-25 10:00:00,14.756278532662
+1970-11-25 11:00:00,10.8025133660377
+1970-11-25 12:00:00,17.7422555851794
+1970-11-25 13:00:00,12.7257094978696
+1970-11-25 14:00:00,18.0443031932394
+1970-11-25 15:00:00,18.0314163738992
+1970-11-25 16:00:00,12.6061250560776
+1970-11-25 17:00:00,12.8663834931219
+1970-11-25 18:00:00,6.91269625269174
+1970-11-25 19:00:00,7.61076674838031
+1970-11-25 20:00:00,13.8875030021378
+1970-11-25 21:00:00,16.5696751933856
+1970-11-25 22:00:00,19.7244722679493
+1970-11-25 23:00:00,15.2354398754248
+1970-11-26 00:00:00,15.6066868861837
+1970-11-26 01:00:00,16.4005370344572
+1970-11-26 02:00:00,17.3845421264347
+1970-11-26 03:00:00,13.5699767395967
+1970-11-26 04:00:00,14.7934960506454
+1970-11-26 05:00:00,18.6545301470248
+1970-11-26 06:00:00,17.2885486791069
+1970-11-26 07:00:00,14.9813089489096
+1970-11-26 08:00:00,12.1010084319524
+1970-11-26 09:00:00,18.4525704985359
+1970-11-26 10:00:00,18.6579830082877
+1970-11-26 11:00:00,10.8014026153681
+1970-11-26 12:00:00,12.510351333738
+1970-11-26 13:00:00,13.4067308045886
+1970-11-26 14:00:00,13.4944426878608
+1970-11-26 15:00:00,15.6613462137239
+1970-11-26 16:00:00,8.3263237258227
+1970-11-26 17:00:00,20.2026204337151
+1970-11-26 18:00:00,31.1268882694346
+1970-11-26 19:00:00,9.97989755428371
+1970-11-26 20:00:00,10.5854101038922
+1970-11-26 21:00:00,14.3887154239606
+1970-11-26 22:00:00,11.576782796705
+1970-11-26 23:00:00,11.8196652253562
+1970-11-27 00:00:00,15.3197574168055
+1970-11-27 01:00:00,13.943769907481
+1970-11-27 02:00:00,14.9525170454833
+1970-11-27 03:00:00,22.6909893460407
+1970-11-27 04:00:00,14.1625024761122
+1970-11-27 05:00:00,13.5842839042026
+1970-11-27 06:00:00,17.36715991401
+1970-11-27 07:00:00,13.4125581291105
+1970-11-27 08:00:00,19.6599005323759
+1970-11-27 09:00:00,6.5474891846071
+1970-11-27 10:00:00,21.9750849866631
+1970-11-27 11:00:00,10.2101591944883
+1970-11-27 12:00:00,12.9747149302143
+1970-11-27 13:00:00,16.3992273400903
+1970-11-27 14:00:00,17.5505088449435
+1970-11-27 15:00:00,17.6514300169397
+1970-11-27 16:00:00,16.4845043640189
+1970-11-27 17:00:00,15.7968384235979
+1970-11-27 18:00:00,30.7528126943742
+1970-11-27 19:00:00,12.6832832212507
+1970-11-27 20:00:00,15.0409137144059
+1970-11-27 21:00:00,9.66237765572037
+1970-11-27 22:00:00,17.2355701494094
+1970-11-27 23:00:00,11.1143315211078
+1970-11-28 00:00:00,9.00947425824109
+1970-11-28 01:00:00,19.0565041432257
+1970-11-28 02:00:00,11.4390649691257
+1970-11-28 03:00:00,11.7525237360375
+1970-11-28 04:00:00,22.081182216547
+1970-11-28 05:00:00,6.16831355898379
+1970-11-28 06:00:00,13.5556311760462
+1970-11-28 07:00:00,11.1889661298567
+1970-11-28 08:00:00,11.5440862292893
+1970-11-28 09:00:00,15.4227730179671
+1970-11-28 10:00:00,16.2125509499688
+1970-11-28 11:00:00,10.8491121413456
+1970-11-28 12:00:00,11.0546950389473
+1970-11-28 13:00:00,10.7914857574425
+1970-11-28 14:00:00,6.81420024900787
+1970-11-28 15:00:00,11.901148455072
+1970-11-28 16:00:00,17.3828674557142
+1970-11-28 17:00:00,11.0994732560385
+1970-11-28 18:00:00,15.8652846777085
+1970-11-28 19:00:00,21.5365759845588
+1970-11-28 20:00:00,12.0036612706736
+1970-11-28 21:00:00,21.5013671611117
+1970-11-28 22:00:00,8.07745009415356
+1970-11-28 23:00:00,4.80977499980595
+1970-11-29 00:00:00,14.074774225624
+1970-11-29 01:00:00,9.5235981319928
+1970-11-29 02:00:00,20.751131273127
+1970-11-29 03:00:00,17.8313776726646
+1970-11-29 04:00:00,10.1911957286267
+1970-11-29 05:00:00,19.3370907397426
+1970-11-29 06:00:00,10.6136550956627
+1970-11-29 07:00:00,10.6093164275105
+1970-11-29 08:00:00,13.5268649301513
+1970-11-29 09:00:00,12.4018775624858
+1970-11-29 10:00:00,13.8729640898206
+1970-11-29 11:00:00,20.693937421019
+1970-11-29 12:00:00,22.8228041293791
+1970-11-29 13:00:00,12.6107634723884
+1970-11-29 14:00:00,12.5875103033905
+1970-11-29 15:00:00,11.6792167280802
+1970-11-29 16:00:00,9.68548351863867
+1970-11-29 17:00:00,16.5153938453212
+1970-11-29 18:00:00,7.73700615567955
+1970-11-29 19:00:00,13.8667204626983
+1970-11-29 20:00:00,16.0035042255076
+1970-11-29 21:00:00,17.2806086886483
+1970-11-29 22:00:00,19.4063116818342
+1970-11-29 23:00:00,9.66278509386884
+1970-11-30 00:00:00,15.9683749834758
+1970-11-30 01:00:00,12.5790890091205
+1970-11-30 02:00:00,22.3390013258951
+1970-11-30 03:00:00,20.0316381914789
+1970-11-30 04:00:00,17.1845611320306
+1970-11-30 05:00:00,14.5819450058718
+1970-11-30 06:00:00,13.2328187071955
+1970-11-30 07:00:00,10.5187380376046
+1970-11-30 08:00:00,13.302578742564
+1970-11-30 09:00:00,14.4835476881909
+1970-11-30 10:00:00,11.3524100706605
+1970-11-30 11:00:00,21.6473726899386
+1970-11-30 12:00:00,14.0655372862779
+1970-11-30 13:00:00,11.6426638227486
+1970-11-30 14:00:00,8.54350445622068
+1970-11-30 15:00:00,23.3412819911464
+1970-11-30 16:00:00,18.6755233574008
+1970-11-30 17:00:00,13.3134539201706
+1970-11-30 18:00:00,10.0742792045299
+1970-11-30 19:00:00,17.6381419148928
+1970-11-30 20:00:00,18.5721609767062
+1970-11-30 21:00:00,10.826320543822
+1970-11-30 22:00:00,13.7297540024058
+1970-11-30 23:00:00,7.72019939587259
+1970-12-01 00:00:00,14.3440443869271
+1970-12-01 01:00:00,15.7476813475599
+1970-12-01 02:00:00,10.0726644748935
+1970-12-01 03:00:00,15.2871269856604
+1970-12-01 04:00:00,9.02663431174282
+1970-12-01 05:00:00,16.7243744809017
+1970-12-01 06:00:00,14.4388883639165
+1970-12-01 07:00:00,15.5784110060467
+1970-12-01 08:00:00,14.8428994797683
+1970-12-01 09:00:00,10.0214865862204
+1970-12-01 10:00:00,13.145025147659
+1970-12-01 11:00:00,9.5672977880002
+1970-12-01 12:00:00,12.1827131706421
+1970-12-01 13:00:00,29.0404908414867
+1970-12-01 14:00:00,9.4534816952826
+1970-12-01 15:00:00,14.1893553370339
+1970-12-01 16:00:00,13.4266399314264
+1970-12-01 17:00:00,18.0444710237473
+1970-12-01 18:00:00,13.9852162259634
+1970-12-01 19:00:00,18.2547182984506
+1970-12-01 20:00:00,14.9824904967506
+1970-12-01 21:00:00,15.7617877766219
+1970-12-01 22:00:00,13.3206777511504
+1970-12-01 23:00:00,11.5429712646203
+1970-12-02 00:00:00,14.2822462771395
+1970-12-02 01:00:00,11.7619618004448
+1970-12-02 02:00:00,15.4845418695061
+1970-12-02 03:00:00,17.6043651983165
+1970-12-02 04:00:00,16.4277028760072
+1970-12-02 05:00:00,13.8500728791524
+1970-12-02 06:00:00,19.0066833847198
+1970-12-02 07:00:00,9.43267204104974
+1970-12-02 08:00:00,8.63918225441861
+1970-12-02 09:00:00,23.1023233818921
+1970-12-02 10:00:00,11.1470651878232
+1970-12-02 11:00:00,16.5905999187281
+1970-12-02 12:00:00,8.27939665864837
+1970-12-02 13:00:00,13.4979592564135
+1970-12-02 14:00:00,14.0958757729121
+1970-12-02 15:00:00,14.6661004622759
+1970-12-02 16:00:00,7.09852905374958
+1970-12-02 17:00:00,7.7588807100544
+1970-12-02 18:00:00,9.68938267941731
+1970-12-02 19:00:00,13.2419368262729
+1970-12-02 20:00:00,9.9288394919816
+1970-12-02 21:00:00,22.2688888077887
+1970-12-02 22:00:00,14.44918885795
+1970-12-02 23:00:00,10.4067452551763
+1970-12-03 00:00:00,10.8679667532038
+1970-12-03 01:00:00,4.66926952914125
+1970-12-03 02:00:00,23.3437619404435
+1970-12-03 03:00:00,11.3390207050932
+1970-12-03 04:00:00,10.5320110525229
+1970-12-03 05:00:00,6.53336731395267
+1970-12-03 06:00:00,14.335158719811
+1970-12-03 07:00:00,14.2406256781813
+1970-12-03 08:00:00,14.8652018103868
+1970-12-03 09:00:00,15.4189657138233
+1970-12-03 10:00:00,12.6582577514444
+1970-12-03 11:00:00,13.3729452447982
+1970-12-03 12:00:00,15.1743201887551
+1970-12-03 13:00:00,14.9508445487466
+1970-12-03 14:00:00,9.45775377957617
+1970-12-03 15:00:00,12.4165508063067
+1970-12-03 16:00:00,10.7505709075171
+1970-12-03 17:00:00,21.6118712251169
+1970-12-03 18:00:00,14.4525441728824
+1970-12-03 19:00:00,17.0010861606229
+1970-12-03 20:00:00,8.90453948711057
+1970-12-03 21:00:00,21.5044325593789
+1970-12-03 22:00:00,9.96544228920209
+1970-12-03 23:00:00,16.1255830373841
+1970-12-04 00:00:00,13.5346647723388
+1970-12-04 01:00:00,18.9106401185794
+1970-12-04 02:00:00,13.2887201140732
+1970-12-04 03:00:00,21.4869569673762
+1970-12-04 04:00:00,17.3468424113926
+1970-12-04 05:00:00,15.9041164717511
+1970-12-04 06:00:00,14.5586739769108
+1970-12-04 07:00:00,20.5384105658392
+1970-12-04 08:00:00,14.9307784152864
+1970-12-04 09:00:00,14.4580163524989
+1970-12-04 10:00:00,17.9942422874381
+1970-12-04 11:00:00,12.2856633840118
+1970-12-04 12:00:00,7.9644631426007
+1970-12-04 13:00:00,7.63866956192759
+1970-12-04 14:00:00,17.1647568887592
+1970-12-04 15:00:00,23.3544783048874
+1970-12-04 16:00:00,17.4325872333684
+1970-12-04 17:00:00,14.4227185866632
+1970-12-04 18:00:00,10.9646916439338
+1970-12-04 19:00:00,16.2724196557846
+1970-12-04 20:00:00,12.8537946870591
+1970-12-04 21:00:00,12.7038180450445
+1970-12-04 22:00:00,8.21159011816502
+1970-12-04 23:00:00,13.2955890181607
+1970-12-05 00:00:00,15.6822139824223
+1970-12-05 01:00:00,19.2982317553755
+1970-12-05 02:00:00,16.2445292787935
+1970-12-05 03:00:00,18.7020111620392
+1970-12-05 04:00:00,12.2127901728977
+1970-12-05 05:00:00,15.7284494432795
+1970-12-05 06:00:00,15.1531366547569
+1970-12-05 07:00:00,18.0100091800879
+1970-12-05 08:00:00,16.2295934655394
+1970-12-05 09:00:00,18.5946959961875
+1970-12-05 10:00:00,4.58559475731257
+1970-12-05 11:00:00,12.0484691707277
+1970-12-05 12:00:00,13.2805303341153
+1970-12-05 13:00:00,24.3493002906784
+1970-12-05 14:00:00,14.6803718956493
+1970-12-05 15:00:00,13.1008619707542
+1970-12-05 16:00:00,17.5862373601828
+1970-12-05 17:00:00,18.6062272210173
+1970-12-05 18:00:00,15.2737533181418
+1970-12-05 19:00:00,16.0704414030062
+1970-12-05 20:00:00,15.8666377660033
+1970-12-05 21:00:00,14.2459758432481
+1970-12-05 22:00:00,10.9378000444164
+1970-12-05 23:00:00,12.9188680748843
+1970-12-06 00:00:00,19.1565727443925
+1970-12-06 01:00:00,14.2814568327906
+1970-12-06 02:00:00,15.6219750140593
+1970-12-06 03:00:00,13.6749866106408
+1970-12-06 04:00:00,14.7608173068671
+1970-12-06 05:00:00,19.8046871926255
+1970-12-06 06:00:00,12.4626110688521
+1970-12-06 07:00:00,11.4507425731516
+1970-12-06 08:00:00,17.1458248922672
+1970-12-06 09:00:00,12.4309156597742
+1970-12-06 10:00:00,11.4249787378584
+1970-12-06 11:00:00,13.88796436863
+1970-12-06 12:00:00,21.7198406040213
+1970-12-06 13:00:00,18.5844124099762
+1970-12-06 14:00:00,15.8922486580232
+1970-12-06 15:00:00,10.4214923072006
+1970-12-06 16:00:00,14.8886803012606
+1970-12-06 17:00:00,13.5679678002907
+1970-12-06 18:00:00,10.6241972747758
+1970-12-06 19:00:00,12.4699766761116
+1970-12-06 20:00:00,11.2814213467
+1970-12-06 21:00:00,14.6934283568248
+1970-12-06 22:00:00,16.9660185022618
+1970-12-06 23:00:00,20.1948858477662
+1970-12-07 00:00:00,9.20131867156612
+1970-12-07 01:00:00,13.0830423021216
+1970-12-07 02:00:00,11.93848492405
+1970-12-07 03:00:00,17.5505839264382
+1970-12-07 04:00:00,14.4191638898018
+1970-12-07 05:00:00,18.1796511150576
+1970-12-07 06:00:00,6.6933010119613
+1970-12-07 07:00:00,14.353747281028
+1970-12-07 08:00:00,21.1370873585296
+1970-12-07 09:00:00,21.2952645826411
+1970-12-07 10:00:00,8.34124865367775
+1970-12-07 11:00:00,13.9474663331118
+1970-12-07 12:00:00,15.2070287528324
+1970-12-07 13:00:00,15.5931399652198
+1970-12-07 14:00:00,13.7079287035838
+1970-12-07 15:00:00,22.9315685178443
+1970-12-07 16:00:00,11.1245980088599
+1970-12-07 17:00:00,10.6803346148386
+1970-12-07 18:00:00,17.52123775823
+1970-12-07 19:00:00,18.7747375706517
+1970-12-07 20:00:00,7.50810512919113
+1970-12-07 21:00:00,10.7855694732756
+1970-12-07 22:00:00,8.17993960290752
+1970-12-07 23:00:00,8.52744030526217
+1970-12-08 00:00:00,20.9357150638374
+1970-12-08 01:00:00,12.9025860549386
+1970-12-08 02:00:00,15.4102146441825
+1970-12-08 03:00:00,16.4402966855841
+1970-12-08 04:00:00,18.8678861912584
+1970-12-08 05:00:00,12.8724447341517
+1970-12-08 06:00:00,5.83775863529332
+1970-12-08 07:00:00,19.0155792534906
+1970-12-08 08:00:00,17.1168458526181
+1970-12-08 09:00:00,14.6261104305007
+1970-12-08 10:00:00,17.0858694608828
+1970-12-08 11:00:00,20.2274498905538
+1970-12-08 12:00:00,15.4780039247379
+1970-12-08 13:00:00,16.4343768880405
+1970-12-08 14:00:00,16.0656666111023
+1970-12-08 15:00:00,17.1550447543357
+1970-12-08 16:00:00,8.65630835186493
+1970-12-08 17:00:00,12.3083159129857
+1970-12-08 18:00:00,12.1739219121537
+1970-12-08 19:00:00,10.9643699480523
+1970-12-08 20:00:00,17.2087630469049
+1970-12-08 21:00:00,8.53223386062594
+1970-12-08 22:00:00,7.18250901878829
+1970-12-08 23:00:00,9.33434014618893
+1970-12-09 00:00:00,10.9545170101379
+1970-12-09 01:00:00,15.1697783653544
+1970-12-09 02:00:00,11.1834395188253
+1970-12-09 03:00:00,17.2850693229098
+1970-12-09 04:00:00,14.8221701288821
+1970-12-09 05:00:00,7.6273552563898
+1970-12-09 06:00:00,22.714910540075
+1970-12-09 07:00:00,7.81027623759243
+1970-12-09 08:00:00,15.1450853944015
+1970-12-09 09:00:00,10.112297209227
+1970-12-09 10:00:00,14.3412217378221
+1970-12-09 11:00:00,13.1748877620938
+1970-12-09 12:00:00,7.28051414066405
+1970-12-09 13:00:00,17.9584023620761
+1970-12-09 14:00:00,7.86026138440779
+1970-12-09 15:00:00,12.0516711525087
+1970-12-09 16:00:00,16.6840768020743
+1970-12-09 17:00:00,13.5724511434335
+1970-12-09 18:00:00,13.3734448328832
+1970-12-09 19:00:00,9.9395103540339
+1970-12-09 20:00:00,15.3420379783081
+1970-12-09 21:00:00,16.008999803766
+1970-12-09 22:00:00,14.6472414313907
+1970-12-09 23:00:00,8.76385980581939
+1970-12-10 00:00:00,19.5044942370572
+1970-12-10 01:00:00,19.2912524855978
+1970-12-10 02:00:00,14.5451120793385
+1970-12-10 03:00:00,6.68071069306471
+1970-12-10 04:00:00,13.1521994855507
+1970-12-10 05:00:00,21.6433097158224
+1970-12-10 06:00:00,11.3603989681513
+1970-12-10 07:00:00,10.706382191465
+1970-12-10 08:00:00,10.8825675987062
+1970-12-10 09:00:00,13.0786173807283
+1970-12-10 10:00:00,18.668201546074
+1970-12-10 11:00:00,13.3733692802305
+1970-12-10 12:00:00,8.95321010091247
+1970-12-10 13:00:00,16.3784653597454
+1970-12-10 14:00:00,21.7603128253737
+1970-12-10 15:00:00,15.6229268743035
+1970-12-10 16:00:00,12.7661638768068
+1970-12-10 17:00:00,22.4727810912341
+1970-12-10 18:00:00,17.8311851926945
+1970-12-10 19:00:00,13.4318765675117
+1970-12-10 20:00:00,11.1447214343878
+1970-12-10 21:00:00,17.5326252346295
+1970-12-10 22:00:00,15.1242265748087
+1970-12-10 23:00:00,8.52164325841893
+1970-12-11 00:00:00,8.71204188177264
+1970-12-11 01:00:00,16.4887475521253
+1970-12-11 02:00:00,16.068922709224
+1970-12-11 03:00:00,15.3857020176713
+1970-12-11 04:00:00,9.60721908927107
+1970-12-11 05:00:00,9.76432789716513
+1970-12-11 06:00:00,12.6672139340625
+1970-12-11 07:00:00,13.9034408235497
+1970-12-11 08:00:00,15.793759530195
+1970-12-11 09:00:00,22.7655117981213
+1970-12-11 10:00:00,11.0258715492218
+1970-12-11 11:00:00,18.1861555187811
+1970-12-11 12:00:00,14.7120479151073
+1970-12-11 13:00:00,11.1233485355188
+1970-12-11 14:00:00,13.419940583156
+1970-12-11 15:00:00,11.8836692904964
+1970-12-11 16:00:00,25.9080725459602
+1970-12-11 17:00:00,11.4926077001445
+1970-12-11 18:00:00,7.93175568170298
+1970-12-11 19:00:00,12.3378646608673
+1970-12-11 20:00:00,7.59895764951248
+1970-12-11 21:00:00,19.9830977476563
+1970-12-11 22:00:00,8.89730973185372
+1970-12-11 23:00:00,11.5788967230164
+1970-12-12 00:00:00,13.5056075825522
+1970-12-12 01:00:00,22.463162552546
+1970-12-12 02:00:00,11.0690780477963
+1970-12-12 03:00:00,17.1132497682801
+1970-12-12 04:00:00,15.2612648371005
+1970-12-12 05:00:00,9.87862333871756
+1970-12-12 06:00:00,5.52824420863193
+1970-12-12 07:00:00,13.5015382127569
+1970-12-12 08:00:00,8.27652849576853
+1970-12-12 09:00:00,21.2627592616335
+1970-12-12 10:00:00,10.1825801725924
+1970-12-12 11:00:00,14.2032570606049
+1970-12-12 12:00:00,22.5594359262764
+1970-12-12 13:00:00,14.4964244037699
+1970-12-12 14:00:00,4.08844794165305
+1970-12-12 15:00:00,11.1587801123933
+1970-12-12 16:00:00,16.9482479945567
+1970-12-12 17:00:00,11.1644526725011
+1970-12-12 18:00:00,22.2588677630241
+1970-12-12 19:00:00,11.4705974368336
+1970-12-12 20:00:00,13.7495438775823
+1970-12-12 21:00:00,19.0386459214077
+1970-12-12 22:00:00,13.3373934580966
+1970-12-12 23:00:00,10.2677735398054
+1970-12-13 00:00:00,21.2613949116961
+1970-12-13 01:00:00,4.20488216197191
+1970-12-13 02:00:00,17.3447293228953
+1970-12-13 03:00:00,14.0641575698787
+1970-12-13 04:00:00,13.5000770227789
+1970-12-13 05:00:00,6.42103158418943
+1970-12-13 06:00:00,20.6235717496244
+1970-12-13 07:00:00,14.1889722142405
+1970-12-13 08:00:00,20.0844338566942
+1970-12-13 09:00:00,9.33339497861951
+1970-12-13 10:00:00,22.190645022341
+1970-12-13 11:00:00,11.1890385766874
+1970-12-13 12:00:00,14.1045793149912
+1970-12-13 13:00:00,18.3687782687674
+1970-12-13 14:00:00,9.94168411245253
+1970-12-13 15:00:00,12.263346415781
+1970-12-13 16:00:00,6.19505926754311
+1970-12-13 17:00:00,11.1888451333157
+1970-12-13 18:00:00,10.6322986043654
+1970-12-13 19:00:00,15.7717599816887
+1970-12-13 20:00:00,6.69297878973039
+1970-12-13 21:00:00,25.7767647986688
+1970-12-13 22:00:00,12.8271690652162
+1970-12-13 23:00:00,12.7520893943408
+1970-12-14 00:00:00,8.18721596630977
+1970-12-14 01:00:00,10.3778754709054
+1970-12-14 02:00:00,14.6541226763539
+1970-12-14 03:00:00,16.8757455768595
+1970-12-14 04:00:00,13.2325880525468
+1970-12-14 05:00:00,23.0748544662025
+1970-12-14 06:00:00,13.0857117479779
+1970-12-14 07:00:00,6.58347593019613
+1970-12-14 08:00:00,10.4732316395275
+1970-12-14 09:00:00,23.2706198622431
+1970-12-14 10:00:00,16.8163418579049
+1970-12-14 11:00:00,6.6833952761568
+1970-12-14 12:00:00,12.2852804133086
+1970-12-14 13:00:00,11.2790539957708
+1970-12-14 14:00:00,17.4524207678537
+1970-12-14 15:00:00,15.4742741579174
+1970-12-14 16:00:00,17.2541562415297
+1970-12-14 17:00:00,17.5582469983159
+1970-12-14 18:00:00,10.5260843326981
+1970-12-14 19:00:00,9.41716127378658
+1970-12-14 20:00:00,4.20669214465701
+1970-12-14 21:00:00,20.9061691008478
+1970-12-14 22:00:00,27.7631887340154
+1970-12-14 23:00:00,15.402410162707
+1970-12-15 00:00:00,14.0815875024265
+1970-12-15 01:00:00,10.6031667932874
+1970-12-15 02:00:00,11.1233524317397
+1970-12-15 03:00:00,11.902958986717
+1970-12-15 04:00:00,10.1414436773877
+1970-12-15 05:00:00,9.42729921875388
+1970-12-15 06:00:00,12.5771933964108
+1970-12-15 07:00:00,8.91651089544715
+1970-12-15 08:00:00,6.78610534611672
+1970-12-15 09:00:00,21.7535371223578
+1970-12-15 10:00:00,17.2608106030038
+1970-12-15 11:00:00,5.85008271052529
+1970-12-15 12:00:00,26.8135511321384
+1970-12-15 13:00:00,14.8728174081587
+1970-12-15 14:00:00,10.7574426530982
+1970-12-15 15:00:00,15.1460004417328
+1970-12-15 16:00:00,16.3172243186003
+1970-12-15 17:00:00,19.4589945543221
+1970-12-15 18:00:00,13.1199780025818
+1970-12-15 19:00:00,9.7975960793814
+1970-12-15 20:00:00,10.3816097581737
+1970-12-15 21:00:00,15.111982590112
+1970-12-15 22:00:00,9.10271139025147
+1970-12-15 23:00:00,21.3884838104073
+1970-12-16 00:00:00,12.354484925439
+1970-12-16 01:00:00,12.3423377172158
+1970-12-16 02:00:00,11.1074937840129
+1970-12-16 03:00:00,17.9533303562485
+1970-12-16 04:00:00,14.583780969739
+1970-12-16 05:00:00,11.1009235610839
+1970-12-16 06:00:00,14.1738952825947
+1970-12-16 07:00:00,7.19549903171768
+1970-12-16 08:00:00,13.7752848538891
+1970-12-16 09:00:00,12.6844012048696
+1970-12-16 10:00:00,9.33792157656229
+1970-12-16 11:00:00,6.04826274088726
+1970-12-16 12:00:00,13.9046492382908
+1970-12-16 13:00:00,19.4611019461812
+1970-12-16 14:00:00,17.2774649460378
+1970-12-16 15:00:00,12.985255546502
+1970-12-16 16:00:00,19.6382328623784
+1970-12-16 17:00:00,19.2605748429012
+1970-12-16 18:00:00,14.6551783743727
+1970-12-16 19:00:00,16.6366494071785
+1970-12-16 20:00:00,8.31060466148189
+1970-12-16 21:00:00,19.0739649474847
+1970-12-16 22:00:00,17.8674227369228
+1970-12-16 23:00:00,7.17449858487278
+1970-12-17 00:00:00,8.72149866964116
+1970-12-17 01:00:00,14.6343580371832
+1970-12-17 02:00:00,16.8838688290135
+1970-12-17 03:00:00,28.190085619247
+1970-12-17 04:00:00,18.7854821261394
+1970-12-17 05:00:00,19.2318446612495
+1970-12-17 06:00:00,16.4220172956833
+1970-12-17 07:00:00,9.03352322438958
+1970-12-17 08:00:00,12.2315809475333
+1970-12-17 09:00:00,7.18596572049132
+1970-12-17 10:00:00,19.0766885324076
+1970-12-17 11:00:00,12.8713108705211
+1970-12-17 12:00:00,10.7290217872509
+1970-12-17 13:00:00,15.4977425855603
+1970-12-17 14:00:00,14.209991131073
+1970-12-17 15:00:00,13.3708648564506
+1970-12-17 16:00:00,15.1126231702835
+1970-12-17 17:00:00,21.8106582908942
+1970-12-17 18:00:00,15.2034241534136
+1970-12-17 19:00:00,24.5715952344297
+1970-12-17 20:00:00,7.54113591699477
+1970-12-17 21:00:00,8.85205233198326
+1970-12-17 22:00:00,8.96319239089334
+1970-12-17 23:00:00,17.8080037675511
+1970-12-18 00:00:00,11.1999445579338
+1970-12-18 01:00:00,9.79945140124301
+1970-12-18 02:00:00,11.09311476268
+1970-12-18 03:00:00,11.7131184567492
+1970-12-18 04:00:00,7.93910081233711
+1970-12-18 05:00:00,8.97816581834028
+1970-12-18 06:00:00,11.6358958978683
+1970-12-18 07:00:00,12.3070060924119
+1970-12-18 08:00:00,10.3299401042729
+1970-12-18 09:00:00,18.8777729847108
+1970-12-18 10:00:00,18.5747556258142
+1970-12-18 11:00:00,10.8950762721987
+1970-12-18 12:00:00,13.3345503153379
+1970-12-18 13:00:00,14.1351910562926
+1970-12-18 14:00:00,21.2938097661886
+1970-12-18 15:00:00,13.9064089676738
+1970-12-18 16:00:00,10.6654511472427
+1970-12-18 17:00:00,14.1984312919206
+1970-12-18 18:00:00,17.2650250479262
+1970-12-18 19:00:00,13.6409928448852
+1970-12-18 20:00:00,18.1483094075128
+1970-12-18 21:00:00,22.1664796605058
+1970-12-18 22:00:00,24.5158430102316
+1970-12-18 23:00:00,14.2048308176272
+1970-12-19 00:00:00,16.6341794667294
+1970-12-19 01:00:00,5.95566738272984
+1970-12-19 02:00:00,13.8069728553275
+1970-12-19 03:00:00,19.618479624594
+1970-12-19 04:00:00,15.6892890522968
+1970-12-19 05:00:00,10.7535049367086
+1970-12-19 06:00:00,11.1099591844284
+1970-12-19 07:00:00,11.6999243295546
+1970-12-19 08:00:00,14.843489735376
+1970-12-19 09:00:00,3.81387469854952
+1970-12-19 10:00:00,13.7438044766683
+1970-12-19 11:00:00,10.8948083812294
+1970-12-19 12:00:00,10.6271445549316
+1970-12-19 13:00:00,22.317848355906
+1970-12-19 14:00:00,11.0972548373407
+1970-12-19 15:00:00,22.4354829781033
+1970-12-19 16:00:00,8.35405024348844
+1970-12-19 17:00:00,14.8987942205129
+1970-12-19 18:00:00,18.9012225796575
+1970-12-19 19:00:00,24.8614972853275
+1970-12-19 20:00:00,13.3682128971011
+1970-12-19 21:00:00,12.0245356327892
+1970-12-19 22:00:00,22.4834271501433
+1970-12-19 23:00:00,21.9799571858516
+1970-12-20 00:00:00,15.5134403797973
+1970-12-20 01:00:00,16.8104784381774
+1970-12-20 02:00:00,13.1713502215802
+1970-12-20 03:00:00,23.2602990591567
+1970-12-20 04:00:00,17.1706499701563
+1970-12-20 05:00:00,12.9237162163618
+1970-12-20 06:00:00,10.3396493507297
+1970-12-20 07:00:00,10.8911264610515
+1970-12-20 08:00:00,13.3731087424382
+1970-12-20 09:00:00,7.01207980497724
+1970-12-20 10:00:00,18.7856733315044
+1970-12-20 11:00:00,15.4940044822944
+1970-12-20 12:00:00,9.54708479912085
+1970-12-20 13:00:00,13.8011113041329
+1970-12-20 14:00:00,10.2438806040306
+1970-12-20 15:00:00,19.7633092568139
+1970-12-20 16:00:00,16.1369879126167
+1970-12-20 17:00:00,12.1072102151795
+1970-12-20 18:00:00,13.4491478120107
+1970-12-20 19:00:00,17.7533885700969
+1970-12-20 20:00:00,14.2622451958004
+1970-12-20 21:00:00,9.68464193932672
+1970-12-20 22:00:00,11.1147998128114
+1970-12-20 23:00:00,19.8832546392003
+1970-12-21 00:00:00,9.13069927829483
+1970-12-21 01:00:00,16.084878766819
+1970-12-21 02:00:00,8.27782927795312
+1970-12-21 03:00:00,13.1050382721432
+1970-12-21 04:00:00,24.1519377690199
+1970-12-21 05:00:00,22.4734992197859
+1970-12-21 06:00:00,9.44054704123015
+1970-12-21 07:00:00,10.216132511884
+1970-12-21 08:00:00,16.6891505188493
+1970-12-21 09:00:00,14.8105568081733
+1970-12-21 10:00:00,9.42483658156037
+1970-12-21 11:00:00,13.7104790787749
+1970-12-21 12:00:00,10.0297605777779
+1970-12-21 13:00:00,7.21937106401522
+1970-12-21 14:00:00,16.2582060634237
+1970-12-21 15:00:00,11.0487317592713
+1970-12-21 16:00:00,26.5048604528189
+1970-12-21 17:00:00,21.8808779974347
+1970-12-21 18:00:00,11.3515337322392
+1970-12-21 19:00:00,14.0065772500609
+1970-12-21 20:00:00,9.65667330610897
+1970-12-21 21:00:00,9.63058492536657
+1970-12-21 22:00:00,22.661790817498
+1970-12-21 23:00:00,17.4794387360891
+1970-12-22 00:00:00,8.85585232849075
+1970-12-22 01:00:00,21.8306275334248
+1970-12-22 02:00:00,16.2881774055378
+1970-12-22 03:00:00,11.3608080482524
+1970-12-22 04:00:00,10.49490888583
+1970-12-22 05:00:00,19.5457039486846
+1970-12-22 06:00:00,12.2353073272345
+1970-12-22 07:00:00,14.0507705907413
+1970-12-22 08:00:00,15.8763950629569
+1970-12-22 09:00:00,8.35092199688422
+1970-12-22 10:00:00,14.1587988837993
+1970-12-22 11:00:00,11.5740602015366
+1970-12-22 12:00:00,17.4557762186082
+1970-12-22 13:00:00,14.5276219112463
+1970-12-22 14:00:00,18.6223147311967
+1970-12-22 15:00:00,15.0290982324501
+1970-12-22 16:00:00,15.6974446642892
+1970-12-22 17:00:00,11.4004209444732
+1970-12-22 18:00:00,14.9871642400068
+1970-12-22 19:00:00,10.1629437762616
+1970-12-22 20:00:00,14.636824653813
+1970-12-22 21:00:00,11.8280264958928
+1970-12-22 22:00:00,15.4636033344558
+1970-12-22 23:00:00,12.4086368038694
+1970-12-23 00:00:00,24.3662116660107
+1970-12-23 01:00:00,23.6172791356766
+1970-12-23 02:00:00,12.3706525026934
+1970-12-23 03:00:00,12.0806838216084
+1970-12-23 04:00:00,19.6677849556585
+1970-12-23 05:00:00,21.7074547900539
+1970-12-23 06:00:00,10.5103662784253
+1970-12-23 07:00:00,10.1724964757376
+1970-12-23 08:00:00,18.9268897939151
+1970-12-23 09:00:00,5.05704258309023
+1970-12-23 10:00:00,21.7641884797024
+1970-12-23 11:00:00,12.8930490940222
+1970-12-23 12:00:00,15.2561237424838
+1970-12-23 13:00:00,20.6408940085129
+1970-12-23 14:00:00,11.1478366782914
+1970-12-23 15:00:00,12.520454949789
+1970-12-23 16:00:00,16.3797084054248
+1970-12-23 17:00:00,15.7193058516869
+1970-12-23 18:00:00,16.9411814585718
+1970-12-23 19:00:00,15.8540077146687
+1970-12-23 20:00:00,12.5590623123049
+1970-12-23 21:00:00,13.6933355158104
+1970-12-23 22:00:00,17.4696416317975
+1970-12-23 23:00:00,21.8372837134923
+1970-12-24 00:00:00,7.1045900987409
+1970-12-24 01:00:00,9.92259517114686
+1970-12-24 02:00:00,13.8484471090032
+1970-12-24 03:00:00,11.9665499195088
+1970-12-24 04:00:00,13.7765785416751
+1970-12-24 05:00:00,18.3889463818772
+1970-12-24 06:00:00,16.464254265731
+1970-12-24 07:00:00,7.00058987615995
+1970-12-24 08:00:00,7.90284562689567
+1970-12-24 09:00:00,12.3957174651217
+1970-12-24 10:00:00,18.2463372327569
+1970-12-24 11:00:00,14.585058785672
+1970-12-24 12:00:00,18.9786214067719
+1970-12-24 13:00:00,11.2383759182644
+1970-12-24 14:00:00,7.99702747362706
+1970-12-24 15:00:00,18.7754336918276
+1970-12-24 16:00:00,17.7565909893763
+1970-12-24 17:00:00,12.2374092880496
+1970-12-24 18:00:00,10.5438271933517
+1970-12-24 19:00:00,16.7517843584662
+1970-12-24 20:00:00,17.5301548071781
+1970-12-24 21:00:00,15.2405976476301
+1970-12-24 22:00:00,13.6440479251039
+1970-12-24 23:00:00,24.6716658361061
+1970-12-25 00:00:00,12.407278821772
+1970-12-25 01:00:00,16.6569475200685
+1970-12-25 02:00:00,14.1804676371902
+1970-12-25 03:00:00,15.4671232215108
+1970-12-25 04:00:00,11.6129489150344
+1970-12-25 05:00:00,20.3696715627531
+1970-12-25 06:00:00,10.0462696523467
+1970-12-25 07:00:00,18.3102806418998
+1970-12-25 08:00:00,6.74201352057825
+1970-12-25 09:00:00,18.9235758165981
+1970-12-25 10:00:00,18.5281432551184
+1970-12-25 11:00:00,9.63557974138616
+1970-12-25 12:00:00,20.3540036592514
+1970-12-25 13:00:00,19.2372554110391
+1970-12-25 14:00:00,10.0361680732868
+1970-12-25 15:00:00,10.9325821658886
+1970-12-25 16:00:00,13.1634000472791
+1970-12-25 17:00:00,15.1842712944835
+1970-12-25 18:00:00,10.9998363711241
+1970-12-25 19:00:00,23.6373219025242
+1970-12-25 20:00:00,17.9375975819715
+1970-12-25 21:00:00,9.1069641452491
+1970-12-25 22:00:00,9.95912568571881
+1970-12-25 23:00:00,17.943834235914
+1970-12-26 00:00:00,7.09122387422817
+1970-12-26 01:00:00,9.39533661888539
+1970-12-26 02:00:00,17.5271999053595
+1970-12-26 03:00:00,16.7248265821713
+1970-12-26 04:00:00,11.9886173920468
+1970-12-26 05:00:00,17.6242062092484
+1970-12-26 06:00:00,16.795092514722
+1970-12-26 07:00:00,15.2501915669468
+1970-12-26 08:00:00,11.6249002960078
+1970-12-26 09:00:00,12.7989105713936
+1970-12-26 10:00:00,15.1501083389676
+1970-12-26 11:00:00,11.5577762294512
+1970-12-26 12:00:00,15.1589125806144
+1970-12-26 13:00:00,11.0895410654455
+1970-12-26 14:00:00,20.356622938799
+1970-12-26 15:00:00,15.187587093963
+1970-12-26 16:00:00,13.5609981653068
+1970-12-26 17:00:00,12.0340014748811
+1970-12-26 18:00:00,16.1945848737245
+1970-12-26 19:00:00,14.8945787017877
+1970-12-26 20:00:00,14.5520271241251
+1970-12-26 21:00:00,16.0813907623394
+1970-12-26 22:00:00,17.7932425952201
+1970-12-26 23:00:00,19.0551415346141
+1970-12-27 00:00:00,13.7354507763097
+1970-12-27 01:00:00,13.3221075767548
+1970-12-27 02:00:00,26.1890054992541
+1970-12-27 03:00:00,18.6280991028332
+1970-12-27 04:00:00,5.86282992872174
+1970-12-27 05:00:00,13.7281123178959
+1970-12-27 06:00:00,8.99057759002589
+1970-12-27 07:00:00,11.234743522669
+1970-12-27 08:00:00,8.70457659954912
+1970-12-27 09:00:00,22.0274563661586
+1970-12-27 10:00:00,9.7217208024535
+1970-12-27 11:00:00,8.90896031625651
+1970-12-27 12:00:00,9.26915685119098
+1970-12-27 13:00:00,13.5731226493946
+1970-12-27 14:00:00,11.7016741519992
+1970-12-27 15:00:00,13.0203819004028
+1970-12-27 16:00:00,21.4911167235509
+1970-12-27 17:00:00,17.6418326820575
+1970-12-27 18:00:00,5.19415512083176
+1970-12-27 19:00:00,15.3460563380494
+1970-12-27 20:00:00,17.5132915192316
+1970-12-27 21:00:00,15.4275107803133
+1970-12-27 22:00:00,19.4502478223833
+1970-12-27 23:00:00,15.0667240436129
+1970-12-28 00:00:00,25.3864798305928
+1970-12-28 01:00:00,10.7012272079035
+1970-12-28 02:00:00,13.1577162821461
+1970-12-28 03:00:00,12.819241995157
+1970-12-28 04:00:00,28.0561507338635
+1970-12-28 05:00:00,11.448209818658
+1970-12-28 06:00:00,9.13880883372869
+1970-12-28 07:00:00,13.773357338692
+1970-12-28 08:00:00,16.9653756332527
+1970-12-28 09:00:00,15.8116829539307
+1970-12-28 10:00:00,8.86285276455821
+1970-12-28 11:00:00,14.0828334954365
+1970-12-28 12:00:00,8.67064666517803
+1970-12-28 13:00:00,6.89632090749615
+1970-12-28 14:00:00,16.4326528808895
+1970-12-28 15:00:00,16.1752124392072
+1970-12-28 16:00:00,13.046310710643
+1970-12-28 17:00:00,15.6252691029654
+1970-12-28 18:00:00,14.431055681106
+1970-12-28 19:00:00,13.6563504373967
+1970-12-28 20:00:00,15.1226981988718
+1970-12-28 21:00:00,11.9060970475949
+1970-12-28 22:00:00,6.53592765990522
+1970-12-28 23:00:00,11.9960399243136
+1970-12-29 00:00:00,8.54195731776478
+1970-12-29 01:00:00,12.9200466197028
+1970-12-29 02:00:00,10.4805486750995
+1970-12-29 03:00:00,9.84159577803077
+1970-12-29 04:00:00,17.2128012204506
+1970-12-29 05:00:00,6.43306810244629
+1970-12-29 06:00:00,15.2161229704412
+1970-12-29 07:00:00,13.4997192939448
+1970-12-29 08:00:00,11.0571299410783
+1970-12-29 09:00:00,17.141906065555
+1970-12-29 10:00:00,3.4820694962165
+1970-12-29 11:00:00,11.7375320977734
+1970-12-29 12:00:00,13.4684685214985
+1970-12-29 13:00:00,18.0947221746649
+1970-12-29 14:00:00,14.4005138916034
+1970-12-29 15:00:00,12.2932684444271
+1970-12-29 16:00:00,13.1402362035763
+1970-12-29 17:00:00,9.90575553346306
+1970-12-29 18:00:00,13.019271133435
+1970-12-29 19:00:00,9.31578118795341
+1970-12-29 20:00:00,21.4748611116398
+1970-12-29 21:00:00,12.661288950198
+1970-12-29 22:00:00,10.0109206118687
+1970-12-29 23:00:00,8.53735576513208
+1970-12-30 00:00:00,14.3303701708875
+1970-12-30 01:00:00,20.2960167425935
+1970-12-30 02:00:00,11.4489442083711
+1970-12-30 03:00:00,9.03211624683709
+1970-12-30 04:00:00,20.3129791563372
+1970-12-30 05:00:00,14.4905730593257
+1970-12-30 06:00:00,10.6203799861143
+1970-12-30 07:00:00,18.3072416574652
+1970-12-30 08:00:00,8.2085965414856
+1970-12-30 09:00:00,19.3065249033758
+1970-12-30 10:00:00,17.7354796409012
+1970-12-30 11:00:00,17.6501044894731
+1970-12-30 12:00:00,8.25161132498437
+1970-12-30 13:00:00,15.460158490105
+1970-12-30 14:00:00,20.3971324266378
+1970-12-30 15:00:00,14.4202536565764
+1970-12-30 16:00:00,15.4200236809566
+1970-12-30 17:00:00,16.1002648376491
+1970-12-30 18:00:00,8.86578008162751
+1970-12-30 19:00:00,9.19729228128524
+1970-12-30 20:00:00,11.2338944582257
+1970-12-30 21:00:00,12.0579424457179
+1970-12-30 22:00:00,10.680996789998
+1970-12-30 23:00:00,18.749151698002
+1970-12-31 00:00:00,9.2269154120693
+1970-12-31 01:00:00,5.93751286646034
+1970-12-31 02:00:00,13.9514329446832
+1970-12-31 03:00:00,24.6287105377239
+1970-12-31 04:00:00,15.7591067935588
+1970-12-31 05:00:00,23.5261654511787
+1970-12-31 06:00:00,14.705047222343
+1970-12-31 07:00:00,11.4233529262793
+1970-12-31 08:00:00,13.5809723422452
+1970-12-31 09:00:00,10.3297766287396
+1970-12-31 10:00:00,11.9069205370056
+1970-12-31 11:00:00,16.2462594765743
+1970-12-31 12:00:00,18.4210665705107
+1970-12-31 13:00:00,9.7795856803299
+1970-12-31 14:00:00,8.40598144863482
+1970-12-31 15:00:00,13.7567479726506
+1970-12-31 16:00:00,13.6292323521102
+1970-12-31 17:00:00,8.43969046737836
+1970-12-31 18:00:00,15.7958281411543
+1970-12-31 19:00:00,7.5818462623959
+1970-12-31 20:00:00,30.4174620374893
+1970-12-31 21:00:00,19.2611190827882
+1970-12-31 22:00:00,4.52345254149069
+1970-12-31 23:00:00,16.7619657306826
+1971-01-01 00:00:00,17.3648837227012
+1971-01-01 01:00:00,14.3055056635158
+1971-01-01 02:00:00,19.378666974974
+1971-01-01 03:00:00,10.8705006817488
+1971-01-01 04:00:00,17.7700985058262
+1971-01-01 05:00:00,13.8587866650672
+1971-01-01 06:00:00,22.5697373282397
+1971-01-01 07:00:00,14.4477503045112
+1971-01-01 08:00:00,16.8714232767404
+1971-01-01 09:00:00,13.2577279356329
+1971-01-01 10:00:00,16.5968038447669
+1971-01-01 11:00:00,11.4538734735806
+1971-01-01 12:00:00,14.5960004629129
+1971-01-01 13:00:00,19.4670681284966
+1971-01-01 14:00:00,7.23556790272409
+1971-01-01 15:00:00,23.8648900184047
+1971-01-01 16:00:00,10.7802568202458
+1971-01-01 17:00:00,25.3271285446887
+1971-01-01 18:00:00,7.08048184647304
+1971-01-01 19:00:00,12.3267359978852
+1971-01-01 20:00:00,14.1861842961772
+1971-01-01 21:00:00,16.2352742623393
+1971-01-01 22:00:00,10.215635932831
+1971-01-01 23:00:00,10.6390947761
+1971-01-02 00:00:00,12.2621255959097
+1971-01-02 01:00:00,10.777418864272
+1971-01-02 02:00:00,19.3518610296426
+1971-01-02 03:00:00,13.5604305429594
+1971-01-02 04:00:00,19.1601631090598
+1971-01-02 05:00:00,14.738570982529
+1971-01-02 06:00:00,16.984707507677
+1971-01-02 07:00:00,12.7096746096629
+1971-01-02 08:00:00,11.5556955293556
+1971-01-02 09:00:00,18.3968785898435
+1971-01-02 10:00:00,13.0905062050556
+1971-01-02 11:00:00,20.0210304868326
+1971-01-02 12:00:00,7.83473160539429
+1971-01-02 13:00:00,13.7431096684694
+1971-01-02 14:00:00,20.4559199415441
+1971-01-02 15:00:00,9.08337528909037
+1971-01-02 16:00:00,18.5861298831102
+1971-01-02 17:00:00,15.0160084371033
+1971-01-02 18:00:00,9.32629022450284
+1971-01-02 19:00:00,22.649525588168
+1971-01-02 20:00:00,14.2216534922379
+1971-01-02 21:00:00,15.4834004215757
+1971-01-02 22:00:00,20.5035147778915
+1971-01-02 23:00:00,18.9566765573117
+1971-01-03 00:00:00,17.5327143562778
+1971-01-03 01:00:00,15.9527960322001
+1971-01-03 02:00:00,9.22679146564861
+1971-01-03 03:00:00,8.64139879761886
+1971-01-03 04:00:00,9.73375743143272
+1971-01-03 05:00:00,13.4620225264762
+1971-01-03 06:00:00,21.8175787598619
+1971-01-03 07:00:00,6.68200013062758
+1971-01-03 08:00:00,15.6786102513586
+1971-01-03 09:00:00,10.5068705625167
+1971-01-03 10:00:00,10.0969470856706
+1971-01-03 11:00:00,17.8440435252768
+1971-01-03 12:00:00,26.3942199779453
+1971-01-03 13:00:00,15.8707781624623
+1971-01-03 14:00:00,21.0875382470956
+1971-01-03 15:00:00,13.9059808202691
+1971-01-03 16:00:00,10.55568343295
+1971-01-03 17:00:00,14.6212730811846
+1971-01-03 18:00:00,20.2562933280925
+1971-01-03 19:00:00,16.1271003979252
+1971-01-03 20:00:00,19.9066651985766
+1971-01-03 21:00:00,14.4667788365434
+1971-01-03 22:00:00,13.5786343487404
+1971-01-03 23:00:00,15.9737311968135
+1971-01-04 00:00:00,11.6498358137336
+1971-01-04 01:00:00,11.8110334541749
+1971-01-04 02:00:00,14.0082237354153
+1971-01-04 03:00:00,13.1447795424971
+1971-01-04 04:00:00,7.87979190569715
+1971-01-04 05:00:00,15.9647004504104
+1971-01-04 06:00:00,13.7595496703554
+1971-01-04 07:00:00,6.64652252292392
+1971-01-04 08:00:00,22.4066199902567
+1971-01-04 09:00:00,13.4026624213441
+1971-01-04 10:00:00,18.8107107664267
+1971-01-04 11:00:00,9.20989703046233
+1971-01-04 12:00:00,12.4512933000748
+1971-01-04 13:00:00,10.2073893279523
+1971-01-04 14:00:00,18.5194216193492
+1971-01-04 15:00:00,13.8030842357054
+1971-01-04 16:00:00,8.38020225130452
+1971-01-04 17:00:00,12.3825606187591
+1971-01-04 18:00:00,12.4026188900952
+1971-01-04 19:00:00,16.7029017689131
+1971-01-04 20:00:00,14.3234980393429
+1971-01-04 21:00:00,17.1001471467719
+1971-01-04 22:00:00,16.3640961955403
+1971-01-04 23:00:00,8.51317584419294
+1971-01-05 00:00:00,15.6084585404079
+1971-01-05 01:00:00,8.22708724486057
+1971-01-05 02:00:00,11.3418188405605
+1971-01-05 03:00:00,21.6383167165197
+1971-01-05 04:00:00,19.8966789865872
+1971-01-05 05:00:00,15.0725515573755
+1971-01-05 06:00:00,15.5013924626725
+1971-01-05 07:00:00,9.33690050096788
+1971-01-05 08:00:00,18.6699067092329
+1971-01-05 09:00:00,15.1077878482988
+1971-01-05 10:00:00,10.9899018870473
+1971-01-05 11:00:00,16.6210884915468
+1971-01-05 12:00:00,11.1786651578186
+1971-01-05 13:00:00,19.9432350699088
+1971-01-05 14:00:00,8.94480073725221
+1971-01-05 15:00:00,8.57897560421371
+1971-01-05 16:00:00,8.30378081418939
+1971-01-05 17:00:00,9.77735860401497
+1971-01-05 18:00:00,9.81183633814428
+1971-01-05 19:00:00,8.09767765490066
+1971-01-05 20:00:00,13.3124207138071
+1971-01-05 21:00:00,19.3635473184684
+1971-01-05 22:00:00,15.1736049667368
+1971-01-05 23:00:00,15.5370641352391
+1971-01-06 00:00:00,9.8710598451968
+1971-01-06 01:00:00,22.636505624688
+1971-01-06 02:00:00,11.5261629871248
+1971-01-06 03:00:00,13.8108784994565
+1971-01-06 04:00:00,15.157679447156
+1971-01-06 05:00:00,16.4108200241793
+1971-01-06 06:00:00,20.1934306606369
+1971-01-06 07:00:00,10.8098399406696
+1971-01-06 08:00:00,15.1010454323996
+1971-01-06 09:00:00,13.9364674165985
+1971-01-06 10:00:00,17.7312129044709
+1971-01-06 11:00:00,16.2108946681277
+1971-01-06 12:00:00,11.2957611830458
+1971-01-06 13:00:00,7.67830052262715
+1971-01-06 14:00:00,18.7465424240095
+1971-01-06 15:00:00,15.0799446841631
+1971-01-06 16:00:00,15.1849749675914
+1971-01-06 17:00:00,10.5728703388674
+1971-01-06 18:00:00,5.79625015334562
+1971-01-06 19:00:00,9.78740248247428
+1971-01-06 20:00:00,20.970778219471
+1971-01-06 21:00:00,15.1510905912193
+1971-01-06 22:00:00,12.4263748687948
+1971-01-06 23:00:00,11.4981867048426
+1971-01-07 00:00:00,18.2455139514829
+1971-01-07 01:00:00,14.701473821706
+1971-01-07 02:00:00,15.1064637442882
+1971-01-07 03:00:00,9.58953864444537
+1971-01-07 04:00:00,6.93855810149755
+1971-01-07 05:00:00,14.4033241534314
+1971-01-07 06:00:00,10.4899312220318
+1971-01-07 07:00:00,18.2088505860725
+1971-01-07 08:00:00,18.8509046430729
+1971-01-07 09:00:00,19.5693103246396
+1971-01-07 10:00:00,9.38708529468989
+1971-01-07 11:00:00,15.6517162414089
+1971-01-07 12:00:00,20.4706439340595
+1971-01-07 13:00:00,16.6875875681839
+1971-01-07 14:00:00,10.2208826484316
+1971-01-07 15:00:00,18.0095923867996
+1971-01-07 16:00:00,12.873423466496
+1971-01-07 17:00:00,24.8414908710113
+1971-01-07 18:00:00,20.1400266423779
+1971-01-07 19:00:00,11.671916752491
+1971-01-07 20:00:00,16.3532720215362
+1971-01-07 21:00:00,9.38178884616903
+1971-01-07 22:00:00,10.6690639288032
+1971-01-07 23:00:00,12.9542151227183
+1971-01-08 00:00:00,18.1862492376864
+1971-01-08 01:00:00,24.377746787695
+1971-01-08 02:00:00,16.0264344642682
+1971-01-08 03:00:00,15.7540110562044
+1971-01-08 04:00:00,21.6812596086944
+1971-01-08 05:00:00,14.3142869318872
+1971-01-08 06:00:00,15.7587961997577
+1971-01-08 07:00:00,16.9613063850473
+1971-01-08 08:00:00,10.0744850874098
+1971-01-08 09:00:00,9.24319908828084
+1971-01-08 10:00:00,16.1707014276828
+1971-01-08 11:00:00,21.1756037873038
+1971-01-08 12:00:00,9.73184828829279
+1971-01-08 13:00:00,21.7243489434704
+1971-01-08 14:00:00,12.2285372383575
+1971-01-08 15:00:00,13.9005003659131
+1971-01-08 16:00:00,17.153448778025
+1971-01-08 17:00:00,9.16268387895501
+1971-01-08 18:00:00,11.3626332638177
+1971-01-08 19:00:00,11.7693612092607
+1971-01-08 20:00:00,13.4901385838074
+1971-01-08 21:00:00,17.5327553532471
+1971-01-08 22:00:00,12.9180579139419
+1971-01-08 23:00:00,13.9840044321447
+1971-01-09 00:00:00,14.3737724782265
+1971-01-09 01:00:00,20.8429263992253
+1971-01-09 02:00:00,6.90748712371613
+1971-01-09 03:00:00,10.3567861710383
+1971-01-09 04:00:00,14.8043851725842
+1971-01-09 05:00:00,10.6039057546901
+1971-01-09 06:00:00,13.7217760628635
+1971-01-09 07:00:00,13.0203589847676
+1971-01-09 08:00:00,14.0595824963762
+1971-01-09 09:00:00,13.6191009373516
+1971-01-09 10:00:00,8.27519921376993
+1971-01-09 11:00:00,15.6045118020669
+1971-01-09 12:00:00,19.1426961643753
+1971-01-09 13:00:00,14.740550140151
+1971-01-09 14:00:00,12.4329743746543
+1971-01-09 15:00:00,19.1311469464948
+1971-01-09 16:00:00,10.3583224463377
+1971-01-09 17:00:00,12.370215788222
+1971-01-09 18:00:00,19.44887284583
+1971-01-09 19:00:00,13.3588645989565
+1971-01-09 20:00:00,15.354616959726
+1971-01-09 21:00:00,23.3799097511126
+1971-01-09 22:00:00,8.17730772084858
+1971-01-09 23:00:00,12.2761298365453
+1971-01-10 00:00:00,10.7822227593853
+1971-01-10 01:00:00,21.7321606758976
+1971-01-10 02:00:00,22.0097131415941
+1971-01-10 03:00:00,19.0684163428568
+1971-01-10 04:00:00,16.5515478222637
+1971-01-10 05:00:00,16.7457681114679
+1971-01-10 06:00:00,10.228021298191
+1971-01-10 07:00:00,13.5032973522542
+1971-01-10 08:00:00,11.6078596602506
+1971-01-10 09:00:00,7.45850512646517
+1971-01-10 10:00:00,23.9780442395877
+1971-01-10 11:00:00,20.8993928324859
+1971-01-10 12:00:00,18.9037446588344
+1971-01-10 13:00:00,17.3080217509409
+1971-01-10 14:00:00,16.1641972423073
+1971-01-10 15:00:00,25.6941978999147
+1971-01-10 16:00:00,17.0025906189516
+1971-01-10 17:00:00,17.5227008003394
+1971-01-10 18:00:00,21.076849234337
+1971-01-10 19:00:00,14.6690074933056
+1971-01-10 20:00:00,14.0950504892394
+1971-01-10 21:00:00,13.0906304705366
+1971-01-10 22:00:00,16.9004761247132
+1971-01-10 23:00:00,9.47854887585211
+1971-01-11 00:00:00,10.6305862832922
+1971-01-11 01:00:00,18.4811264887138
+1971-01-11 02:00:00,17.3805199198567
+1971-01-11 03:00:00,14.9916497628171
+1971-01-11 04:00:00,14.5349028568775
+1971-01-11 05:00:00,10.735518221566
+1971-01-11 06:00:00,15.8788812232277
+1971-01-11 07:00:00,11.8171958218731
+1971-01-11 08:00:00,16.9400135175196
+1971-01-11 09:00:00,6.23032575128538
+1971-01-11 10:00:00,10.1431281173753
+1971-01-11 11:00:00,10.2008531404875
+1971-01-11 12:00:00,7.10681111203963
+1971-01-11 13:00:00,17.1624456411416
+1971-01-11 14:00:00,13.1910599140354
+1971-01-11 15:00:00,23.823389617091
+1971-01-11 16:00:00,11.0411835952758
+1971-01-11 17:00:00,16.5566408898177
+1971-01-11 18:00:00,10.6069724843474
+1971-01-11 19:00:00,18.8761225342266
+1971-01-11 20:00:00,11.96395181254
+1971-01-11 21:00:00,15.5590196093007
+1971-01-11 22:00:00,8.75717785454242
+1971-01-11 23:00:00,12.8811765437829
+1971-01-12 00:00:00,21.6611933396616
+1971-01-12 01:00:00,16.5169732032366
+1971-01-12 02:00:00,17.8837337596866
+1971-01-12 03:00:00,13.5885814138862
+1971-01-12 04:00:00,13.8109016303793
+1971-01-12 05:00:00,19.8055284234491
+1971-01-12 06:00:00,17.4156419143849
+1971-01-12 07:00:00,7.7784949728094
+1971-01-12 08:00:00,8.38340962490338
+1971-01-12 09:00:00,7.18133850184765
+1971-01-12 10:00:00,8.94901833563705
+1971-01-12 11:00:00,13.5630285987268
+1971-01-12 12:00:00,19.717489090077
+1971-01-12 13:00:00,8.7698822146162
+1971-01-12 14:00:00,16.229964206256
+1971-01-12 15:00:00,14.5089816563154
+1971-01-12 16:00:00,16.3989091050571
+1971-01-12 17:00:00,7.41587045063872
+1971-01-12 18:00:00,7.85120412218224
+1971-01-12 19:00:00,14.8535856582947
+1971-01-12 20:00:00,9.17695402400266
+1971-01-12 21:00:00,13.2161782999204
+1971-01-12 22:00:00,27.9022087126495
+1971-01-12 23:00:00,15.182722921998
+1971-01-13 00:00:00,14.3948187458253
+1971-01-13 01:00:00,13.1226185965624
+1971-01-13 02:00:00,9.72308780133767
+1971-01-13 03:00:00,10.2891081328862
+1971-01-13 04:00:00,24.2822197897161
+1971-01-13 05:00:00,12.0424849860781
+1971-01-13 06:00:00,12.8960032951573
+1971-01-13 07:00:00,10.5219653832825
+1971-01-13 08:00:00,13.853969961316
+1971-01-13 09:00:00,8.70108967543064
+1971-01-13 10:00:00,18.2309106448337
+1971-01-13 11:00:00,11.4917214377447
+1971-01-13 12:00:00,13.4458438166645
+1971-01-13 13:00:00,15.4123063804665
+1971-01-13 14:00:00,12.4166723279219
+1971-01-13 15:00:00,20.8876862706339
+1971-01-13 16:00:00,19.2099562832825
+1971-01-13 17:00:00,13.0558544964554
+1971-01-13 18:00:00,14.0458188293491
+1971-01-13 19:00:00,13.8787445184403
+1971-01-13 20:00:00,11.2360105068734
+1971-01-13 21:00:00,10.8006924943771
+1971-01-13 22:00:00,8.10712635846324
+1971-01-13 23:00:00,14.145911026261
+1971-01-14 00:00:00,7.78640729346148
+1971-01-14 01:00:00,9.01927179990457
+1971-01-14 02:00:00,12.9101366637732
+1971-01-14 03:00:00,8.01456302597245
+1971-01-14 04:00:00,24.635885947053
+1971-01-14 05:00:00,16.7247587462945
+1971-01-14 06:00:00,16.2588221948056
+1971-01-14 07:00:00,12.7604915197108
+1971-01-14 08:00:00,26.3558634114264
+1971-01-14 09:00:00,11.1753129941445
+1971-01-14 10:00:00,16.6450208291341
+1971-01-14 11:00:00,26.222082150969
+1971-01-14 12:00:00,16.2132354642165
+1971-01-14 13:00:00,15.9724949031684
+1971-01-14 14:00:00,14.2349112773309
+1971-01-14 15:00:00,13.8165778419461
+1971-01-14 16:00:00,6.54326084338914
+1971-01-14 17:00:00,11.7785321198134
+1971-01-14 18:00:00,25.9498353874032
+1971-01-14 19:00:00,13.922291726504
+1971-01-14 20:00:00,8.30457111756258
+1971-01-14 21:00:00,14.1165755819291
+1971-01-14 22:00:00,16.7801345140098
+1971-01-14 23:00:00,8.16924457856486
+1971-01-15 00:00:00,15.5967492968308
+1971-01-15 01:00:00,16.2914290992304
+1971-01-15 02:00:00,19.4828938083198
+1971-01-15 03:00:00,17.395691307387
+1971-01-15 04:00:00,15.904471000553
+1971-01-15 05:00:00,15.6571786301946
+1971-01-15 06:00:00,13.0888196004436
+1971-01-15 07:00:00,8.30490682099341
+1971-01-15 08:00:00,18.2326378866107
+1971-01-15 09:00:00,14.4969871239934
+1971-01-15 10:00:00,15.9799863598015
+1971-01-15 11:00:00,8.07836547351691
+1971-01-15 12:00:00,24.3480683024397
+1971-01-15 13:00:00,17.1899797069963
+1971-01-15 14:00:00,11.7245808465015
+1971-01-15 15:00:00,8.29394041273124
+1971-01-15 16:00:00,17.2363559801435
+1971-01-15 17:00:00,17.7656417418595
+1971-01-15 18:00:00,12.9643091923741
+1971-01-15 19:00:00,16.6929319318599
+1971-01-15 20:00:00,11.5826434307151
+1971-01-15 21:00:00,7.49620153644421
+1971-01-15 22:00:00,10.2991919237372
+1971-01-15 23:00:00,9.44764013994752
+1971-01-16 00:00:00,13.9476362037969
+1971-01-16 01:00:00,10.9117939590111
+1971-01-16 02:00:00,18.7135994223381
+1971-01-16 03:00:00,10.6558895924037
+1971-01-16 04:00:00,11.955534028855
+1971-01-16 05:00:00,13.0939089108183
+1971-01-16 06:00:00,8.68233989987573
+1971-01-16 07:00:00,9.14047992273389
+1971-01-16 08:00:00,8.25556471598928
+1971-01-16 09:00:00,17.4696247948286
+1971-01-16 10:00:00,15.1233791796072
+1971-01-16 11:00:00,13.1216052073172
+1971-01-16 12:00:00,16.3905334904528
+1971-01-16 13:00:00,7.62422978169675
+1971-01-16 14:00:00,11.7191581580955
+1971-01-16 15:00:00,7.88869493250122
+1971-01-16 16:00:00,14.6999511521809
+1971-01-16 17:00:00,10.6433689883593
+1971-01-16 18:00:00,21.0258243383156
+1971-01-16 19:00:00,10.8133130846177
+1971-01-16 20:00:00,7.95108305744821
+1971-01-16 21:00:00,8.85228709046743
+1971-01-16 22:00:00,13.6139218081055
+1971-01-16 23:00:00,12.583747565281
+1971-01-17 00:00:00,12.5463871614761
+1971-01-17 01:00:00,17.751007669108
+1971-01-17 02:00:00,12.8569179509815
+1971-01-17 03:00:00,15.2190922966782
+1971-01-17 04:00:00,13.8896674933365
+1971-01-17 05:00:00,12.2673171084108
+1971-01-17 06:00:00,12.4858749353002
+1971-01-17 07:00:00,10.9016551447646
+1971-01-17 08:00:00,10.468637276974
+1971-01-17 09:00:00,11.2913713129625
+1971-01-17 10:00:00,19.8618045888134
+1971-01-17 11:00:00,8.53315788756002
+1971-01-17 12:00:00,18.5691382965661
+1971-01-17 13:00:00,27.7270458381744
+1971-01-17 14:00:00,10.1243190322814
+1971-01-17 15:00:00,20.51389208046
+1971-01-17 16:00:00,18.861064768155
+1971-01-17 17:00:00,15.6501543430164
+1971-01-17 18:00:00,15.5533708987798
+1971-01-17 19:00:00,9.71798496511314
+1971-01-17 20:00:00,8.80548280226332
+1971-01-17 21:00:00,28.1599208512492
+1971-01-17 22:00:00,10.5483479675755
+1971-01-17 23:00:00,10.2891064024089
+1971-01-18 00:00:00,19.7932610420527
+1971-01-18 01:00:00,16.1726591094882
+1971-01-18 02:00:00,13.0979772209971
+1971-01-18 03:00:00,17.0947814249678
+1971-01-18 04:00:00,13.8463018782236
+1971-01-18 05:00:00,14.9178449078355
+1971-01-18 06:00:00,16.3192142136216
+1971-01-18 07:00:00,14.3159587814071
+1971-01-18 08:00:00,11.9433264741593
+1971-01-18 09:00:00,20.3184715292621
+1971-01-18 10:00:00,15.3523407527071
+1971-01-18 11:00:00,27.4991898404681
+1971-01-18 12:00:00,20.4952773788646
+1971-01-18 13:00:00,13.3110402112228
+1971-01-18 14:00:00,16.9613427505073
+1971-01-18 15:00:00,11.2239788197405
+1971-01-18 16:00:00,9.68961138852078
+1971-01-18 17:00:00,17.2685081874678
+1971-01-18 18:00:00,12.7265907157793
+1971-01-18 19:00:00,13.1803322772779
+1971-01-18 20:00:00,15.16932422473
+1971-01-18 21:00:00,15.056021290383
+1971-01-18 22:00:00,20.6055736835407
+1971-01-18 23:00:00,11.7311341786086
+1971-01-19 00:00:00,12.0369666926999
+1971-01-19 01:00:00,16.0144314363402
+1971-01-19 02:00:00,15.3727108712355
+1971-01-19 03:00:00,23.0583142078349
+1971-01-19 04:00:00,25.6338342787537
+1971-01-19 05:00:00,14.3303851666519
+1971-01-19 06:00:00,15.6353662196518
+1971-01-19 07:00:00,23.3823479224329
+1971-01-19 08:00:00,11.7832813066424
+1971-01-19 09:00:00,12.9733081179985
+1971-01-19 10:00:00,12.8110655551523
+1971-01-19 11:00:00,14.6427585473711
+1971-01-19 12:00:00,13.7834097867263
+1971-01-19 13:00:00,12.4878584856903
+1971-01-19 14:00:00,15.3046319038993
+1971-01-19 15:00:00,17.9838046188096
+1971-01-19 16:00:00,14.8441074182707
+1971-01-19 17:00:00,12.1898179804866
+1971-01-19 18:00:00,13.610881714374
+1971-01-19 19:00:00,14.5725188607106
+1971-01-19 20:00:00,11.5278707696542
+1971-01-19 21:00:00,10.2721741761243
+1971-01-19 22:00:00,3.98663018013436
+1971-01-19 23:00:00,12.5776106414585
+1971-01-20 00:00:00,11.1520159708068
+1971-01-20 01:00:00,16.6579299446659
+1971-01-20 02:00:00,10.5014550101125
+1971-01-20 03:00:00,17.822337164429
+1971-01-20 04:00:00,14.3602976055835
+1971-01-20 05:00:00,10.8474558625753
+1971-01-20 06:00:00,16.7134256027407
+1971-01-20 07:00:00,18.6632522511621
+1971-01-20 08:00:00,15.5156646455754
+1971-01-20 09:00:00,17.0222032108445
+1971-01-20 10:00:00,11.9182820948772
+1971-01-20 11:00:00,9.68520002537375
+1971-01-20 12:00:00,14.4629210059574
+1971-01-20 13:00:00,12.5269235164626
+1971-01-20 14:00:00,11.3205456659001
+1971-01-20 15:00:00,14.3574174056708
+1971-01-20 16:00:00,20.1615486821133
+1971-01-20 17:00:00,10.8787690572622
+1971-01-20 18:00:00,14.4439635550925
+1971-01-20 19:00:00,12.7526425405603
+1971-01-20 20:00:00,18.0497959478549
+1971-01-20 21:00:00,21.5142418398391
+1971-01-20 22:00:00,10.0973134149313
+1971-01-20 23:00:00,12.3724414462932
+1971-01-21 00:00:00,12.8001864594924
+1971-01-21 01:00:00,7.85245136625363
+1971-01-21 02:00:00,8.67838566665301
+1971-01-21 03:00:00,18.5827508580663
+1971-01-21 04:00:00,10.1986039658661
+1971-01-21 05:00:00,18.1738710635419
+1971-01-21 06:00:00,14.4221219027952
+1971-01-21 07:00:00,16.5342765980103
+1971-01-21 08:00:00,7.48481030586317
+1971-01-21 09:00:00,18.3680909920461
+1971-01-21 10:00:00,10.3826282680806
+1971-01-21 11:00:00,10.9812645433369
+1971-01-21 12:00:00,15.7399521430871
+1971-01-21 13:00:00,10.318275979346
+1971-01-21 14:00:00,6.99570680768235
+1971-01-21 15:00:00,12.3311652742914
+1971-01-21 16:00:00,19.8398481639149
+1971-01-21 17:00:00,14.4938544201305
+1971-01-21 18:00:00,11.9593952382168
+1971-01-21 19:00:00,14.9573649286622
+1971-01-21 20:00:00,14.1434594502072
+1971-01-21 21:00:00,8.04819897153186
+1971-01-21 22:00:00,13.5807603476112
+1971-01-21 23:00:00,21.8589107427836
+1971-01-22 00:00:00,9.97999003822208
+1971-01-22 01:00:00,11.0001108773653
+1971-01-22 02:00:00,17.5359303414776
+1971-01-22 03:00:00,10.5892765942191
+1971-01-22 04:00:00,6.68027641670367
+1971-01-22 05:00:00,14.731557038562
+1971-01-22 06:00:00,11.7129514744671
+1971-01-22 07:00:00,9.18609056529547
+1971-01-22 08:00:00,13.4131456410217
+1971-01-22 09:00:00,27.1616620126719
+1971-01-22 10:00:00,12.0509466759258
+1971-01-22 11:00:00,12.5851200549589
+1971-01-22 12:00:00,12.1871315425873
+1971-01-22 13:00:00,16.7047232392244
+1971-01-22 14:00:00,18.8384082026965
+1971-01-22 15:00:00,13.849863681734
+1971-01-22 16:00:00,8.87614251119739
+1971-01-22 17:00:00,12.3276020716476
+1971-01-22 18:00:00,18.8088891251599
+1971-01-22 19:00:00,16.1787210371997
+1971-01-22 20:00:00,8.20403344600139
+1971-01-22 21:00:00,11.7125936190121
+1971-01-22 22:00:00,21.8772745182334
+1971-01-22 23:00:00,8.26255520409181
+1971-01-23 00:00:00,13.5676691303193
+1971-01-23 01:00:00,12.419023866522
+1971-01-23 02:00:00,14.1714396268278
+1971-01-23 03:00:00,9.26305912474215
+1971-01-23 04:00:00,9.40483403394901
+1971-01-23 05:00:00,11.7364524989182
+1971-01-23 06:00:00,27.7550460302099
+1971-01-23 07:00:00,16.1640478452214
+1971-01-23 08:00:00,16.0516807747599
+1971-01-23 09:00:00,18.2196171385965
+1971-01-23 10:00:00,12.2258686444567
+1971-01-23 11:00:00,8.90492613751102
+1971-01-23 12:00:00,16.348421025342
+1971-01-23 13:00:00,19.3066648446237
+1971-01-23 14:00:00,13.4473772352989
+1971-01-23 15:00:00,22.2460033957493
+1971-01-23 16:00:00,7.94928868284352
+1971-01-23 17:00:00,15.8704647485562
+1971-01-23 18:00:00,11.8391795200788
+1971-01-23 19:00:00,13.8815906849465
+1971-01-23 20:00:00,13.0075753366081
+1971-01-23 21:00:00,7.22725957845096
+1971-01-23 22:00:00,16.2998925229522
+1971-01-23 23:00:00,13.6553306701212
+1971-01-24 00:00:00,18.2506988098149
+1971-01-24 01:00:00,10.2014372025947
+1971-01-24 02:00:00,17.7742417816989
+1971-01-24 03:00:00,26.7289709922685
+1971-01-24 04:00:00,19.0161081900098
+1971-01-24 05:00:00,11.7361441995958
+1971-01-24 06:00:00,10.9124698497423
+1971-01-24 07:00:00,10.6570811831519
+1971-01-24 08:00:00,14.633371209395
+1971-01-24 09:00:00,12.5850667068273
+1971-01-24 10:00:00,8.77404166689522
+1971-01-24 11:00:00,19.5257107072262
+1971-01-24 12:00:00,8.37731315297986
+1971-01-24 13:00:00,9.19833744317768
+1971-01-24 14:00:00,15.3803216573717
+1971-01-24 15:00:00,27.3399875845753
+1971-01-24 16:00:00,24.1282699882806
+1971-01-24 17:00:00,14.0787619233952
+1971-01-24 18:00:00,12.8270992272159
+1971-01-24 19:00:00,24.3988772473514
+1971-01-24 20:00:00,15.1503767779526
+1971-01-24 21:00:00,10.2893217978393
+1971-01-24 22:00:00,10.6590604167097
+1971-01-24 23:00:00,9.20023318770365
+1971-01-25 00:00:00,20.8245650879769
+1971-01-25 01:00:00,11.907732272971
+1971-01-25 02:00:00,11.27399701959
+1971-01-25 03:00:00,14.1088204069062
+1971-01-25 04:00:00,10.33854017599
+1971-01-25 05:00:00,22.652602963641
+1971-01-25 06:00:00,9.75888972338676
+1971-01-25 07:00:00,16.4023392990879
+1971-01-25 08:00:00,9.36705814356085
+1971-01-25 09:00:00,7.76390408391772
+1971-01-25 10:00:00,11.9930220094553
+1971-01-25 11:00:00,11.0146635857901
+1971-01-25 12:00:00,15.0333985582857
+1971-01-25 13:00:00,12.6714240516759
+1971-01-25 14:00:00,12.9474333256203
+1971-01-25 15:00:00,20.1231852716274
+1971-01-25 16:00:00,21.481674597737
+1971-01-25 17:00:00,9.58665065861539
+1971-01-25 18:00:00,18.4570044113789
+1971-01-25 19:00:00,14.324219666961
+1971-01-25 20:00:00,18.3980811998692
+1971-01-25 21:00:00,10.5864311639066
+1971-01-25 22:00:00,10.4037134508182
+1971-01-25 23:00:00,13.0623650252755
+1971-01-26 00:00:00,10.3837019791337
+1971-01-26 01:00:00,24.1888095944992
+1971-01-26 02:00:00,17.2929355627487
+1971-01-26 03:00:00,26.4757816499024
+1971-01-26 04:00:00,16.7911920250446
+1971-01-26 05:00:00,18.8003830070967
+1971-01-26 06:00:00,7.28789796527409
+1971-01-26 07:00:00,13.920178740936
+1971-01-26 08:00:00,8.77368792507755
+1971-01-26 09:00:00,14.0677775414906
+1971-01-26 10:00:00,12.739563866296
+1971-01-26 11:00:00,15.8548332605108
+1971-01-26 12:00:00,16.7742249510814
+1971-01-26 13:00:00,13.8201752713119
+1971-01-26 14:00:00,10.9293050667985
+1971-01-26 15:00:00,21.7474235778597
+1971-01-26 16:00:00,13.5814071076835
+1971-01-26 17:00:00,12.7809580159248
+1971-01-26 18:00:00,14.4208126302035
+1971-01-26 19:00:00,13.4058980728667
+1971-01-26 20:00:00,8.1632102225466
+1971-01-26 21:00:00,10.1119652493292
+1971-01-26 22:00:00,15.2684181124835
+1971-01-26 23:00:00,7.03590621696856
+1971-01-27 00:00:00,18.9197159950812
+1971-01-27 01:00:00,10.9362004152191
+1971-01-27 02:00:00,11.6213901389927
+1971-01-27 03:00:00,13.4702020955236
+1971-01-27 04:00:00,11.127724748348
+1971-01-27 05:00:00,15.9213110881476
+1971-01-27 06:00:00,17.3789303665299
+1971-01-27 07:00:00,16.3069725876265
+1971-01-27 08:00:00,12.7865156466479
+1971-01-27 09:00:00,16.5820084531245
+1971-01-27 10:00:00,13.7683323716772
+1971-01-27 11:00:00,18.7696455087106
+1971-01-27 12:00:00,12.7976850632927
+1971-01-27 13:00:00,15.918611327293
+1971-01-27 14:00:00,13.4213057464891
+1971-01-27 15:00:00,10.9827469087997
+1971-01-27 16:00:00,10.0932310820456
+1971-01-27 17:00:00,12.2657061307572
+1971-01-27 18:00:00,12.5020614242734
+1971-01-27 19:00:00,10.2692782693994
+1971-01-27 20:00:00,12.7850398391277
+1971-01-27 21:00:00,7.07531147008316
+1971-01-27 22:00:00,18.3711083737546
+1971-01-27 23:00:00,22.0721137360532
+1971-01-28 00:00:00,7.99277113907872
+1971-01-28 01:00:00,25.8684776971651
+1971-01-28 02:00:00,12.0947140117311
+1971-01-28 03:00:00,14.0338053572675
+1971-01-28 04:00:00,6.02982462693689
+1971-01-28 05:00:00,7.99485207774934
+1971-01-28 06:00:00,14.6991566882395
+1971-01-28 07:00:00,16.8347160022026
+1971-01-28 08:00:00,15.0263939414094
+1971-01-28 09:00:00,11.1392239795517
+1971-01-28 10:00:00,12.4211770763316
+1971-01-28 11:00:00,15.8067354959108
+1971-01-28 12:00:00,11.6113246529254
+1971-01-28 13:00:00,9.95454580330176
+1971-01-28 14:00:00,16.7625681423598
+1971-01-28 15:00:00,18.1774385477126
+1971-01-28 16:00:00,18.5425774999459
+1971-01-28 17:00:00,11.6717298664484
+1971-01-28 18:00:00,11.4329952617474
+1971-01-28 19:00:00,18.1054130441186
+1971-01-28 20:00:00,15.704715961316
+1971-01-28 21:00:00,10.362110286616
+1971-01-28 22:00:00,9.65383118907373
+1971-01-28 23:00:00,17.1522269512392
+1971-01-29 00:00:00,12.6513468219594
+1971-01-29 01:00:00,18.4496430309158
+1971-01-29 02:00:00,20.3142310291421
+1971-01-29 03:00:00,11.8708350453695
+1971-01-29 04:00:00,8.4223980441135
+1971-01-29 05:00:00,15.7460361084018
+1971-01-29 06:00:00,11.5694947872181
+1971-01-29 07:00:00,13.7253215173978
+1971-01-29 08:00:00,10.8959962461983
+1971-01-29 09:00:00,26.939787144329
+1971-01-29 10:00:00,14.1642269528806
+1971-01-29 11:00:00,20.5679404122193
+1971-01-29 12:00:00,11.857947253903
+1971-01-29 13:00:00,21.9349364479474
+1971-01-29 14:00:00,8.68432829285342
+1971-01-29 15:00:00,14.4912931511018
+1971-01-29 16:00:00,11.788983301075
+1971-01-29 17:00:00,16.8811071710765
+1971-01-29 18:00:00,13.2030966051399
+1971-01-29 19:00:00,16.7442903408957
+1971-01-29 20:00:00,17.7966232778335
+1971-01-29 21:00:00,11.9869376522089
+1971-01-29 22:00:00,18.6491602156705
+1971-01-29 23:00:00,9.72147550525972
+1971-01-30 00:00:00,16.2573462573031
+1971-01-30 01:00:00,9.70734953873092
+1971-01-30 02:00:00,11.0351025412549
+1971-01-30 03:00:00,20.6466728054825
+1971-01-30 04:00:00,11.3054326496191
+1971-01-30 05:00:00,12.7846150794616
+1971-01-30 06:00:00,15.8884375472165
+1971-01-30 07:00:00,12.5488355799396
+1971-01-30 08:00:00,11.080221609875
+1971-01-30 09:00:00,17.4276514828304
+1971-01-30 10:00:00,12.9985078397098
+1971-01-30 11:00:00,17.3971140360713
+1971-01-30 12:00:00,14.605559741756
+1971-01-30 13:00:00,9.69216008901683
+1971-01-30 14:00:00,5.60815571046491
+1971-01-30 15:00:00,10.3095804947315
+1971-01-30 16:00:00,15.5868638692329
+1971-01-30 17:00:00,25.4174376071195
+1971-01-30 18:00:00,7.21419441302414
+1971-01-30 19:00:00,14.1331582091006
+1971-01-30 20:00:00,14.4845642741551
+1971-01-30 21:00:00,14.9697349588502
+1971-01-30 22:00:00,10.2069774555205
+1971-01-30 23:00:00,11.1601322636271
+1971-01-31 00:00:00,11.8302820367779
+1971-01-31 01:00:00,11.2212934662347
+1971-01-31 02:00:00,15.4447525028693
+1971-01-31 03:00:00,11.2080167636189
+1971-01-31 04:00:00,9.23658133460591
+1971-01-31 05:00:00,15.6703176549683
+1971-01-31 06:00:00,11.9156687795339
+1971-01-31 07:00:00,8.80032940240702
+1971-01-31 08:00:00,11.6766232445385
+1971-01-31 09:00:00,25.6927664858144
+1971-01-31 10:00:00,11.8825889437459
+1971-01-31 11:00:00,13.7932917944645
+1971-01-31 12:00:00,12.6066422208924
+1971-01-31 13:00:00,16.554395345552
+1971-01-31 14:00:00,14.2072291589524
+1971-01-31 15:00:00,17.226972427121
+1971-01-31 16:00:00,17.0202296066291
+1971-01-31 17:00:00,9.69318459386408
+1971-01-31 18:00:00,11.4032746917428
+1971-01-31 19:00:00,24.2742188071868
+1971-01-31 20:00:00,14.3437510340661
+1971-01-31 21:00:00,10.6789712265987
+1971-01-31 22:00:00,13.9789699215381
+1971-01-31 23:00:00,15.4734937144714
+1971-02-01 00:00:00,17.1190655260399
+1971-02-01 01:00:00,11.2892418404377
+1971-02-01 02:00:00,11.7459656891906
+1971-02-01 03:00:00,24.0352715380184
+1971-02-01 04:00:00,9.62835133266581
+1971-02-01 05:00:00,16.5318370809083
+1971-02-01 06:00:00,15.5998122890975
+1971-02-01 07:00:00,12.1268641451538
+1971-02-01 08:00:00,14.6261719776897
+1971-02-01 09:00:00,15.9183070199892
+1971-02-01 10:00:00,16.0637882292384
+1971-02-01 11:00:00,12.5663435509518
+1971-02-01 12:00:00,11.2039451453572
+1971-02-01 13:00:00,10.782364409834
+1971-02-01 14:00:00,15.1516245892789
+1971-02-01 15:00:00,11.2796258376812
+1971-02-01 16:00:00,15.8688024900261
+1971-02-01 17:00:00,19.1242373362149
+1971-02-01 18:00:00,10.2868244783902
+1971-02-01 19:00:00,13.1319437077866
+1971-02-01 20:00:00,15.1081275184379
+1971-02-01 21:00:00,15.7068810836982
+1971-02-01 22:00:00,16.4984284084883
+1971-02-01 23:00:00,21.384650795823
+1971-02-02 00:00:00,15.4562857294915
+1971-02-02 01:00:00,25.307416693655
+1971-02-02 02:00:00,22.2982384006991
+1971-02-02 03:00:00,14.3271182833003
+1971-02-02 04:00:00,8.4945556802783
+1971-02-02 05:00:00,15.249472929539
+1971-02-02 06:00:00,10.958364230891
+1971-02-02 07:00:00,10.2024777134809
+1971-02-02 08:00:00,9.78766793070092
+1971-02-02 09:00:00,10.3144474477158
+1971-02-02 10:00:00,22.568420081389
+1971-02-02 11:00:00,12.4002174430028
+1971-02-02 12:00:00,10.8257641830173
+1971-02-02 13:00:00,20.222903661736
+1971-02-02 14:00:00,22.24807567113
+1971-02-02 15:00:00,18.3112292711442
+1971-02-02 16:00:00,10.1356257001602
+1971-02-02 17:00:00,17.5452237888804
+1971-02-02 18:00:00,21.2314378051783
+1971-02-02 19:00:00,16.3570618607487
+1971-02-02 20:00:00,14.3355762492651
+1971-02-02 21:00:00,14.454993716544
+1971-02-02 22:00:00,19.2866786483902
+1971-02-02 23:00:00,10.9819233428316
+1971-02-03 00:00:00,11.4205983088974
+1971-02-03 01:00:00,21.8181906211261
+1971-02-03 02:00:00,7.58151798256169
+1971-02-03 03:00:00,11.8488737595658
+1971-02-03 04:00:00,8.09750542486227
+1971-02-03 05:00:00,7.37907282497087
+1971-02-03 06:00:00,14.9505673801094
+1971-02-03 07:00:00,20.412045487455
+1971-02-03 08:00:00,15.6384353010034
+1971-02-03 09:00:00,13.362075992913
+1971-02-03 10:00:00,10.1447343087959
+1971-02-03 11:00:00,12.985114023335
+1971-02-03 12:00:00,22.3270006795152
+1971-02-03 13:00:00,15.2698043140159
+1971-02-03 14:00:00,11.8280038722292
+1971-02-03 15:00:00,17.100758161888
+1971-02-03 16:00:00,10.9017210695702
+1971-02-03 17:00:00,18.2080850312032
+1971-02-03 18:00:00,12.9734225006756
+1971-02-03 19:00:00,12.9854137404868
+1971-02-03 20:00:00,24.6465089926314
+1971-02-03 21:00:00,14.6038624519025
+1971-02-03 22:00:00,24.0966320059047
+1971-02-03 23:00:00,8.97180371589947
+1971-02-04 00:00:00,16.2105847211192
+1971-02-04 01:00:00,9.5821641898691
+1971-02-04 02:00:00,11.9128476514506
+1971-02-04 03:00:00,19.442980924209
+1971-02-04 04:00:00,11.1277213356216
+1971-02-04 05:00:00,12.0592555158116
+1971-02-04 06:00:00,14.8751689601774
+1971-02-04 07:00:00,14.2811108630719
+1971-02-04 08:00:00,20.2179261003854
+1971-02-04 09:00:00,17.1070809625019
+1971-02-04 10:00:00,13.6779429380644
+1971-02-04 11:00:00,22.8375325458514
+1971-02-04 12:00:00,17.7102561585391
+1971-02-04 13:00:00,12.5028821483934
+1971-02-04 14:00:00,10.2342946543605
+1971-02-04 15:00:00,18.1637872480516
+1971-02-04 16:00:00,10.3538517308314
+1971-02-04 17:00:00,15.2123072078567
+1971-02-04 18:00:00,18.8928686854729
+1971-02-04 19:00:00,10.9237564598075
+1971-02-04 20:00:00,10.2897840451787
+1971-02-04 21:00:00,18.0687831796868
+1971-02-04 22:00:00,13.1516326846403
+1971-02-04 23:00:00,22.2708370602631
+1971-02-05 00:00:00,15.6536143347184
+1971-02-05 01:00:00,14.4157749652841
+1971-02-05 02:00:00,12.0484445206579
+1971-02-05 03:00:00,15.30686559385
+1971-02-05 04:00:00,15.3478899836571
+1971-02-05 05:00:00,13.3794512299482
+1971-02-05 06:00:00,11.7158376345554
+1971-02-05 07:00:00,15.5219981367529
+1971-02-05 08:00:00,16.5184193024723
+1971-02-05 09:00:00,26.0955334112492
+1971-02-05 10:00:00,15.1815696108653
+1971-02-05 11:00:00,18.9938855697406
+1971-02-05 12:00:00,10.6726613337124
+1971-02-05 13:00:00,14.1153006450178
+1971-02-05 14:00:00,15.2778124786785
+1971-02-05 15:00:00,10.2199047539387
+1971-02-05 16:00:00,13.2137265772569
+1971-02-05 17:00:00,16.9387467785554
+1971-02-05 18:00:00,17.9808056857132
+1971-02-05 19:00:00,26.8096976515933
+1971-02-05 20:00:00,10.6236373242828
+1971-02-05 21:00:00,11.644999441714
+1971-02-05 22:00:00,7.52876282793662
+1971-02-05 23:00:00,11.0846827385303
+1971-02-06 00:00:00,11.4336733225026
+1971-02-06 01:00:00,8.90544335150528
+1971-02-06 02:00:00,14.2447295997112
+1971-02-06 03:00:00,9.55689398202854
+1971-02-06 04:00:00,11.3599766356307
+1971-02-06 05:00:00,20.3967771692921
+1971-02-06 06:00:00,11.2430816742236
+1971-02-06 07:00:00,17.9710397213716
+1971-02-06 08:00:00,9.94183454905248
+1971-02-06 09:00:00,8.11171790218568
+1971-02-06 10:00:00,12.1826055459718
+1971-02-06 11:00:00,9.76084073598243
+1971-02-06 12:00:00,6.22114657449479
+1971-02-06 13:00:00,10.8729734684884
+1971-02-06 14:00:00,18.7652828139069
+1971-02-06 15:00:00,7.64225341732189
+1971-02-06 16:00:00,21.0310873475337
+1971-02-06 17:00:00,15.4760356396075
+1971-02-06 18:00:00,12.5770031158078
+1971-02-06 19:00:00,5.51609715886534
+1971-02-06 20:00:00,12.2677204325966
+1971-02-06 21:00:00,10.9962530320112
+1971-02-06 22:00:00,12.6383845416878
+1971-02-06 23:00:00,8.79949651739248
+1971-02-07 00:00:00,17.8522024950879
+1971-02-07 01:00:00,15.3352791161062
+1971-02-07 02:00:00,8.13098543114786
+1971-02-07 03:00:00,10.8535741095421
+1971-02-07 04:00:00,11.7313008469486
+1971-02-07 05:00:00,9.8895451525976
+1971-02-07 06:00:00,17.1193984990646
+1971-02-07 07:00:00,9.78185377119773
+1971-02-07 08:00:00,17.7881745374975
+1971-02-07 09:00:00,12.0202888667833
+1971-02-07 10:00:00,12.2730429661741
+1971-02-07 11:00:00,18.1907360826924
+1971-02-07 12:00:00,10.3034612931106
+1971-02-07 13:00:00,15.4192353485085
+1971-02-07 14:00:00,18.1238307931429
+1971-02-07 15:00:00,11.4472481021185
+1971-02-07 16:00:00,14.2372665064067
+1971-02-07 17:00:00,14.7679553478605
+1971-02-07 18:00:00,25.2409631912133
+1971-02-07 19:00:00,16.4435456838492
+1971-02-07 20:00:00,23.0364737096672
+1971-02-07 21:00:00,13.7792957246989
+1971-02-07 22:00:00,14.5426514195617
+1971-02-07 23:00:00,19.2449576498092
+1971-02-08 00:00:00,13.8911031060723
+1971-02-08 01:00:00,12.9472195386396
+1971-02-08 02:00:00,6.97325652771415
+1971-02-08 03:00:00,9.38566766031121
+1971-02-08 04:00:00,22.7146094836955
+1971-02-08 05:00:00,14.5347991596354
+1971-02-08 06:00:00,10.3288419585313
+1971-02-08 07:00:00,15.1431914361503
+1971-02-08 08:00:00,9.49697252009526
+1971-02-08 09:00:00,9.88892231217362
+1971-02-08 10:00:00,12.5530107364847
+1971-02-08 11:00:00,13.2675021068079
+1971-02-08 12:00:00,15.6248498729251
+1971-02-08 13:00:00,13.8668348837622
+1971-02-08 14:00:00,14.7224233965668
+1971-02-08 15:00:00,12.0848004126031
+1971-02-08 16:00:00,10.1574821748338
+1971-02-08 17:00:00,10.9691984074711
+1971-02-08 18:00:00,14.8393303223482
+1971-02-08 19:00:00,17.796076910966
+1971-02-08 20:00:00,14.1541421860624
+1971-02-08 21:00:00,16.9871745423987
+1971-02-08 22:00:00,20.1123496868876
+1971-02-08 23:00:00,8.11039177168022
+1971-02-09 00:00:00,11.2989944000409
+1971-02-09 01:00:00,11.662500885553
+1971-02-09 02:00:00,19.0976386053514
+1971-02-09 03:00:00,13.0312274401982
+1971-02-09 04:00:00,22.6982652661472
+1971-02-09 05:00:00,11.5156151598249
+1971-02-09 06:00:00,21.8420376259239
+1971-02-09 07:00:00,26.3456327606985
+1971-02-09 08:00:00,15.0490500836161
+1971-02-09 09:00:00,10.7914909011154
+1971-02-09 10:00:00,9.86110841481817
+1971-02-09 11:00:00,15.8014454197482
+1971-02-09 12:00:00,35.5295132310158
+1971-02-09 13:00:00,15.4014333284104
+1971-02-09 14:00:00,9.60158357416779
+1971-02-09 15:00:00,13.2700434666036
+1971-02-09 16:00:00,24.6722449425157
+1971-02-09 17:00:00,19.8457139742871
+1971-02-09 18:00:00,8.37538544615631
+1971-02-09 19:00:00,11.3315328062021
+1971-02-09 20:00:00,11.7858600788918
+1971-02-09 21:00:00,10.5143634208049
+1971-02-09 22:00:00,27.4202094932254
+1971-02-09 23:00:00,6.8349064022644
+1971-02-10 00:00:00,9.32242042209675
+1971-02-10 01:00:00,12.0106016845258
+1971-02-10 02:00:00,14.2101307733641
+1971-02-10 03:00:00,15.3854965650511
+1971-02-10 04:00:00,9.98150808063567
+1971-02-10 05:00:00,6.12582531062118
+1971-02-10 06:00:00,8.10547265024971
+1971-02-10 07:00:00,23.2775160079405
+1971-02-10 08:00:00,20.2131629949592
+1971-02-10 09:00:00,13.4533478285194
+1971-02-10 10:00:00,15.6920437377178
+1971-02-10 11:00:00,11.534394998419
+1971-02-10 12:00:00,18.1877314851919
+1971-02-10 13:00:00,13.755728026505
+1971-02-10 14:00:00,16.2729961070686
+1971-02-10 15:00:00,12.2518096614229
+1971-02-10 16:00:00,17.8263314155956
+1971-02-10 17:00:00,19.1895668679333
+1971-02-10 18:00:00,11.7448701434906
+1971-02-10 19:00:00,15.2096059907749
+1971-02-10 20:00:00,13.4521166916723
+1971-02-10 21:00:00,9.586769381765
+1971-02-10 22:00:00,16.3269199805616
+1971-02-10 23:00:00,18.4849242327911
+1971-02-11 00:00:00,6.84385672424041
+1971-02-11 01:00:00,9.42336214190391
+1971-02-11 02:00:00,10.923938676766
+1971-02-11 03:00:00,15.4110718891982
+1971-02-11 04:00:00,17.4767068419933
+1971-02-11 05:00:00,11.5019091415363
+1971-02-11 06:00:00,9.42233409627613
+1971-02-11 07:00:00,19.6540020851507
+1971-02-11 08:00:00,7.92044745600102
+1971-02-11 09:00:00,17.1471256748605
+1971-02-11 10:00:00,11.8482848823736
+1971-02-11 11:00:00,15.3718620085931
+1971-02-11 12:00:00,20.0648374741837
+1971-02-11 13:00:00,14.4144491800659
+1971-02-11 14:00:00,21.7967722684669
+1971-02-11 15:00:00,20.2338005144015
+1971-02-11 16:00:00,11.1903672524353
+1971-02-11 17:00:00,19.9568776305033
+1971-02-11 18:00:00,15.449495100556
+1971-02-11 19:00:00,15.5350927091808
+1971-02-11 20:00:00,9.9741237157655
+1971-02-11 21:00:00,7.56686320066814
+1971-02-11 22:00:00,11.0113264214293
+1971-02-11 23:00:00,20.1318208187733
+1971-02-12 00:00:00,7.6298885057552
+1971-02-12 01:00:00,15.6336015750576
+1971-02-12 02:00:00,12.4389617214036
+1971-02-12 03:00:00,15.1691915130416
+1971-02-12 04:00:00,11.8819312598367
+1971-02-12 05:00:00,13.4507865177861
+1971-02-12 06:00:00,16.6346735283833
+1971-02-12 07:00:00,18.5576841869042
+1971-02-12 08:00:00,17.0260776099726
+1971-02-12 09:00:00,6.41928828415057
+1971-02-12 10:00:00,12.7646135372389
+1971-02-12 11:00:00,13.8159831449317
+1971-02-12 12:00:00,18.5653392762022
+1971-02-12 13:00:00,13.2979259707069
+1971-02-12 14:00:00,18.776875446227
+1971-02-12 15:00:00,14.8751031045918
+1971-02-12 16:00:00,9.19911299625004
+1971-02-12 17:00:00,11.5090705859531
+1971-02-12 18:00:00,11.9976352627363
+1971-02-12 19:00:00,19.4685428580941
+1971-02-12 20:00:00,9.6607561178129
+1971-02-12 21:00:00,14.9896507822306
+1971-02-12 22:00:00,10.9531210803886
+1971-02-12 23:00:00,14.3319140018341
+1971-02-13 00:00:00,16.5720490147411
+1971-02-13 01:00:00,15.9638589086853
+1971-02-13 02:00:00,11.676009047998
+1971-02-13 03:00:00,11.5305228396244
+1971-02-13 04:00:00,15.9188382291137
+1971-02-13 05:00:00,13.7007368913835
+1971-02-13 06:00:00,14.8110791658215
+1971-02-13 07:00:00,7.29495920670386
+1971-02-13 08:00:00,22.6311089357923
+1971-02-13 09:00:00,11.3275048764756
+1971-02-13 10:00:00,13.6263317237254
+1971-02-13 11:00:00,22.2657175862582
+1971-02-13 12:00:00,12.5858615943999
+1971-02-13 13:00:00,11.1039385511461
+1971-02-13 14:00:00,18.8979062401246
+1971-02-13 15:00:00,15.2391727711551
+1971-02-13 16:00:00,11.9339423363453
+1971-02-13 17:00:00,17.0697929001058
+1971-02-13 18:00:00,13.2198249681255
+1971-02-13 19:00:00,24.1964425586402
+1971-02-13 20:00:00,9.60292037605192
+1971-02-13 21:00:00,16.3183736140164
+1971-02-13 22:00:00,9.92955051281535
+1971-02-13 23:00:00,12.992114129368
+1971-02-14 00:00:00,14.5439322582322
+1971-02-14 01:00:00,18.6757737137847
+1971-02-14 02:00:00,18.4588863162442
+1971-02-14 03:00:00,16.4461899536136
+1971-02-14 04:00:00,9.18837169778456
+1971-02-14 05:00:00,15.2240616832068
+1971-02-14 06:00:00,25.3115005484401
+1971-02-14 07:00:00,8.74545496286773
+1971-02-14 08:00:00,7.92019335749408
+1971-02-14 09:00:00,11.5574520243953
+1971-02-14 10:00:00,16.5876340598822
+1971-02-14 11:00:00,9.99637988219152
+1971-02-14 12:00:00,14.6253284256466
+1971-02-14 13:00:00,12.4009070043859
+1971-02-14 14:00:00,15.3840765883224
+1971-02-14 15:00:00,9.29036623171842
+1971-02-14 16:00:00,14.2114684994054
+1971-02-14 17:00:00,19.5540706903726
+1971-02-14 18:00:00,18.0290562982802
+1971-02-14 19:00:00,16.0748125239445
+1971-02-14 20:00:00,15.5455275189749
+1971-02-14 21:00:00,22.8369721485601
+1971-02-14 22:00:00,14.0731876386698
+1971-02-14 23:00:00,11.7698372083308
+1971-02-15 00:00:00,15.6233803220325
+1971-02-15 01:00:00,14.2232083915199
+1971-02-15 02:00:00,8.18599416467912
+1971-02-15 03:00:00,21.3129474057733
+1971-02-15 04:00:00,17.1670862704637
+1971-02-15 05:00:00,13.4565733862801
+1971-02-15 06:00:00,9.69396268850411
+1971-02-15 07:00:00,13.0224576627627
+1971-02-15 08:00:00,9.52058703823603
+1971-02-15 09:00:00,15.8539901128423
+1971-02-15 10:00:00,10.7457035654323
+1971-02-15 11:00:00,12.3151649581696
+1971-02-15 12:00:00,14.4349290871589
+1971-02-15 13:00:00,9.57988961721062
+1971-02-15 14:00:00,12.8532772983947
+1971-02-15 15:00:00,10.9029124417068
+1971-02-15 16:00:00,18.7289283424231
+1971-02-15 17:00:00,9.71780960297659
+1971-02-15 18:00:00,13.2380244837779
+1971-02-15 19:00:00,17.4924602762827
+1971-02-15 20:00:00,13.6616310748091
+1971-02-15 21:00:00,12.4790173807677
+1971-02-15 22:00:00,17.5987867624369
+1971-02-15 23:00:00,13.4587810714015
+1971-02-16 00:00:00,14.264117167881
+1971-02-16 01:00:00,12.7910897518556
+1971-02-16 02:00:00,12.0501353839069
+1971-02-16 03:00:00,13.6598393884554
+1971-02-16 04:00:00,15.1338956462611
+1971-02-16 05:00:00,14.6762625072125
+1971-02-16 06:00:00,10.498589810288
+1971-02-16 07:00:00,16.7916442575673
+1971-02-16 08:00:00,6.33713808293773
+1971-02-16 09:00:00,16.5497432523507
+1971-02-16 10:00:00,13.5567840651262
+1971-02-16 11:00:00,15.7548175891023
+1971-02-16 12:00:00,20.6317616557315
+1971-02-16 13:00:00,17.3723342447226
+1971-02-16 14:00:00,20.982539958447
+1971-02-16 15:00:00,8.29301841411182
+1971-02-16 16:00:00,7.80828982370142
+1971-02-16 17:00:00,16.5953797036921
+1971-02-16 18:00:00,7.41636466143731
+1971-02-16 19:00:00,10.5934441472411
+1971-02-16 20:00:00,12.9802576938272
+1971-02-16 21:00:00,14.5550439237624
+1971-02-16 22:00:00,8.94026100939841
+1971-02-16 23:00:00,13.4606616072845
+1971-02-17 00:00:00,14.111228770067
+1971-02-17 01:00:00,12.425402736656
+1971-02-17 02:00:00,10.6320052494417
+1971-02-17 03:00:00,12.7704267413082
+1971-02-17 04:00:00,15.1329934189265
+1971-02-17 05:00:00,14.4057241329199
+1971-02-17 06:00:00,18.7013334439143
+1971-02-17 07:00:00,14.7139948775056
+1971-02-17 08:00:00,8.24432371906877
+1971-02-17 09:00:00,12.9925759091257
+1971-02-17 10:00:00,16.7519787351556
+1971-02-17 11:00:00,18.2135224255763
+1971-02-17 12:00:00,15.2235605167635
+1971-02-17 13:00:00,11.6096731200433
+1971-02-17 14:00:00,30.6971549723498
+1971-02-17 15:00:00,12.0676819524074
+1971-02-17 16:00:00,14.3847716214858
+1971-02-17 17:00:00,11.3255206058449
+1971-02-17 18:00:00,14.55673042646
+1971-02-17 19:00:00,10.9785032334953
+1971-02-17 20:00:00,14.6685484434095
+1971-02-17 21:00:00,22.8016183128143
+1971-02-17 22:00:00,26.4550307975568
+1971-02-17 23:00:00,16.712434847887
+1971-02-18 00:00:00,14.1370982103199
+1971-02-18 01:00:00,13.4161519721326
+1971-02-18 02:00:00,16.4642654165753
+1971-02-18 03:00:00,12.4486799327603
+1971-02-18 04:00:00,15.438996879297
+1971-02-18 05:00:00,16.0327210642164
+1971-02-18 06:00:00,16.1645184802726
+1971-02-18 07:00:00,12.8681738260271
+1971-02-18 08:00:00,10.3675261141428
+1971-02-18 09:00:00,14.7996554358523
+1971-02-18 10:00:00,19.5593573034034
+1971-02-18 11:00:00,16.5420402560137
+1971-02-18 12:00:00,11.5793921725453
+1971-02-18 13:00:00,21.1898393650443
+1971-02-18 14:00:00,15.2301880305565
+1971-02-18 15:00:00,11.9016613505998
+1971-02-18 16:00:00,11.0742215428487
+1971-02-18 17:00:00,16.5195295460772
+1971-02-18 18:00:00,9.52968869548735
+1971-02-18 19:00:00,12.3117566383146
+1971-02-18 20:00:00,7.58956920014376
+1971-02-18 21:00:00,24.165956190044
+1971-02-18 22:00:00,22.9529781098132
+1971-02-18 23:00:00,21.227697903387
+1971-02-19 00:00:00,10.3614859290049
+1971-02-19 01:00:00,18.2971990083644
+1971-02-19 02:00:00,19.2156106087446
+1971-02-19 03:00:00,12.364732147481
+1971-02-19 04:00:00,15.576601137013
+1971-02-19 05:00:00,13.7920961995385
+1971-02-19 06:00:00,12.3290283872665
+1971-02-19 07:00:00,12.0552553642868
+1971-02-19 08:00:00,9.11683830551238
+1971-02-19 09:00:00,11.4570513276265
+1971-02-19 10:00:00,14.9368317281368
+1971-02-19 11:00:00,18.4619349291527
+1971-02-19 12:00:00,13.5488820896276
+1971-02-19 13:00:00,22.5352498086141
+1971-02-19 14:00:00,8.85909738191377
+1971-02-19 15:00:00,20.2930912381753
+1971-02-19 16:00:00,17.3079467992771
+1971-02-19 17:00:00,15.2312914460459
+1971-02-19 18:00:00,12.681314845817
+1971-02-19 19:00:00,14.5255276047754
+1971-02-19 20:00:00,12.3474409560616
+1971-02-19 21:00:00,13.1305928980097
+1971-02-19 22:00:00,9.83845145752739
+1971-02-19 23:00:00,22.797659310554
+1971-02-20 00:00:00,17.4211803165927
+1971-02-20 01:00:00,6.73720877605898
+1971-02-20 02:00:00,19.1424931757979
+1971-02-20 03:00:00,29.0497000564489
+1971-02-20 04:00:00,10.3660334720367
+1971-02-20 05:00:00,20.6124487129232
+1971-02-20 06:00:00,13.7040198030532
+1971-02-20 07:00:00,12.576119020755
+1971-02-20 08:00:00,12.6595158319158
+1971-02-20 09:00:00,18.6701399918091
+1971-02-20 10:00:00,16.8891698510205
+1971-02-20 11:00:00,9.04951291309267
+1971-02-20 12:00:00,17.2112098389883
+1971-02-20 13:00:00,13.1117468075679
+1971-02-20 14:00:00,10.9025497474033
+1971-02-20 15:00:00,16.97458340888
+1971-02-20 16:00:00,21.8241065343739
+1971-02-20 17:00:00,8.89976514210456
+1971-02-20 18:00:00,9.94018522423665
+1971-02-20 19:00:00,14.5463118130272
+1971-02-20 20:00:00,9.63728060457277
+1971-02-20 21:00:00,16.0702012610579
+1971-02-20 22:00:00,10.5430069494156
+1971-02-20 23:00:00,18.3966097027294
+1971-02-21 00:00:00,29.3422885572935
+1971-02-21 01:00:00,14.7656514372395
+1971-02-21 02:00:00,20.3228075014086
+1971-02-21 03:00:00,10.9222597426818
+1971-02-21 04:00:00,16.0647731214713
+1971-02-21 05:00:00,12.7562086060417
+1971-02-21 06:00:00,15.7028012232976
+1971-02-21 07:00:00,7.99471564652279
+1971-02-21 08:00:00,11.4953465004541
+1971-02-21 09:00:00,11.4853618013505
+1971-02-21 10:00:00,8.6825539914265
+1971-02-21 11:00:00,14.3011269458554
+1971-02-21 12:00:00,11.2314356133317
+1971-02-21 13:00:00,23.8838205287865
+1971-02-21 14:00:00,11.7412453762387
+1971-02-21 15:00:00,7.92070019394632
+1971-02-21 16:00:00,14.771595785096
+1971-02-21 17:00:00,20.3794776684584
+1971-02-21 18:00:00,23.5658344441153
+1971-02-21 19:00:00,12.4671275196687
+1971-02-21 20:00:00,14.7463335451009
+1971-02-21 21:00:00,9.10194758030326
+1971-02-21 22:00:00,8.49294141173434
+1971-02-21 23:00:00,28.6154691822766
+1971-02-22 00:00:00,15.8249199915097
+1971-02-22 01:00:00,11.1906372374472
+1971-02-22 02:00:00,10.2817313653911
+1971-02-22 03:00:00,12.2821841204942
+1971-02-22 04:00:00,15.6161978623899
+1971-02-22 05:00:00,20.2978937660425
+1971-02-22 06:00:00,14.3614804483656
+1971-02-22 07:00:00,10.2029262575888
+1971-02-22 08:00:00,19.185840797188
+1971-02-22 09:00:00,17.3671574102798
+1971-02-22 10:00:00,14.6776909796857
+1971-02-22 11:00:00,10.5286604735562
+1971-02-22 12:00:00,23.2832202432783
+1971-02-22 13:00:00,9.55527142541868
+1971-02-22 14:00:00,12.4923600200841
+1971-02-22 15:00:00,18.8964460682073
+1971-02-22 16:00:00,15.9807086553543
+1971-02-22 17:00:00,8.42065244340411
+1971-02-22 18:00:00,10.8072432111251
+1971-02-22 19:00:00,8.40557278932135
+1971-02-22 20:00:00,11.0810437235724
+1971-02-22 21:00:00,8.73565020988636
+1971-02-22 22:00:00,8.91934191886248
+1971-02-22 23:00:00,11.8384244475459
+1971-02-23 00:00:00,6.71732789585135
+1971-02-23 01:00:00,10.4095281077793
+1971-02-23 02:00:00,17.415314075329
+1971-02-23 03:00:00,12.2697871494152
+1971-02-23 04:00:00,14.3915995633502
+1971-02-23 05:00:00,14.9707911781139
+1971-02-23 06:00:00,13.7310040882292
+1971-02-23 07:00:00,14.1338635516894
+1971-02-23 08:00:00,18.9998826634692
+1971-02-23 09:00:00,8.43201647463619
+1971-02-23 10:00:00,15.534329217277
+1971-02-23 11:00:00,17.4463783082214
+1971-02-23 12:00:00,10.7301758760409
+1971-02-23 13:00:00,13.4210810185519
+1971-02-23 14:00:00,11.8237408670699
+1971-02-23 15:00:00,16.4033277935345
+1971-02-23 16:00:00,18.4451244620196
+1971-02-23 17:00:00,12.6919226398307
+1971-02-23 18:00:00,11.7639567477086
+1971-02-23 19:00:00,18.0012918378105
+1971-02-23 20:00:00,7.74853543891276
+1971-02-23 21:00:00,11.4463069606471
+1971-02-23 22:00:00,14.6347459994426
+1971-02-23 23:00:00,12.4313583355988
+1971-02-24 00:00:00,11.7051964541656
+1971-02-24 01:00:00,14.7274735202068
+1971-02-24 02:00:00,8.25744796988489
+1971-02-24 03:00:00,15.7668844166729
+1971-02-24 04:00:00,11.7157726976425
+1971-02-24 05:00:00,9.42801875865094
+1971-02-24 06:00:00,12.7334535159124
+1971-02-24 07:00:00,7.95243124876807
+1971-02-24 08:00:00,22.5995506949455
+1971-02-24 09:00:00,19.1522699352559
+1971-02-24 10:00:00,10.2285954401179
+1971-02-24 11:00:00,15.9601934563518
+1971-02-24 12:00:00,17.6497902819012
+1971-02-24 13:00:00,27.2836841108058
+1971-02-24 14:00:00,15.4557369710697
+1971-02-24 15:00:00,9.0478609220673
+1971-02-24 16:00:00,14.3934827260862
+1971-02-24 17:00:00,18.9244713478342
+1971-02-24 18:00:00,13.762248632734
+1971-02-24 19:00:00,13.2633208665453
+1971-02-24 20:00:00,16.459742363907
+1971-02-24 21:00:00,17.0203358021687
+1971-02-24 22:00:00,14.5059967588229
+1971-02-24 23:00:00,11.6687144698388
+1971-02-25 00:00:00,10.5497558621991
+1971-02-25 01:00:00,14.452406685528
+1971-02-25 02:00:00,15.9110990617433
+1971-02-25 03:00:00,19.8612835802867
+1971-02-25 04:00:00,17.0417341304153
+1971-02-25 05:00:00,11.6039634435896
+1971-02-25 06:00:00,11.7154671217337
+1971-02-25 07:00:00,20.660222755153
+1971-02-25 08:00:00,15.970061980314
+1971-02-25 09:00:00,6.11148698108175
+1971-02-25 10:00:00,11.8993394467629
+1971-02-25 11:00:00,8.11881938152787
+1971-02-25 12:00:00,7.91216110908264
+1971-02-25 13:00:00,11.4875668754064
+1971-02-25 14:00:00,8.44728206628543
+1971-02-25 15:00:00,9.30895787649804
+1971-02-25 16:00:00,12.4800373625706
+1971-02-25 17:00:00,11.3053095132771
+1971-02-25 18:00:00,15.2595122871154
+1971-02-25 19:00:00,14.4435396589562
+1971-02-25 20:00:00,12.8697902678008
+1971-02-25 21:00:00,13.8989416066841
+1971-02-25 22:00:00,12.5745804372669
+1971-02-25 23:00:00,12.4091149087138
+1971-02-26 00:00:00,15.7218217470361
+1971-02-26 01:00:00,9.85612881230565
+1971-02-26 02:00:00,10.5304385785724
+1971-02-26 03:00:00,16.2201498822793
+1971-02-26 04:00:00,9.73880963711763
+1971-02-26 05:00:00,13.8976614458622
+1971-02-26 06:00:00,12.2808642114901
+1971-02-26 07:00:00,17.4926029448159
+1971-02-26 08:00:00,23.2208138401081
+1971-02-26 09:00:00,15.4468289553022
+1971-02-26 10:00:00,17.0805138231975
+1971-02-26 11:00:00,7.33898570492315
+1971-02-26 12:00:00,13.839356822767
+1971-02-26 13:00:00,13.2120220646027
+1971-02-26 14:00:00,6.77744775955658
+1971-02-26 15:00:00,13.6314420118871
+1971-02-26 16:00:00,16.9786780671777
+1971-02-26 17:00:00,14.0269826610342
+1971-02-26 18:00:00,20.8028895935063
+1971-02-26 19:00:00,13.1154603147326
+1971-02-26 20:00:00,13.328209782433
+1971-02-26 21:00:00,15.8429473361827
+1971-02-26 22:00:00,22.5666471127177
+1971-02-26 23:00:00,17.8041514915517
+1971-02-27 00:00:00,13.5718942611006
+1971-02-27 01:00:00,15.2327916391561
+1971-02-27 02:00:00,24.6297360838422
+1971-02-27 03:00:00,10.0544283477823
+1971-02-27 04:00:00,8.79751854742355
+1971-02-27 05:00:00,12.6981359148226
+1971-02-27 06:00:00,18.4667502491821
+1971-02-27 07:00:00,14.903150579872
+1971-02-27 08:00:00,5.72611257154491
+1971-02-27 09:00:00,13.8160148643602
+1971-02-27 10:00:00,18.9769642451406
+1971-02-27 11:00:00,22.7980091602346
+1971-02-27 12:00:00,17.7465074814379
+1971-02-27 13:00:00,17.6108277263362
+1971-02-27 14:00:00,19.5044451779545
+1971-02-27 15:00:00,20.7547836322937
+1971-02-27 16:00:00,20.3040969753473
+1971-02-27 17:00:00,13.3191137896682
+1971-02-27 18:00:00,13.4089540990903
+1971-02-27 19:00:00,13.5160378696285
+1971-02-27 20:00:00,17.1018139780721
+1971-02-27 21:00:00,20.9529194417688
+1971-02-27 22:00:00,12.2315900936846
+1971-02-27 23:00:00,7.55808590179082
+1971-02-28 00:00:00,19.773793865239
+1971-02-28 01:00:00,19.6061688331626
+1971-02-28 02:00:00,12.1271706905379
+1971-02-28 03:00:00,4.6031033953554
+1971-02-28 04:00:00,21.5728302240413
+1971-02-28 05:00:00,10.7103929704046
+1971-02-28 06:00:00,14.3922894868628
+1971-02-28 07:00:00,17.7178193306538
+1971-02-28 08:00:00,15.4096452082747
+1971-02-28 09:00:00,17.4437610542061
+1971-02-28 10:00:00,9.94210187770056
+1971-02-28 11:00:00,15.0321837602273
+1971-02-28 12:00:00,14.4898592091178
+1971-02-28 13:00:00,14.3836407967692
+1971-02-28 14:00:00,18.2005184249445
+1971-02-28 15:00:00,15.4240450297573
+1971-02-28 16:00:00,21.5911492404469
+1971-02-28 17:00:00,12.2484403121788
+1971-02-28 18:00:00,25.2614020651378
+1971-02-28 19:00:00,15.4976706298778
+1971-02-28 20:00:00,6.04916201189097
+1971-02-28 21:00:00,15.587202567488
+1971-02-28 22:00:00,12.6030549906877
+1971-02-28 23:00:00,27.0366066122607
+1971-03-01 00:00:00,11.2900948264452
+1971-03-01 01:00:00,17.1937350871588
+1971-03-01 02:00:00,16.5587895234838
+1971-03-01 03:00:00,11.9604341869849
+1971-03-01 04:00:00,9.48908488656597
+1971-03-01 05:00:00,18.1924731631638
+1971-03-01 06:00:00,30.6197885560355
+1971-03-01 07:00:00,11.2383348025602
+1971-03-01 08:00:00,13.4862436023679
+1971-03-01 09:00:00,8.97222034423202
+1971-03-01 10:00:00,20.6144020045262
+1971-03-01 11:00:00,16.9409518300556
+1971-03-01 12:00:00,15.3840777203755
+1971-03-01 13:00:00,16.7865244004061
+1971-03-01 14:00:00,19.8018553225809
+1971-03-01 15:00:00,11.9066523070276
+1971-03-01 16:00:00,14.5876584789612
+1971-03-01 17:00:00,13.74801996916
+1971-03-01 18:00:00,8.90819134336519
+1971-03-01 19:00:00,10.7982390591848
+1971-03-01 20:00:00,18.7943260605791
+1971-03-01 21:00:00,14.802198816728
+1971-03-01 22:00:00,16.5518915095145
+1971-03-01 23:00:00,11.2687395403014
+1971-03-02 00:00:00,22.1262942898752
+1971-03-02 01:00:00,18.2103093042008
+1971-03-02 02:00:00,17.3875191081405
+1971-03-02 03:00:00,10.1341285705081
+1971-03-02 04:00:00,11.387431340032
+1971-03-02 05:00:00,13.4236011491446
+1971-03-02 06:00:00,17.9464878685044
+1971-03-02 07:00:00,10.3817423042189
+1971-03-02 08:00:00,13.7480502906442
+1971-03-02 09:00:00,18.1591956879469
+1971-03-02 10:00:00,12.9071646589814
+1971-03-02 11:00:00,17.6005878471685
+1971-03-02 12:00:00,14.9861390636374
+1971-03-02 13:00:00,22.6343992836594
+1971-03-02 14:00:00,14.6685998006586
+1971-03-02 15:00:00,8.74384532771191
+1971-03-02 16:00:00,7.55207004802413
+1971-03-02 17:00:00,13.9850749311801
+1971-03-02 18:00:00,16.1489420508116
+1971-03-02 19:00:00,17.9719667464668
+1971-03-02 20:00:00,7.54557349824097
+1971-03-02 21:00:00,19.4590632405642
+1971-03-02 22:00:00,13.443553074741
+1971-03-02 23:00:00,20.0899060258499
+1971-03-03 00:00:00,11.3794890221823
+1971-03-03 01:00:00,9.6452113207998
+1971-03-03 02:00:00,15.0677446040623
+1971-03-03 03:00:00,9.13672009426129
+1971-03-03 04:00:00,19.2089387845328
+1971-03-03 05:00:00,18.5917303944607
+1971-03-03 06:00:00,11.9681884446903
+1971-03-03 07:00:00,14.5155877907215
+1971-03-03 08:00:00,19.2532502808094
+1971-03-03 09:00:00,25.5864404093596
+1971-03-03 10:00:00,15.550514891987
+1971-03-03 11:00:00,18.0187477214997
+1971-03-03 12:00:00,9.72456005163173
+1971-03-03 13:00:00,12.0120747056673
+1971-03-03 14:00:00,9.68460104863459
+1971-03-03 15:00:00,9.24637238846229
+1971-03-03 16:00:00,16.9825208321998
+1971-03-03 17:00:00,18.521895042733
+1971-03-03 18:00:00,20.6251760626996
+1971-03-03 19:00:00,13.532235948435
+1971-03-03 20:00:00,16.8867981553946
+1971-03-03 21:00:00,17.1712519248849
+1971-03-03 22:00:00,6.85321563578837
+1971-03-03 23:00:00,19.2904108946837
+1971-03-04 00:00:00,16.0638623283584
+1971-03-04 01:00:00,19.1395881024531
+1971-03-04 02:00:00,12.9275685698452
+1971-03-04 03:00:00,11.7835564609439
+1971-03-04 04:00:00,11.7754952906344
+1971-03-04 05:00:00,12.5289736737358
+1971-03-04 06:00:00,24.646230328108
+1971-03-04 07:00:00,21.0443837254151
+1971-03-04 08:00:00,7.90601024326131
+1971-03-04 09:00:00,32.6169004475412
+1971-03-04 10:00:00,16.9178719663094
+1971-03-04 11:00:00,9.2395887183402
+1971-03-04 12:00:00,20.9228408329791
+1971-03-04 13:00:00,13.5111486979788
+1971-03-04 14:00:00,10.716354390351
+1971-03-04 15:00:00,19.5662698086536
+1971-03-04 16:00:00,16.9658680831571
+1971-03-04 17:00:00,22.5524233163673
+1971-03-04 18:00:00,12.0111693510059
+1971-03-04 19:00:00,8.22476284750557
+1971-03-04 20:00:00,17.1217682902677
+1971-03-04 21:00:00,15.8763000004951
+1971-03-04 22:00:00,18.4933632962648
+1971-03-04 23:00:00,11.2314026869857
+1971-03-05 00:00:00,13.0042334297763
+1971-03-05 01:00:00,10.0495293841959
+1971-03-05 02:00:00,8.97497708369681
+1971-03-05 03:00:00,13.2014603626058
+1971-03-05 04:00:00,8.29086258331083
+1971-03-05 05:00:00,11.8756532643772
+1971-03-05 06:00:00,17.5611100013601
+1971-03-05 07:00:00,19.3322691205822
+1971-03-05 08:00:00,11.7022113588289
+1971-03-05 09:00:00,22.9174299647701
+1971-03-05 10:00:00,17.6902410070497
+1971-03-05 11:00:00,22.2300648491902
+1971-03-05 12:00:00,13.00613661122
+1971-03-05 13:00:00,10.558066996686
+1971-03-05 14:00:00,18.0701280231114
+1971-03-05 15:00:00,11.3981183307839
+1971-03-05 16:00:00,9.78335747948435
+1971-03-05 17:00:00,13.2002298535358
+1971-03-05 18:00:00,23.3927301176355
+1971-03-05 19:00:00,13.6548004364874
+1971-03-05 20:00:00,12.5361471799528
+1971-03-05 21:00:00,16.4899108683952
+1971-03-05 22:00:00,8.2464738489611
+1971-03-05 23:00:00,16.2590018086879
+1971-03-06 00:00:00,13.1395337866197
+1971-03-06 01:00:00,12.6484651250399
+1971-03-06 02:00:00,16.3822555631171
+1971-03-06 03:00:00,9.77146359854895
+1971-03-06 04:00:00,13.0755375081468
+1971-03-06 05:00:00,8.40956066250947
+1971-03-06 06:00:00,12.4825330194544
+1971-03-06 07:00:00,14.5028567112109
+1971-03-06 08:00:00,12.8049776768634
+1971-03-06 09:00:00,9.46178085644225
+1971-03-06 10:00:00,10.5156328557721
+1971-03-06 11:00:00,13.2883699524275
+1971-03-06 12:00:00,11.6977788742147
+1971-03-06 13:00:00,13.9672629783462
+1971-03-06 14:00:00,19.4078288031732
+1971-03-06 15:00:00,11.9785169935631
+1971-03-06 16:00:00,13.3756069625259
+1971-03-06 17:00:00,16.6345913334035
+1971-03-06 18:00:00,20.6405256010327
+1971-03-06 19:00:00,15.1377964407074
+1971-03-06 20:00:00,11.4673692948468
+1971-03-06 21:00:00,9.21046677464646
+1971-03-06 22:00:00,9.09600485656523
+1971-03-06 23:00:00,19.3734786278313
+1971-03-07 00:00:00,11.6011752180091
+1971-03-07 01:00:00,17.5369406584286
+1971-03-07 02:00:00,10.0481016061751
+1971-03-07 03:00:00,12.5107898979345
+1971-03-07 04:00:00,10.2839435961145
+1971-03-07 05:00:00,10.8232822370134
+1971-03-07 06:00:00,16.5752561969613
+1971-03-07 07:00:00,13.0259151238782
+1971-03-07 08:00:00,12.3138459800501
+1971-03-07 09:00:00,10.6856697618924
+1971-03-07 10:00:00,10.640142278052
+1971-03-07 11:00:00,12.5689809804899
+1971-03-07 12:00:00,10.7277215818349
+1971-03-07 13:00:00,23.1807340732691
+1971-03-07 14:00:00,12.3077077692093
+1971-03-07 15:00:00,12.3808941943868
+1971-03-07 16:00:00,12.0677213185396
+1971-03-07 17:00:00,8.92774672248606
+1971-03-07 18:00:00,9.30840503104963
+1971-03-07 19:00:00,11.8001053349002
+1971-03-07 20:00:00,18.907653441038
+1971-03-07 21:00:00,18.2826516291357
+1971-03-07 22:00:00,13.1183897507652
+1971-03-07 23:00:00,14.9839028089061
+1971-03-08 00:00:00,14.9452990672191
+1971-03-08 01:00:00,22.7826263347881
+1971-03-08 02:00:00,7.54121571325718
+1971-03-08 03:00:00,10.1992853704547
+1971-03-08 04:00:00,17.6586598194349
+1971-03-08 05:00:00,10.3323026686198
+1971-03-08 06:00:00,10.5791399435401
+1971-03-08 07:00:00,17.2902825649297
+1971-03-08 08:00:00,16.7969199310776
+1971-03-08 09:00:00,16.3070327772485
+1971-03-08 10:00:00,13.7758752302995
+1971-03-08 11:00:00,8.13898568522939
+1971-03-08 12:00:00,26.0068841556393
+1971-03-08 13:00:00,16.9404060941806
+1971-03-08 14:00:00,22.5942603506608
+1971-03-08 15:00:00,12.2471105902514
+1971-03-08 16:00:00,15.4308260176764
+1971-03-08 17:00:00,6.79654793017
+1971-03-08 18:00:00,14.3289528104041
+1971-03-08 19:00:00,17.2448173132124
+1971-03-08 20:00:00,13.4534434902199
+1971-03-08 21:00:00,17.7118240244047
+1971-03-08 22:00:00,19.2658542355866
+1971-03-08 23:00:00,10.6505993408885
+1971-03-09 00:00:00,14.527185249723
+1971-03-09 01:00:00,9.45921783976658
+1971-03-09 02:00:00,11.8090398509865
+1971-03-09 03:00:00,8.96301165895475
+1971-03-09 04:00:00,15.0748174276142
+1971-03-09 05:00:00,13.7335173517742
+1971-03-09 06:00:00,28.1488202717108
+1971-03-09 07:00:00,13.7629602709984
+1971-03-09 08:00:00,19.7380117064092
+1971-03-09 09:00:00,11.629654790652
+1971-03-09 10:00:00,8.44564812642393
+1971-03-09 11:00:00,13.566228335205
+1971-03-09 12:00:00,8.90862893239921
+1971-03-09 13:00:00,14.1866725409938
+1971-03-09 14:00:00,10.9479951016159
+1971-03-09 15:00:00,15.5914042957838
+1971-03-09 16:00:00,15.7136335309059
+1971-03-09 17:00:00,12.0983638540766
+1971-03-09 18:00:00,13.8070952040512
+1971-03-09 19:00:00,15.0036256067002
+1971-03-09 20:00:00,13.8387222711423
+1971-03-09 21:00:00,8.7181040696213
+1971-03-09 22:00:00,15.6035386039508
+1971-03-09 23:00:00,14.534730566564
+1971-03-10 00:00:00,11.2120095616614
+1971-03-10 01:00:00,16.2547642996908
+1971-03-10 02:00:00,12.7181245252906
+1971-03-10 03:00:00,5.71941868129239
+1971-03-10 04:00:00,10.4396161548201
+1971-03-10 05:00:00,17.2649108573338
+1971-03-10 06:00:00,16.863738499746
+1971-03-10 07:00:00,22.6412458316628
+1971-03-10 08:00:00,17.9587067726157
+1971-03-10 09:00:00,11.4285899001044
+1971-03-10 10:00:00,11.5183105711362
+1971-03-10 11:00:00,7.04089617951068
+1971-03-10 12:00:00,12.9318112065801
+1971-03-10 13:00:00,17.4523831450985
+1971-03-10 14:00:00,9.86175499606609
+1971-03-10 15:00:00,12.9297813382389
+1971-03-10 16:00:00,13.2386474269844
+1971-03-10 17:00:00,22.4453587574823
+1971-03-10 18:00:00,16.8445870559372
+1971-03-10 19:00:00,18.0030734597586
+1971-03-10 20:00:00,21.5256404044354
+1971-03-10 21:00:00,15.1201043917858
+1971-03-10 22:00:00,13.1799424697421
+1971-03-10 23:00:00,14.0909607132094
+1971-03-11 00:00:00,17.070890212124
+1971-03-11 01:00:00,14.2528392509692
+1971-03-11 02:00:00,8.06986404716658
+1971-03-11 03:00:00,10.8302134405882
+1971-03-11 04:00:00,18.2411972677576
+1971-03-11 05:00:00,17.1925763027273
+1971-03-11 06:00:00,15.6112005384682
+1971-03-11 07:00:00,14.3251605550235
+1971-03-11 08:00:00,15.126801730446
+1971-03-11 09:00:00,12.0527952844222
+1971-03-11 10:00:00,10.5882105969343
+1971-03-11 11:00:00,12.0380177127691
+1971-03-11 12:00:00,16.5709399801502
+1971-03-11 13:00:00,10.5008031311654
+1971-03-11 14:00:00,21.578917433049
+1971-03-11 15:00:00,9.70642686131092
+1971-03-11 16:00:00,17.6177655149682
+1971-03-11 17:00:00,8.73389660078462
+1971-03-11 18:00:00,14.8293559116217
+1971-03-11 19:00:00,8.90301510015762
+1971-03-11 20:00:00,16.2015432166328
+1971-03-11 21:00:00,15.2838168202791
+1971-03-11 22:00:00,21.3176795998378
+1971-03-11 23:00:00,17.0506427708513
+1971-03-12 00:00:00,21.215461698857
+1971-03-12 01:00:00,16.1817871950396
+1971-03-12 02:00:00,9.93610537192349
+1971-03-12 03:00:00,11.2411309774315
+1971-03-12 04:00:00,18.4087444086274
+1971-03-12 05:00:00,15.1550485629378
+1971-03-12 06:00:00,17.5402595727971
+1971-03-12 07:00:00,8.23311602314138
+1971-03-12 08:00:00,17.2029817283059
+1971-03-12 09:00:00,9.15646622143752
+1971-03-12 10:00:00,20.7416304069846
+1971-03-12 11:00:00,19.6997137492096
+1971-03-12 12:00:00,13.9939432385463
+1971-03-12 13:00:00,10.6990014483792
+1971-03-12 14:00:00,10.405900679626
+1971-03-12 15:00:00,17.0754065547929
+1971-03-12 16:00:00,9.83845693265098
+1971-03-12 17:00:00,10.4616588353055
+1971-03-12 18:00:00,18.7699587514981
+1971-03-12 19:00:00,17.1836983843746
+1971-03-12 20:00:00,11.7397280407677
+1971-03-12 21:00:00,14.9298415675188
+1971-03-12 22:00:00,13.0367530505728
+1971-03-12 23:00:00,16.7825854746401
+1971-03-13 00:00:00,21.6682447309679
+1971-03-13 01:00:00,8.71544983371472
+1971-03-13 02:00:00,16.1920420891757
+1971-03-13 03:00:00,12.8116594001559
+1971-03-13 04:00:00,6.92178637428843
+1971-03-13 05:00:00,17.9009034248305
+1971-03-13 06:00:00,10.5657941230916
+1971-03-13 07:00:00,11.056267368321
+1971-03-13 08:00:00,15.5064506808397
+1971-03-13 09:00:00,12.1173445615194
+1971-03-13 10:00:00,14.528705157194
+1971-03-13 11:00:00,24.3667967197242
+1971-03-13 12:00:00,14.8574027475895
+1971-03-13 13:00:00,21.8368971584757
+1971-03-13 14:00:00,19.993009834653
+1971-03-13 15:00:00,12.7689675581267
+1971-03-13 16:00:00,16.545974439497
+1971-03-13 17:00:00,13.4505444858894
+1971-03-13 18:00:00,13.7875460606781
+1971-03-13 19:00:00,10.7596803242151
+1971-03-13 20:00:00,9.96927262097144
+1971-03-13 21:00:00,14.2298911912781
+1971-03-13 22:00:00,21.6717656494382
+1971-03-13 23:00:00,21.1262894439115
+1971-03-14 00:00:00,17.6221282457364
+1971-03-14 01:00:00,5.60100010680168
+1971-03-14 02:00:00,13.3402117170187
+1971-03-14 03:00:00,7.83544104086321
+1971-03-14 04:00:00,25.3807989276043
+1971-03-14 05:00:00,17.2664351777265
+1971-03-14 06:00:00,10.3560552489159
+1971-03-14 07:00:00,6.81790257044766
+1971-03-14 08:00:00,7.7620876356626
+1971-03-14 09:00:00,13.7484589701144
+1971-03-14 10:00:00,10.2831391868756
+1971-03-14 11:00:00,26.4123020200692
+1971-03-14 12:00:00,10.3033487202762
+1971-03-14 13:00:00,14.6891655036562
+1971-03-14 14:00:00,16.8860626043864
+1971-03-14 15:00:00,21.3272426150954
+1971-03-14 16:00:00,17.5572644968246
+1971-03-14 17:00:00,15.5694302928076
+1971-03-14 18:00:00,14.6113127530485
+1971-03-14 19:00:00,10.0590193955831
+1971-03-14 20:00:00,14.7437298478335
+1971-03-14 21:00:00,13.1961491004243
+1971-03-14 22:00:00,13.5433968180213
+1971-03-14 23:00:00,16.1402964361321
+1971-03-15 00:00:00,17.4351250744832
+1971-03-15 01:00:00,14.0895459413243
+1971-03-15 02:00:00,23.0707084888775
+1971-03-15 03:00:00,10.5867097117194
+1971-03-15 04:00:00,15.775456282255
+1971-03-15 05:00:00,8.42399487703507
+1971-03-15 06:00:00,9.38748591988456
+1971-03-15 07:00:00,9.37501247816424
+1971-03-15 08:00:00,7.90606522131256
+1971-03-15 09:00:00,7.67149337878085
+1971-03-15 10:00:00,11.3532499165951
+1971-03-15 11:00:00,25.377054098315
+1971-03-15 12:00:00,18.1069195859226
+1971-03-15 13:00:00,18.6083009088806
+1971-03-15 14:00:00,13.1429478099092
+1971-03-15 15:00:00,12.9017193034182
+1971-03-15 16:00:00,14.4705071347794
+1971-03-15 17:00:00,18.3283441300028
+1971-03-15 18:00:00,11.880368392888
+1971-03-15 19:00:00,15.0656849403049
+1971-03-15 20:00:00,15.5458711813719
+1971-03-15 21:00:00,9.32237342246695
+1971-03-15 22:00:00,13.057733350892
+1971-03-15 23:00:00,15.9720606933061
+1971-03-16 00:00:00,18.5381009647448
+1971-03-16 01:00:00,18.1966682888768
+1971-03-16 02:00:00,22.2309925288047
+1971-03-16 03:00:00,12.8998548772966
+1971-03-16 04:00:00,9.25905712798296
+1971-03-16 05:00:00,15.3003877393615
+1971-03-16 06:00:00,16.2259544883069
+1971-03-16 07:00:00,7.18465281393057
+1971-03-16 08:00:00,13.0424475975165
+1971-03-16 09:00:00,16.8223313626894
+1971-03-16 10:00:00,14.4652524536965
+1971-03-16 11:00:00,11.9244421694832
+1971-03-16 12:00:00,12.9468069691268
+1971-03-16 13:00:00,20.8966382961591
+1971-03-16 14:00:00,17.1688464992887
+1971-03-16 15:00:00,17.8973320131977
+1971-03-16 16:00:00,9.69632032383908
+1971-03-16 17:00:00,11.0023175912448
+1971-03-16 18:00:00,7.76987883295297
+1971-03-16 19:00:00,26.4837216293224
+1971-03-16 20:00:00,13.7273611660862
+1971-03-16 21:00:00,20.846639362153
+1971-03-16 22:00:00,20.0913614629138
+1971-03-16 23:00:00,13.9688821417352
+1971-03-17 00:00:00,10.1917775966715
+1971-03-17 01:00:00,7.48364835838413
+1971-03-17 02:00:00,15.1010816423215
+1971-03-17 03:00:00,13.1726297696935
+1971-03-17 04:00:00,14.8666748837829
+1971-03-17 05:00:00,8.44645300595259
+1971-03-17 06:00:00,26.5024541244813
+1971-03-17 07:00:00,10.8224474451245
+1971-03-17 08:00:00,21.4253649338484
+1971-03-17 09:00:00,10.3044679628972
+1971-03-17 10:00:00,10.2711310739824
+1971-03-17 11:00:00,11.6992834699952
+1971-03-17 12:00:00,11.0814202428288
+1971-03-17 13:00:00,16.7609826650949
+1971-03-17 14:00:00,13.4979009187327
+1971-03-17 15:00:00,14.6791525466249
+1971-03-17 16:00:00,15.5343071531821
+1971-03-17 17:00:00,28.6534907463266
+1971-03-17 18:00:00,14.1583339628481
+1971-03-17 19:00:00,6.02934372834893
+1971-03-17 20:00:00,17.4414404195479
+1971-03-17 21:00:00,22.9650551979114
+1971-03-17 22:00:00,20.4086494765586
+1971-03-17 23:00:00,12.655075470586
+1971-03-18 00:00:00,13.9915163706408
+1971-03-18 01:00:00,18.5437257273034
+1971-03-18 02:00:00,12.3689987979532
+1971-03-18 03:00:00,10.9362783625583
+1971-03-18 04:00:00,23.0556364431838
+1971-03-18 05:00:00,14.7652715216062
+1971-03-18 06:00:00,9.75143424137725
+1971-03-18 07:00:00,16.7505351498478
+1971-03-18 08:00:00,11.3452062570332
+1971-03-18 09:00:00,11.3085274652527
+1971-03-18 10:00:00,5.62695616596374
+1971-03-18 11:00:00,15.4689902600714
+1971-03-18 12:00:00,18.383048751337
+1971-03-18 13:00:00,16.6061088045256
+1971-03-18 14:00:00,20.4390801581541
+1971-03-18 15:00:00,15.7472599577953
+1971-03-18 16:00:00,14.3663297934004
+1971-03-18 17:00:00,19.3986474699759
+1971-03-18 18:00:00,11.8063766992743
+1971-03-18 19:00:00,16.0472276543612
+1971-03-18 20:00:00,24.4000046248024
+1971-03-18 21:00:00,22.8592432749514
+1971-03-18 22:00:00,15.3000317651501
+1971-03-18 23:00:00,14.9593530318824
+1971-03-19 00:00:00,19.8018850674735
+1971-03-19 01:00:00,9.60841017287545
+1971-03-19 02:00:00,18.5447819698333
+1971-03-19 03:00:00,12.7808946154794
+1971-03-19 04:00:00,19.0547369051036
+1971-03-19 05:00:00,19.5326275962785
+1971-03-19 06:00:00,16.1143742053504
+1971-03-19 07:00:00,15.5566768823358
+1971-03-19 08:00:00,14.2260558030718
+1971-03-19 09:00:00,13.069891278915
+1971-03-19 10:00:00,17.3211510390727
+1971-03-19 11:00:00,13.6738299700171
+1971-03-19 12:00:00,16.7706092604635
+1971-03-19 13:00:00,16.1736345693579
+1971-03-19 14:00:00,12.3240174341736
+1971-03-19 15:00:00,13.4057060738831
+1971-03-19 16:00:00,8.11832833588485
+1971-03-19 17:00:00,15.1275422194985
+1971-03-19 18:00:00,6.26068191776154
+1971-03-19 19:00:00,9.58583374551193
+1971-03-19 20:00:00,22.9367173441585
+1971-03-19 21:00:00,15.3400816105784
+1971-03-19 22:00:00,11.70115653746
+1971-03-19 23:00:00,15.6243391169442
+1971-03-20 00:00:00,15.2769306523415
+1971-03-20 01:00:00,9.43339539324111
+1971-03-20 02:00:00,19.9724716230451
+1971-03-20 03:00:00,9.99998965941147
+1971-03-20 04:00:00,10.3043744998893
+1971-03-20 05:00:00,14.5231900275854
+1971-03-20 06:00:00,14.6879143808545
+1971-03-20 07:00:00,15.3926044211999
+1971-03-20 08:00:00,7.99699230642641
+1971-03-20 09:00:00,9.68973856669668
+1971-03-20 10:00:00,11.8034834706237
+1971-03-20 11:00:00,14.5311698909251
+1971-03-20 12:00:00,22.3995726052161
+1971-03-20 13:00:00,12.3776015930708
+1971-03-20 14:00:00,17.9628994627014
+1971-03-20 15:00:00,14.1996419968855
+1971-03-20 16:00:00,11.3769772868858
+1971-03-20 17:00:00,16.799262789033
+1971-03-20 18:00:00,12.0672924678143
+1971-03-20 19:00:00,9.37141287027939
+1971-03-20 20:00:00,15.0102780296517
+1971-03-20 21:00:00,10.5380683461345
+1971-03-20 22:00:00,8.20960138531802
+1971-03-20 23:00:00,7.62152595398151
+1971-03-21 00:00:00,14.7143468043283
+1971-03-21 01:00:00,21.7275513688013
+1971-03-21 02:00:00,10.1550533875157
+1971-03-21 03:00:00,6.54111498394501
+1971-03-21 04:00:00,15.0623775729978
+1971-03-21 05:00:00,18.8156533671027
+1971-03-21 06:00:00,13.301734431164
+1971-03-21 07:00:00,14.2808754863227
+1971-03-21 08:00:00,17.3221648350182
+1971-03-21 09:00:00,9.75130888201457
+1971-03-21 10:00:00,10.7581970882114
+1971-03-21 11:00:00,10.6892710721909
+1971-03-21 12:00:00,17.2434320372143
+1971-03-21 13:00:00,16.1125655506428
+1971-03-21 14:00:00,10.1356446582951
+1971-03-21 15:00:00,9.61133145661908
+1971-03-21 16:00:00,23.9068570064326
+1971-03-21 17:00:00,14.6869707443891
+1971-03-21 18:00:00,31.3750244570809
+1971-03-21 19:00:00,14.5830190507566
+1971-03-21 20:00:00,18.0287891610421
+1971-03-21 21:00:00,15.0780417800471
+1971-03-21 22:00:00,10.826359137346
+1971-03-21 23:00:00,12.9509101010893
+1971-03-22 00:00:00,9.2691402764612
+1971-03-22 01:00:00,23.2255710396345
+1971-03-22 02:00:00,14.1527748259202
+1971-03-22 03:00:00,16.3823252432581
+1971-03-22 04:00:00,13.254422909616
+1971-03-22 05:00:00,18.1475916826202
+1971-03-22 06:00:00,17.4163614826314
+1971-03-22 07:00:00,18.5661466867694
+1971-03-22 08:00:00,12.1271394449625
+1971-03-22 09:00:00,19.2365498189309
+1971-03-22 10:00:00,12.8717340518526
+1971-03-22 11:00:00,17.5542925476465
+1971-03-22 12:00:00,12.7920079228836
+1971-03-22 13:00:00,10.3777226703147
+1971-03-22 14:00:00,10.7244017931102
+1971-03-22 15:00:00,12.5563065606816
+1971-03-22 16:00:00,10.2906267873038
+1971-03-22 17:00:00,12.6735922646227
+1971-03-22 18:00:00,15.0416190012051
+1971-03-22 19:00:00,16.8619668517864
+1971-03-22 20:00:00,17.4487490760663
+1971-03-22 21:00:00,10.5141878100087
+1971-03-22 22:00:00,16.0186959125374
+1971-03-22 23:00:00,12.3650492537153
+1971-03-23 00:00:00,14.9028033172304
+1971-03-23 01:00:00,7.52593462863603
+1971-03-23 02:00:00,10.2516374581644
+1971-03-23 03:00:00,15.2386667573445
+1971-03-23 04:00:00,14.7466936447866
+1971-03-23 05:00:00,18.4755425034878
+1971-03-23 06:00:00,15.8736643616972
+1971-03-23 07:00:00,20.6868191665347
+1971-03-23 08:00:00,16.6409283875489
+1971-03-23 09:00:00,10.0162685012861
+1971-03-23 10:00:00,11.7960209344743
+1971-03-23 11:00:00,14.5977929053699
+1971-03-23 12:00:00,10.9248611309535
+1971-03-23 13:00:00,12.1548594531336
+1971-03-23 14:00:00,14.1440394032838
+1971-03-23 15:00:00,10.1377513143309
+1971-03-23 16:00:00,9.87066728974186
+1971-03-23 17:00:00,15.8663360608076
+1971-03-23 18:00:00,12.7102312700189
+1971-03-23 19:00:00,17.4736507531561
+1971-03-23 20:00:00,16.2871262910119
+1971-03-23 21:00:00,8.23888426803639
+1971-03-23 22:00:00,9.4486232715105
+1971-03-23 23:00:00,16.7577711722765
+1971-03-24 00:00:00,17.4450906258703
+1971-03-24 01:00:00,16.0254236397617
+1971-03-24 02:00:00,16.2939510346449
+1971-03-24 03:00:00,28.045871351933
+1971-03-24 04:00:00,15.7145767341756
+1971-03-24 05:00:00,15.0957470696033
+1971-03-24 06:00:00,17.3884365303503
+1971-03-24 07:00:00,12.9484549125891
+1971-03-24 08:00:00,16.2615498872272
+1971-03-24 09:00:00,15.2619604879722
+1971-03-24 10:00:00,13.388047671326
+1971-03-24 11:00:00,16.240073120556
+1971-03-24 12:00:00,18.5519537092139
+1971-03-24 13:00:00,22.7483490560544
+1971-03-24 14:00:00,9.78010031720666
+1971-03-24 15:00:00,16.1214270365974
+1971-03-24 16:00:00,10.492904231592
+1971-03-24 17:00:00,12.9893571327322
+1971-03-24 18:00:00,8.4494434443507
+1971-03-24 19:00:00,21.7588161497993
+1971-03-24 20:00:00,16.5209447247787
+1971-03-24 21:00:00,17.6561181885673
+1971-03-24 22:00:00,12.2970566797604
+1971-03-24 23:00:00,14.2615636621313
+1971-03-25 00:00:00,13.2562702490779
+1971-03-25 01:00:00,11.4533353136922
+1971-03-25 02:00:00,8.35956221894186
+1971-03-25 03:00:00,20.2309703350837
+1971-03-25 04:00:00,16.3218259188267
+1971-03-25 05:00:00,25.1618570821203
+1971-03-25 06:00:00,12.8041554393536
+1971-03-25 07:00:00,14.4989078068352
+1971-03-25 08:00:00,9.08472698346714
+1971-03-25 09:00:00,13.3313970033383
+1971-03-25 10:00:00,11.1424987877973
+1971-03-25 11:00:00,7.90759186318759
+1971-03-25 12:00:00,8.37687385022536
+1971-03-25 13:00:00,9.21585364073949
+1971-03-25 14:00:00,9.02852803329512
+1971-03-25 15:00:00,11.6783567222839
+1971-03-25 16:00:00,13.3667871266943
+1971-03-25 17:00:00,14.497952055186
+1971-03-25 18:00:00,26.5265196149062
+1971-03-25 19:00:00,13.7832569648147
+1971-03-25 20:00:00,11.2193611797787
+1971-03-25 21:00:00,13.1562911941098
+1971-03-25 22:00:00,13.561000002154
+1971-03-25 23:00:00,9.0982842802307
+1971-03-26 00:00:00,15.1727899398654
+1971-03-26 01:00:00,13.7995274904655
+1971-03-26 02:00:00,14.9759261744346
+1971-03-26 03:00:00,11.9838508094165
+1971-03-26 04:00:00,11.9269831785264
+1971-03-26 05:00:00,15.598995347534
+1971-03-26 06:00:00,12.7351578647091
+1971-03-26 07:00:00,18.7300969698963
+1971-03-26 08:00:00,12.7950850626821
+1971-03-26 09:00:00,17.5650025854994
+1971-03-26 10:00:00,21.3809519916429
+1971-03-26 11:00:00,14.9614225510958
+1971-03-26 12:00:00,13.1024544967371
+1971-03-26 13:00:00,14.2934366426214
+1971-03-26 14:00:00,21.5663137505693
+1971-03-26 15:00:00,15.1148933148812
+1971-03-26 16:00:00,7.74843637795453
+1971-03-26 17:00:00,11.1088179544258
+1971-03-26 18:00:00,13.5031815944746
+1971-03-26 19:00:00,10.5159342403345
+1971-03-26 20:00:00,21.5932705051976
+1971-03-26 21:00:00,10.4767578969327
+1971-03-26 22:00:00,8.4922966581238
+1971-03-26 23:00:00,14.0597404982164
+1971-03-27 00:00:00,16.7348242671801
+1971-03-27 01:00:00,6.9040367677066
+1971-03-27 02:00:00,17.4359240606594
+1971-03-27 03:00:00,21.4263582458283
+1971-03-27 04:00:00,13.7066231998453
+1971-03-27 05:00:00,7.52787688279406
+1971-03-27 06:00:00,21.4440482748457
+1971-03-27 07:00:00,11.027840020544
+1971-03-27 08:00:00,16.5832208019641
+1971-03-27 09:00:00,13.3030177434373
+1971-03-27 10:00:00,10.9509478838951
+1971-03-27 11:00:00,12.5736385693488
+1971-03-27 12:00:00,11.2125936367524
+1971-03-27 13:00:00,12.40421024942
+1971-03-27 14:00:00,17.6487448554039
+1971-03-27 15:00:00,9.70001792577809
+1971-03-27 16:00:00,15.3726717273932
+1971-03-27 17:00:00,18.0749583566963
+1971-03-27 18:00:00,13.2640421333302
+1971-03-27 19:00:00,20.8156302442287
+1971-03-27 20:00:00,18.8828400792394
+1971-03-27 21:00:00,14.9498759501205
+1971-03-27 22:00:00,8.0441489981466
+1971-03-27 23:00:00,17.5170777798745
+1971-03-28 00:00:00,13.9713437586834
+1971-03-28 01:00:00,8.86534578167318
+1971-03-28 02:00:00,8.15911993773062
+1971-03-28 03:00:00,17.90966417751
+1971-03-28 04:00:00,22.4880707931389
+1971-03-28 05:00:00,14.0531221076381
+1971-03-28 06:00:00,15.4518042704845
+1971-03-28 07:00:00,13.8604761923202
+1971-03-28 08:00:00,16.1681851687263
+1971-03-28 09:00:00,11.7208276598118
+1971-03-28 10:00:00,7.49705477726975
+1971-03-28 11:00:00,10.5996078429272
+1971-03-28 12:00:00,9.0394773094695
+1971-03-28 13:00:00,12.5085527883123
+1971-03-28 14:00:00,9.89213914491125
+1971-03-28 15:00:00,12.1853345704362
+1971-03-28 16:00:00,17.6787749573956
+1971-03-28 17:00:00,17.5439648642506
+1971-03-28 18:00:00,12.3746773734131
+1971-03-28 19:00:00,16.1727841318772
+1971-03-28 20:00:00,10.6932873757016
+1971-03-28 21:00:00,13.8217606811282
+1971-03-28 22:00:00,7.80363296933694
+1971-03-28 23:00:00,10.821165093412
+1971-03-29 00:00:00,11.6437814043184
+1971-03-29 01:00:00,14.7060065651697
+1971-03-29 02:00:00,9.57376348289971
+1971-03-29 03:00:00,14.4156578516198
+1971-03-29 04:00:00,9.68039299887229
+1971-03-29 05:00:00,13.4427890769903
+1971-03-29 06:00:00,14.8315421932138
+1971-03-29 07:00:00,19.2034295761753
+1971-03-29 08:00:00,13.4518455338881
+1971-03-29 09:00:00,10.5096378445777
+1971-03-29 10:00:00,13.922516719739
+1971-03-29 11:00:00,12.6739605813808
+1971-03-29 12:00:00,14.2146607374922
+1971-03-29 13:00:00,9.13255837480969
+1971-03-29 14:00:00,12.4863956165135
+1971-03-29 15:00:00,17.534067938222
+1971-03-29 16:00:00,15.4616866130586
+1971-03-29 17:00:00,17.5829324920228
+1971-03-29 18:00:00,13.3578399030935
+1971-03-29 19:00:00,19.3648685482314
+1971-03-29 20:00:00,14.6843130722955
+1971-03-29 21:00:00,11.0103422722979
+1971-03-29 22:00:00,9.67611061479238
+1971-03-29 23:00:00,14.0428004975505
+1971-03-30 00:00:00,10.5903724529181
+1971-03-30 01:00:00,13.8750443669268
+1971-03-30 02:00:00,23.8452659369836
+1971-03-30 03:00:00,14.8516282158244
+1971-03-30 04:00:00,13.883017759348
+1971-03-30 05:00:00,9.03469842661136
+1971-03-30 06:00:00,16.1623939639811
+1971-03-30 07:00:00,16.3625826655363
+1971-03-30 08:00:00,18.3891325697884
+1971-03-30 09:00:00,6.51727260820537
+1971-03-30 10:00:00,17.5699059026189
+1971-03-30 11:00:00,19.114923191834
+1971-03-30 12:00:00,12.0676231496711
+1971-03-30 13:00:00,14.5541625861784
+1971-03-30 14:00:00,8.54431790390392
+1971-03-30 15:00:00,11.2037609811633
+1971-03-30 16:00:00,13.9270128957824
+1971-03-30 17:00:00,24.5062697503166
+1971-03-30 18:00:00,10.6537326983811
+1971-03-30 19:00:00,19.0432471262702
+1971-03-30 20:00:00,13.1888849355953
+1971-03-30 21:00:00,7.92876701419582
+1971-03-30 22:00:00,12.3578266217599
+1971-03-30 23:00:00,16.7063517571356
+1971-03-31 00:00:00,19.3995535203374
+1971-03-31 01:00:00,14.7419624915511
+1971-03-31 02:00:00,9.89878631867021
+1971-03-31 03:00:00,19.0806332052144
+1971-03-31 04:00:00,17.6991474514283
+1971-03-31 05:00:00,9.52596662554552
+1971-03-31 06:00:00,12.2207289232291
+1971-03-31 07:00:00,17.1661217607935
+1971-03-31 08:00:00,10.4517615330633
+1971-03-31 09:00:00,10.9206122345566
+1971-03-31 10:00:00,19.5684510807773
+1971-03-31 11:00:00,24.203063777556
+1971-03-31 12:00:00,21.6559202065314
+1971-03-31 13:00:00,13.3455398861122
+1971-03-31 14:00:00,13.4680665993715
+1971-03-31 15:00:00,16.070368592332
+1971-03-31 16:00:00,8.90447295705677
+1971-03-31 17:00:00,20.5558213631179
+1971-03-31 18:00:00,21.8377441621175
+1971-03-31 19:00:00,15.7457124826115
+1971-03-31 20:00:00,14.0599592496451
+1971-03-31 21:00:00,24.3177914540736
+1971-03-31 22:00:00,9.10315585680769
+1971-03-31 23:00:00,13.8300825363506
+1971-04-01 00:00:00,14.8067835941023
+1971-04-01 01:00:00,14.8694896243592
+1971-04-01 02:00:00,12.5014711312477
+1971-04-01 03:00:00,15.2673475142977
+1971-04-01 04:00:00,14.5340033374056
+1971-04-01 05:00:00,16.1745579510908
+1971-04-01 06:00:00,9.82755928330412
+1971-04-01 07:00:00,18.0269272744726
+1971-04-01 08:00:00,21.0345171215173
+1971-04-01 09:00:00,13.4548038839417
+1971-04-01 10:00:00,29.3016504644463
+1971-04-01 11:00:00,15.6715903970473
+1971-04-01 12:00:00,14.6076441627678
+1971-04-01 13:00:00,16.6897035271478
+1971-04-01 14:00:00,17.4328179923931
+1971-04-01 15:00:00,12.0469122680654
+1971-04-01 16:00:00,2.67152311023473
+1971-04-01 17:00:00,12.0011782645345
+1971-04-01 18:00:00,12.5981518843424
+1971-04-01 19:00:00,15.9399576550619
+1971-04-01 20:00:00,9.95686643322303
+1971-04-01 21:00:00,12.7169544019805
+1971-04-01 22:00:00,15.7889474544637
+1971-04-01 23:00:00,12.6242611004052
+1971-04-02 00:00:00,21.4518460093407
+1971-04-02 01:00:00,9.34267522119144
+1971-04-02 02:00:00,11.7061919806279
+1971-04-02 03:00:00,14.4522708942664
+1971-04-02 04:00:00,9.8904284324938
+1971-04-02 05:00:00,7.55819663069986
+1971-04-02 06:00:00,16.9172317036919
+1971-04-02 07:00:00,9.6155374533723
+1971-04-02 08:00:00,10.0938923272531
+1971-04-02 09:00:00,4.19353186536742
+1971-04-02 10:00:00,10.9152163688584
+1971-04-02 11:00:00,14.8893324355316
+1971-04-02 12:00:00,14.3079482895075
+1971-04-02 13:00:00,7.22063676053744
+1971-04-02 14:00:00,7.35998243211916
+1971-04-02 15:00:00,13.175062866966
+1971-04-02 16:00:00,11.749114801775
+1971-04-02 17:00:00,15.071603288623
+1971-04-02 18:00:00,14.0975088370229
+1971-04-02 19:00:00,23.3966564122881
+1971-04-02 20:00:00,13.2281575704568
+1971-04-02 21:00:00,12.9985610556029
+1971-04-02 22:00:00,13.9721760240162
+1971-04-02 23:00:00,12.7514576513887
+1971-04-03 00:00:00,6.05907151646419
+1971-04-03 01:00:00,8.32754263125128
+1971-04-03 02:00:00,12.319453651331
+1971-04-03 03:00:00,15.7831451378067
+1971-04-03 04:00:00,12.7534717724258
+1971-04-03 05:00:00,23.6429406235179
+1971-04-03 06:00:00,10.3335480168619
+1971-04-03 07:00:00,18.8057882823595
+1971-04-03 08:00:00,10.054735373793
+1971-04-03 09:00:00,13.9787021217541
+1971-04-03 10:00:00,19.3438320885506
+1971-04-03 11:00:00,12.6973037449272
+1971-04-03 12:00:00,12.0159543901241
+1971-04-03 13:00:00,12.479872131853
+1971-04-03 14:00:00,9.42475496160718
+1971-04-03 15:00:00,15.1898920314075
+1971-04-03 16:00:00,11.4652317655775
+1971-04-03 17:00:00,9.93814626493716
+1971-04-03 18:00:00,19.2702227171534
+1971-04-03 19:00:00,19.6552393716309
+1971-04-03 20:00:00,17.7662628143261
+1971-04-03 21:00:00,17.2167875264859
+1971-04-03 22:00:00,27.472185266311
+1971-04-03 23:00:00,26.1752031776547
+1971-04-04 00:00:00,9.97618483644271
+1971-04-04 01:00:00,11.4431503824421
+1971-04-04 02:00:00,10.6872583715775
+1971-04-04 03:00:00,15.0386054315582
+1971-04-04 04:00:00,15.8557371312812
+1971-04-04 05:00:00,14.2978262587422
+1971-04-04 06:00:00,9.39677706122886
+1971-04-04 07:00:00,20.3690438392913
+1971-04-04 08:00:00,10.8472440043878
+1971-04-04 09:00:00,13.8928505014906
+1971-04-04 10:00:00,8.43758353708146
+1971-04-04 11:00:00,10.1187035112444
+1971-04-04 12:00:00,9.90447527903103
+1971-04-04 13:00:00,14.1102930544302
+1971-04-04 14:00:00,8.21744527670095
+1971-04-04 15:00:00,19.466375975814
+1971-04-04 16:00:00,10.3831516239859
+1971-04-04 17:00:00,11.0377128029267
+1971-04-04 18:00:00,11.4407805253635
+1971-04-04 19:00:00,13.3129169242018
+1971-04-04 20:00:00,18.2468103907132
+1971-04-04 21:00:00,20.3610800586338
+1971-04-04 22:00:00,13.3973379686403
+1971-04-04 23:00:00,12.7120657709132
+1971-04-05 00:00:00,16.6159411620753
+1971-04-05 01:00:00,8.94083530204547
+1971-04-05 02:00:00,18.8975115212683
+1971-04-05 03:00:00,13.6670112452376
+1971-04-05 04:00:00,9.95534152820223
+1971-04-05 05:00:00,20.0423285497067
+1971-04-05 06:00:00,15.2306915396733
+1971-04-05 07:00:00,13.5232308698613
+1971-04-05 08:00:00,17.9115969085237
+1971-04-05 09:00:00,9.20021066045121
+1971-04-05 10:00:00,14.8596552961983
+1971-04-05 11:00:00,9.93023379603549
+1971-04-05 12:00:00,10.1859141479814
+1971-04-05 13:00:00,11.6175432405246
+1971-04-05 14:00:00,15.3171945718653
+1971-04-05 15:00:00,19.5492186803929
+1971-04-05 16:00:00,12.3883656757194
+1971-04-05 17:00:00,10.5983561581071
+1971-04-05 18:00:00,13.6344820949445
+1971-04-05 19:00:00,17.1192227967134
+1971-04-05 20:00:00,16.7146022285382
+1971-04-05 21:00:00,13.3375909794511
+1971-04-05 22:00:00,10.302348234096
+1971-04-05 23:00:00,8.8561446283775
+1971-04-06 00:00:00,13.9157927432441
+1971-04-06 01:00:00,20.717457821771
+1971-04-06 02:00:00,15.7708970135433
+1971-04-06 03:00:00,13.3732442918332
+1971-04-06 04:00:00,18.1168624663709
+1971-04-06 05:00:00,12.5346859666662
+1971-04-06 06:00:00,14.6418925789863
+1971-04-06 07:00:00,21.7063355622444
+1971-04-06 08:00:00,13.9586268247066
+1971-04-06 09:00:00,19.936795323137
+1971-04-06 10:00:00,13.2005814035818
+1971-04-06 11:00:00,17.9262660089469
+1971-04-06 12:00:00,9.57866802367349
+1971-04-06 13:00:00,17.711741896916
+1971-04-06 14:00:00,15.5282312220589
+1971-04-06 15:00:00,18.6406809668233
+1971-04-06 16:00:00,24.1383242193221
+1971-04-06 17:00:00,10.9369525066534
+1971-04-06 18:00:00,17.8172968160541
+1971-04-06 19:00:00,8.85161979663912
+1971-04-06 20:00:00,17.7279261351142
+1971-04-06 21:00:00,13.4564623484013
+1971-04-06 22:00:00,16.0565371625652
+1971-04-06 23:00:00,12.3970571827532
+1971-04-07 00:00:00,14.6670429644835
+1971-04-07 01:00:00,10.7414506253123
+1971-04-07 02:00:00,9.2728230073111
+1971-04-07 03:00:00,13.4402871849111
+1971-04-07 04:00:00,10.3779712296497
+1971-04-07 05:00:00,12.5367195899001
+1971-04-07 06:00:00,13.3360853431238
+1971-04-07 07:00:00,14.0899553626697
+1971-04-07 08:00:00,10.0263759269546
+1971-04-07 09:00:00,7.52002521340028
+1971-04-07 10:00:00,12.498656781774
+1971-04-07 11:00:00,10.5787641945437
+1971-04-07 12:00:00,10.2997299992591
+1971-04-07 13:00:00,16.4659414367263
+1971-04-07 14:00:00,12.6972130705781
+1971-04-07 15:00:00,11.2417855571777
+1971-04-07 16:00:00,15.0876912092879
+1971-04-07 17:00:00,13.8102331564433
+1971-04-07 18:00:00,14.7563288687466
+1971-04-07 19:00:00,14.0646317209373
+1971-04-07 20:00:00,14.7185667033155
+1971-04-07 21:00:00,8.78997572251144
+1971-04-07 22:00:00,13.9399445763875
+1971-04-07 23:00:00,17.179569600956
+1971-04-08 00:00:00,8.08543964326504
+1971-04-08 01:00:00,11.5783703130649
+1971-04-08 02:00:00,11.9416766451025
+1971-04-08 03:00:00,14.5815956903072
+1971-04-08 04:00:00,7.46315218002877
+1971-04-08 05:00:00,11.9101598107
+1971-04-08 06:00:00,18.3818384796775
+1971-04-08 07:00:00,13.5124721264901
+1971-04-08 08:00:00,13.1124020812845
+1971-04-08 09:00:00,6.73362182767207
+1971-04-08 10:00:00,8.62897822589078
+1971-04-08 11:00:00,14.0392384173857
+1971-04-08 12:00:00,14.6611879185677
+1971-04-08 13:00:00,10.1197179889588
+1971-04-08 14:00:00,18.0298913655394
+1971-04-08 15:00:00,11.0785365118493
+1971-04-08 16:00:00,10.7313051193058
+1971-04-08 17:00:00,7.49753823626273
+1971-04-08 18:00:00,13.4396702039266
+1971-04-08 19:00:00,12.8927142004502
+1971-04-08 20:00:00,13.0798876792915
+1971-04-08 21:00:00,9.25034110057238
+1971-04-08 22:00:00,18.8214985179478
+1971-04-08 23:00:00,21.2463330925953
+1971-04-09 00:00:00,13.3505186299524
+1971-04-09 01:00:00,21.3627546520935
+1971-04-09 02:00:00,17.2296561231322
+1971-04-09 03:00:00,17.574497612569
+1971-04-09 04:00:00,18.9739351870002
+1971-04-09 05:00:00,19.3410100953251
+1971-04-09 06:00:00,9.42911232348858
+1971-04-09 07:00:00,18.8851113809586
+1971-04-09 08:00:00,20.16458216297
+1971-04-09 09:00:00,19.6410269817573
+1971-04-09 10:00:00,19.4230984483276
+1971-04-09 11:00:00,11.3836669425575
+1971-04-09 12:00:00,17.6431128428475
+1971-04-09 13:00:00,16.2265958048576
+1971-04-09 14:00:00,12.0652704916446
+1971-04-09 15:00:00,8.84928303366096
+1971-04-09 16:00:00,14.535706343096
+1971-04-09 17:00:00,18.2931628393746
+1971-04-09 18:00:00,17.5103169269374
+1971-04-09 19:00:00,12.2381515139445
+1971-04-09 20:00:00,10.986997823826
+1971-04-09 21:00:00,11.4417606997662
+1971-04-09 22:00:00,12.0694684656348
+1971-04-09 23:00:00,9.99302797937146
+1971-04-10 00:00:00,15.0932788751595
+1971-04-10 01:00:00,17.0304241568793
+1971-04-10 02:00:00,16.9258077207841
+1971-04-10 03:00:00,17.1020315882409
+1971-04-10 04:00:00,15.0741515122094
+1971-04-10 05:00:00,7.06094114448224
+1971-04-10 06:00:00,13.4513589008801
+1971-04-10 07:00:00,12.4940961909125
+1971-04-10 08:00:00,15.9992130612947
+1971-04-10 09:00:00,11.5820503607919
+1971-04-10 10:00:00,22.723693049649
+1971-04-10 11:00:00,21.452098263395
+1971-04-10 12:00:00,16.3798266189378
+1971-04-10 13:00:00,12.1414564749008
+1971-04-10 14:00:00,18.7478912158767
+1971-04-10 15:00:00,12.8362627470428
+1971-04-10 16:00:00,14.9724063397737
+1971-04-10 17:00:00,14.8520583029612
+1971-04-10 18:00:00,7.85156478286129
+1971-04-10 19:00:00,6.36495307890819
+1971-04-10 20:00:00,12.02065956788
+1971-04-10 21:00:00,15.0260041711698
+1971-04-10 22:00:00,7.12344183044189
+1971-04-10 23:00:00,9.71306572189133
+1971-04-11 00:00:00,11.2917953163674
+1971-04-11 01:00:00,6.95153400403144
+1971-04-11 02:00:00,10.0010479562012
+1971-04-11 03:00:00,13.6843090211081
+1971-04-11 04:00:00,11.807380892288
+1971-04-11 05:00:00,16.1146760792292
+1971-04-11 06:00:00,12.3731113253045
+1971-04-11 07:00:00,16.2540945697693
+1971-04-11 08:00:00,9.19019295725101
+1971-04-11 09:00:00,8.69192940615179
+1971-04-11 10:00:00,19.0722335922863
+1971-04-11 11:00:00,18.4768296642675
+1971-04-11 12:00:00,24.7728625519078
+1971-04-11 13:00:00,6.86766172934835
+1971-04-11 14:00:00,14.570087510502
+1971-04-11 15:00:00,11.9661078443577
+1971-04-11 16:00:00,12.8158480694443
+1971-04-11 17:00:00,13.3554895022276
+1971-04-11 18:00:00,11.5722285358169
+1971-04-11 19:00:00,12.2769376242825
+1971-04-11 20:00:00,16.1608138409582
+1971-04-11 21:00:00,10.2188874902149
+1971-04-11 22:00:00,9.58603074434859
+1971-04-11 23:00:00,12.8020926855941
+1971-04-12 00:00:00,9.83091262931086
+1971-04-12 01:00:00,8.37427012632013
+1971-04-12 02:00:00,14.9564240117182
+1971-04-12 03:00:00,16.7868814965625
+1971-04-12 04:00:00,10.1471238222758
+1971-04-12 05:00:00,17.6421060034677
+1971-04-12 06:00:00,14.7616972420844
+1971-04-12 07:00:00,16.3168972907645
+1971-04-12 08:00:00,10.2396153332909
+1971-04-12 09:00:00,21.3082219765049
+1971-04-12 10:00:00,11.1676165593744
+1971-04-12 11:00:00,10.1645695858097
+1971-04-12 12:00:00,17.9901510958215
+1971-04-12 13:00:00,8.82870689564235
+1971-04-12 14:00:00,10.9772175204893
+1971-04-12 15:00:00,10.3165478724755
+1971-04-12 16:00:00,8.84830222354139
+1971-04-12 17:00:00,20.8987936496117
+1971-04-12 18:00:00,12.6891482965921
+1971-04-12 19:00:00,23.2875937832368
+1971-04-12 20:00:00,9.2588518951374
+1971-04-12 21:00:00,12.0121010519299
+1971-04-12 22:00:00,17.2245776915184
+1971-04-12 23:00:00,15.7092931745714
+1971-04-13 00:00:00,17.9886924964197
+1971-04-13 01:00:00,17.0426402909304
+1971-04-13 02:00:00,11.9060839912544
+1971-04-13 03:00:00,12.940983596329
+1971-04-13 04:00:00,10.0331313196082
+1971-04-13 05:00:00,16.9286800169852
+1971-04-13 06:00:00,13.8718863599466
+1971-04-13 07:00:00,17.007271574159
+1971-04-13 08:00:00,13.3443750288961
+1971-04-13 09:00:00,10.7411585233126
+1971-04-13 10:00:00,13.5304550091633
+1971-04-13 11:00:00,21.209954456311
+1971-04-13 12:00:00,14.1679151502791
+1971-04-13 13:00:00,16.1924978823458
+1971-04-13 14:00:00,9.49192757208978
+1971-04-13 15:00:00,12.7584799774948
+1971-04-13 16:00:00,11.7318299291938
+1971-04-13 17:00:00,20.3801665210762
+1971-04-13 18:00:00,21.5872970358757
+1971-04-13 19:00:00,17.0680355910806
+1971-04-13 20:00:00,13.3309918624934
+1971-04-13 21:00:00,12.6918547501001
+1971-04-13 22:00:00,13.3442623246434
+1971-04-13 23:00:00,19.9257553554612
+1971-04-14 00:00:00,9.62709690275757
+1971-04-14 01:00:00,11.7518762277601
+1971-04-14 02:00:00,22.5275446435241
+1971-04-14 03:00:00,8.36739568625526
+1971-04-14 04:00:00,10.9516454421944
+1971-04-14 05:00:00,9.71739384602487
+1971-04-14 06:00:00,9.7491092094257
+1971-04-14 07:00:00,16.9763639524555
+1971-04-14 08:00:00,15.6332687432607
+1971-04-14 09:00:00,15.6196240445709
+1971-04-14 10:00:00,19.9957097608575
+1971-04-14 11:00:00,16.6840662690297
+1971-04-14 12:00:00,11.474324519955
+1971-04-14 13:00:00,11.809558191443
+1971-04-14 14:00:00,14.1444975528486
+1971-04-14 15:00:00,7.58265793859465
+1971-04-14 16:00:00,12.39961269024
+1971-04-14 17:00:00,14.2353348052853
+1971-04-14 18:00:00,11.4556888058484
+1971-04-14 19:00:00,15.8211536379395
+1971-04-14 20:00:00,11.7471333031837
+1971-04-14 21:00:00,18.1248937409696
+1971-04-14 22:00:00,14.5909127802348
+1971-04-14 23:00:00,17.2646483888644
+1971-04-15 00:00:00,8.47285948811681
+1971-04-15 01:00:00,13.1721377955109
+1971-04-15 02:00:00,18.6444082834769
+1971-04-15 03:00:00,22.8105762788869
+1971-04-15 04:00:00,10.6088002997529
+1971-04-15 05:00:00,9.16651827120294
+1971-04-15 06:00:00,14.2693004881481
+1971-04-15 07:00:00,10.7535558960591
+1971-04-15 08:00:00,22.163160245886
+1971-04-15 09:00:00,17.3472156439465
+1971-04-15 10:00:00,8.33285754920453
+1971-04-15 11:00:00,11.4504574587214
+1971-04-15 12:00:00,17.76890644379
+1971-04-15 13:00:00,24.1376717741689
+1971-04-15 14:00:00,17.3034013791866
+1971-04-15 15:00:00,6.85837589244428
+1971-04-15 16:00:00,10.1041386279648
+1971-04-15 17:00:00,20.0019259435807
+1971-04-15 18:00:00,8.00264830225511
+1971-04-15 19:00:00,13.9325073156358
+1971-04-15 20:00:00,11.8044045534262
+1971-04-15 21:00:00,20.016695927976
+1971-04-15 22:00:00,10.2428373996544
+1971-04-15 23:00:00,8.19484358577926
+1971-04-16 00:00:00,13.6023527910297
+1971-04-16 01:00:00,13.6469593589547
+1971-04-16 02:00:00,9.67007332532887
+1971-04-16 03:00:00,22.7686600546018
+1971-04-16 04:00:00,21.5868442638805
+1971-04-16 05:00:00,6.63269788361306
+1971-04-16 06:00:00,15.3723828272015
+1971-04-16 07:00:00,20.8904708479937
+1971-04-16 08:00:00,14.5322280707889
+1971-04-16 09:00:00,12.080119584107
+1971-04-16 10:00:00,20.6338526149603
+1971-04-16 11:00:00,16.951947035935
+1971-04-16 12:00:00,19.599814747149
+1971-04-16 13:00:00,15.3927906564973
+1971-04-16 14:00:00,6.05166515927204
+1971-04-16 15:00:00,9.54619539957265
+1971-04-16 16:00:00,10.4175755012154
+1971-04-16 17:00:00,17.5620846425761
+1971-04-16 18:00:00,18.3127479406199
+1971-04-16 19:00:00,21.5995897999308
+1971-04-16 20:00:00,8.95784876075223
+1971-04-16 21:00:00,13.9978592021471
+1971-04-16 22:00:00,26.2975742477102
+1971-04-16 23:00:00,11.3238489497894
+1971-04-17 00:00:00,17.2090860807736
+1971-04-17 01:00:00,27.6517912267852
+1971-04-17 02:00:00,12.9889592171307
+1971-04-17 03:00:00,13.2036820942937
+1971-04-17 04:00:00,19.6075878887809
+1971-04-17 05:00:00,12.9900265118628
+1971-04-17 06:00:00,10.0604286222505
+1971-04-17 07:00:00,14.3532689372823
+1971-04-17 08:00:00,11.1262301986035
+1971-04-17 09:00:00,21.2897257278061
+1971-04-17 10:00:00,15.8364765407868
+1971-04-17 11:00:00,14.426576552331
+1971-04-17 12:00:00,9.6949625190085
+1971-04-17 13:00:00,8.45265895532441
+1971-04-17 14:00:00,14.3963766021849
+1971-04-17 15:00:00,18.225757951148
+1971-04-17 16:00:00,11.4620127648346
+1971-04-17 17:00:00,17.9457873034742
+1971-04-17 18:00:00,15.8724824273846
+1971-04-17 19:00:00,11.5113971383083
+1971-04-17 20:00:00,29.9298631801589
+1971-04-17 21:00:00,8.31729996394672
+1971-04-17 22:00:00,9.79906720520707
+1971-04-17 23:00:00,8.52816473666268
+1971-04-18 00:00:00,13.3619190304796
+1971-04-18 01:00:00,9.56573791202074
+1971-04-18 02:00:00,16.5175676621127
+1971-04-18 03:00:00,15.5415864171422
+1971-04-18 04:00:00,12.1532789354479
+1971-04-18 05:00:00,13.3659736604269
+1971-04-18 06:00:00,13.2523577102399
+1971-04-18 07:00:00,16.5155929889655
+1971-04-18 08:00:00,20.1608700396598
+1971-04-18 09:00:00,18.8730956859597
+1971-04-18 10:00:00,10.4601381023951
+1971-04-18 11:00:00,17.2458199061919
+1971-04-18 12:00:00,18.5595931928281
+1971-04-18 13:00:00,10.2262784263225
+1971-04-18 14:00:00,12.2970252785926
+1971-04-18 15:00:00,14.4949888230149
+1971-04-18 16:00:00,8.77879029544518
+1971-04-18 17:00:00,14.6263847312991
+1971-04-18 18:00:00,2.99757715389264
+1971-04-18 19:00:00,11.9474886446582
+1971-04-18 20:00:00,10.4036256730595
+1971-04-18 21:00:00,14.4808777215639
+1971-04-18 22:00:00,12.5374451647525
+1971-04-18 23:00:00,18.5269342574451
+1971-04-19 00:00:00,4.28020923907673
+1971-04-19 01:00:00,9.62784846433544
+1971-04-19 02:00:00,11.8518289780689
+1971-04-19 03:00:00,20.2428878046994
+1971-04-19 04:00:00,12.2151200290406
+1971-04-19 05:00:00,26.1635386233988
+1971-04-19 06:00:00,8.76049134568935
+1971-04-19 07:00:00,8.73928390144705
+1971-04-19 08:00:00,12.2046793803129
+1971-04-19 09:00:00,11.7661370040479
+1971-04-19 10:00:00,8.92532196706545
+1971-04-19 11:00:00,12.699293147108
+1971-04-19 12:00:00,9.8794554537084
+1971-04-19 13:00:00,19.2672004012114
+1971-04-19 14:00:00,11.4636134014301
+1971-04-19 15:00:00,17.7745427425353
+1971-04-19 16:00:00,16.5128178274984
+1971-04-19 17:00:00,7.39278616782898
+1971-04-19 18:00:00,13.3379531351795
+1971-04-19 19:00:00,15.3162828555981
+1971-04-19 20:00:00,5.88336792287022
+1971-04-19 21:00:00,12.1575240532417
+1971-04-19 22:00:00,11.4606903416739
+1971-04-19 23:00:00,10.7489199181678
+1971-04-20 00:00:00,15.0955091183947
+1971-04-20 01:00:00,16.8465598741751
+1971-04-20 02:00:00,30.5607505253316
+1971-04-20 03:00:00,12.789978197713
+1971-04-20 04:00:00,14.449312196119
+1971-04-20 05:00:00,15.9295887072542
+1971-04-20 06:00:00,10.7328596576262
+1971-04-20 07:00:00,29.4633898839124
+1971-04-20 08:00:00,23.709473309784
+1971-04-20 09:00:00,11.2850519521212
+1971-04-20 10:00:00,9.03607143537479
+1971-04-20 11:00:00,17.2351785635025
+1971-04-20 12:00:00,11.4352161296772
+1971-04-20 13:00:00,24.4291362770242
+1971-04-20 14:00:00,5.96650682285609
+1971-04-20 15:00:00,18.0773410245775
+1971-04-20 16:00:00,13.2363342297555
+1971-04-20 17:00:00,17.5053705383883
+1971-04-20 18:00:00,14.7625925084955
+1971-04-20 19:00:00,9.77364997063137
+1971-04-20 20:00:00,11.8807892320383
+1971-04-20 21:00:00,16.9994810886222
+1971-04-20 22:00:00,9.5265310638354
+1971-04-20 23:00:00,13.4072476165939
+1971-04-21 00:00:00,11.9088484473345
+1971-04-21 01:00:00,10.9561891500173
+1971-04-21 02:00:00,14.2698045310363
+1971-04-21 03:00:00,18.362446332025
+1971-04-21 04:00:00,13.2648289324839
+1971-04-21 05:00:00,11.4280783310172
+1971-04-21 06:00:00,13.7055974171012
+1971-04-21 07:00:00,15.1393175424403
+1971-04-21 08:00:00,8.53441313086409
+1971-04-21 09:00:00,21.0170754458907
+1971-04-21 10:00:00,12.0727676013339
+1971-04-21 11:00:00,9.58479033620633
+1971-04-21 12:00:00,8.09897950980222
+1971-04-21 13:00:00,8.92897054532666
+1971-04-21 14:00:00,10.3118726884785
+1971-04-21 15:00:00,7.61501055391826
+1971-04-21 16:00:00,9.13401922599838
+1971-04-21 17:00:00,16.5236158731526
+1971-04-21 18:00:00,18.5067851471866
+1971-04-21 19:00:00,9.44088584959631
+1971-04-21 20:00:00,10.9470319575617
+1971-04-21 21:00:00,19.8952933698812
+1971-04-21 22:00:00,14.7165020387493
+1971-04-21 23:00:00,29.7785086152223
+1971-04-22 00:00:00,13.3641864250237
+1971-04-22 01:00:00,16.3281822765412
+1971-04-22 02:00:00,16.436661077064
+1971-04-22 03:00:00,9.66454202496085
+1971-04-22 04:00:00,9.38623425098805
+1971-04-22 05:00:00,8.25118203304909
+1971-04-22 06:00:00,11.0050539563736
+1971-04-22 07:00:00,18.1344702275582
+1971-04-22 08:00:00,11.8945356831037
+1971-04-22 09:00:00,23.6779237164382
+1971-04-22 10:00:00,14.695123770188
+1971-04-22 11:00:00,7.04847018267953
+1971-04-22 12:00:00,15.0948697905004
+1971-04-22 13:00:00,16.7309097336761
+1971-04-22 14:00:00,14.8260667729179
+1971-04-22 15:00:00,20.4043598537942
+1971-04-22 16:00:00,28.7614622975639
+1971-04-22 17:00:00,16.4153847439281
+1971-04-22 18:00:00,26.6783218530091
+1971-04-22 19:00:00,12.3528122194861
+1971-04-22 20:00:00,14.0499563060349
+1971-04-22 21:00:00,10.5462795067314
+1971-04-22 22:00:00,9.70033817759762
+1971-04-22 23:00:00,18.031711300319
+1971-04-23 00:00:00,16.1379234805408
+1971-04-23 01:00:00,9.97205125680655
+1971-04-23 02:00:00,10.7569129987347
+1971-04-23 03:00:00,13.8911301406561
+1971-04-23 04:00:00,14.8382478515513
+1971-04-23 05:00:00,19.0784286143157
+1971-04-23 06:00:00,11.1742390118514
+1971-04-23 07:00:00,13.8530170572285
+1971-04-23 08:00:00,11.8545215543544
+1971-04-23 09:00:00,11.9567914089706
+1971-04-23 10:00:00,9.78785535545712
+1971-04-23 11:00:00,18.3354231981776
+1971-04-23 12:00:00,17.5073798248084
+1971-04-23 13:00:00,18.1744656215708
+1971-04-23 14:00:00,8.5045985478412
+1971-04-23 15:00:00,16.2123093896301
+1971-04-23 16:00:00,5.22632483841116
+1971-04-23 17:00:00,11.728832463982
+1971-04-23 18:00:00,21.622067589885
+1971-04-23 19:00:00,19.0720781822661
+1971-04-23 20:00:00,14.5424566496341
+1971-04-23 21:00:00,19.4716547840261
+1971-04-23 22:00:00,5.93361434259099
+1971-04-23 23:00:00,11.0773577071518
+1971-04-24 00:00:00,7.66738168371714
+1971-04-24 01:00:00,10.8465473528797
+1971-04-24 02:00:00,6.70325721831591
+1971-04-24 03:00:00,12.1319784430835
+1971-04-24 04:00:00,11.8145882109784
+1971-04-24 05:00:00,12.5812329871248
+1971-04-24 06:00:00,29.2921082651988
+1971-04-24 07:00:00,22.520625074003
+1971-04-24 08:00:00,9.28938437158119
+1971-04-24 09:00:00,12.1541116469344
+1971-04-24 10:00:00,12.8867565852664
+1971-04-24 11:00:00,18.1059480507891
+1971-04-24 12:00:00,13.8198726279767
+1971-04-24 13:00:00,10.9394138846359
+1971-04-24 14:00:00,16.0906429136559
+1971-04-24 15:00:00,8.68836688930208
+1971-04-24 16:00:00,13.3323437246005
+1971-04-24 17:00:00,16.983641479782
+1971-04-24 18:00:00,10.7770625796399
+1971-04-24 19:00:00,15.0214577507226
+1971-04-24 20:00:00,10.047726155065
+1971-04-24 21:00:00,13.1657871763469
+1971-04-24 22:00:00,18.4609724872845
+1971-04-24 23:00:00,12.0842270160952
+1971-04-25 00:00:00,15.3255996172836
+1971-04-25 01:00:00,12.8163306146657
+1971-04-25 02:00:00,15.3097403355792
+1971-04-25 03:00:00,13.5383464103139
+1971-04-25 04:00:00,13.5361515379539
+1971-04-25 05:00:00,13.2596399038344
+1971-04-25 06:00:00,20.164437528312
+1971-04-25 07:00:00,14.4390092082532
+1971-04-25 08:00:00,12.3648869212638
+1971-04-25 09:00:00,11.0633332654514
+1971-04-25 10:00:00,6.34635229044683
+1971-04-25 11:00:00,13.5043993936014
+1971-04-25 12:00:00,15.7500959392069
+1971-04-25 13:00:00,15.8508722612065
+1971-04-25 14:00:00,12.355586809046
+1971-04-25 15:00:00,21.3727459314044
+1971-04-25 16:00:00,8.71277076321361
+1971-04-25 17:00:00,8.21833001416172
+1971-04-25 18:00:00,10.8429185685073
+1971-04-25 19:00:00,17.3852610812822
+1971-04-25 20:00:00,23.5715698564519
+1971-04-25 21:00:00,18.526781128231
+1971-04-25 22:00:00,15.9182279081991
+1971-04-25 23:00:00,13.2634802292657
+1971-04-26 00:00:00,12.2241523927036
+1971-04-26 01:00:00,12.9210281509075
+1971-04-26 02:00:00,10.4467571527613
+1971-04-26 03:00:00,20.7086317815933
+1971-04-26 04:00:00,15.8801523182343
+1971-04-26 05:00:00,11.7643378427929
+1971-04-26 06:00:00,12.8323389681544
+1971-04-26 07:00:00,16.232546379978
+1971-04-26 08:00:00,8.13976074022201
+1971-04-26 09:00:00,19.155107666062
+1971-04-26 10:00:00,13.4680349263984
+1971-04-26 11:00:00,11.6542299400169
+1971-04-26 12:00:00,14.926430573501
+1971-04-26 13:00:00,20.4984280702175
+1971-04-26 14:00:00,16.8928764765295
+1971-04-26 15:00:00,16.8684305470378
+1971-04-26 16:00:00,7.77750600600597
+1971-04-26 17:00:00,9.7884502164091
+1971-04-26 18:00:00,11.7470337322308
+1971-04-26 19:00:00,9.98513136352669
+1971-04-26 20:00:00,15.5945289128895
+1971-04-26 21:00:00,9.07963330286175
+1971-04-26 22:00:00,11.6123126389169
+1971-04-26 23:00:00,25.5859656464852
+1971-04-27 00:00:00,4.6673944106827
+1971-04-27 01:00:00,13.0714524278073
+1971-04-27 02:00:00,20.0749324840681
+1971-04-27 03:00:00,6.96792889773348
+1971-04-27 04:00:00,17.4194063820723
+1971-04-27 05:00:00,12.41461810987
+1971-04-27 06:00:00,10.0481088509652
+1971-04-27 07:00:00,17.0447411842148
+1971-04-27 08:00:00,10.7452110996801
+1971-04-27 09:00:00,17.7095967482107
+1971-04-27 10:00:00,11.1037780549401
+1971-04-27 11:00:00,8.78066111167119
+1971-04-27 12:00:00,16.3398846507028
+1971-04-27 13:00:00,21.2803485588976
+1971-04-27 14:00:00,14.5439702125285
+1971-04-27 15:00:00,13.2901712406464
+1971-04-27 16:00:00,12.3940081591901
+1971-04-27 17:00:00,19.2399692819986
+1971-04-27 18:00:00,11.0835122803938
+1971-04-27 19:00:00,11.6985690040491
+1971-04-27 20:00:00,12.2182756599179
+1971-04-27 21:00:00,12.9353589958612
+1971-04-27 22:00:00,8.43225732585317
+1971-04-27 23:00:00,19.9062115447847
+1971-04-28 00:00:00,16.4263156168497
+1971-04-28 01:00:00,11.1385591641004
+1971-04-28 02:00:00,16.3361806281578
+1971-04-28 03:00:00,23.5974325076438
+1971-04-28 04:00:00,18.537425526874
+1971-04-28 05:00:00,12.9233215008914
+1971-04-28 06:00:00,10.3615934111153
+1971-04-28 07:00:00,16.8328713494672
+1971-04-28 08:00:00,12.3109018424303
+1971-04-28 09:00:00,16.2314927853718
+1971-04-28 10:00:00,9.32142307538181
+1971-04-28 11:00:00,30.2735665131259
+1971-04-28 12:00:00,10.6028033281492
+1971-04-28 13:00:00,29.5815009863567
+1971-04-28 14:00:00,10.3355949367314
+1971-04-28 15:00:00,15.9303301185302
+1971-04-28 16:00:00,5.70700512249831
+1971-04-28 17:00:00,15.9212496062433
+1971-04-28 18:00:00,20.1573462266019
+1971-04-28 19:00:00,15.0242135484258
+1971-04-28 20:00:00,13.6066581782374
+1971-04-28 21:00:00,7.84038672312346
+1971-04-28 22:00:00,11.0380670923876
+1971-04-28 23:00:00,14.0521457708662
+1971-04-29 00:00:00,7.64200582625616
+1971-04-29 01:00:00,10.5783905930569
+1971-04-29 02:00:00,14.3787971001745
+1971-04-29 03:00:00,11.4859017616871
+1971-04-29 04:00:00,19.0759000186135
+1971-04-29 05:00:00,15.0362912352107
+1971-04-29 06:00:00,11.6798670572147
+1971-04-29 07:00:00,15.8661155380833
+1971-04-29 08:00:00,14.4142344647539
+1971-04-29 09:00:00,18.4817101681261
+1971-04-29 10:00:00,10.3764365230039
+1971-04-29 11:00:00,15.0424371416132
+1971-04-29 12:00:00,16.5619039338842
+1971-04-29 13:00:00,7.56942302968579
+1971-04-29 14:00:00,10.2662331459592
+1971-04-29 15:00:00,12.9712399467608
+1971-04-29 16:00:00,15.998074600986
+1971-04-29 17:00:00,11.7762141184223
+1971-04-29 18:00:00,7.33581430319247
+1971-04-29 19:00:00,14.5849693954523
+1971-04-29 20:00:00,17.3541130513905
+1971-04-29 21:00:00,20.3427584803416
+1971-04-29 22:00:00,17.193155058791
+1971-04-29 23:00:00,7.08952900940482
+1971-04-30 00:00:00,11.272620179968
+1971-04-30 01:00:00,24.9200987713369
+1971-04-30 02:00:00,15.7324196548755
+1971-04-30 03:00:00,20.2930609866671
+1971-04-30 04:00:00,8.9397015768654
+1971-04-30 05:00:00,7.03816259606092
+1971-04-30 06:00:00,13.5523233603607
+1971-04-30 07:00:00,24.7770054778488
+1971-04-30 08:00:00,11.1554988920311
+1971-04-30 09:00:00,14.516215788725
+1971-04-30 10:00:00,13.4808876257058
+1971-04-30 11:00:00,7.70720727495753
+1971-04-30 12:00:00,10.3957154468841
+1971-04-30 13:00:00,18.5990335243952
+1971-04-30 14:00:00,13.0879545069585
+1971-04-30 15:00:00,6.20357099188382
+1971-04-30 16:00:00,19.3208389087462
+1971-04-30 17:00:00,13.6141077405238
+1971-04-30 18:00:00,12.7821727179137
+1971-04-30 19:00:00,19.8782629010082
+1971-04-30 20:00:00,10.5604265781495
+1971-04-30 21:00:00,12.2580324030739
+1971-04-30 22:00:00,15.8291339187696
+1971-04-30 23:00:00,15.0339842016333
+1971-05-01 00:00:00,14.0251337472213
+1971-05-01 01:00:00,17.8022630902995
+1971-05-01 02:00:00,9.27432137173453
+1971-05-01 03:00:00,9.09448215681902
+1971-05-01 04:00:00,20.753355419681
+1971-05-01 05:00:00,10.1073061384735
+1971-05-01 06:00:00,9.5779556792309
+1971-05-01 07:00:00,10.8732899409564
+1971-05-01 08:00:00,15.6238284974012
+1971-05-01 09:00:00,8.87135609868121
+1971-05-01 10:00:00,12.1104793410814
+1971-05-01 11:00:00,13.5389809727086
+1971-05-01 12:00:00,20.963498259993
+1971-05-01 13:00:00,6.59534851778157
+1971-05-01 14:00:00,19.1267017261735
+1971-05-01 15:00:00,12.0540556517873
+1971-05-01 16:00:00,17.3677396474264
+1971-05-01 17:00:00,11.8651452879033
+1971-05-01 18:00:00,18.4756898426996
+1971-05-01 19:00:00,14.3615667335524
+1971-05-01 20:00:00,18.365654902449
+1971-05-01 21:00:00,19.8937620770348
+1971-05-01 22:00:00,23.5702484138526
+1971-05-01 23:00:00,7.77951693377926
+1971-05-02 00:00:00,12.2510047749891
+1971-05-02 01:00:00,8.20717721878914
+1971-05-02 02:00:00,12.4260098808368
+1971-05-02 03:00:00,9.20111779190693
+1971-05-02 04:00:00,11.3626117372405
+1971-05-02 05:00:00,17.7748472778984
+1971-05-02 06:00:00,11.2541879941058
+1971-05-02 07:00:00,10.9078684254871
+1971-05-02 08:00:00,8.52239359497059
+1971-05-02 09:00:00,20.9672319324785
+1971-05-02 10:00:00,8.06145572082883
+1971-05-02 11:00:00,16.0978464376987
+1971-05-02 12:00:00,13.8278594657951
+1971-05-02 13:00:00,17.916673438753
+1971-05-02 14:00:00,12.9523010199329
+1971-05-02 15:00:00,22.5562134019351
+1971-05-02 16:00:00,7.5622687081287
+1971-05-02 17:00:00,19.9966194159796
+1971-05-02 18:00:00,15.2214245126897
+1971-05-02 19:00:00,29.2709076281577
+1971-05-02 20:00:00,22.0444382723844
+1971-05-02 21:00:00,17.6137732687982
+1971-05-02 22:00:00,12.4945084251497
+1971-05-02 23:00:00,12.7373877438649
+1971-05-03 00:00:00,21.7645244862289
+1971-05-03 01:00:00,9.99549361668909
+1971-05-03 02:00:00,14.631766311382
+1971-05-03 03:00:00,17.1725397577659
+1971-05-03 04:00:00,16.3356704461418
+1971-05-03 05:00:00,14.0757694521791
+1971-05-03 06:00:00,12.2387244168045
+1971-05-03 07:00:00,18.5292038515205
+1971-05-03 08:00:00,6.05932393334487
+1971-05-03 09:00:00,10.4797391856306
+1971-05-03 10:00:00,11.7644702450383
+1971-05-03 11:00:00,22.9295706178534
+1971-05-03 12:00:00,8.82166440007694
+1971-05-03 13:00:00,15.9061845676501
+1971-05-03 14:00:00,23.1290402515005
+1971-05-03 15:00:00,10.6471941911078
+1971-05-03 16:00:00,17.6603409558661
+1971-05-03 17:00:00,8.10711253433422
+1971-05-03 18:00:00,21.8126744278797
+1971-05-03 19:00:00,10.4384214647002
+1971-05-03 20:00:00,25.3106989388295
+1971-05-03 21:00:00,12.2461931920795
+1971-05-03 22:00:00,13.2578200234164
+1971-05-03 23:00:00,29.3854962329597
+1971-05-04 00:00:00,16.5833188316519
+1971-05-04 01:00:00,15.4354960997525
+1971-05-04 02:00:00,9.49653875943623
+1971-05-04 03:00:00,15.2593675249887
+1971-05-04 04:00:00,10.4276241506114
+1971-05-04 05:00:00,12.885733778856
+1971-05-04 06:00:00,7.15491881881221
+1971-05-04 07:00:00,18.8707507809942
+1971-05-04 08:00:00,15.5993580264655
+1971-05-04 09:00:00,14.0919790314345
+1971-05-04 10:00:00,13.9632205120522
+1971-05-04 11:00:00,12.8219492244501
+1971-05-04 12:00:00,7.31539869141725
+1971-05-04 13:00:00,14.5430138233201
+1971-05-04 14:00:00,20.2008466075308
+1971-05-04 15:00:00,15.4498500685337
+1971-05-04 16:00:00,12.5031566137138
+1971-05-04 17:00:00,18.1008845697571
+1971-05-04 18:00:00,14.3835184686742
+1971-05-04 19:00:00,14.341990202798
+1971-05-04 20:00:00,16.5236038076646
+1971-05-04 21:00:00,14.47650294764
+1971-05-04 22:00:00,8.85939978166138
+1971-05-04 23:00:00,18.3445031988273
+1971-05-05 00:00:00,15.4404678026455
+1971-05-05 01:00:00,11.746272435164
+1971-05-05 02:00:00,12.6521204693174
+1971-05-05 03:00:00,16.4566904877544
+1971-05-05 04:00:00,17.0225071410687
+1971-05-05 05:00:00,20.0201024946297
+1971-05-05 06:00:00,17.4595469539004
+1971-05-05 07:00:00,14.386086602775
+1971-05-05 08:00:00,14.1158667523734
+1971-05-05 09:00:00,12.6260178795332
+1971-05-05 10:00:00,8.272388084942
+1971-05-05 11:00:00,10.9763287250147
+1971-05-05 12:00:00,16.5494995393195
+1971-05-05 13:00:00,16.7741437618675
+1971-05-05 14:00:00,14.4861381006983
+1971-05-05 15:00:00,7.5552554233389
+1971-05-05 16:00:00,16.3900641466782
+1971-05-05 17:00:00,12.441671501722
+1971-05-05 18:00:00,13.425751273903
+1971-05-05 19:00:00,10.5208704728392
+1971-05-05 20:00:00,28.6797777978651
+1971-05-05 21:00:00,7.30100313875827
+1971-05-05 22:00:00,9.03730512568267
+1971-05-05 23:00:00,13.1923092335294
+1971-05-06 00:00:00,9.8864015002018
+1971-05-06 01:00:00,16.1940095420945
+1971-05-06 02:00:00,15.7128584058621
+1971-05-06 03:00:00,19.6759709600049
+1971-05-06 04:00:00,10.2756030870985
+1971-05-06 05:00:00,23.3540800849203
+1971-05-06 06:00:00,15.5213709849429
+1971-05-06 07:00:00,18.7316966886301
+1971-05-06 08:00:00,24.1194711502996
+1971-05-06 09:00:00,16.7918131117005
+1971-05-06 10:00:00,13.9613683958018
+1971-05-06 11:00:00,23.5571798557871
+1971-05-06 12:00:00,8.7949366966351
+1971-05-06 13:00:00,8.59992456451054
+1971-05-06 14:00:00,14.0337333216641
+1971-05-06 15:00:00,26.4161384184052
+1971-05-06 16:00:00,13.3195526644808
+1971-05-06 17:00:00,20.7860985162329
+1971-05-06 18:00:00,14.3535689788029
+1971-05-06 19:00:00,9.39855404801486
+1971-05-06 20:00:00,13.8316739576768
+1971-05-06 21:00:00,24.9831329976456
+1971-05-06 22:00:00,9.223894785274
+1971-05-06 23:00:00,14.7460330061055
+1971-05-07 00:00:00,9.69439468509922
+1971-05-07 01:00:00,8.91828621657658
+1971-05-07 02:00:00,10.2738659225779
+1971-05-07 03:00:00,11.2058921194717
+1971-05-07 04:00:00,7.36250269499562
+1971-05-07 05:00:00,10.8149932492651
+1971-05-07 06:00:00,9.89954889199318
+1971-05-07 07:00:00,12.7707045439715
+1971-05-07 08:00:00,16.9748674805229
+1971-05-07 09:00:00,10.5062614883093
+1971-05-07 10:00:00,24.3840162038965
+1971-05-07 11:00:00,14.5752292024529
+1971-05-07 12:00:00,10.7077061900526
+1971-05-07 13:00:00,12.7805170471198
+1971-05-07 14:00:00,13.710166372804
+1971-05-07 15:00:00,14.8042840570535
+1971-05-07 16:00:00,11.437234298853
+1971-05-07 17:00:00,9.57064931784994
+1971-05-07 18:00:00,13.1870777798003
+1971-05-07 19:00:00,13.6928639066869
+1971-05-07 20:00:00,19.6412031148364
+1971-05-07 21:00:00,9.07637007473353
+1971-05-07 22:00:00,8.67579754170583
+1971-05-07 23:00:00,8.64048021093206
+1971-05-08 00:00:00,19.3400423376876
+1971-05-08 01:00:00,12.6430959293049
+1971-05-08 02:00:00,10.85107489745
+1971-05-08 03:00:00,23.4684894405147
+1971-05-08 04:00:00,12.4622009910938
+1971-05-08 05:00:00,11.8987420261812
+1971-05-08 06:00:00,15.3870239525735
+1971-05-08 07:00:00,16.1083946272987
+1971-05-08 08:00:00,11.4034976288542
+1971-05-08 09:00:00,14.4352987131794
+1971-05-08 10:00:00,16.4960016182522
+1971-05-08 11:00:00,9.72884305279769
+1971-05-08 12:00:00,18.1059905939742
+1971-05-08 13:00:00,9.9848923351721
+1971-05-08 14:00:00,12.4974970824118
+1971-05-08 15:00:00,24.3690943064125
+1971-05-08 16:00:00,16.1019304448063
+1971-05-08 17:00:00,10.9036531470649
+1971-05-08 18:00:00,10.1759011363787
+1971-05-08 19:00:00,15.0958688445361
+1971-05-08 20:00:00,12.3234057041756
+1971-05-08 21:00:00,19.5890044133131
+1971-05-08 22:00:00,12.9368881560009
+1971-05-08 23:00:00,12.8972894161287
+1971-05-09 00:00:00,13.6177899324106
+1971-05-09 01:00:00,15.6191472458273
+1971-05-09 02:00:00,14.1817293597578
+1971-05-09 03:00:00,17.8004318346607
+1971-05-09 04:00:00,18.2432881262075
+1971-05-09 05:00:00,10.0700389841566
+1971-05-09 06:00:00,20.2737243595179
+1971-05-09 07:00:00,20.1713464813282
+1971-05-09 08:00:00,15.3109154871567
+1971-05-09 09:00:00,21.932811155243
+1971-05-09 10:00:00,13.8154811739851
+1971-05-09 11:00:00,24.5089139301724
+1971-05-09 12:00:00,10.2254324763379
+1971-05-09 13:00:00,14.9388230400207
+1971-05-09 14:00:00,11.4770740040041
+1971-05-09 15:00:00,10.6323667223002
+1971-05-09 16:00:00,23.233454252778
+1971-05-09 17:00:00,10.9133384735111
+1971-05-09 18:00:00,21.8705527774669
+1971-05-09 19:00:00,13.3046274553358
+1971-05-09 20:00:00,7.560725772277
+1971-05-09 21:00:00,13.9574509245892
+1971-05-09 22:00:00,17.6388109480629
+1971-05-09 23:00:00,17.5775128371327
+1971-05-10 00:00:00,9.96702393114912
+1971-05-10 01:00:00,14.0451040565335
+1971-05-10 02:00:00,20.0807099316494
+1971-05-10 03:00:00,15.4090031423482
+1971-05-10 04:00:00,6.74777824746048
+1971-05-10 05:00:00,13.2655353189678
+1971-05-10 06:00:00,11.9778261885766
+1971-05-10 07:00:00,16.2132485028356
+1971-05-10 08:00:00,11.3483162186739
+1971-05-10 09:00:00,11.5219384349066
+1971-05-10 10:00:00,12.7530640601438
+1971-05-10 11:00:00,16.2247740762155
+1971-05-10 12:00:00,12.9637486969855
+1971-05-10 13:00:00,10.6650554369634
+1971-05-10 14:00:00,22.39642328135
+1971-05-10 15:00:00,14.0030356216465
+1971-05-10 16:00:00,15.8066912364644
+1971-05-10 17:00:00,6.03961081199536
+1971-05-10 18:00:00,17.7030292262331
+1971-05-10 19:00:00,18.0818558690965
+1971-05-10 20:00:00,10.5410406285495
+1971-05-10 21:00:00,13.0193186388047
+1971-05-10 22:00:00,6.89624429713134
+1971-05-10 23:00:00,17.5618991489949
+1971-05-11 00:00:00,8.52327219543183
+1971-05-11 01:00:00,18.5385052126699
+1971-05-11 02:00:00,21.6103857933192
+1971-05-11 03:00:00,20.8221218669394
+1971-05-11 04:00:00,14.6244117371379
+1971-05-11 05:00:00,12.4845434381222
+1971-05-11 06:00:00,14.8276142217585
+1971-05-11 07:00:00,11.1033264593711
+1971-05-11 08:00:00,16.3877236139598
+1971-05-11 09:00:00,11.5953463575115
+1971-05-11 10:00:00,13.7443218111583
+1971-05-11 11:00:00,13.3539482695778
+1971-05-11 12:00:00,13.9092508445333
+1971-05-11 13:00:00,12.0579625526006
+1971-05-11 14:00:00,8.79888860922166
+1971-05-11 15:00:00,18.9792638573082
+1971-05-11 16:00:00,15.5065488474175
+1971-05-11 17:00:00,13.9451686001445
+1971-05-11 18:00:00,15.9960035880667
+1971-05-11 19:00:00,22.4188654084167
+1971-05-11 20:00:00,18.0192839661289
+1971-05-11 21:00:00,17.7737324615139
+1971-05-11 22:00:00,12.9557368179079
+1971-05-11 23:00:00,16.1994296503728
+1971-05-12 00:00:00,15.3133193632978
+1971-05-12 01:00:00,25.9167406378437
+1971-05-12 02:00:00,17.2716459634597
+1971-05-12 03:00:00,18.2173132637506
+1971-05-12 04:00:00,9.81219587298494
+1971-05-12 05:00:00,10.4912099664908
+1971-05-12 06:00:00,12.2931858364998
+1971-05-12 07:00:00,23.3169846453249
+1971-05-12 08:00:00,26.987875146276
+1971-05-12 09:00:00,8.13647280718756
+1971-05-12 10:00:00,8.56887251407606
+1971-05-12 11:00:00,10.7092572651512
+1971-05-12 12:00:00,10.1198628202697
+1971-05-12 13:00:00,16.1869634136859
+1971-05-12 14:00:00,25.2022259219692
+1971-05-12 15:00:00,6.61017147050357
+1971-05-12 16:00:00,12.9849002600851
+1971-05-12 17:00:00,7.99768425278827
+1971-05-12 18:00:00,22.2242433610866
+1971-05-12 19:00:00,13.939098644564
+1971-05-12 20:00:00,7.83659527139589
+1971-05-12 21:00:00,10.007572373927
+1971-05-12 22:00:00,14.9653250647241
+1971-05-12 23:00:00,13.1604240699746
+1971-05-13 00:00:00,15.8375697579438
+1971-05-13 01:00:00,14.0481229435593
+1971-05-13 02:00:00,14.6981790719185
+1971-05-13 03:00:00,11.8379609407341
+1971-05-13 04:00:00,14.108442611016
+1971-05-13 05:00:00,14.3739981456598
+1971-05-13 06:00:00,10.8437388886685
+1971-05-13 07:00:00,15.2070858198015
+1971-05-13 08:00:00,19.0920589053635
+1971-05-13 09:00:00,9.29968229603183
+1971-05-13 10:00:00,15.0639584757378
+1971-05-13 11:00:00,13.6916286362572
+1971-05-13 12:00:00,12.9348713226673
+1971-05-13 13:00:00,10.0272809739652
+1971-05-13 14:00:00,12.5152305932183
+1971-05-13 15:00:00,11.6459967067175
+1971-05-13 16:00:00,17.0271584467702
+1971-05-13 17:00:00,12.3823622144131
+1971-05-13 18:00:00,14.3777840338744
+1971-05-13 19:00:00,16.2246852600236
+1971-05-13 20:00:00,12.0496835548693
+1971-05-13 21:00:00,15.2314292540027
+1971-05-13 22:00:00,8.65317831892885
+1971-05-13 23:00:00,17.9067327416717
+1971-05-14 00:00:00,14.3754730951037
+1971-05-14 01:00:00,16.885695152342
+1971-05-14 02:00:00,13.0588960801912
+1971-05-14 03:00:00,16.2429682286213
+1971-05-14 04:00:00,14.1420533588979
+1971-05-14 05:00:00,14.4852271997923
+1971-05-14 06:00:00,17.8732516617483
+1971-05-14 07:00:00,12.5815207427644
+1971-05-14 08:00:00,17.1151213426735
+1971-05-14 09:00:00,9.30816323814966
+1971-05-14 10:00:00,16.8812439441609
+1971-05-14 11:00:00,16.2333746572538
+1971-05-14 12:00:00,15.0648435424853
+1971-05-14 13:00:00,7.0786599407601
+1971-05-14 14:00:00,18.3517083208303
+1971-05-14 15:00:00,15.4302474601948
+1971-05-14 16:00:00,22.2128972581739
+1971-05-14 17:00:00,12.0367790855529
+1971-05-14 18:00:00,15.5238349176488
+1971-05-14 19:00:00,14.8716427652431
+1971-05-14 20:00:00,22.2302634740531
+1971-05-14 21:00:00,10.2394238333006
+1971-05-14 22:00:00,9.45573214557029
+1971-05-14 23:00:00,17.2041290568541
+1971-05-15 00:00:00,24.1747155649064
+1971-05-15 01:00:00,15.4353176632558
+1971-05-15 02:00:00,9.37905067091798
+1971-05-15 03:00:00,12.522119372878
+1971-05-15 04:00:00,14.0242713740108
+1971-05-15 05:00:00,21.4648848133313
+1971-05-15 06:00:00,22.830886499067
+1971-05-15 07:00:00,9.29932612201001
+1971-05-15 08:00:00,14.1503982044089
+1971-05-15 09:00:00,13.8699698962815
+1971-05-15 10:00:00,13.4158582919043
+1971-05-15 11:00:00,13.9507047275114
+1971-05-15 12:00:00,9.28089077298947
+1971-05-15 13:00:00,8.53206911730222
+1971-05-15 14:00:00,11.2014745387012
+1971-05-15 15:00:00,14.1245903283715
+1971-05-15 16:00:00,17.7962173396268
+1971-05-15 17:00:00,13.0943041706398
+1971-05-15 18:00:00,12.2513860652104
+1971-05-15 19:00:00,25.5755164840192
+1971-05-15 20:00:00,10.2795248673223
+1971-05-15 21:00:00,11.99345836582
+1971-05-15 22:00:00,6.77704931510529
+1971-05-15 23:00:00,14.1342564318593
+1971-05-16 00:00:00,9.52914697708685
+1971-05-16 01:00:00,16.1795892284255
+1971-05-16 02:00:00,18.3554144379506
+1971-05-16 03:00:00,12.8869551255181
+1971-05-16 04:00:00,14.6789402678045
+1971-05-16 05:00:00,11.0006301121149
+1971-05-16 06:00:00,12.1783840866512
+1971-05-16 07:00:00,18.1383769009134
+1971-05-16 08:00:00,10.2466345650037
+1971-05-16 09:00:00,12.8023590235904
+1971-05-16 10:00:00,22.8276653472605
+1971-05-16 11:00:00,18.6338878338355
+1971-05-16 12:00:00,6.32928386483948
+1971-05-16 13:00:00,12.3778410860926
+1971-05-16 14:00:00,10.4017250438227
+1971-05-16 15:00:00,8.3135465680164
+1971-05-16 16:00:00,15.5009455493195
+1971-05-16 17:00:00,13.4465250629633
+1971-05-16 18:00:00,12.7977528249782
+1971-05-16 19:00:00,10.8210850457521
+1971-05-16 20:00:00,17.4233720417768
+1971-05-16 21:00:00,18.0353135205303
+1971-05-16 22:00:00,12.6465888925253
+1971-05-16 23:00:00,16.9385454208092
+1971-05-17 00:00:00,12.6128866359542
+1971-05-17 01:00:00,22.6841609573968
+1971-05-17 02:00:00,8.73014016748258
+1971-05-17 03:00:00,11.8690838090058
+1971-05-17 04:00:00,12.399685729068
+1971-05-17 05:00:00,12.6084780538974
+1971-05-17 06:00:00,13.793667041797
+1971-05-17 07:00:00,16.482713708024
+1971-05-17 08:00:00,8.58889120443841
+1971-05-17 09:00:00,10.5646353460789
+1971-05-17 10:00:00,8.23174230796368
+1971-05-17 11:00:00,15.8551203595538
+1971-05-17 12:00:00,8.00186002931393
+1971-05-17 13:00:00,13.9722146356485
+1971-05-17 14:00:00,16.7786022374977
+1971-05-17 15:00:00,11.401295239589
+1971-05-17 16:00:00,12.0858875985143
+1971-05-17 17:00:00,10.8937546682137
+1971-05-17 18:00:00,15.5768023500678
+1971-05-17 19:00:00,11.8115142873262
+1971-05-17 20:00:00,18.7371832568812
+1971-05-17 21:00:00,16.0931370757345
+1971-05-17 22:00:00,19.0406572596405
+1971-05-17 23:00:00,16.3902388389433
+1971-05-18 00:00:00,13.1302399229538
+1971-05-18 01:00:00,20.8294324280159
+1971-05-18 02:00:00,18.4293254620024
+1971-05-18 03:00:00,7.75815670708595
+1971-05-18 04:00:00,23.8025035743187
+1971-05-18 05:00:00,10.7844634102973
+1971-05-18 06:00:00,12.2131588719254
+1971-05-18 07:00:00,22.5678791747284
+1971-05-18 08:00:00,9.81901760461569
+1971-05-18 09:00:00,12.3282567364695
+1971-05-18 10:00:00,13.5486754347421
+1971-05-18 11:00:00,16.0821238951284
+1971-05-18 12:00:00,20.6844684464331
+1971-05-18 13:00:00,17.0722403842821
+1971-05-18 14:00:00,20.9497180473848
+1971-05-18 15:00:00,7.94933963892257
+1971-05-18 16:00:00,12.8436176401088
+1971-05-18 17:00:00,20.2664586340749
+1971-05-18 18:00:00,21.8985977926122
+1971-05-18 19:00:00,13.4332794600607
+1971-05-18 20:00:00,18.196242985468
+1971-05-18 21:00:00,10.1196888233689
+1971-05-18 22:00:00,7.48750176000304
+1971-05-18 23:00:00,14.2825392739497
+1971-05-19 00:00:00,12.0451734110679
+1971-05-19 01:00:00,6.70885048015892
+1971-05-19 02:00:00,19.1159097316017
+1971-05-19 03:00:00,19.3153002413684
+1971-05-19 04:00:00,10.979343750503
+1971-05-19 05:00:00,21.7888157947602
+1971-05-19 06:00:00,17.2327367150872
+1971-05-19 07:00:00,8.6834353347795
+1971-05-19 08:00:00,4.79478737352736
+1971-05-19 09:00:00,16.7410570141775
+1971-05-19 10:00:00,8.88106392281252
+1971-05-19 11:00:00,10.8371417419221
+1971-05-19 12:00:00,12.7107501680137
+1971-05-19 13:00:00,12.1052435430147
+1971-05-19 14:00:00,12.6028791788723
+1971-05-19 15:00:00,11.3177430757732
+1971-05-19 16:00:00,10.1963729372245
+1971-05-19 17:00:00,8.87916317137482
+1971-05-19 18:00:00,9.0624795293715
+1971-05-19 19:00:00,7.46375066970448
+1971-05-19 20:00:00,21.268028535511
+1971-05-19 21:00:00,15.506469161066
+1971-05-19 22:00:00,11.6556566468428
+1971-05-19 23:00:00,15.8330323492812
+1971-05-20 00:00:00,13.9781617847937
+1971-05-20 01:00:00,13.2445112652132
+1971-05-20 02:00:00,15.6106626824614
+1971-05-20 03:00:00,13.6688049605225
+1971-05-20 04:00:00,9.32477435719172
+1971-05-20 05:00:00,17.4594783270447
+1971-05-20 06:00:00,16.2776137837187
+1971-05-20 07:00:00,18.5654534851598
+1971-05-20 08:00:00,17.8127691933531
+1971-05-20 09:00:00,13.1074680170782
+1971-05-20 10:00:00,13.0981609907083
+1971-05-20 11:00:00,10.9810310507101
+1971-05-20 12:00:00,9.31277506162448
+1971-05-20 13:00:00,5.7805882119312
+1971-05-20 14:00:00,12.675906555886
+1971-05-20 15:00:00,6.63221470693723
+1971-05-20 16:00:00,15.1333346780866
+1971-05-20 17:00:00,15.0504539955465
+1971-05-20 18:00:00,8.45892474560305
+1971-05-20 19:00:00,9.07045618615812
+1971-05-20 20:00:00,11.3497188049586
+1971-05-20 21:00:00,11.886415446515
+1971-05-20 22:00:00,14.9276528627857
+1971-05-20 23:00:00,14.4108806501184
+1971-05-21 00:00:00,15.9188140733759
+1971-05-21 01:00:00,9.9583663845662
+1971-05-21 02:00:00,8.1657642489616
+1971-05-21 03:00:00,16.9996617125832
+1971-05-21 04:00:00,11.745005348357
+1971-05-21 05:00:00,6.91718645395071
+1971-05-21 06:00:00,21.2394466944988
+1971-05-21 07:00:00,13.9144397193579
+1971-05-21 08:00:00,10.7964701297229
+1971-05-21 09:00:00,14.9875870364562
+1971-05-21 10:00:00,17.0368470227808
+1971-05-21 11:00:00,17.9246720702097
+1971-05-21 12:00:00,14.805941351135
+1971-05-21 13:00:00,24.2581083006051
+1971-05-21 14:00:00,17.1121333555169
+1971-05-21 15:00:00,12.3485234604282
+1971-05-21 16:00:00,9.35165715142009
+1971-05-21 17:00:00,25.002733250988
+1971-05-21 18:00:00,24.9620189261074
+1971-05-21 19:00:00,12.9290962208582
+1971-05-21 20:00:00,10.6825299011782
+1971-05-21 21:00:00,10.664383698405
+1971-05-21 22:00:00,17.5600563161378
+1971-05-21 23:00:00,10.2251745211561
+1971-05-22 00:00:00,15.5282980068965
+1971-05-22 01:00:00,12.8954530742156
+1971-05-22 02:00:00,14.5841536946445
+1971-05-22 03:00:00,21.8330729466021
+1971-05-22 04:00:00,10.4659177118809
+1971-05-22 05:00:00,10.3583378233891
+1971-05-22 06:00:00,12.3722312421099
+1971-05-22 07:00:00,12.7400167108851
+1971-05-22 08:00:00,13.9441523231265
+1971-05-22 09:00:00,15.4231929576836
+1971-05-22 10:00:00,12.5596524972999
+1971-05-22 11:00:00,16.1634945623881
+1971-05-22 12:00:00,18.9043964025016
+1971-05-22 13:00:00,9.87158152498322
+1971-05-22 14:00:00,10.8992417845848
+1971-05-22 15:00:00,14.613891114784
+1971-05-22 16:00:00,16.2642982966048
+1971-05-22 17:00:00,18.3556758967548
+1971-05-22 18:00:00,8.50957831449917
+1971-05-22 19:00:00,8.04282358653936
+1971-05-22 20:00:00,10.6554298477131
+1971-05-22 21:00:00,11.9425197109969
+1971-05-22 22:00:00,12.7226749912446
+1971-05-22 23:00:00,10.4710842318949
+1971-05-23 00:00:00,21.4439714410913
+1971-05-23 01:00:00,7.9167694694117
+1971-05-23 02:00:00,14.8388954190975
+1971-05-23 03:00:00,9.64567246098584
+1971-05-23 04:00:00,16.9734042208853
+1971-05-23 05:00:00,18.4781182294229
+1971-05-23 06:00:00,8.63708645802596
+1971-05-23 07:00:00,11.4020580229312
+1971-05-23 08:00:00,16.5484452661611
+1971-05-23 09:00:00,19.2009289007909
+1971-05-23 10:00:00,14.8014997183858
+1971-05-23 11:00:00,8.87505322115654
+1971-05-23 12:00:00,11.0550586212648
+1971-05-23 13:00:00,15.6954523076734
+1971-05-23 14:00:00,23.2599503997013
+1971-05-23 15:00:00,12.5437987829057
+1971-05-23 16:00:00,15.9885024998741
+1971-05-23 17:00:00,16.0877921532989
+1971-05-23 18:00:00,12.0125648644893
+1971-05-23 19:00:00,9.39963358839814
+1971-05-23 20:00:00,19.6597744680003
+1971-05-23 21:00:00,20.3320386735947
+1971-05-23 22:00:00,14.1838417402352
+1971-05-23 23:00:00,18.4136223635779
+1971-05-24 00:00:00,14.2322437592878
+1971-05-24 01:00:00,19.7065462480982
+1971-05-24 02:00:00,13.0091615028541
+1971-05-24 03:00:00,14.4070846362938
+1971-05-24 04:00:00,14.8617334503828
+1971-05-24 05:00:00,14.2122989448351
+1971-05-24 06:00:00,15.4983902592577
+1971-05-24 07:00:00,20.3451174608384
+1971-05-24 08:00:00,22.6949490446215
+1971-05-24 09:00:00,19.7395120495537
+1971-05-24 10:00:00,14.0408796214286
+1971-05-24 11:00:00,25.1513795995379
+1971-05-24 12:00:00,11.8186920768308
+1971-05-24 13:00:00,10.4498007350057
+1971-05-24 14:00:00,13.741177713002
+1971-05-24 15:00:00,13.2553440543442
+1971-05-24 16:00:00,11.0533381074319
+1971-05-24 17:00:00,12.2894374932125
+1971-05-24 18:00:00,25.3957046771102
+1971-05-24 19:00:00,7.20650778949712
+1971-05-24 20:00:00,12.8023405895614
+1971-05-24 21:00:00,12.2113670991065
+1971-05-24 22:00:00,8.05312767822558
+1971-05-24 23:00:00,15.4841486956305
+1971-05-25 00:00:00,11.4484274470177
+1971-05-25 01:00:00,12.8138148283978
+1971-05-25 02:00:00,13.6176593789227
+1971-05-25 03:00:00,10.2133415702494
+1971-05-25 04:00:00,11.3285993298672
+1971-05-25 05:00:00,13.9923601377708
+1971-05-25 06:00:00,19.1271263354453
+1971-05-25 07:00:00,6.62041897772463
+1971-05-25 08:00:00,15.2922755756945
+1971-05-25 09:00:00,19.3247473083316
+1971-05-25 10:00:00,13.4309119379287
+1971-05-25 11:00:00,15.0387704593023
+1971-05-25 12:00:00,13.992067573785
+1971-05-25 13:00:00,22.5675152111305
+1971-05-25 14:00:00,15.5297728819514
+1971-05-25 15:00:00,14.0941626271141
+1971-05-25 16:00:00,12.0380829163102
+1971-05-25 17:00:00,8.13864379951021
+1971-05-25 18:00:00,14.2674965840304
+1971-05-25 19:00:00,9.4314043410602
+1971-05-25 20:00:00,17.9904766888731
+1971-05-25 21:00:00,10.0438800648234
+1971-05-25 22:00:00,9.79348700847858
+1971-05-25 23:00:00,10.5373057518148
+1971-05-26 00:00:00,21.0646096199367
+1971-05-26 01:00:00,20.5179244098632
+1971-05-26 02:00:00,15.2043658209234
+1971-05-26 03:00:00,17.8665168099938
+1971-05-26 04:00:00,16.964991749696
+1971-05-26 05:00:00,12.9854969675197
+1971-05-26 06:00:00,11.3095762062199
+1971-05-26 07:00:00,12.3861046040895
+1971-05-26 08:00:00,20.6335680653258
+1971-05-26 09:00:00,14.5423098069322
+1971-05-26 10:00:00,14.0154645683792
+1971-05-26 11:00:00,9.75060819877139
+1971-05-26 12:00:00,15.9284931142709
+1971-05-26 13:00:00,7.47961499761006
+1971-05-26 14:00:00,14.1845330343726
+1971-05-26 15:00:00,15.7693831328209
+1971-05-26 16:00:00,11.2637696229375
+1971-05-26 17:00:00,14.0846413075759
+1971-05-26 18:00:00,10.0591622829041
+1971-05-26 19:00:00,13.7983977465382
+1971-05-26 20:00:00,12.7739774790799
+1971-05-26 21:00:00,14.2388121607872
+1971-05-26 22:00:00,24.1660195120269
+1971-05-26 23:00:00,15.0780581059534
+1971-05-27 00:00:00,11.853723585056
+1971-05-27 01:00:00,11.5790298749424
+1971-05-27 02:00:00,6.05576358886935
+1971-05-27 03:00:00,14.9980285099319
+1971-05-27 04:00:00,8.61539597239371
+1971-05-27 05:00:00,19.2294034112756
+1971-05-27 06:00:00,9.0278113328357
+1971-05-27 07:00:00,10.5360861046059
+1971-05-27 08:00:00,13.1585762944824
+1971-05-27 09:00:00,14.7764011494272
+1971-05-27 10:00:00,13.7019256034614
+1971-05-27 11:00:00,12.4829865959998
+1971-05-27 12:00:00,21.8716178283949
+1971-05-27 13:00:00,16.7201977475359
+1971-05-27 14:00:00,12.1122361522035
+1971-05-27 15:00:00,18.2586669644773
+1971-05-27 16:00:00,10.4672362564993
+1971-05-27 17:00:00,14.7090239856117
+1971-05-27 18:00:00,10.0179397382705
+1971-05-27 19:00:00,14.5999381977779
+1971-05-27 20:00:00,10.1514657444489
+1971-05-27 21:00:00,14.0825340092466
+1971-05-27 22:00:00,21.4330854827012
+1971-05-27 23:00:00,9.9121717652236
+1971-05-28 00:00:00,13.3692979960975
+1971-05-28 01:00:00,8.73734985341309
+1971-05-28 02:00:00,11.9891013869038
+1971-05-28 03:00:00,11.2239356174737
+1971-05-28 04:00:00,13.6669696581333
+1971-05-28 05:00:00,24.3339777282905
+1971-05-28 06:00:00,16.7255476872903
+1971-05-28 07:00:00,18.1030240455667
+1971-05-28 08:00:00,11.0238494592462
+1971-05-28 09:00:00,8.9094089321151
+1971-05-28 10:00:00,15.6611884176607
+1971-05-28 11:00:00,14.9222400051878
+1971-05-28 12:00:00,19.0558752594759
+1971-05-28 13:00:00,16.3109284182594
+1971-05-28 14:00:00,12.9876621187669
+1971-05-28 15:00:00,23.6131695032788
+1971-05-28 16:00:00,22.6560760029702
+1971-05-28 17:00:00,6.73361573327726
+1971-05-28 18:00:00,16.6238944607123
+1971-05-28 19:00:00,13.557222228918
+1971-05-28 20:00:00,6.6052247989644
+1971-05-28 21:00:00,11.1753023588811
+1971-05-28 22:00:00,21.2933455608101
+1971-05-28 23:00:00,6.98060041598559
+1971-05-29 00:00:00,11.8879949378473
+1971-05-29 01:00:00,11.9679994022166
+1971-05-29 02:00:00,17.4310416853967
+1971-05-29 03:00:00,14.2302520860759
+1971-05-29 04:00:00,15.4908458999379
+1971-05-29 05:00:00,11.7598793527422
+1971-05-29 06:00:00,11.5677099798023
+1971-05-29 07:00:00,13.3558968092262
+1971-05-29 08:00:00,13.0941293778358
+1971-05-29 09:00:00,14.4499149382973
+1971-05-29 10:00:00,10.1144597399513
+1971-05-29 11:00:00,10.1871440393706
+1971-05-29 12:00:00,10.7716029952151
+1971-05-29 13:00:00,18.7815653379373
+1971-05-29 14:00:00,15.0628173808075
+1971-05-29 15:00:00,13.1622126344155
+1971-05-29 16:00:00,15.2530388321898
+1971-05-29 17:00:00,11.0604505130851
+1971-05-29 18:00:00,17.8437353386975
+1971-05-29 19:00:00,5.47549475229877
+1971-05-29 20:00:00,13.9861685734246
+1971-05-29 21:00:00,9.23706556951787
+1971-05-29 22:00:00,7.95681517619093
+1971-05-29 23:00:00,13.9606798536076
+1971-05-30 00:00:00,10.2612863737004
+1971-05-30 01:00:00,15.4621402528641
+1971-05-30 02:00:00,15.9594262626962
+1971-05-30 03:00:00,13.1579725685091
+1971-05-30 04:00:00,11.28773047448
+1971-05-30 05:00:00,23.3722072510996
+1971-05-30 06:00:00,7.56339735304252
+1971-05-30 07:00:00,11.8644262079258
+1971-05-30 08:00:00,13.2515653612304
+1971-05-30 09:00:00,6.38158584989711
+1971-05-30 10:00:00,13.0828825276977
+1971-05-30 11:00:00,17.8277526682691
+1971-05-30 12:00:00,12.2588659322999
+1971-05-30 13:00:00,12.2232549163601
+1971-05-30 14:00:00,14.0863703691396
+1971-05-30 15:00:00,9.50964097544739
+1971-05-30 16:00:00,11.304608547648
+1971-05-30 17:00:00,14.0224958013745
+1971-05-30 18:00:00,19.6610646140484
+1971-05-30 19:00:00,15.0177594965515
+1971-05-30 20:00:00,11.9314172802513
+1971-05-30 21:00:00,11.2758580677753
+1971-05-30 22:00:00,14.4660320647747
+1971-05-30 23:00:00,14.2243857450289
+1971-05-31 00:00:00,17.1433750172312
+1971-05-31 01:00:00,12.9926305941182
+1971-05-31 02:00:00,17.7187828756261
+1971-05-31 03:00:00,8.1464188683444
+1971-05-31 04:00:00,16.0607806644451
+1971-05-31 05:00:00,13.4018911844233
+1971-05-31 06:00:00,17.8896722447883
+1971-05-31 07:00:00,15.1728519740036
+1971-05-31 08:00:00,14.0838130368139
+1971-05-31 09:00:00,18.732482833105
+1971-05-31 10:00:00,7.02964715753703
+1971-05-31 11:00:00,7.58823749872708
+1971-05-31 12:00:00,10.2187751765831
+1971-05-31 13:00:00,15.5166838782853
+1971-05-31 14:00:00,14.1575984430192
+1971-05-31 15:00:00,15.3841158854759
+1971-05-31 16:00:00,18.5691323600913
+1971-05-31 17:00:00,8.60875500501253
+1971-05-31 18:00:00,12.9148413851972
+1971-05-31 19:00:00,22.545617499904
+1971-05-31 20:00:00,11.9063029550017
+1971-05-31 21:00:00,8.38999606074288
+1971-05-31 22:00:00,10.8686416351988
+1971-05-31 23:00:00,12.1116458538428
+1971-06-01 00:00:00,14.5790845306121
+1971-06-01 01:00:00,23.0723961611606
+1971-06-01 02:00:00,24.3287199859155
+1971-06-01 03:00:00,19.5741094773673
+1971-06-01 04:00:00,29.6212332316432
+1971-06-01 05:00:00,10.8318148317014
+1971-06-01 06:00:00,13.6560149133633
+1971-06-01 07:00:00,10.6556565385693
+1971-06-01 08:00:00,15.5841532966629
+1971-06-01 09:00:00,16.5590921126694
+1971-06-01 10:00:00,10.2573384268646
+1971-06-01 11:00:00,11.681531494939
+1971-06-01 12:00:00,18.71500308238
+1971-06-01 13:00:00,14.0273021147282
+1971-06-01 14:00:00,11.5209386946745
+1971-06-01 15:00:00,16.191340449929
+1971-06-01 16:00:00,9.53952114389245
+1971-06-01 17:00:00,8.81701132723524
+1971-06-01 18:00:00,25.3831896929229
+1971-06-01 19:00:00,11.7802367230678
+1971-06-01 20:00:00,6.9463712932602
+1971-06-01 21:00:00,12.8479444478412
+1971-06-01 22:00:00,10.9136766613996
+1971-06-01 23:00:00,12.3307862111572
+1971-06-02 00:00:00,11.4787430723763
+1971-06-02 01:00:00,10.2741102937612
+1971-06-02 02:00:00,17.9051074946494
+1971-06-02 03:00:00,19.2934152541993
+1971-06-02 04:00:00,17.6232334254451
+1971-06-02 05:00:00,7.7967973232554
+1971-06-02 06:00:00,11.9523795440547
+1971-06-02 07:00:00,12.8143676681247
+1971-06-02 08:00:00,16.4933149299379
+1971-06-02 09:00:00,10.2842535516221
+1971-06-02 10:00:00,22.6245457350559
+1971-06-02 11:00:00,9.99894959625932
+1971-06-02 12:00:00,12.5205362580792
+1971-06-02 13:00:00,9.94390961127548
+1971-06-02 14:00:00,9.04144471338389
+1971-06-02 15:00:00,24.7393239621689
+1971-06-02 16:00:00,21.4264605891208
+1971-06-02 17:00:00,6.5219278759964
+1971-06-02 18:00:00,22.3054653225843
+1971-06-02 19:00:00,11.7729138226882
+1971-06-02 20:00:00,10.0289914701938
+1971-06-02 21:00:00,15.2219592781306
+1971-06-02 22:00:00,8.00411534397881
+1971-06-02 23:00:00,25.7652479441148
+1971-06-03 00:00:00,11.1180318081039
+1971-06-03 01:00:00,18.5614460122269
+1971-06-03 02:00:00,17.5804665648919
+1971-06-03 03:00:00,13.6565342906268
+1971-06-03 04:00:00,7.15232737312702
+1971-06-03 05:00:00,13.5019729813495
+1971-06-03 06:00:00,18.5556101189512
+1971-06-03 07:00:00,16.3659630575902
+1971-06-03 08:00:00,18.1581088807561
+1971-06-03 09:00:00,16.5830440383506
+1971-06-03 10:00:00,11.8553467525797
+1971-06-03 11:00:00,14.7690709447037
+1971-06-03 12:00:00,13.0467520075282
+1971-06-03 13:00:00,11.4916246883498
+1971-06-03 14:00:00,21.3041564732269
+1971-06-03 15:00:00,11.9872851985984
+1971-06-03 16:00:00,7.71562264057429
+1971-06-03 17:00:00,18.7288896783685
+1971-06-03 18:00:00,17.7075920778769
+1971-06-03 19:00:00,7.32452851530017
+1971-06-03 20:00:00,9.31192044622666
+1971-06-03 21:00:00,19.7693709109417
+1971-06-03 22:00:00,11.3233542395919
+1971-06-03 23:00:00,12.3857531204224
+1971-06-04 00:00:00,14.6374272795172
+1971-06-04 01:00:00,11.8459855353985
+1971-06-04 02:00:00,14.6855951243553
+1971-06-04 03:00:00,17.322204586682
+1971-06-04 04:00:00,18.2704375013927
+1971-06-04 05:00:00,15.9844181079988
+1971-06-04 06:00:00,27.6433395247562
+1971-06-04 07:00:00,17.4815078330222
+1971-06-04 08:00:00,16.4988108257896
+1971-06-04 09:00:00,18.5732082179306
+1971-06-04 10:00:00,17.5040863466664
+1971-06-04 11:00:00,15.6379998466974
+1971-06-04 12:00:00,16.337230215509
+1971-06-04 13:00:00,14.0875637234113
+1971-06-04 14:00:00,17.9159358506471
+1971-06-04 15:00:00,20.6617186965274
+1971-06-04 16:00:00,12.7535096976045
+1971-06-04 17:00:00,17.9340032547586
+1971-06-04 18:00:00,25.9141399982535
+1971-06-04 19:00:00,15.9305191347047
+1971-06-04 20:00:00,17.8372642982271
+1971-06-04 21:00:00,8.71928521336521
+1971-06-04 22:00:00,12.2260196246437
+1971-06-04 23:00:00,7.00172496253769
+1971-06-05 00:00:00,8.22190819142449
+1971-06-05 01:00:00,25.089357802798
+1971-06-05 02:00:00,19.3533779902441
+1971-06-05 03:00:00,11.6545049422413
+1971-06-05 04:00:00,21.7620400871309
+1971-06-05 05:00:00,16.3543502156738
+1971-06-05 06:00:00,20.2521460903672
+1971-06-05 07:00:00,22.4173119653426
+1971-06-05 08:00:00,19.3498753481056
+1971-06-05 09:00:00,8.28282959835369
+1971-06-05 10:00:00,10.0835343216699
+1971-06-05 11:00:00,11.4272852943897
+1971-06-05 12:00:00,15.7084808748692
+1971-06-05 13:00:00,13.6770800143286
+1971-06-05 14:00:00,12.6950268557577
+1971-06-05 15:00:00,17.7197241467015
+1971-06-05 16:00:00,11.3019037910518
+1971-06-05 17:00:00,9.06359028337682
+1971-06-05 18:00:00,11.3778291506528
+1971-06-05 19:00:00,9.74781104988903
+1971-06-05 20:00:00,11.6453458760949
+1971-06-05 21:00:00,14.5232491139604
+1971-06-05 22:00:00,23.3564057742097
+1971-06-05 23:00:00,12.6004824968038
+1971-06-06 00:00:00,7.50326442315322
+1971-06-06 01:00:00,16.1791537090846
+1971-06-06 02:00:00,15.2891035690059
+1971-06-06 03:00:00,17.2608736220991
+1971-06-06 04:00:00,11.8180523322353
+1971-06-06 05:00:00,18.4735017092618
+1971-06-06 06:00:00,9.52959524305147
+1971-06-06 07:00:00,13.1846997463826
+1971-06-06 08:00:00,15.8166581039771
+1971-06-06 09:00:00,15.2162508158332
+1971-06-06 10:00:00,12.2534448897356
+1971-06-06 11:00:00,11.5125915783557
+1971-06-06 12:00:00,11.2335607267262
+1971-06-06 13:00:00,15.104173690356
+1971-06-06 14:00:00,16.5178626080146
+1971-06-06 15:00:00,13.2543111596948
+1971-06-06 16:00:00,9.39641876022392
+1971-06-06 17:00:00,8.14596667898843
+1971-06-06 18:00:00,14.7602993002755
+1971-06-06 19:00:00,11.9586242884093
+1971-06-06 20:00:00,19.0078654177556
+1971-06-06 21:00:00,12.1740542957539
+1971-06-06 22:00:00,11.6774561167298
+1971-06-06 23:00:00,9.01639850058951
+1971-06-07 00:00:00,19.9766648274976
+1971-06-07 01:00:00,8.75856187215753
+1971-06-07 02:00:00,15.9703445296896
+1971-06-07 03:00:00,5.59083622372995
+1971-06-07 04:00:00,14.9923932796597
+1971-06-07 05:00:00,9.86677720410876
+1971-06-07 06:00:00,20.7118550505998
+1971-06-07 07:00:00,11.8454817140761
+1971-06-07 08:00:00,16.3417861154467
+1971-06-07 09:00:00,10.2025511432684
+1971-06-07 10:00:00,7.90280836107561
+1971-06-07 11:00:00,22.1892035912961
+1971-06-07 12:00:00,11.159044207754
+1971-06-07 13:00:00,20.1924307224673
+1971-06-07 14:00:00,11.9681308668656
+1971-06-07 15:00:00,9.19815257979361
+1971-06-07 16:00:00,14.4295777430661
+1971-06-07 17:00:00,9.33797073679543
+1971-06-07 18:00:00,12.7823786591484
+1971-06-07 19:00:00,10.2718696123848
+1971-06-07 20:00:00,9.59617180650032
+1971-06-07 21:00:00,15.156397079272
+1971-06-07 22:00:00,16.8929746965364
+1971-06-07 23:00:00,13.6920553809921
+1971-06-08 00:00:00,17.3568165591313
+1971-06-08 01:00:00,15.5947075798247
+1971-06-08 02:00:00,20.8303253865066
+1971-06-08 03:00:00,11.740196433741
+1971-06-08 04:00:00,10.1042713766985
+1971-06-08 05:00:00,8.34623986897346
+1971-06-08 06:00:00,14.3734462353226
+1971-06-08 07:00:00,10.8310332895018
+1971-06-08 08:00:00,8.58573337803004
+1971-06-08 09:00:00,14.6942233072322
+1971-06-08 10:00:00,9.07756510752813
+1971-06-08 11:00:00,19.4194193860465
+1971-06-08 12:00:00,13.6665180845884
+1971-06-08 13:00:00,12.4464529778393
+1971-06-08 14:00:00,12.7272435839381
+1971-06-08 15:00:00,26.0533065981276
+1971-06-08 16:00:00,18.2684576662386
+1971-06-08 17:00:00,25.9198830742731
+1971-06-08 18:00:00,11.5440005602063
+1971-06-08 19:00:00,10.5721743361752
+1971-06-08 20:00:00,13.4976111211311
+1971-06-08 21:00:00,10.3235002385901
+1971-06-08 22:00:00,20.0311042423395
+1971-06-08 23:00:00,23.9031837214122
+1971-06-09 00:00:00,6.80601554813345
+1971-06-09 01:00:00,9.99377051488433
+1971-06-09 02:00:00,9.17120504367865
+1971-06-09 03:00:00,10.4534909975515
+1971-06-09 04:00:00,14.0183689909997
+1971-06-09 05:00:00,7.88690616377017
+1971-06-09 06:00:00,12.8786860319515
+1971-06-09 07:00:00,16.5481071081167
+1971-06-09 08:00:00,10.5170637468981
+1971-06-09 09:00:00,19.5894455631473
+1971-06-09 10:00:00,12.8242075344038
+1971-06-09 11:00:00,16.1592908298116
+1971-06-09 12:00:00,14.4410263297301
+1971-06-09 13:00:00,6.17434404160458
+1971-06-09 14:00:00,10.4559902364941
+1971-06-09 15:00:00,29.1318699367471
+1971-06-09 16:00:00,9.71825340772671
+1971-06-09 17:00:00,8.53510320490798
+1971-06-09 18:00:00,9.99650912810002
+1971-06-09 19:00:00,15.7161532678915
+1971-06-09 20:00:00,11.4349122143584
+1971-06-09 21:00:00,16.2593266186595
+1971-06-09 22:00:00,14.1715846655069
+1971-06-09 23:00:00,16.3846514187611
+1971-06-10 00:00:00,8.47184154894836
+1971-06-10 01:00:00,12.2894911099424
+1971-06-10 02:00:00,14.9906204967562
+1971-06-10 03:00:00,13.5900899487356
+1971-06-10 04:00:00,15.7566322073389
+1971-06-10 05:00:00,15.6030772165514
+1971-06-10 06:00:00,20.7053174366228
+1971-06-10 07:00:00,8.71737632488717
+1971-06-10 08:00:00,17.7773284067978
+1971-06-10 09:00:00,13.7381766142723
+1971-06-10 10:00:00,12.5423471487956
+1971-06-10 11:00:00,10.692768436675
+1971-06-10 12:00:00,14.7793399646777
+1971-06-10 13:00:00,10.4444913431761
+1971-06-10 14:00:00,12.6123599530477
+1971-06-10 15:00:00,8.85661146846721
+1971-06-10 16:00:00,9.17592331297026
+1971-06-10 17:00:00,8.71376609606037
+1971-06-10 18:00:00,29.3002999418695
+1971-06-10 19:00:00,16.0258952355514
+1971-06-10 20:00:00,8.39005562769886
+1971-06-10 21:00:00,14.644826865256
+1971-06-10 22:00:00,17.9090158706713
+1971-06-10 23:00:00,14.6797057964264
+1971-06-11 00:00:00,16.3557908973383
+1971-06-11 01:00:00,7.98663424778842
+1971-06-11 02:00:00,16.1526254597133
+1971-06-11 03:00:00,10.6610395299755
+1971-06-11 04:00:00,7.73900463242742
+1971-06-11 05:00:00,10.6543220407289
+1971-06-11 06:00:00,14.3662784659824
+1971-06-11 07:00:00,14.4814585063603
+1971-06-11 08:00:00,27.5528059749719
+1971-06-11 09:00:00,18.9859252282689
+1971-06-11 10:00:00,11.028545288713
+1971-06-11 11:00:00,10.8755815994142
+1971-06-11 12:00:00,16.103372125629
+1971-06-11 13:00:00,8.79447277469442
+1971-06-11 14:00:00,14.4811200219039
+1971-06-11 15:00:00,27.2383870122775
+1971-06-11 16:00:00,11.4625778970948
+1971-06-11 17:00:00,10.7123832971963
+1971-06-11 18:00:00,13.0480390977365
+1971-06-11 19:00:00,16.4369333419587
+1971-06-11 20:00:00,17.4241521625586
+1971-06-11 21:00:00,14.4502432272146
+1971-06-11 22:00:00,14.7331970382287
+1971-06-11 23:00:00,7.60120055965437
+1971-06-12 00:00:00,11.6613561423389
+1971-06-12 01:00:00,12.5040270783994
+1971-06-12 02:00:00,8.54976977774618
+1971-06-12 03:00:00,10.3169728238288
+1971-06-12 04:00:00,5.91129123323084
+1971-06-12 05:00:00,10.9034208462907
+1971-06-12 06:00:00,13.6331264429514
+1971-06-12 07:00:00,14.0291262688123
+1971-06-12 08:00:00,14.7558649284465
+1971-06-12 09:00:00,19.4036005348256
+1971-06-12 10:00:00,13.7649460455284
+1971-06-12 11:00:00,16.2440815205811
+1971-06-12 12:00:00,7.15389238329796
+1971-06-12 13:00:00,10.7185340045274
+1971-06-12 14:00:00,10.9402181105097
+1971-06-12 15:00:00,13.6929182144342
+1971-06-12 16:00:00,12.8969849111128
+1971-06-12 17:00:00,13.958248835568
+1971-06-12 18:00:00,7.61362573162183
+1971-06-12 19:00:00,16.2981391687106
+1971-06-12 20:00:00,24.9926367249712
+1971-06-12 21:00:00,6.68309825112576
+1971-06-12 22:00:00,15.2923406531059
+1971-06-12 23:00:00,15.8280234511776
+1971-06-13 00:00:00,13.7474059325371
+1971-06-13 01:00:00,12.4936057628243
+1971-06-13 02:00:00,6.14362932887141
+1971-06-13 03:00:00,14.5311409389735
+1971-06-13 04:00:00,24.986117427087
+1971-06-13 05:00:00,9.53534303837114
+1971-06-13 06:00:00,9.77352748437251
+1971-06-13 07:00:00,8.93235249634358
+1971-06-13 08:00:00,8.53321840171138
+1971-06-13 09:00:00,6.21062678250016
+1971-06-13 10:00:00,10.2988155967778
+1971-06-13 11:00:00,15.8930465522522
+1971-06-13 12:00:00,8.65629457191452
+1971-06-13 13:00:00,11.0710661386735
+1971-06-13 14:00:00,12.3782834576116
+1971-06-13 15:00:00,7.22685377888475
+1971-06-13 16:00:00,8.54571662085494
+1971-06-13 17:00:00,13.7710016853437
+1971-06-13 18:00:00,9.59611906600852
+1971-06-13 19:00:00,23.5188594794174
+1971-06-13 20:00:00,17.0560034204748
+1971-06-13 21:00:00,15.6041126691454
+1971-06-13 22:00:00,7.36009727309929
+1971-06-13 23:00:00,10.4748119078478
+1971-06-14 00:00:00,14.1191527567889
+1971-06-14 01:00:00,9.78678992797775
+1971-06-14 02:00:00,12.8674744341671
+1971-06-14 03:00:00,14.7422753822076
+1971-06-14 04:00:00,14.9214646213183
+1971-06-14 05:00:00,9.9299277737363
+1971-06-14 06:00:00,6.79206271292334
+1971-06-14 07:00:00,17.3420461562496
+1971-06-14 08:00:00,8.71255733674963
+1971-06-14 09:00:00,17.2271175649489
+1971-06-14 10:00:00,12.171903137313
+1971-06-14 11:00:00,21.3794263719798
+1971-06-14 12:00:00,12.9801909321479
+1971-06-14 13:00:00,12.106158973142
+1971-06-14 14:00:00,17.4600953254544
+1971-06-14 15:00:00,6.79877652775205
+1971-06-14 16:00:00,18.1684834029777
+1971-06-14 17:00:00,14.4122920870262
+1971-06-14 18:00:00,14.5445457043633
+1971-06-14 19:00:00,9.33858669258162
+1971-06-14 20:00:00,9.70313369837145
+1971-06-14 21:00:00,13.8394689238798
+1971-06-14 22:00:00,15.4094649744129
+1971-06-14 23:00:00,23.9469430489727
+1971-06-15 00:00:00,20.4819553483917
+1971-06-15 01:00:00,14.1778670791456
+1971-06-15 02:00:00,21.8651968378663
+1971-06-15 03:00:00,10.609863604467
+1971-06-15 04:00:00,18.0478317698851
+1971-06-15 05:00:00,12.4570860017939
+1971-06-15 06:00:00,16.7051822265746
+1971-06-15 07:00:00,17.6317648156953
+1971-06-15 08:00:00,18.6910225713789
+1971-06-15 09:00:00,19.9462331839045
+1971-06-15 10:00:00,15.6117777670932
+1971-06-15 11:00:00,10.4136722462799
+1971-06-15 12:00:00,19.3634023481485
+1971-06-15 13:00:00,14.4159587749714
+1971-06-15 14:00:00,15.9811166425374
+1971-06-15 15:00:00,17.0306846824473
+1971-06-15 16:00:00,5.23545877554858
+1971-06-15 17:00:00,14.1681760370903
+1971-06-15 18:00:00,17.1242250879047
+1971-06-15 19:00:00,14.9070867293475
+1971-06-15 20:00:00,9.98617987789316
+1971-06-15 21:00:00,19.3312440254942
+1971-06-15 22:00:00,19.3269505892435
+1971-06-15 23:00:00,9.2000204123159
+1971-06-16 00:00:00,12.5083197618224
+1971-06-16 01:00:00,13.1209429308881
+1971-06-16 02:00:00,22.6544701820973
+1971-06-16 03:00:00,15.8056770783167
+1971-06-16 04:00:00,18.637289996242
+1971-06-16 05:00:00,15.8762133368696
+1971-06-16 06:00:00,16.0800455428011
+1971-06-16 07:00:00,15.8990172257384
+1971-06-16 08:00:00,14.6418703458463
+1971-06-16 09:00:00,11.7616466130869
+1971-06-16 10:00:00,11.0613531200993
+1971-06-16 11:00:00,8.86188199699551
+1971-06-16 12:00:00,14.3682249986327
+1971-06-16 13:00:00,16.9449583016431
+1971-06-16 14:00:00,10.4708495907184
+1971-06-16 15:00:00,14.2810027227115
+1971-06-16 16:00:00,13.8449499213039
+1971-06-16 17:00:00,19.7560646643664
+1971-06-16 18:00:00,17.192857490081
+1971-06-16 19:00:00,14.610095234276
+1971-06-16 20:00:00,8.53810506313135
+1971-06-16 21:00:00,18.3929739932403
+1971-06-16 22:00:00,14.0722342038648
+1971-06-16 23:00:00,16.3806057131632
+1971-06-17 00:00:00,12.6837775416113
+1971-06-17 01:00:00,12.0937005254928
+1971-06-17 02:00:00,10.1019875014312
+1971-06-17 03:00:00,15.4147156765746
+1971-06-17 04:00:00,18.0460329921431
+1971-06-17 05:00:00,10.755697558911
+1971-06-17 06:00:00,11.603474383729
+1971-06-17 07:00:00,9.12880797941716
+1971-06-17 08:00:00,19.4212093920347
+1971-06-17 09:00:00,15.5470801522549
+1971-06-17 10:00:00,25.0440440987244
+1971-06-17 11:00:00,20.2378343846461
+1971-06-17 12:00:00,18.3953938494604
+1971-06-17 13:00:00,7.15770490270299
+1971-06-17 14:00:00,8.94881942306839
+1971-06-17 15:00:00,14.3140097149591
+1971-06-17 16:00:00,10.0877629763126
+1971-06-17 17:00:00,19.3618145241623
+1971-06-17 18:00:00,18.5291159454148
+1971-06-17 19:00:00,20.4510428427388
+1971-06-17 20:00:00,12.8460778767035
+1971-06-17 21:00:00,15.7487067798525
+1971-06-17 22:00:00,14.5643536181167
+1971-06-17 23:00:00,9.18904645233203
+1971-06-18 00:00:00,19.109887867628
+1971-06-18 01:00:00,24.2222095185544
+1971-06-18 02:00:00,22.7367444352326
+1971-06-18 03:00:00,21.0498080118665
+1971-06-18 04:00:00,21.6289695263023
+1971-06-18 05:00:00,11.3976602637893
+1971-06-18 06:00:00,11.1578052821605
+1971-06-18 07:00:00,13.0443762847753
+1971-06-18 08:00:00,17.1108306601291
+1971-06-18 09:00:00,10.0397981666687
+1971-06-18 10:00:00,13.3124576201717
+1971-06-18 11:00:00,22.4612805092582
+1971-06-18 12:00:00,16.0306873515714
+1971-06-18 13:00:00,13.8955207087597
+1971-06-18 14:00:00,13.6701670672045
+1971-06-18 15:00:00,12.4561024632958
+1971-06-18 16:00:00,12.8874816832574
+1971-06-18 17:00:00,16.5431058943255
+1971-06-18 18:00:00,12.2961808428595
+1971-06-18 19:00:00,8.2061367747943
+1971-06-18 20:00:00,18.4293468197203
+1971-06-18 21:00:00,15.4759287225145
+1971-06-18 22:00:00,15.792148087415
+1971-06-18 23:00:00,14.0780799392659
+1971-06-19 00:00:00,10.0729546662071
+1971-06-19 01:00:00,7.54387040189064
+1971-06-19 02:00:00,11.9371911873244
+1971-06-19 03:00:00,11.126530515928
+1971-06-19 04:00:00,15.4708326241383
+1971-06-19 05:00:00,18.8558178003715
+1971-06-19 06:00:00,11.8293150813803
+1971-06-19 07:00:00,21.2694628358783
+1971-06-19 08:00:00,12.0495183324031
+1971-06-19 09:00:00,14.4806075098202
+1971-06-19 10:00:00,14.1239732534199
+1971-06-19 11:00:00,17.4850844465267
+1971-06-19 12:00:00,16.5038967439707
+1971-06-19 13:00:00,15.2047576967284
+1971-06-19 14:00:00,10.2719066897254
+1971-06-19 15:00:00,15.5399274215018
+1971-06-19 16:00:00,15.7689801803432
+1971-06-19 17:00:00,13.215937819927
+1971-06-19 18:00:00,14.9650274463887
+1971-06-19 19:00:00,13.2039588165859
+1971-06-19 20:00:00,19.3882663659327
+1971-06-19 21:00:00,14.9525641560384
+1971-06-19 22:00:00,14.5564308676964
+1971-06-19 23:00:00,28.6051095218377
+1971-06-20 00:00:00,24.9505678814633
+1971-06-20 01:00:00,20.610459700348
+1971-06-20 02:00:00,18.3574850236841
+1971-06-20 03:00:00,17.2047997292938
+1971-06-20 04:00:00,8.76439640962557
+1971-06-20 05:00:00,24.8865714073722
+1971-06-20 06:00:00,22.0063811579749
+1971-06-20 07:00:00,17.0222531267509
+1971-06-20 08:00:00,12.7382556487716
+1971-06-20 09:00:00,19.3743437248848
+1971-06-20 10:00:00,10.413526944006
+1971-06-20 11:00:00,10.6418974915929
+1971-06-20 12:00:00,9.50321398799666
+1971-06-20 13:00:00,20.3397396452808
+1971-06-20 14:00:00,13.1052382310685
+1971-06-20 15:00:00,15.9466857040407
+1971-06-20 16:00:00,14.6416919110188
+1971-06-20 17:00:00,17.8854952066342
+1971-06-20 18:00:00,9.19832950446918
+1971-06-20 19:00:00,15.622854900948
+1971-06-20 20:00:00,5.95007761998869
+1971-06-20 21:00:00,14.5305245478434
+1971-06-20 22:00:00,11.4947763840445
+1971-06-20 23:00:00,9.96798262423579
+1971-06-21 00:00:00,20.7916940046924
+1971-06-21 01:00:00,21.5259808691451
+1971-06-21 02:00:00,14.1742995484473
+1971-06-21 03:00:00,19.7330762502861
+1971-06-21 04:00:00,11.3185052306049
+1971-06-21 05:00:00,12.1942881163199
+1971-06-21 06:00:00,14.0344100681711
+1971-06-21 07:00:00,20.7292408186206
+1971-06-21 08:00:00,10.5472940839074
+1971-06-21 09:00:00,8.39257570334261
+1971-06-21 10:00:00,11.3812278900205
+1971-06-21 11:00:00,18.1607999239779
+1971-06-21 12:00:00,11.5830936331692
+1971-06-21 13:00:00,19.2288560471948
+1971-06-21 14:00:00,10.6272769098527
+1971-06-21 15:00:00,14.7671304102594
+1971-06-21 16:00:00,10.5737901640814
+1971-06-21 17:00:00,10.9435848544213
+1971-06-21 18:00:00,17.6809234605781
+1971-06-21 19:00:00,14.2849255229485
+1971-06-21 20:00:00,20.1091096949794
+1971-06-21 21:00:00,9.15081758214309
+1971-06-21 22:00:00,7.23888872978218
+1971-06-21 23:00:00,20.2646782028081
+1971-06-22 00:00:00,14.5558566892982
+1971-06-22 01:00:00,11.8885361740652
+1971-06-22 02:00:00,20.5320909480444
+1971-06-22 03:00:00,10.9445701272044
+1971-06-22 04:00:00,11.305356249891
+1971-06-22 05:00:00,6.4228440747591
+1971-06-22 06:00:00,10.8931408031855
+1971-06-22 07:00:00,17.9326084339428
+1971-06-22 08:00:00,7.65742007898484
+1971-06-22 09:00:00,16.5108498131353
+1971-06-22 10:00:00,19.4986449838934
+1971-06-22 11:00:00,8.77193696151327
+1971-06-22 12:00:00,11.2550802476022
+1971-06-22 13:00:00,15.939226649011
+1971-06-22 14:00:00,5.07824968744296
+1971-06-22 15:00:00,18.106844354387
+1971-06-22 16:00:00,11.2400805732114
+1971-06-22 17:00:00,8.795099284605
+1971-06-22 18:00:00,17.6017640211735
+1971-06-22 19:00:00,23.8999502060333
+1971-06-22 20:00:00,16.2011744885268
+1971-06-22 21:00:00,12.5436379504303
+1971-06-22 22:00:00,11.7183823028397
+1971-06-22 23:00:00,15.7275900576326
+1971-06-23 00:00:00,15.352436281887
+1971-06-23 01:00:00,11.8697065762954
+1971-06-23 02:00:00,14.2677271586551
+1971-06-23 03:00:00,20.2973314841339
+1971-06-23 04:00:00,20.6777775546744
+1971-06-23 05:00:00,19.4879869811248
+1971-06-23 06:00:00,29.2999242740697
+1971-06-23 07:00:00,17.5354326420697
+1971-06-23 08:00:00,24.715040551192
+1971-06-23 09:00:00,18.3765041947357
+1971-06-23 10:00:00,13.4057845344817
+1971-06-23 11:00:00,23.0765455492482
+1971-06-23 12:00:00,13.9503100677665
+1971-06-23 13:00:00,17.4090655142741
+1971-06-23 14:00:00,11.3951837858822
+1971-06-23 15:00:00,13.8336686485374
+1971-06-23 16:00:00,15.6983762619714
+1971-06-23 17:00:00,13.2574128902924
+1971-06-23 18:00:00,26.1810522471872
+1971-06-23 19:00:00,14.9863906646619
+1971-06-23 20:00:00,10.4385496468963
+1971-06-23 21:00:00,17.1950623838113
+1971-06-23 22:00:00,12.9146480523814
+1971-06-23 23:00:00,14.1401975734074
+1971-06-24 00:00:00,13.7574238111195
+1971-06-24 01:00:00,21.4359161408986
+1971-06-24 02:00:00,21.4303890859007
+1971-06-24 03:00:00,14.2745891188566
+1971-06-24 04:00:00,12.2731542699439
+1971-06-24 05:00:00,12.4556160704407
+1971-06-24 06:00:00,10.9378792512472
+1971-06-24 07:00:00,14.1396673262002
+1971-06-24 08:00:00,16.1712276251384
+1971-06-24 09:00:00,10.1109920539293
+1971-06-24 10:00:00,13.5807810751449
+1971-06-24 11:00:00,17.7634690036692
+1971-06-24 12:00:00,10.8370158459999
+1971-06-24 13:00:00,16.4132709627671
+1971-06-24 14:00:00,7.22904795331581
+1971-06-24 15:00:00,13.091389958516
+1971-06-24 16:00:00,13.2598988413435
+1971-06-24 17:00:00,15.3777849228514
+1971-06-24 18:00:00,11.7888699672747
+1971-06-24 19:00:00,12.8509961543899
+1971-06-24 20:00:00,13.8460467353148
+1971-06-24 21:00:00,15.6477822470222
+1971-06-24 22:00:00,19.0902170760105
+1971-06-24 23:00:00,9.98901446173339
+1971-06-25 00:00:00,13.4191762007542
+1971-06-25 01:00:00,26.1909674943333
+1971-06-25 02:00:00,13.2219408934683
+1971-06-25 03:00:00,12.644681487437
+1971-06-25 04:00:00,8.55450099586847
+1971-06-25 05:00:00,10.7359018689269
+1971-06-25 06:00:00,10.0917291162438
+1971-06-25 07:00:00,15.049670607779
+1971-06-25 08:00:00,14.3637852230775
+1971-06-25 09:00:00,19.6437712405717
+1971-06-25 10:00:00,11.0734449764846
+1971-06-25 11:00:00,14.9262063768536
+1971-06-25 12:00:00,15.4620363797736
+1971-06-25 13:00:00,13.7092359136333
+1971-06-25 14:00:00,23.7072659466942
+1971-06-25 15:00:00,20.4920780593457
+1971-06-25 16:00:00,18.6915932104771
+1971-06-25 17:00:00,22.3729739662314
+1971-06-25 18:00:00,10.9059229276112
+1971-06-25 19:00:00,19.3437907818684
+1971-06-25 20:00:00,17.9221379120637
+1971-06-25 21:00:00,9.80611738950086
+1971-06-25 22:00:00,20.6283128306692
+1971-06-25 23:00:00,18.5418086996966
+1971-06-26 00:00:00,17.0435120591838
+1971-06-26 01:00:00,8.63493996551634
+1971-06-26 02:00:00,7.66528113562644
+1971-06-26 03:00:00,18.4565746297206
+1971-06-26 04:00:00,12.9913249643797
+1971-06-26 05:00:00,20.9553619211506
+1971-06-26 06:00:00,9.11650915446957
+1971-06-26 07:00:00,10.3932303484864
+1971-06-26 08:00:00,13.8349898884972
+1971-06-26 09:00:00,12.4788004490982
+1971-06-26 10:00:00,17.4147047907022
+1971-06-26 11:00:00,11.6168784441305
+1971-06-26 12:00:00,20.8080074606991
+1971-06-26 13:00:00,17.120712977855
+1971-06-26 14:00:00,16.9056782671433
+1971-06-26 15:00:00,11.8741433438835
+1971-06-26 16:00:00,20.9753128893592
+1971-06-26 17:00:00,14.5914534475751
+1971-06-26 18:00:00,10.6386622960611
+1971-06-26 19:00:00,18.2272528859952
+1971-06-26 20:00:00,19.9862794552441
+1971-06-26 21:00:00,11.0355669303279
+1971-06-26 22:00:00,12.2966584401609
+1971-06-26 23:00:00,10.5589653638627
+1971-06-27 00:00:00,14.7096846123165
+1971-06-27 01:00:00,19.7187945236405
+1971-06-27 02:00:00,11.9685826083055
+1971-06-27 03:00:00,23.5943942877111
+1971-06-27 04:00:00,10.5335075844426
+1971-06-27 05:00:00,14.9197703815292
+1971-06-27 06:00:00,13.5397003852639
+1971-06-27 07:00:00,17.3146627619482
+1971-06-27 08:00:00,10.400754306065
+1971-06-27 09:00:00,12.2367365611973
+1971-06-27 10:00:00,19.65537791671
+1971-06-27 11:00:00,18.6766304288987
+1971-06-27 12:00:00,14.6689492773973
+1971-06-27 13:00:00,7.28811953812735
+1971-06-27 14:00:00,22.2137844011481
+1971-06-27 15:00:00,23.3462004139062
+1971-06-27 16:00:00,8.69063559964079
+1971-06-27 17:00:00,11.9495513155289
+1971-06-27 18:00:00,11.6892112976097
+1971-06-27 19:00:00,14.6943995478084
+1971-06-27 20:00:00,11.2136225104851
+1971-06-27 21:00:00,12.9725951312747
+1971-06-27 22:00:00,12.8809063475161
+1971-06-27 23:00:00,19.4602943254263
+1971-06-28 00:00:00,10.1593523347923
+1971-06-28 01:00:00,10.0008427176329
+1971-06-28 02:00:00,15.6577721389284
+1971-06-28 03:00:00,6.72274816567567
+1971-06-28 04:00:00,10.4540510329505
+1971-06-28 05:00:00,15.4555363250446
+1971-06-28 06:00:00,19.9653545631371
+1971-06-28 07:00:00,14.9751198900608
+1971-06-28 08:00:00,13.642525449271
+1971-06-28 09:00:00,12.4387784474652
+1971-06-28 10:00:00,9.53579472653987
+1971-06-28 11:00:00,15.3545799816452
+1971-06-28 12:00:00,15.4198682053977
+1971-06-28 13:00:00,15.0486341347794
+1971-06-28 14:00:00,9.60199268508474
+1971-06-28 15:00:00,15.010819242026
+1971-06-28 16:00:00,19.9322413512033
+1971-06-28 17:00:00,14.1454019242739
+1971-06-28 18:00:00,11.5162813986582
+1971-06-28 19:00:00,12.6296952647905
+1971-06-28 20:00:00,12.4497149936313
+1971-06-28 21:00:00,7.79643499299935
+1971-06-28 22:00:00,8.32487637932358
+1971-06-28 23:00:00,11.1145077810118
+1971-06-29 00:00:00,20.1115379418626
+1971-06-29 01:00:00,5.71456437596742
+1971-06-29 02:00:00,13.8389859670149
+1971-06-29 03:00:00,11.1321967175819
+1971-06-29 04:00:00,13.4374027832982
+1971-06-29 05:00:00,21.9645986736096
+1971-06-29 06:00:00,13.0687821053622
+1971-06-29 07:00:00,8.87222537118726
+1971-06-29 08:00:00,18.3584474886492
+1971-06-29 09:00:00,10.4384314463315
+1971-06-29 10:00:00,10.9093977982586
+1971-06-29 11:00:00,7.9390657780922
+1971-06-29 12:00:00,13.282910817116
+1971-06-29 13:00:00,24.9639530972609
+1971-06-29 14:00:00,21.0242297821135
+1971-06-29 15:00:00,12.0111851326635
+1971-06-29 16:00:00,12.9216340417019
+1971-06-29 17:00:00,6.48383480537952
+1971-06-29 18:00:00,17.1263049202459
+1971-06-29 19:00:00,11.2199804154953
+1971-06-29 20:00:00,19.2530140567789
+1971-06-29 21:00:00,10.6049956120951
+1971-06-29 22:00:00,15.2627733673236
+1971-06-29 23:00:00,12.2947067326795
+1971-06-30 00:00:00,10.2791622667046
+1971-06-30 01:00:00,14.0545137385156
+1971-06-30 02:00:00,7.96901769059437
+1971-06-30 03:00:00,21.8646286863527
+1971-06-30 04:00:00,8.8867086611627
+1971-06-30 05:00:00,18.1811464124793
+1971-06-30 06:00:00,10.1622837719113
+1971-06-30 07:00:00,24.1672113325676
+1971-06-30 08:00:00,18.5821656273556
+1971-06-30 09:00:00,5.06295240577364
+1971-06-30 10:00:00,21.9367434085149
+1971-06-30 11:00:00,15.1215785413566
+1971-06-30 12:00:00,12.7697151368642
+1971-06-30 13:00:00,12.042522801662
+1971-06-30 14:00:00,13.6492704971067
+1971-06-30 15:00:00,27.4145102509406
+1971-06-30 16:00:00,10.7654554888007
+1971-06-30 17:00:00,24.1621831789332
+1971-06-30 18:00:00,6.18628293760646
+1971-06-30 19:00:00,16.0177270535144
+1971-06-30 20:00:00,24.6057837668972
+1971-06-30 21:00:00,20.0914464819991
+1971-06-30 22:00:00,11.6358216959299
+1971-06-30 23:00:00,12.1467930925644
+1971-07-01 00:00:00,16.5641877257706
+1971-07-01 01:00:00,13.9103974250046
+1971-07-01 02:00:00,28.0670032787524
+1971-07-01 03:00:00,23.8803657032917
+1971-07-01 04:00:00,19.2713590426988
+1971-07-01 05:00:00,11.6990505102624
+1971-07-01 06:00:00,20.4652239920205
+1971-07-01 07:00:00,17.8451346119028
+1971-07-01 08:00:00,18.1760924761315
+1971-07-01 09:00:00,8.52651634735187
+1971-07-01 10:00:00,17.937389978956
+1971-07-01 11:00:00,15.8437333910165
+1971-07-01 12:00:00,17.5966316557263
+1971-07-01 13:00:00,13.3859712684714
+1971-07-01 14:00:00,15.1935899616876
+1971-07-01 15:00:00,19.2664630716392
+1971-07-01 16:00:00,16.0800339409503
+1971-07-01 17:00:00,11.7999644097241
+1971-07-01 18:00:00,8.24440051404103
+1971-07-01 19:00:00,18.2635663686551
+1971-07-01 20:00:00,10.435274681167
+1971-07-01 21:00:00,8.45908371385649
+1971-07-01 22:00:00,14.341228319265
+1971-07-01 23:00:00,7.35989212198839
+1971-07-02 00:00:00,12.00288192745
+1971-07-02 01:00:00,19.8328647314982
+1971-07-02 02:00:00,20.7485275652348
+1971-07-02 03:00:00,13.1866472970534
+1971-07-02 04:00:00,20.1293033917407
+1971-07-02 05:00:00,23.9236473908473
+1971-07-02 06:00:00,16.9011405418704
+1971-07-02 07:00:00,6.08587992901277
+1971-07-02 08:00:00,13.8096139919875
+1971-07-02 09:00:00,15.0159653786665
+1971-07-02 10:00:00,11.2336230726545
+1971-07-02 11:00:00,14.0533757776454
+1971-07-02 12:00:00,12.8899872577139
+1971-07-02 13:00:00,13.5230317901941
+1971-07-02 14:00:00,14.237591066075
+1971-07-02 15:00:00,14.0250890156384
+1971-07-02 16:00:00,14.1758742382011
+1971-07-02 17:00:00,17.3869698439248
+1971-07-02 18:00:00,15.365645506742
+1971-07-02 19:00:00,18.1797492761815
+1971-07-02 20:00:00,13.6620188265653
+1971-07-02 21:00:00,21.5886976142471
+1971-07-02 22:00:00,11.8796353980762
+1971-07-02 23:00:00,15.0916463873335
+1971-07-03 00:00:00,17.9847644862367
+1971-07-03 01:00:00,28.1882382530159
+1971-07-03 02:00:00,14.0220132283862
+1971-07-03 03:00:00,10.395975266931
+1971-07-03 04:00:00,16.7226916114968
+1971-07-03 05:00:00,15.051264108372
+1971-07-03 06:00:00,20.5627776060187
+1971-07-03 07:00:00,17.7399378654009
+1971-07-03 08:00:00,10.2789616147018
+1971-07-03 09:00:00,11.9730324934371
+1971-07-03 10:00:00,6.58928684494581
+1971-07-03 11:00:00,13.0926489597827
+1971-07-03 12:00:00,12.9316917436599
+1971-07-03 13:00:00,18.2521486590398
+1971-07-03 14:00:00,15.449040048814
+1971-07-03 15:00:00,10.2595893074785
+1971-07-03 16:00:00,14.0490360744361
+1971-07-03 17:00:00,16.785677510891
+1971-07-03 18:00:00,10.1790081114545
+1971-07-03 19:00:00,14.8349589640176
+1971-07-03 20:00:00,21.5410801531058
+1971-07-03 21:00:00,21.4473616730704
+1971-07-03 22:00:00,14.7203856810875
+1971-07-03 23:00:00,14.8678598064557
+1971-07-04 00:00:00,13.6430122480784
+1971-07-04 01:00:00,11.8399640887355
+1971-07-04 02:00:00,14.3345696680014
+1971-07-04 03:00:00,19.3725892863237
+1971-07-04 04:00:00,17.8979946252928
+1971-07-04 05:00:00,9.22637126990511
+1971-07-04 06:00:00,7.11507939594927
+1971-07-04 07:00:00,7.82951002038444
+1971-07-04 08:00:00,8.75792487702136
+1971-07-04 09:00:00,12.5051129911513
+1971-07-04 10:00:00,13.6544433752673
+1971-07-04 11:00:00,12.6598882018513
+1971-07-04 12:00:00,14.6144383432911
+1971-07-04 13:00:00,17.4226044623026
+1971-07-04 14:00:00,19.3596144240535
+1971-07-04 15:00:00,15.6234009359602
+1971-07-04 16:00:00,16.9453949941026
+1971-07-04 17:00:00,11.2958211514473
+1971-07-04 18:00:00,4.67594741911292
+1971-07-04 19:00:00,10.7252807124057
+1971-07-04 20:00:00,8.51825514845805
+1971-07-04 21:00:00,11.6746657344603
+1971-07-04 22:00:00,10.6906620520581
+1971-07-04 23:00:00,14.9467242251001
+1971-07-05 00:00:00,8.5515064738641
+1971-07-05 01:00:00,14.6437764376204
+1971-07-05 02:00:00,13.4225450784055
+1971-07-05 03:00:00,10.0567240115222
+1971-07-05 04:00:00,8.58684719521914
+1971-07-05 05:00:00,6.32073441576906
+1971-07-05 06:00:00,18.9877760991592
+1971-07-05 07:00:00,11.4662599283838
+1971-07-05 08:00:00,12.0664046245183
+1971-07-05 09:00:00,18.0643718086567
+1971-07-05 10:00:00,12.2553040115582
+1971-07-05 11:00:00,21.0257747067662
+1971-07-05 12:00:00,9.04358333265015
+1971-07-05 13:00:00,18.3933498471891
+1971-07-05 14:00:00,20.3392795626461
+1971-07-05 15:00:00,15.4882751825538
+1971-07-05 16:00:00,15.9280994438446
+1971-07-05 17:00:00,10.8857669810809
+1971-07-05 18:00:00,18.4025804253758
+1971-07-05 19:00:00,13.3655252649999
+1971-07-05 20:00:00,15.1781241401759
+1971-07-05 21:00:00,15.7889200948888
+1971-07-05 22:00:00,10.3657887957117
+1971-07-05 23:00:00,7.5382140899465
+1971-07-06 00:00:00,12.9137581494221
+1971-07-06 01:00:00,14.6097228055495
+1971-07-06 02:00:00,15.5977964854199
+1971-07-06 03:00:00,13.1986152470192
+1971-07-06 04:00:00,7.0297558374312
+1971-07-06 05:00:00,14.9423328470127
+1971-07-06 06:00:00,17.4745496127349
+1971-07-06 07:00:00,11.434298637628
+1971-07-06 08:00:00,14.6085740531448
+1971-07-06 09:00:00,9.07660943166309
+1971-07-06 10:00:00,16.5132547799544
+1971-07-06 11:00:00,13.8478722212126
+1971-07-06 12:00:00,21.027306852387
+1971-07-06 13:00:00,12.9538995758246
+1971-07-06 14:00:00,13.8588864456782
+1971-07-06 15:00:00,11.3024327411114
+1971-07-06 16:00:00,10.3196527004102
+1971-07-06 17:00:00,15.9331287432923
+1971-07-06 18:00:00,11.6683332493589
+1971-07-06 19:00:00,14.6697355893915
+1971-07-06 20:00:00,7.58328959180957
+1971-07-06 21:00:00,9.22848550989112
+1971-07-06 22:00:00,20.6144449673821
+1971-07-06 23:00:00,12.1087347517011
+1971-07-07 00:00:00,12.700974456563
+1971-07-07 01:00:00,10.1667899077786
+1971-07-07 02:00:00,17.4431773011663
+1971-07-07 03:00:00,7.17434960384685
+1971-07-07 04:00:00,15.3159611457484
+1971-07-07 05:00:00,14.1391705095088
+1971-07-07 06:00:00,19.258405307613
+1971-07-07 07:00:00,18.3132500045931
+1971-07-07 08:00:00,20.6720586284269
+1971-07-07 09:00:00,13.3141299943535
+1971-07-07 10:00:00,15.7268898982249
+1971-07-07 11:00:00,9.58563442632476
+1971-07-07 12:00:00,19.8437854996586
+1971-07-07 13:00:00,13.1612545692565
+1971-07-07 14:00:00,8.00353626965113
+1971-07-07 15:00:00,15.808640641655
+1971-07-07 16:00:00,14.2115501615719
+1971-07-07 17:00:00,14.4307021143997
+1971-07-07 18:00:00,11.6827475410787
+1971-07-07 19:00:00,7.09769626710479
+1971-07-07 20:00:00,16.5853898753705
+1971-07-07 21:00:00,22.217446058499
+1971-07-07 22:00:00,19.9085875473045
+1971-07-07 23:00:00,15.0072617761786
+1971-07-08 00:00:00,14.6009455171729
+1971-07-08 01:00:00,10.8285122841157
+1971-07-08 02:00:00,15.6761378996022
+1971-07-08 03:00:00,16.8134245895355
+1971-07-08 04:00:00,8.31393175121295
+1971-07-08 05:00:00,16.5135222479713
+1971-07-08 06:00:00,15.160385508255
+1971-07-08 07:00:00,13.9449954976254
+1971-07-08 08:00:00,13.044257380136
+1971-07-08 09:00:00,15.0233090866233
+1971-07-08 10:00:00,13.0244140354093
+1971-07-08 11:00:00,19.482468083655
+1971-07-08 12:00:00,11.4511785590755
+1971-07-08 13:00:00,12.2383050647155
+1971-07-08 14:00:00,16.3890843936715
+1971-07-08 15:00:00,14.6370100093006
+1971-07-08 16:00:00,12.1375941198372
+1971-07-08 17:00:00,15.1183235636997
+1971-07-08 18:00:00,8.24959819429405
+1971-07-08 19:00:00,8.74776891079479
+1971-07-08 20:00:00,14.6296306788117
+1971-07-08 21:00:00,11.6849704630761
+1971-07-08 22:00:00,11.885484548194
+1971-07-08 23:00:00,12.5969920245663
+1971-07-09 00:00:00,12.347437797867
+1971-07-09 01:00:00,12.3427869817314
+1971-07-09 02:00:00,16.5585597002125
+1971-07-09 03:00:00,12.3545775468187
+1971-07-09 04:00:00,7.80704690705053
+1971-07-09 05:00:00,15.2579279398624
+1971-07-09 06:00:00,14.7295000729482
+1971-07-09 07:00:00,10.2265994043657
+1971-07-09 08:00:00,11.7614268588771
+1971-07-09 09:00:00,18.1052038408717
+1971-07-09 10:00:00,7.71906126682781
+1971-07-09 11:00:00,23.9316126521216
+1971-07-09 12:00:00,18.1345403474895
+1971-07-09 13:00:00,22.1810797196576
+1971-07-09 14:00:00,16.5064041288624
+1971-07-09 15:00:00,10.452537573268
+1971-07-09 16:00:00,16.5580879532788
+1971-07-09 17:00:00,11.9399947612256
+1971-07-09 18:00:00,11.8292203463379
+1971-07-09 19:00:00,18.9275752141327
+1971-07-09 20:00:00,13.6136179720093
+1971-07-09 21:00:00,18.3653409838331
+1971-07-09 22:00:00,13.4758777029241
+1971-07-09 23:00:00,18.0793050936073
+1971-07-10 00:00:00,10.9285763275354
+1971-07-10 01:00:00,9.98940656381348
+1971-07-10 02:00:00,17.7050817791669
+1971-07-10 03:00:00,17.3369658283866
+1971-07-10 04:00:00,8.32658944403742
+1971-07-10 05:00:00,20.2310180390486
+1971-07-10 06:00:00,9.65289124229872
+1971-07-10 07:00:00,14.7605100092581
+1971-07-10 08:00:00,20.6990329840275
+1971-07-10 09:00:00,15.4801230084609
+1971-07-10 10:00:00,21.21760359682
+1971-07-10 11:00:00,21.2780469437092
+1971-07-10 12:00:00,21.4294843582981
+1971-07-10 13:00:00,9.53772676536429
+1971-07-10 14:00:00,12.1981479991827
+1971-07-10 15:00:00,13.6082317940137
+1971-07-10 16:00:00,17.1404944531363
+1971-07-10 17:00:00,11.0423511186377
+1971-07-10 18:00:00,11.1954770502263
+1971-07-10 19:00:00,7.73095415483196
+1971-07-10 20:00:00,12.7604451596426
+1971-07-10 21:00:00,7.26075785958801
+1971-07-10 22:00:00,11.7536669184898
+1971-07-10 23:00:00,12.212121935974
+1971-07-11 00:00:00,6.52857694857828
+1971-07-11 01:00:00,13.4595379112901
+1971-07-11 02:00:00,6.95837750620736
+1971-07-11 03:00:00,15.6714327848777
+1971-07-11 04:00:00,11.1977258054229
+1971-07-11 05:00:00,18.4125811362846
+1971-07-11 06:00:00,12.7537874167174
+1971-07-11 07:00:00,11.6736273927263
+1971-07-11 08:00:00,10.3416711146023
+1971-07-11 09:00:00,16.5303041125697
+1971-07-11 10:00:00,15.5774631875819
+1971-07-11 11:00:00,12.4488847252401
+1971-07-11 12:00:00,9.63213410786229
+1971-07-11 13:00:00,10.4434113949659
+1971-07-11 14:00:00,9.68248462919573
+1971-07-11 15:00:00,14.604550434337
+1971-07-11 16:00:00,21.1136535657598
+1971-07-11 17:00:00,12.8951071490221
+1971-07-11 18:00:00,13.1811876946787
+1971-07-11 19:00:00,19.1496244145192
+1971-07-11 20:00:00,15.9428490885025
+1971-07-11 21:00:00,9.45372381604425
+1971-07-11 22:00:00,11.2622922498961
+1971-07-11 23:00:00,19.912148170623
+1971-07-12 00:00:00,13.6780014061406
+1971-07-12 01:00:00,10.5867720549214
+1971-07-12 02:00:00,12.2333856720576
+1971-07-12 03:00:00,13.3885341701414
+1971-07-12 04:00:00,12.5520261744643
+1971-07-12 05:00:00,30.2296232091889
+1971-07-12 06:00:00,10.1965959463748
+1971-07-12 07:00:00,9.44525695437148
+1971-07-12 08:00:00,22.8942517672777
+1971-07-12 09:00:00,19.0728882324214
+1971-07-12 10:00:00,12.4380736271123
+1971-07-12 11:00:00,11.3654344790652
+1971-07-12 12:00:00,16.1763486835326
+1971-07-12 13:00:00,16.1467726092773
+1971-07-12 14:00:00,16.6189413542625
+1971-07-12 15:00:00,13.1272813656512
+1971-07-12 16:00:00,6.6577182982482
+1971-07-12 17:00:00,14.3763818902765
+1971-07-12 18:00:00,13.4423866864782
+1971-07-12 19:00:00,16.6937204387126
+1971-07-12 20:00:00,17.0486234536557
+1971-07-12 21:00:00,15.1597084545772
+1971-07-12 22:00:00,17.641475287932
+1971-07-12 23:00:00,21.9172424995386
+1971-07-13 00:00:00,18.7883393558256
+1971-07-13 01:00:00,16.9738625645371
+1971-07-13 02:00:00,17.1162540346662
+1971-07-13 03:00:00,20.4855286619551
+1971-07-13 04:00:00,15.8376165616919
+1971-07-13 05:00:00,13.7567749648124
+1971-07-13 06:00:00,5.54320951779654
+1971-07-13 07:00:00,9.84369280168284
+1971-07-13 08:00:00,12.6542260877108
+1971-07-13 09:00:00,17.2412304168657
+1971-07-13 10:00:00,14.732732756219
+1971-07-13 11:00:00,15.5290719060076
+1971-07-13 12:00:00,11.636200833029
+1971-07-13 13:00:00,17.6487569615546
+1971-07-13 14:00:00,20.0437518164303
+1971-07-13 15:00:00,14.5290738379804
+1971-07-13 16:00:00,12.7679601937112
+1971-07-13 17:00:00,24.670522243715
+1971-07-13 18:00:00,12.2462218759922
+1971-07-13 19:00:00,14.5655207422462
+1971-07-13 20:00:00,15.1292732526136
+1971-07-13 21:00:00,9.42604093589704
+1971-07-13 22:00:00,16.7782145307335
+1971-07-13 23:00:00,9.29991335804036
+1971-07-14 00:00:00,20.5542515874785
+1971-07-14 01:00:00,12.3421019987934
+1971-07-14 02:00:00,13.6184738182842
+1971-07-14 03:00:00,6.78096983540052
+1971-07-14 04:00:00,30.1618050574316
+1971-07-14 05:00:00,13.531101689497
+1971-07-14 06:00:00,14.5695765850064
+1971-07-14 07:00:00,25.1474579481028
+1971-07-14 08:00:00,9.17660221601226
+1971-07-14 09:00:00,10.409904965461
+1971-07-14 10:00:00,16.803475785867
+1971-07-14 11:00:00,10.5171894909753
+1971-07-14 12:00:00,14.1719624189964
+1971-07-14 13:00:00,20.3240758055735
+1971-07-14 14:00:00,13.7583640309109
+1971-07-14 15:00:00,9.8571188120161
+1971-07-14 16:00:00,14.2692422537823
+1971-07-14 17:00:00,12.8271535213388
+1971-07-14 18:00:00,13.5460715717799
+1971-07-14 19:00:00,15.2186160623474
+1971-07-14 20:00:00,17.717834552062
+1971-07-14 21:00:00,8.88740662593224
+1971-07-14 22:00:00,10.5139046664993
+1971-07-14 23:00:00,9.3465933511065
+1971-07-15 00:00:00,14.6560487492015
+1971-07-15 01:00:00,14.0998664304769
+1971-07-15 02:00:00,13.1526855150947
+1971-07-15 03:00:00,10.0944333633815
+1971-07-15 04:00:00,12.2915216966694
+1971-07-15 05:00:00,10.4989587252649
+1971-07-15 06:00:00,16.8528241982046
+1971-07-15 07:00:00,12.6438700322518
+1971-07-15 08:00:00,15.8213804054188
+1971-07-15 09:00:00,14.9697816699201
+1971-07-15 10:00:00,11.9843523548762
+1971-07-15 11:00:00,13.2504926503164
+1971-07-15 12:00:00,10.7765082518055
+1971-07-15 13:00:00,15.5421024137839
+1971-07-15 14:00:00,13.7464430877105
+1971-07-15 15:00:00,12.7053839518838
+1971-07-15 16:00:00,19.6172816136792
+1971-07-15 17:00:00,16.081740172593
+1971-07-15 18:00:00,11.4435408392556
+1971-07-15 19:00:00,8.08106986195332
+1971-07-15 20:00:00,14.3322767229541
+1971-07-15 21:00:00,14.6849173200077
+1971-07-15 22:00:00,15.9112924614924
+1971-07-15 23:00:00,11.0783331933086
+1971-07-16 00:00:00,13.2542790606866
+1971-07-16 01:00:00,11.2950203332959
+1971-07-16 02:00:00,17.1843576785053
+1971-07-16 03:00:00,23.9931512308757
+1971-07-16 04:00:00,9.807029565631
+1971-07-16 05:00:00,8.81030328278844
+1971-07-16 06:00:00,32.4432246618912
+1971-07-16 07:00:00,11.1715487847338
+1971-07-16 08:00:00,9.41459918677136
+1971-07-16 09:00:00,13.6461847266215
+1971-07-16 10:00:00,12.0603113969283
+1971-07-16 11:00:00,8.83565308736072
+1971-07-16 12:00:00,13.192643267151
+1971-07-16 13:00:00,18.9543237508924
+1971-07-16 14:00:00,16.356740997738
+1971-07-16 15:00:00,8.86650136712647
+1971-07-16 16:00:00,11.9449335414901
+1971-07-16 17:00:00,9.0328202715998
+1971-07-16 18:00:00,14.5875027804572
+1971-07-16 19:00:00,10.8758929137958
+1971-07-16 20:00:00,15.3203495882624
+1971-07-16 21:00:00,9.87150373547701
+1971-07-16 22:00:00,6.55428881382099
+1971-07-16 23:00:00,13.6860262207483
+1971-07-17 00:00:00,12.0871666407212
+1971-07-17 01:00:00,10.3450831678263
+1971-07-17 02:00:00,14.0003077664542
+1971-07-17 03:00:00,15.4210942247215
+1971-07-17 04:00:00,7.0478689228306
+1971-07-17 05:00:00,18.1498900508121
+1971-07-17 06:00:00,23.1906698334351
+1971-07-17 07:00:00,14.8067456675866
+1971-07-17 08:00:00,8.80107758489742
+1971-07-17 09:00:00,18.4305606110078
+1971-07-17 10:00:00,25.2555015204512
+1971-07-17 11:00:00,19.3729792827077
+1971-07-17 12:00:00,12.5468605174744
+1971-07-17 13:00:00,12.4300113092495
+1971-07-17 14:00:00,14.6536546841902
+1971-07-17 15:00:00,18.2425141702291
+1971-07-17 16:00:00,17.6741939985273
+1971-07-17 17:00:00,15.0614495177198
+1971-07-17 18:00:00,14.1652901562504
+1971-07-17 19:00:00,14.0300803436975
+1971-07-17 20:00:00,11.0002550554893
+1971-07-17 21:00:00,14.9699643279531
+1971-07-17 22:00:00,17.2560476947762
+1971-07-17 23:00:00,12.1604726995912
+1971-07-18 00:00:00,13.7205928272061
+1971-07-18 01:00:00,12.3122954080259
+1971-07-18 02:00:00,17.6422369990121
+1971-07-18 03:00:00,13.1744264423562
+1971-07-18 04:00:00,12.4913665839215
+1971-07-18 05:00:00,16.1140152698419
+1971-07-18 06:00:00,20.9720254887095
+1971-07-18 07:00:00,25.378774677105
+1971-07-18 08:00:00,10.658142872543
+1971-07-18 09:00:00,11.7579735009781
+1971-07-18 10:00:00,16.6395246482804
+1971-07-18 11:00:00,12.7869007057483
+1971-07-18 12:00:00,14.7688247347113
+1971-07-18 13:00:00,4.85971794738579
+1971-07-18 14:00:00,12.9886201488552
+1971-07-18 15:00:00,8.62217191454059
+1971-07-18 16:00:00,15.6865617190746
+1971-07-18 17:00:00,17.0606513956521
+1971-07-18 18:00:00,20.2821824089752
+1971-07-18 19:00:00,8.95097460201836
+1971-07-18 20:00:00,8.05162337832004
+1971-07-18 21:00:00,18.7716062028663
+1971-07-18 22:00:00,13.8406917690627
+1971-07-18 23:00:00,15.2379598125346
+1971-07-19 00:00:00,20.1270277537996
+1971-07-19 01:00:00,10.975185550995
+1971-07-19 02:00:00,6.92927678843373
+1971-07-19 03:00:00,23.7793285037691
+1971-07-19 04:00:00,12.9870120877744
+1971-07-19 05:00:00,9.33202756617135
+1971-07-19 06:00:00,20.4090450832251
+1971-07-19 07:00:00,17.7863718947166
+1971-07-19 08:00:00,7.9081636152704
+1971-07-19 09:00:00,11.2492527347733
+1971-07-19 10:00:00,11.504135640455
+1971-07-19 11:00:00,15.5072498749295
+1971-07-19 12:00:00,9.65178547313828
+1971-07-19 13:00:00,9.00650107191237
+1971-07-19 14:00:00,13.284580289042
+1971-07-19 15:00:00,15.322028546166
+1971-07-19 16:00:00,10.295847674698
+1971-07-19 17:00:00,5.37250705562322
+1971-07-19 18:00:00,7.60269100040476
+1971-07-19 19:00:00,23.1995618282806
+1971-07-19 20:00:00,9.15290187679342
+1971-07-19 21:00:00,14.0180710098349
+1971-07-19 22:00:00,24.0465992483733
+1971-07-19 23:00:00,8.2588983589755
+1971-07-20 00:00:00,14.4137704289493
+1971-07-20 01:00:00,18.3780095221179
+1971-07-20 02:00:00,20.5165440382223
+1971-07-20 03:00:00,6.70198820937216
+1971-07-20 04:00:00,10.3899873779064
+1971-07-20 05:00:00,16.6523173915984
+1971-07-20 06:00:00,16.2321308352381
+1971-07-20 07:00:00,10.2326956275064
+1971-07-20 08:00:00,15.5795144244198
+1971-07-20 09:00:00,17.4770285477304
+1971-07-20 10:00:00,21.9480332877541
+1971-07-20 11:00:00,14.4545563180613
+1971-07-20 12:00:00,16.1949787456337
+1971-07-20 13:00:00,10.2713751141296
+1971-07-20 14:00:00,13.3645581631216
+1971-07-20 15:00:00,12.6830884212683
+1971-07-20 16:00:00,16.5340059517528
+1971-07-20 17:00:00,10.4207112212092
+1971-07-20 18:00:00,10.7372921538729
+1971-07-20 19:00:00,13.1795793408538
+1971-07-20 20:00:00,20.5301093198127
+1971-07-20 21:00:00,17.6842517489282
+1971-07-20 22:00:00,20.5914786948811
+1971-07-20 23:00:00,10.2301798705937
+1971-07-21 00:00:00,18.3070265157725
+1971-07-21 01:00:00,13.05112958782
+1971-07-21 02:00:00,13.465300889265
+1971-07-21 03:00:00,17.6007529341089
+1971-07-21 04:00:00,9.17983040825399
+1971-07-21 05:00:00,11.826749506059
+1971-07-21 06:00:00,22.9975615990918
+1971-07-21 07:00:00,18.602740247898
+1971-07-21 08:00:00,14.2382956561735
+1971-07-21 09:00:00,13.1277050463295
+1971-07-21 10:00:00,5.68760466624478
+1971-07-21 11:00:00,21.5732380662574
+1971-07-21 12:00:00,12.833383536527
+1971-07-21 13:00:00,16.7325601862094
+1971-07-21 14:00:00,12.7793289949543
+1971-07-21 15:00:00,14.9661687537109
+1971-07-21 16:00:00,21.147117423598
+1971-07-21 17:00:00,14.8364698636318
+1971-07-21 18:00:00,15.0099231693284
+1971-07-21 19:00:00,16.7770145861961
+1971-07-21 20:00:00,19.0768063266147
+1971-07-21 21:00:00,11.4257435264139
+1971-07-21 22:00:00,9.85314208297332
+1971-07-21 23:00:00,7.39793841966056
+1971-07-22 00:00:00,11.5557623328296
+1971-07-22 01:00:00,12.3633439520844
+1971-07-22 02:00:00,14.7361458316351
+1971-07-22 03:00:00,13.3892258214568
+1971-07-22 04:00:00,18.351874468907
+1971-07-22 05:00:00,15.996429277312
+1971-07-22 06:00:00,20.462898621438
+1971-07-22 07:00:00,9.57309450940089
+1971-07-22 08:00:00,13.547348398077
+1971-07-22 09:00:00,14.237029770501
+1971-07-22 10:00:00,8.66776032087804
+1971-07-22 11:00:00,19.20526954369
+1971-07-22 12:00:00,22.8825352822387
+1971-07-22 13:00:00,22.9706214697295
+1971-07-22 14:00:00,10.631484222778
+1971-07-22 15:00:00,21.3534730126237
+1971-07-22 16:00:00,17.0764510002144
+1971-07-22 17:00:00,18.7029990673635
+1971-07-22 18:00:00,12.6605142700602
+1971-07-22 19:00:00,6.57663829034481
+1971-07-22 20:00:00,17.6028315058617
+1971-07-22 21:00:00,14.502000649756
+1971-07-22 22:00:00,13.560592246722
+1971-07-22 23:00:00,10.819832345897
+1971-07-23 00:00:00,9.00835650156987
+1971-07-23 01:00:00,17.5325748642995
+1971-07-23 02:00:00,7.57658321025896
+1971-07-23 03:00:00,10.4950075760417
+1971-07-23 04:00:00,11.8810519804673
+1971-07-23 05:00:00,12.4011705224887
+1971-07-23 06:00:00,21.157516660809
+1971-07-23 07:00:00,11.5512527147809
+1971-07-23 08:00:00,13.7887106755383
+1971-07-23 09:00:00,8.66930149709926
+1971-07-23 10:00:00,10.3575825187811
+1971-07-23 11:00:00,16.5971341061372
+1971-07-23 12:00:00,18.7148682055414
+1971-07-23 13:00:00,12.2074747847489
+1971-07-23 14:00:00,9.25661565470612
+1971-07-23 15:00:00,18.398263898976
+1971-07-23 16:00:00,11.1429476106599
+1971-07-23 17:00:00,17.5558171787951
+1971-07-23 18:00:00,11.7211350604927
+1971-07-23 19:00:00,11.6257546151903
+1971-07-23 20:00:00,13.1751229900838
+1971-07-23 21:00:00,16.7018913015143
+1971-07-23 22:00:00,14.1761787532555
+1971-07-23 23:00:00,6.27177706656034
+1971-07-24 00:00:00,11.7476326512371
+1971-07-24 01:00:00,12.7414755622644
+1971-07-24 02:00:00,17.1243569687631
+1971-07-24 03:00:00,10.1869403558874
+1971-07-24 04:00:00,13.02868256997
+1971-07-24 05:00:00,17.4536609839505
+1971-07-24 06:00:00,10.8657266676488
+1971-07-24 07:00:00,13.6457310928519
+1971-07-24 08:00:00,8.04743495098172
+1971-07-24 09:00:00,16.5268010448823
+1971-07-24 10:00:00,19.0995822796975
+1971-07-24 11:00:00,23.1714196820406
+1971-07-24 12:00:00,15.7672091466936
+1971-07-24 13:00:00,12.9876538337205
+1971-07-24 14:00:00,14.4691494523544
+1971-07-24 15:00:00,13.5649219348348
+1971-07-24 16:00:00,18.2252958711599
+1971-07-24 17:00:00,22.2588713019015
+1971-07-24 18:00:00,16.320215654666
+1971-07-24 19:00:00,13.6720577135844
+1971-07-24 20:00:00,14.8803978722702
+1971-07-24 21:00:00,11.2473658266598
+1971-07-24 22:00:00,12.9369684794853
+1971-07-24 23:00:00,17.2020633635646
+1971-07-25 00:00:00,22.0000324332197
+1971-07-25 01:00:00,9.50618928206544
+1971-07-25 02:00:00,9.08759034106872
+1971-07-25 03:00:00,16.083369424928
+1971-07-25 04:00:00,15.8071116263943
+1971-07-25 05:00:00,11.113397279725
+1971-07-25 06:00:00,11.7438369347023
+1971-07-25 07:00:00,12.1751549352647
+1971-07-25 08:00:00,10.935514760558
+1971-07-25 09:00:00,7.33964214349751
+1971-07-25 10:00:00,14.7078043793386
+1971-07-25 11:00:00,19.1294023246963
+1971-07-25 12:00:00,13.0731116977069
+1971-07-25 13:00:00,8.49261319006083
+1971-07-25 14:00:00,8.84024136546972
+1971-07-25 15:00:00,11.3923708688206
+1971-07-25 16:00:00,11.4086937083307
+1971-07-25 17:00:00,20.2935389366145
+1971-07-25 18:00:00,12.8739454277334
+1971-07-25 19:00:00,13.4082297967327
+1971-07-25 20:00:00,20.0011329535163
+1971-07-25 21:00:00,18.4309660083043
+1971-07-25 22:00:00,13.1170620547333
+1971-07-25 23:00:00,15.06866459675
+1971-07-26 00:00:00,8.90316210133761
+1971-07-26 01:00:00,20.1707029543721
+1971-07-26 02:00:00,13.0867857425163
+1971-07-26 03:00:00,9.51901651343698
+1971-07-26 04:00:00,18.0530807180985
+1971-07-26 05:00:00,12.8305541232486
+1971-07-26 06:00:00,21.5922251346995
+1971-07-26 07:00:00,17.8753809337894
+1971-07-26 08:00:00,14.8384686557098
+1971-07-26 09:00:00,11.4480790558179
+1971-07-26 10:00:00,11.0791331928707
+1971-07-26 11:00:00,10.2865971470417
+1971-07-26 12:00:00,14.6560201621738
+1971-07-26 13:00:00,14.7114038184113
+1971-07-26 14:00:00,12.3481819773019
+1971-07-26 15:00:00,17.8814650889573
+1971-07-26 16:00:00,18.1722857722037
+1971-07-26 17:00:00,13.8358259430738
+1971-07-26 18:00:00,13.1565736821663
+1971-07-26 19:00:00,10.1911193034
+1971-07-26 20:00:00,12.8448504640207
+1971-07-26 21:00:00,12.3003519244271
+1971-07-26 22:00:00,9.8970512655147
+1971-07-26 23:00:00,10.1863292131648
+1971-07-27 00:00:00,8.64750363282358
+1971-07-27 01:00:00,14.9302365560505
+1971-07-27 02:00:00,12.1490851240407
+1971-07-27 03:00:00,7.6779166873019
+1971-07-27 04:00:00,14.511161089467
+1971-07-27 05:00:00,17.98207012119
+1971-07-27 06:00:00,11.6019740091358
+1971-07-27 07:00:00,4.41241230472218
+1971-07-27 08:00:00,11.8762169302873
+1971-07-27 09:00:00,19.754934891304
+1971-07-27 10:00:00,11.6003396509888
+1971-07-27 11:00:00,14.6568737082329
+1971-07-27 12:00:00,6.60642251468374
+1971-07-27 13:00:00,9.14616545564751
+1971-07-27 14:00:00,8.61144659239556
+1971-07-27 15:00:00,12.9151363969157
+1971-07-27 16:00:00,18.3752223821168
+1971-07-27 17:00:00,6.2451717364394
+1971-07-27 18:00:00,11.0533096419895
+1971-07-27 19:00:00,15.3631252130828
+1971-07-27 20:00:00,13.2459391500338
+1971-07-27 21:00:00,15.5125217155837
+1971-07-27 22:00:00,13.6770624639087
+1971-07-27 23:00:00,12.5475479821429
+1971-07-28 00:00:00,16.1204156457134
+1971-07-28 01:00:00,17.8954266684455
+1971-07-28 02:00:00,15.1587617037535
+1971-07-28 03:00:00,10.2387977073513
+1971-07-28 04:00:00,13.9695407551259
+1971-07-28 05:00:00,10.7607472693543
+1971-07-28 06:00:00,21.7291407333907
+1971-07-28 07:00:00,22.1124436985111
+1971-07-28 08:00:00,12.352992289777
+1971-07-28 09:00:00,14.2984664114013
+1971-07-28 10:00:00,13.1885159127653
+1971-07-28 11:00:00,17.3470919214931
+1971-07-28 12:00:00,19.5526174710237
+1971-07-28 13:00:00,25.2597652493824
+1971-07-28 14:00:00,12.5249086340713
+1971-07-28 15:00:00,7.49366083482026
+1971-07-28 16:00:00,18.6600208270486
+1971-07-28 17:00:00,8.28740761480252
+1971-07-28 18:00:00,10.5532143837236
+1971-07-28 19:00:00,19.6558690598932
+1971-07-28 20:00:00,10.5488996390805
+1971-07-28 21:00:00,10.2540502759547
+1971-07-28 22:00:00,14.1110202042159
+1971-07-28 23:00:00,16.6023540160891
+1971-07-29 00:00:00,16.7883806612401
+1971-07-29 01:00:00,8.57945270642119
+1971-07-29 02:00:00,8.58846862912888
+1971-07-29 03:00:00,21.7198967016187
+1971-07-29 04:00:00,6.97797925537889
+1971-07-29 05:00:00,9.28049362947868
+1971-07-29 06:00:00,6.62978327827556
+1971-07-29 07:00:00,18.3584511721991
+1971-07-29 08:00:00,18.0242652390024
+1971-07-29 09:00:00,12.3631144900861
+1971-07-29 10:00:00,19.5833903484363
+1971-07-29 11:00:00,14.6451636567529
+1971-07-29 12:00:00,13.5866682233835
+1971-07-29 13:00:00,21.7680568466819
+1971-07-29 14:00:00,25.4075269974387
+1971-07-29 15:00:00,11.7548343437883
+1971-07-29 16:00:00,9.29417589527101
+1971-07-29 17:00:00,12.9870307823611
+1971-07-29 18:00:00,13.8469185018976
+1971-07-29 19:00:00,15.8125153402637
+1971-07-29 20:00:00,12.1381695653724
+1971-07-29 21:00:00,19.6365709481739
+1971-07-29 22:00:00,11.3669040771466
+1971-07-29 23:00:00,20.666027037795
+1971-07-30 00:00:00,18.687176040314
+1971-07-30 01:00:00,14.0164009321649
+1971-07-30 02:00:00,12.4829824121529
+1971-07-30 03:00:00,15.5080540179558
+1971-07-30 04:00:00,6.43834134183609
+1971-07-30 05:00:00,11.3566238577352
+1971-07-30 06:00:00,18.050307691077
+1971-07-30 07:00:00,10.5151906796585
+1971-07-30 08:00:00,22.9512671887627
+1971-07-30 09:00:00,12.467451546602
+1971-07-30 10:00:00,16.2741202018526
+1971-07-30 11:00:00,10.1886885591732
+1971-07-30 12:00:00,18.9684450284184
+1971-07-30 13:00:00,17.1542177252193
+1971-07-30 14:00:00,14.4943969790168
+1971-07-30 15:00:00,13.3970296440088
+1971-07-30 16:00:00,11.0336381684563
+1971-07-30 17:00:00,13.2431877356356
+1971-07-30 18:00:00,17.4015810975925
+1971-07-30 19:00:00,14.6785511879076
+1971-07-30 20:00:00,13.0605397179651
+1971-07-30 21:00:00,11.4233819076674
+1971-07-30 22:00:00,16.9272962893609
+1971-07-30 23:00:00,6.47083562271933
+1971-07-31 00:00:00,14.8781712729542
+1971-07-31 01:00:00,20.7897854187143
+1971-07-31 02:00:00,17.4991179778409
+1971-07-31 03:00:00,11.6841576093061
+1971-07-31 04:00:00,14.7697498692442
+1971-07-31 05:00:00,10.6228682395309
+1971-07-31 06:00:00,11.1320020436876
+1971-07-31 07:00:00,14.7651220779049
+1971-07-31 08:00:00,13.5397341408642
+1971-07-31 09:00:00,12.8380384207535
+1971-07-31 10:00:00,19.1063789097081
+1971-07-31 11:00:00,15.3083274796051
+1971-07-31 12:00:00,11.2628698055425
+1971-07-31 13:00:00,9.57152905833358
+1971-07-31 14:00:00,25.1756736990613
+1971-07-31 15:00:00,14.6148965708705
+1971-07-31 16:00:00,8.86675963551874
+1971-07-31 17:00:00,9.76878585824102
+1971-07-31 18:00:00,14.116476407368
+1971-07-31 19:00:00,9.4359584988416
+1971-07-31 20:00:00,13.7209129657856
+1971-07-31 21:00:00,11.2851780246242
+1971-07-31 22:00:00,10.1624014097253
+1971-07-31 23:00:00,15.1474934149814
+1971-08-01 00:00:00,19.4473202107663
+1971-08-01 01:00:00,16.6086085325844
+1971-08-01 02:00:00,8.45626248817172
+1971-08-01 03:00:00,15.3673089280494
+1971-08-01 04:00:00,12.183686195415
+1971-08-01 05:00:00,9.66671377745727
+1971-08-01 06:00:00,16.9727459959247
+1971-08-01 07:00:00,12.9965721511139
+1971-08-01 08:00:00,18.2877114943173
+1971-08-01 09:00:00,11.8645807557051
+1971-08-01 10:00:00,8.96362670474178
+1971-08-01 11:00:00,12.7552211099629
+1971-08-01 12:00:00,12.8366002653998
+1971-08-01 13:00:00,4.0051823106959
+1971-08-01 14:00:00,18.4119772886032
+1971-08-01 15:00:00,8.97874742904114
+1971-08-01 16:00:00,18.5217694932509
+1971-08-01 17:00:00,24.1426157607808
+1971-08-01 18:00:00,14.7119169291609
+1971-08-01 19:00:00,14.0373038397614
+1971-08-01 20:00:00,15.7432084945309
+1971-08-01 21:00:00,10.1635826719273
+1971-08-01 22:00:00,15.0169700622306
+1971-08-01 23:00:00,14.3125254124025
+1971-08-02 00:00:00,11.8554860022023
+1971-08-02 01:00:00,8.23499826063925
+1971-08-02 02:00:00,14.4082575739227
+1971-08-02 03:00:00,11.451229959933
+1971-08-02 04:00:00,11.1393963238213
+1971-08-02 05:00:00,19.7051956256667
+1971-08-02 06:00:00,24.6422288141745
+1971-08-02 07:00:00,10.2991885420828
+1971-08-02 08:00:00,13.9808213370123
+1971-08-02 09:00:00,10.7568279452828
+1971-08-02 10:00:00,17.6722916983913
+1971-08-02 11:00:00,14.0818367432384
+1971-08-02 12:00:00,14.9323844666982
+1971-08-02 13:00:00,8.63017963773541
+1971-08-02 14:00:00,15.7481141425036
+1971-08-02 15:00:00,8.62963396928484
+1971-08-02 16:00:00,17.3294468587319
+1971-08-02 17:00:00,15.9875866683307
+1971-08-02 18:00:00,16.5155937821733
+1971-08-02 19:00:00,11.0589510430019
+1971-08-02 20:00:00,27.6233478825772
+1971-08-02 21:00:00,11.1757857316588
+1971-08-02 22:00:00,17.103620736236
+1971-08-02 23:00:00,12.9460399902479
+1971-08-03 00:00:00,12.4947890495307
+1971-08-03 01:00:00,12.7926046596125
+1971-08-03 02:00:00,17.4693919660042
+1971-08-03 03:00:00,12.7949526307801
+1971-08-03 04:00:00,15.2681485440429
+1971-08-03 05:00:00,16.3241040746965
+1971-08-03 06:00:00,10.8197765552283
+1971-08-03 07:00:00,7.01985537857079
+1971-08-03 08:00:00,10.4022235880895
+1971-08-03 09:00:00,6.07693726170629
+1971-08-03 10:00:00,21.9270925976936
+1971-08-03 11:00:00,13.8597800261312
+1971-08-03 12:00:00,17.8440377883445
+1971-08-03 13:00:00,13.1502252431888
+1971-08-03 14:00:00,17.3962075490826
+1971-08-03 15:00:00,14.2124519114014
+1971-08-03 16:00:00,11.8130781425339
+1971-08-03 17:00:00,8.4445558574567
+1971-08-03 18:00:00,17.9071376033522
+1971-08-03 19:00:00,10.3798765595348
+1971-08-03 20:00:00,22.8574327865346
+1971-08-03 21:00:00,7.52318440026276
+1971-08-03 22:00:00,14.6327629564269
+1971-08-03 23:00:00,17.0974760042068
+1971-08-04 00:00:00,13.3294764592498
+1971-08-04 01:00:00,13.1958772907577
+1971-08-04 02:00:00,11.6634747835038
+1971-08-04 03:00:00,15.9816682356796
+1971-08-04 04:00:00,13.7039264337687
+1971-08-04 05:00:00,11.1514511104574
+1971-08-04 06:00:00,9.25554872481797
+1971-08-04 07:00:00,11.3284424971027
+1971-08-04 08:00:00,15.8067458923807
+1971-08-04 09:00:00,15.0905664619099
+1971-08-04 10:00:00,15.8630795027149
+1971-08-04 11:00:00,20.3957250804201
+1971-08-04 12:00:00,12.3772148021947
+1971-08-04 13:00:00,10.8348610939865
+1971-08-04 14:00:00,13.0782311067729
+1971-08-04 15:00:00,8.61081060134131
+1971-08-04 16:00:00,18.0214388817217
+1971-08-04 17:00:00,15.3731338944066
+1971-08-04 18:00:00,7.21377310500245
+1971-08-04 19:00:00,11.7729526011308
+1971-08-04 20:00:00,16.9996444583424
+1971-08-04 21:00:00,17.2993226278531
+1971-08-04 22:00:00,16.4653982660445
+1971-08-04 23:00:00,13.5548486463404
+1971-08-05 00:00:00,13.1844330575777
+1971-08-05 01:00:00,13.5515026422587
+1971-08-05 02:00:00,15.8549619711507
+1971-08-05 03:00:00,21.2959585490667
+1971-08-05 04:00:00,11.2351847894943
+1971-08-05 05:00:00,18.8852257161605
+1971-08-05 06:00:00,15.3185600269667
+1971-08-05 07:00:00,9.07498832449835
+1971-08-05 08:00:00,21.1403821197242
+1971-08-05 09:00:00,15.8399612204037
+1971-08-05 10:00:00,11.9570731062398
+1971-08-05 11:00:00,21.8739063819375
+1971-08-05 12:00:00,19.3713231507737
+1971-08-05 13:00:00,10.3494795003819
+1971-08-05 14:00:00,18.0018007038643
+1971-08-05 15:00:00,12.6186295905695
+1971-08-05 16:00:00,10.3807095232157
+1971-08-05 17:00:00,16.1138643146898
+1971-08-05 18:00:00,14.3917040260864
+1971-08-05 19:00:00,14.6284100132238
+1971-08-05 20:00:00,11.8716977463747
+1971-08-05 21:00:00,13.3925433274987
+1971-08-05 22:00:00,7.04048754891907
+1971-08-05 23:00:00,10.5674132380377
+1971-08-06 00:00:00,11.9972117263482
+1971-08-06 01:00:00,16.7285258966944
+1971-08-06 02:00:00,14.9058659091258
+1971-08-06 03:00:00,7.97229416746484
+1971-08-06 04:00:00,11.0923654721765
+1971-08-06 05:00:00,15.2305587516714
+1971-08-06 06:00:00,11.5853299930698
+1971-08-06 07:00:00,7.74544982891009
+1971-08-06 08:00:00,9.24616197269642
+1971-08-06 09:00:00,21.5730864154231
+1971-08-06 10:00:00,9.4482558401646
+1971-08-06 11:00:00,18.2551858043775
+1971-08-06 12:00:00,12.9583463946936
+1971-08-06 13:00:00,20.4499678251302
+1971-08-06 14:00:00,13.612677235728
+1971-08-06 15:00:00,17.8549453441413
+1971-08-06 16:00:00,18.1566334884626
+1971-08-06 17:00:00,8.60449157633405
+1971-08-06 18:00:00,15.3031041563539
+1971-08-06 19:00:00,20.9791433029075
+1971-08-06 20:00:00,15.7261007528796
+1971-08-06 21:00:00,6.39038876732771
+1971-08-06 22:00:00,16.84595567303
+1971-08-06 23:00:00,7.43724060287135
+1971-08-07 00:00:00,12.9729221004818
+1971-08-07 01:00:00,14.4091403370251
+1971-08-07 02:00:00,13.5253701012655
+1971-08-07 03:00:00,7.98730779903823
+1971-08-07 04:00:00,12.3488676171122
+1971-08-07 05:00:00,24.0592602099733
+1971-08-07 06:00:00,14.9627679049381
+1971-08-07 07:00:00,19.4151795205715
+1971-08-07 08:00:00,7.83683513320722
+1971-08-07 09:00:00,12.4215874176031
+1971-08-07 10:00:00,18.7114303924001
+1971-08-07 11:00:00,6.63986581976463
+1971-08-07 12:00:00,21.9215322808123
+1971-08-07 13:00:00,15.7979760209225
+1971-08-07 14:00:00,13.6047897415811
+1971-08-07 15:00:00,19.1666478572511
+1971-08-07 16:00:00,6.05439880276994
+1971-08-07 17:00:00,14.2567796148925
+1971-08-07 18:00:00,9.92076355101931
+1971-08-07 19:00:00,15.5282871566802
+1971-08-07 20:00:00,17.071125573058
+1971-08-07 21:00:00,15.9113680527943
+1971-08-07 22:00:00,15.4071882978647
+1971-08-07 23:00:00,11.6868990663479
+1971-08-08 00:00:00,15.1854794631577
+1971-08-08 01:00:00,7.78042532671975
+1971-08-08 02:00:00,16.4785620505452
+1971-08-08 03:00:00,8.26497533051435
+1971-08-08 04:00:00,13.9603156754091
+1971-08-08 05:00:00,17.1413224208019
+1971-08-08 06:00:00,11.3189537892047
+1971-08-08 07:00:00,13.1585140351696
+1971-08-08 08:00:00,20.5125719750083
+1971-08-08 09:00:00,10.5859654532159
+1971-08-08 10:00:00,19.931954393071
+1971-08-08 11:00:00,23.6834174757458
+1971-08-08 12:00:00,11.2700061227715
+1971-08-08 13:00:00,14.4001929786516
+1971-08-08 14:00:00,8.239897859768
+1971-08-08 15:00:00,11.2704949510659
+1971-08-08 16:00:00,10.7698169519117
+1971-08-08 17:00:00,9.35688009734353
+1971-08-08 18:00:00,15.4767638599908
+1971-08-08 19:00:00,19.3665860066142
+1971-08-08 20:00:00,24.3021529988859
+1971-08-08 21:00:00,11.7648219836732
+1971-08-08 22:00:00,8.34837858804793
+1971-08-08 23:00:00,21.1476956289314
+1971-08-09 00:00:00,10.7044668388145
+1971-08-09 01:00:00,16.3352489455832
+1971-08-09 02:00:00,10.6748847750615
+1971-08-09 03:00:00,16.4592261350977
+1971-08-09 04:00:00,19.4626752638227
+1971-08-09 05:00:00,22.5579299879794
+1971-08-09 06:00:00,13.8701003231029
+1971-08-09 07:00:00,13.7372141254931
+1971-08-09 08:00:00,25.4052723541195
+1971-08-09 09:00:00,7.57898110510231
+1971-08-09 10:00:00,9.3556746526932
+1971-08-09 11:00:00,5.4086993961648
+1971-08-09 12:00:00,18.5247705854072
+1971-08-09 13:00:00,11.6845936405241
+1971-08-09 14:00:00,9.47198513725306
+1971-08-09 15:00:00,15.6901822974315
+1971-08-09 16:00:00,14.5582373321615
+1971-08-09 17:00:00,19.1514238375355
+1971-08-09 18:00:00,21.2945620063919
+1971-08-09 19:00:00,19.0642732354813
+1971-08-09 20:00:00,19.6736296242155
+1971-08-09 21:00:00,6.46610321574024
+1971-08-09 22:00:00,11.1153232014021
+1971-08-09 23:00:00,12.3312611593547
+1971-08-10 00:00:00,11.7332934705573
+1971-08-10 01:00:00,11.4348218677417
+1971-08-10 02:00:00,17.652203281501
+1971-08-10 03:00:00,14.034812301478
+1971-08-10 04:00:00,6.85556217842121
+1971-08-10 05:00:00,23.0504195956447
+1971-08-10 06:00:00,8.82255937789028
+1971-08-10 07:00:00,3.95425843525145
+1971-08-10 08:00:00,14.327279109623
+1971-08-10 09:00:00,17.2433921365758
+1971-08-10 10:00:00,7.5611562141654
+1971-08-10 11:00:00,9.39078056789799
+1971-08-10 12:00:00,16.1611527277137
+1971-08-10 13:00:00,11.1976638232354
+1971-08-10 14:00:00,12.5368308951536
+1971-08-10 15:00:00,11.4882748240216
+1971-08-10 16:00:00,20.6320458584821
+1971-08-10 17:00:00,11.0240460995524
+1971-08-10 18:00:00,15.4420976430835
+1971-08-10 19:00:00,11.9712617934546
+1971-08-10 20:00:00,11.9457327265726
+1971-08-10 21:00:00,11.4986302350828
+1971-08-10 22:00:00,21.7611171790687
+1971-08-10 23:00:00,12.3687534708204
+1971-08-11 00:00:00,11.0762424781638
+1971-08-11 01:00:00,14.0964417465841
+1971-08-11 02:00:00,9.62064364146339
+1971-08-11 03:00:00,16.7072614209755
+1971-08-11 04:00:00,12.2900072905863
+1971-08-11 05:00:00,12.7788415299418
+1971-08-11 06:00:00,11.212759610024
+1971-08-11 07:00:00,7.81848139308317
+1971-08-11 08:00:00,9.88388941179007
+1971-08-11 09:00:00,16.0614338172075
+1971-08-11 10:00:00,15.6554346575519
+1971-08-11 11:00:00,10.6625980427245
+1971-08-11 12:00:00,15.5302776801129
+1971-08-11 13:00:00,27.8344570163088
+1971-08-11 14:00:00,5.42328399372908
+1971-08-11 15:00:00,12.2321630930692
+1971-08-11 16:00:00,13.2872024747571
+1971-08-11 17:00:00,12.7991458803701
+1971-08-11 18:00:00,6.64770713314163
+1971-08-11 19:00:00,12.3965288501199
+1971-08-11 20:00:00,10.5601225848884
+1971-08-11 21:00:00,13.7199197594858
+1971-08-11 22:00:00,9.99104646378873
+1971-08-11 23:00:00,18.4615120381173
+1971-08-12 00:00:00,17.1866098535603
+1971-08-12 01:00:00,8.91345284753976
+1971-08-12 02:00:00,13.8033046646297
+1971-08-12 03:00:00,7.22463664221487
+1971-08-12 04:00:00,11.5748775894625
+1971-08-12 05:00:00,5.35835219780745
+1971-08-12 06:00:00,11.6378891322311
+1971-08-12 07:00:00,12.4071238615735
+1971-08-12 08:00:00,17.0162679281783
+1971-08-12 09:00:00,13.3137004361404
+1971-08-12 10:00:00,14.9966862404817
+1971-08-12 11:00:00,12.1749557221548
+1971-08-12 12:00:00,22.7475000519207
+1971-08-12 13:00:00,16.7354749630023
+1971-08-12 14:00:00,8.35883916960328
+1971-08-12 15:00:00,21.4888474639366
+1971-08-12 16:00:00,9.67683648049234
+1971-08-12 17:00:00,11.5069567708268
+1971-08-12 18:00:00,15.2269973734604
+1971-08-12 19:00:00,13.9132358590185
+1971-08-12 20:00:00,20.7449032410496
+1971-08-12 21:00:00,13.1121714787026
+1971-08-12 22:00:00,24.9965081055745
+1971-08-12 23:00:00,15.6364437354689
+1971-08-13 00:00:00,18.2999261752296
+1971-08-13 01:00:00,16.4187139974248
+1971-08-13 02:00:00,11.9766570174777
+1971-08-13 03:00:00,13.0700831637016
+1971-08-13 04:00:00,17.9352759085057
+1971-08-13 05:00:00,13.2157484245813
+1971-08-13 06:00:00,16.2190658784229
+1971-08-13 07:00:00,13.4977018308658
+1971-08-13 08:00:00,11.1948961802162
+1971-08-13 09:00:00,14.5107388466951
+1971-08-13 10:00:00,18.0517392303599
+1971-08-13 11:00:00,11.1362260583488
+1971-08-13 12:00:00,14.7214989422025
+1971-08-13 13:00:00,22.0457772560501
+1971-08-13 14:00:00,7.19817979604644
+1971-08-13 15:00:00,12.8213925983598
+1971-08-13 16:00:00,25.5880370814686
+1971-08-13 17:00:00,29.1875019616326
+1971-08-13 18:00:00,15.3655718693631
+1971-08-13 19:00:00,19.8056684693843
+1971-08-13 20:00:00,10.1537772810727
+1971-08-13 21:00:00,13.5524919656009
+1971-08-13 22:00:00,22.8362286226405
+1971-08-13 23:00:00,16.2633431047375
+1971-08-14 00:00:00,16.666853737423
+1971-08-14 01:00:00,11.0694866218303
+1971-08-14 02:00:00,8.30409047289475
+1971-08-14 03:00:00,13.9474892359151
+1971-08-14 04:00:00,17.0843483949423
+1971-08-14 05:00:00,12.7401260952452
+1971-08-14 06:00:00,17.022719753506
+1971-08-14 07:00:00,19.2153143384805
+1971-08-14 08:00:00,12.6368655975727
+1971-08-14 09:00:00,14.329473424203
+1971-08-14 10:00:00,20.6433721963263
+1971-08-14 11:00:00,17.8420073849803
+1971-08-14 12:00:00,10.416525949457
+1971-08-14 13:00:00,6.64576158327092
+1971-08-14 14:00:00,12.0228178248783
+1971-08-14 15:00:00,5.85259549411041
+1971-08-14 16:00:00,14.7444227771646
+1971-08-14 17:00:00,11.4927297895602
+1971-08-14 18:00:00,10.0421368932236
+1971-08-14 19:00:00,12.8008238249482
+1971-08-14 20:00:00,10.4436050478977
+1971-08-14 21:00:00,9.74766338556849
+1971-08-14 22:00:00,18.0655391644821
+1971-08-14 23:00:00,10.7996439118827
+1971-08-15 00:00:00,20.1830174222564
+1971-08-15 01:00:00,15.3497114446179
+1971-08-15 02:00:00,18.3303028876928
+1971-08-15 03:00:00,19.9088419687207
+1971-08-15 04:00:00,25.3831767851849
+1971-08-15 05:00:00,12.8188897229186
+1971-08-15 06:00:00,11.4063539801051
+1971-08-15 07:00:00,8.29242846974415
+1971-08-15 08:00:00,14.6282936346555
+1971-08-15 09:00:00,17.7478663505592
+1971-08-15 10:00:00,11.0033327488677
+1971-08-15 11:00:00,4.47016507069169
+1971-08-15 12:00:00,10.7974151179688
+1971-08-15 13:00:00,18.70257118721
+1971-08-15 14:00:00,19.129995975631
+1971-08-15 15:00:00,15.537434817563
+1971-08-15 16:00:00,14.290306242932
+1971-08-15 17:00:00,9.45096433126823
+1971-08-15 18:00:00,13.1462839119803
+1971-08-15 19:00:00,12.7912798908512
+1971-08-15 20:00:00,19.9580606544382
+1971-08-15 21:00:00,14.4347327944972
+1971-08-15 22:00:00,18.0122912931447
+1971-08-15 23:00:00,6.76740548759825
+1971-08-16 00:00:00,17.9371060267852
+1971-08-16 01:00:00,16.2732358361621
+1971-08-16 02:00:00,18.959179565417
+1971-08-16 03:00:00,16.7111944213444
+1971-08-16 04:00:00,26.2469157075199
+1971-08-16 05:00:00,14.6837699285229
+1971-08-16 06:00:00,17.2880789615038
+1971-08-16 07:00:00,9.47920684400486
+1971-08-16 08:00:00,13.259701783379
+1971-08-16 09:00:00,14.8706091373133
+1971-08-16 10:00:00,13.1834367784185
+1971-08-16 11:00:00,10.3255952793213
+1971-08-16 12:00:00,14.1439458017831
+1971-08-16 13:00:00,10.0146083862737
+1971-08-16 14:00:00,19.3505646413327
+1971-08-16 15:00:00,16.2992017644314
+1971-08-16 16:00:00,14.0539010944328
+1971-08-16 17:00:00,10.1915289672754
+1971-08-16 18:00:00,17.5011358065626
+1971-08-16 19:00:00,13.0380592766268
+1971-08-16 20:00:00,20.768889820694
+1971-08-16 21:00:00,11.9347208465125
+1971-08-16 22:00:00,13.9078866168756
+1971-08-16 23:00:00,19.2923196152792
+1971-08-17 00:00:00,16.5943764028173
+1971-08-17 01:00:00,11.4256599907423
+1971-08-17 02:00:00,12.6573680975412
+1971-08-17 03:00:00,9.14198323769831
+1971-08-17 04:00:00,13.9239372414341
+1971-08-17 05:00:00,9.31359923642652
+1971-08-17 06:00:00,19.4810043174825
+1971-08-17 07:00:00,11.6671821711437
+1971-08-17 08:00:00,14.0953673764105
+1971-08-17 09:00:00,16.5315285781871
+1971-08-17 10:00:00,12.4865648000676
+1971-08-17 11:00:00,19.1911145594081
+1971-08-17 12:00:00,10.2594712251032
+1971-08-17 13:00:00,14.9946849730804
+1971-08-17 14:00:00,10.485138741594
+1971-08-17 15:00:00,12.0579160699066
+1971-08-17 16:00:00,20.807486984949
+1971-08-17 17:00:00,11.4570281387012
+1971-08-17 18:00:00,19.1641977025093
+1971-08-17 19:00:00,12.0417161656696
+1971-08-17 20:00:00,16.1290578136486
+1971-08-17 21:00:00,14.6613919521508
+1971-08-17 22:00:00,17.6725838348171
+1971-08-17 23:00:00,8.65670013582446
+1971-08-18 00:00:00,13.6599540724038
+1971-08-18 01:00:00,13.5608253820361
+1971-08-18 02:00:00,11.7014993418441
+1971-08-18 03:00:00,17.1772604783942
+1971-08-18 04:00:00,7.91760499663663
+1971-08-18 05:00:00,12.4376009130606
+1971-08-18 06:00:00,18.7330943693911
+1971-08-18 07:00:00,12.6214242933698
+1971-08-18 08:00:00,12.4874008914384
+1971-08-18 09:00:00,8.97400752198539
+1971-08-18 10:00:00,12.0335058200153
+1971-08-18 11:00:00,14.3387414088511
+1971-08-18 12:00:00,20.0806100587659
+1971-08-18 13:00:00,10.6243163294052
+1971-08-18 14:00:00,12.4969517493082
+1971-08-18 15:00:00,12.0166166130557
+1971-08-18 16:00:00,7.73354401555295
+1971-08-18 17:00:00,13.3679327914564
+1971-08-18 18:00:00,8.47341095876379
+1971-08-18 19:00:00,21.5236614788795
+1971-08-18 20:00:00,23.9278340348555
+1971-08-18 21:00:00,12.2542007052453
+1971-08-18 22:00:00,19.2221231113488
+1971-08-18 23:00:00,13.4829028803309
+1971-08-19 00:00:00,11.3711133235653
+1971-08-19 01:00:00,16.9842057919771
+1971-08-19 02:00:00,19.1962086478548
+1971-08-19 03:00:00,14.064631003675
+1971-08-19 04:00:00,12.7680005841726
+1971-08-19 05:00:00,21.101607643482
+1971-08-19 06:00:00,14.3817455033135
+1971-08-19 07:00:00,17.6553622010383
+1971-08-19 08:00:00,14.4826394527704
+1971-08-19 09:00:00,9.2058073940534
+1971-08-19 10:00:00,12.8120063929425
+1971-08-19 11:00:00,7.45964796230908
+1971-08-19 12:00:00,10.1468695854986
+1971-08-19 13:00:00,15.2507394800388
+1971-08-19 14:00:00,22.3193267454611
+1971-08-19 15:00:00,13.1616777864767
+1971-08-19 16:00:00,13.3110818308173
+1971-08-19 17:00:00,18.4242768304959
+1971-08-19 18:00:00,17.0361611742454
+1971-08-19 19:00:00,14.8016359967422
+1971-08-19 20:00:00,21.3976778236713
+1971-08-19 21:00:00,12.3810615810179
+1971-08-19 22:00:00,16.3844434428103
+1971-08-19 23:00:00,18.7454146714235
+1971-08-20 00:00:00,14.5288682011235
+1971-08-20 01:00:00,5.61720938463998
+1971-08-20 02:00:00,12.9567621431719
+1971-08-20 03:00:00,11.0093109220178
+1971-08-20 04:00:00,15.1462692561698
+1971-08-20 05:00:00,16.0991377801447
+1971-08-20 06:00:00,11.0222351190033
+1971-08-20 07:00:00,13.3938258743156
+1971-08-20 08:00:00,8.2612587224156
+1971-08-20 09:00:00,11.3266771449757
+1971-08-20 10:00:00,15.4307927115934
+1971-08-20 11:00:00,8.66697611813727
+1971-08-20 12:00:00,9.10443261201231
+1971-08-20 13:00:00,19.4202650818404
+1971-08-20 14:00:00,8.12248137382316
+1971-08-20 15:00:00,12.2913606552687
+1971-08-20 16:00:00,9.41522628203757
+1971-08-20 17:00:00,4.67356192965496
+1971-08-20 18:00:00,16.1799912195248
+1971-08-20 19:00:00,16.176473287476
+1971-08-20 20:00:00,11.0550334347387
+1971-08-20 21:00:00,17.7346401746465
+1971-08-20 22:00:00,14.3018010324492
+1971-08-20 23:00:00,6.61775481299071
+1971-08-21 00:00:00,7.39020105218258
+1971-08-21 01:00:00,11.2949058676663
+1971-08-21 02:00:00,10.9005462264786
+1971-08-21 03:00:00,24.9497648215595
+1971-08-21 04:00:00,17.3732968496091
+1971-08-21 05:00:00,8.93456417818343
+1971-08-21 06:00:00,11.1198266069807
+1971-08-21 07:00:00,17.7282803690514
+1971-08-21 08:00:00,8.03274064437588
+1971-08-21 09:00:00,22.0992660123287
+1971-08-21 10:00:00,14.1410452603497
+1971-08-21 11:00:00,11.8836793148795
+1971-08-21 12:00:00,11.5839316794062
+1971-08-21 13:00:00,16.7586364706401
+1971-08-21 14:00:00,20.790992880567
+1971-08-21 15:00:00,17.1262740467265
+1971-08-21 16:00:00,12.5520982420097
+1971-08-21 17:00:00,19.1206028752506
+1971-08-21 18:00:00,11.0782363439856
+1971-08-21 19:00:00,22.9763525919414
+1971-08-21 20:00:00,14.0495196897416
+1971-08-21 21:00:00,17.8304558090226
+1971-08-21 22:00:00,14.6423728678846
+1971-08-21 23:00:00,18.608033014167
+1971-08-22 00:00:00,19.8988524200107
+1971-08-22 01:00:00,12.5874956184741
+1971-08-22 02:00:00,10.757122357982
+1971-08-22 03:00:00,17.1243920380009
+1971-08-22 04:00:00,17.1464370741512
+1971-08-22 05:00:00,12.4757837698374
+1971-08-22 06:00:00,17.8172706605302
+1971-08-22 07:00:00,14.5165761695077
+1971-08-22 08:00:00,8.2093344896617
+1971-08-22 09:00:00,6.07773791471676
+1971-08-22 10:00:00,15.6677047975245
+1971-08-22 11:00:00,9.95117767632448
+1971-08-22 12:00:00,11.5750457871317
+1971-08-22 13:00:00,12.5942314320618
+1971-08-22 14:00:00,9.80201380948593
+1971-08-22 15:00:00,11.6038070562531
+1971-08-22 16:00:00,7.93124051493622
+1971-08-22 17:00:00,10.6641621573021
+1971-08-22 18:00:00,25.2021463299708
+1971-08-22 19:00:00,15.3054521392088
+1971-08-22 20:00:00,23.9551378775387
+1971-08-22 21:00:00,5.32397115367013
+1971-08-22 22:00:00,16.4947291789532
+1971-08-22 23:00:00,14.6432978544382
+1971-08-23 00:00:00,11.4928863614302
+1971-08-23 01:00:00,10.2285836109336
+1971-08-23 02:00:00,20.2856986429959
+1971-08-23 03:00:00,18.5973903295592
+1971-08-23 04:00:00,12.1067510628736
+1971-08-23 05:00:00,12.8745015105302
+1971-08-23 06:00:00,15.0856032949518
+1971-08-23 07:00:00,14.6418953330669
+1971-08-23 08:00:00,15.1486178581956
+1971-08-23 09:00:00,16.2286889898346
+1971-08-23 10:00:00,9.09044654971179
+1971-08-23 11:00:00,8.62888622881896
+1971-08-23 12:00:00,6.09837908573997
+1971-08-23 13:00:00,12.8027745028078
+1971-08-23 14:00:00,14.7429475183912
+1971-08-23 15:00:00,18.6919986499757
+1971-08-23 16:00:00,16.0778065701892
+1971-08-23 17:00:00,14.7827722542191
+1971-08-23 18:00:00,13.9359897653371
+1971-08-23 19:00:00,10.0210272381225
+1971-08-23 20:00:00,12.9202818432489
+1971-08-23 21:00:00,11.18190390518
+1971-08-23 22:00:00,17.3130907478231
+1971-08-23 23:00:00,15.9751409023261
+1971-08-24 00:00:00,9.63222321017836
+1971-08-24 01:00:00,15.9890740870778
+1971-08-24 02:00:00,11.1931605334574
+1971-08-24 03:00:00,14.8304642338544
+1971-08-24 04:00:00,16.949661738701
+1971-08-24 05:00:00,10.860066498076
+1971-08-24 06:00:00,17.0498058793864
+1971-08-24 07:00:00,17.0758258830486
+1971-08-24 08:00:00,10.1030573444659
+1971-08-24 09:00:00,9.52498981623182
+1971-08-24 10:00:00,14.4880227364633
+1971-08-24 11:00:00,18.5183493419949
+1971-08-24 12:00:00,18.049518337528
+1971-08-24 13:00:00,11.9049078792072
+1971-08-24 14:00:00,19.216546195373
+1971-08-24 15:00:00,11.6398602914826
+1971-08-24 16:00:00,20.5562974299875
+1971-08-24 17:00:00,14.5047146422404
+1971-08-24 18:00:00,11.3268618213909
+1971-08-24 19:00:00,15.7912569781409
+1971-08-24 20:00:00,7.662412028281
+1971-08-24 21:00:00,21.1137578150003
+1971-08-24 22:00:00,16.9698428685346
+1971-08-24 23:00:00,17.8165985018427
+1971-08-25 00:00:00,13.6330636522353
+1971-08-25 01:00:00,8.50647187466599
+1971-08-25 02:00:00,14.5549965829975
+1971-08-25 03:00:00,16.3159494270348
+1971-08-25 04:00:00,4.22505918623671
+1971-08-25 05:00:00,16.8578601082498
+1971-08-25 06:00:00,13.7649391766197
+1971-08-25 07:00:00,13.2592837647368
+1971-08-25 08:00:00,10.6900441741558
+1971-08-25 09:00:00,15.424174859107
+1971-08-25 10:00:00,7.43212228328147
+1971-08-25 11:00:00,11.1480526824413
+1971-08-25 12:00:00,28.4061871669185
+1971-08-25 13:00:00,18.4924674913341
+1971-08-25 14:00:00,15.3522605466821
+1971-08-25 15:00:00,9.08917608071732
+1971-08-25 16:00:00,11.8185115063769
+1971-08-25 17:00:00,15.6265827241453
+1971-08-25 18:00:00,14.366429742238
+1971-08-25 19:00:00,11.9558901579735
+1971-08-25 20:00:00,9.27186603270856
+1971-08-25 21:00:00,12.1955580417827
+1971-08-25 22:00:00,18.5265302587674
+1971-08-25 23:00:00,16.2425372927227
+1971-08-26 00:00:00,14.72776289666
+1971-08-26 01:00:00,13.4496992494281
+1971-08-26 02:00:00,7.97752794578853
+1971-08-26 03:00:00,11.0374800554294
+1971-08-26 04:00:00,9.45792551065921
+1971-08-26 05:00:00,8.89172409555403
+1971-08-26 06:00:00,19.5144118926516
+1971-08-26 07:00:00,12.5776549579423
+1971-08-26 08:00:00,14.5171707886133
+1971-08-26 09:00:00,20.2328996363838
+1971-08-26 10:00:00,11.279191332914
+1971-08-26 11:00:00,8.70983854441645
+1971-08-26 12:00:00,11.2543036810625
+1971-08-26 13:00:00,12.5716907558156
+1971-08-26 14:00:00,12.0021067273375
+1971-08-26 15:00:00,19.7102701303856
+1971-08-26 16:00:00,13.6142198081779
+1971-08-26 17:00:00,14.4566697434926
+1971-08-26 18:00:00,24.6334705876339
+1971-08-26 19:00:00,22.1953266205066
+1971-08-26 20:00:00,16.1856826332289
+1971-08-26 21:00:00,9.74871804736948
+1971-08-26 22:00:00,10.5524504908962
+1971-08-26 23:00:00,14.6101384246652
+1971-08-27 00:00:00,12.6328413467368
+1971-08-27 01:00:00,11.3650395181015
+1971-08-27 02:00:00,15.0370867857389
+1971-08-27 03:00:00,10.8848978122318
+1971-08-27 04:00:00,12.9832926254237
+1971-08-27 05:00:00,12.0262675251682
+1971-08-27 06:00:00,36.3305069260589
+1971-08-27 07:00:00,17.3467986754722
+1971-08-27 08:00:00,12.5290712901339
+1971-08-27 09:00:00,11.5759963370182
+1971-08-27 10:00:00,11.8530239844156
+1971-08-27 11:00:00,7.93954782064639
+1971-08-27 12:00:00,12.6178874106939
+1971-08-27 13:00:00,22.8596860070379
+1971-08-27 14:00:00,19.3118694996763
+1971-08-27 15:00:00,17.4431097679411
+1971-08-27 16:00:00,28.1389444366269
+1971-08-27 17:00:00,18.0414321646871
+1971-08-27 18:00:00,14.441469107673
+1971-08-27 19:00:00,16.0719098472934
+1971-08-27 20:00:00,12.9938125106763
+1971-08-27 21:00:00,15.8934096328045
+1971-08-27 22:00:00,13.7371772213202
+1971-08-27 23:00:00,21.4057234564168
+1971-08-28 00:00:00,20.8071651581775
+1971-08-28 01:00:00,11.1276445321047
+1971-08-28 02:00:00,14.2460120822665
+1971-08-28 03:00:00,15.8008628821815
+1971-08-28 04:00:00,21.1642124953896
+1971-08-28 05:00:00,19.3817881740975
+1971-08-28 06:00:00,15.1737537017493
+1971-08-28 07:00:00,11.7509816748073
+1971-08-28 08:00:00,10.711704099979
+1971-08-28 09:00:00,14.3636197245649
+1971-08-28 10:00:00,17.5523201170924
+1971-08-28 11:00:00,23.5641212996801
+1971-08-28 12:00:00,13.5343846837992
+1971-08-28 13:00:00,13.6882068165523
+1971-08-28 14:00:00,16.6155307317948
+1971-08-28 15:00:00,20.055899612947
+1971-08-28 16:00:00,9.89872114886418
+1971-08-28 17:00:00,11.8583942467706
+1971-08-28 18:00:00,17.5974987899857
+1971-08-28 19:00:00,12.3206950243198
+1971-08-28 20:00:00,10.1497886037592
+1971-08-28 21:00:00,11.304477677432
+1971-08-28 22:00:00,11.8669838569938
+1971-08-28 23:00:00,10.331537746346
+1971-08-29 00:00:00,24.0612208169176
+1971-08-29 01:00:00,13.4352138545403
+1971-08-29 02:00:00,12.2481191178142
+1971-08-29 03:00:00,14.113769772342
+1971-08-29 04:00:00,23.9940821922774
+1971-08-29 05:00:00,11.7185680451686
+1971-08-29 06:00:00,16.2309605276845
+1971-08-29 07:00:00,14.1771948344753
+1971-08-29 08:00:00,17.458743698308
+1971-08-29 09:00:00,17.7577827594267
+1971-08-29 10:00:00,9.99591204409204
+1971-08-29 11:00:00,18.7489903381773
+1971-08-29 12:00:00,23.5624931762689
+1971-08-29 13:00:00,21.437848963001
+1971-08-29 14:00:00,16.8039500277831
+1971-08-29 15:00:00,12.2995323823897
+1971-08-29 16:00:00,18.9587138191386
+1971-08-29 17:00:00,14.4590825520095
+1971-08-29 18:00:00,21.7770959237292
+1971-08-29 19:00:00,11.4400640775338
+1971-08-29 20:00:00,18.8215053897221
+1971-08-29 21:00:00,13.714166531034
+1971-08-29 22:00:00,15.6748555441721
+1971-08-29 23:00:00,10.2739352254064
+1971-08-30 00:00:00,24.3743544123898
+1971-08-30 01:00:00,9.67427721061631
+1971-08-30 02:00:00,21.2500937242561
+1971-08-30 03:00:00,13.7197439431704
+1971-08-30 04:00:00,7.25377919174428
+1971-08-30 05:00:00,7.93657318265563
+1971-08-30 06:00:00,8.17067021526788
+1971-08-30 07:00:00,16.4496434666645
+1971-08-30 08:00:00,13.6681565831886
+1971-08-30 09:00:00,19.4209123751425
+1971-08-30 10:00:00,11.9574838271952
+1971-08-30 11:00:00,20.0358106593237
+1971-08-30 12:00:00,19.7910740828541
+1971-08-30 13:00:00,11.0557713900708
+1971-08-30 14:00:00,15.131081853947
+1971-08-30 15:00:00,8.83275623612639
+1971-08-30 16:00:00,11.3349885625719
+1971-08-30 17:00:00,11.0401964049581
+1971-08-30 18:00:00,6.15556349033286
+1971-08-30 19:00:00,17.4266817123031
+1971-08-30 20:00:00,9.47735855945708
+1971-08-30 21:00:00,10.2257185307896
+1971-08-30 22:00:00,20.0041577134048
+1971-08-30 23:00:00,23.7057396232655
+1971-08-31 00:00:00,13.9393446338568
+1971-08-31 01:00:00,16.7580598487261
+1971-08-31 02:00:00,12.7078042079657
+1971-08-31 03:00:00,10.8293952715432
+1971-08-31 04:00:00,16.3994358008909
+1971-08-31 05:00:00,10.9854266186966
+1971-08-31 06:00:00,10.1577731785377
+1971-08-31 07:00:00,17.4368268983115
+1971-08-31 08:00:00,9.0019190725658
+1971-08-31 09:00:00,13.8549104251745
+1971-08-31 10:00:00,8.03281611917648
+1971-08-31 11:00:00,12.0477736183554
+1971-08-31 12:00:00,16.6660156569132
+1971-08-31 13:00:00,17.5341841603525
+1971-08-31 14:00:00,12.5527421117015
+1971-08-31 15:00:00,12.7091180942617
+1971-08-31 16:00:00,12.3551934859522
+1971-08-31 17:00:00,31.5255541690054
+1971-08-31 18:00:00,13.1189964631696
+1971-08-31 19:00:00,7.69370345978484
+1971-08-31 20:00:00,17.7512104986166
+1971-08-31 21:00:00,12.4139653673558
+1971-08-31 22:00:00,10.13356533579
+1971-08-31 23:00:00,22.2531853389724
+1971-09-01 00:00:00,14.8787294220754
+1971-09-01 01:00:00,10.4731954996675
+1971-09-01 02:00:00,11.81047913204
+1971-09-01 03:00:00,17.9083523898304
+1971-09-01 04:00:00,9.45593840976661
+1971-09-01 05:00:00,11.4706830185029
+1971-09-01 06:00:00,13.277477611213
+1971-09-01 07:00:00,12.6082605128977
+1971-09-01 08:00:00,19.4743840161886
+1971-09-01 09:00:00,18.8944684267141
+1971-09-01 10:00:00,7.72468612285527
+1971-09-01 11:00:00,8.58739267472468
+1971-09-01 12:00:00,10.5025926155669
+1971-09-01 13:00:00,10.779508082018
+1971-09-01 14:00:00,9.52494717017689
+1971-09-01 15:00:00,10.0335945219671
+1971-09-01 16:00:00,11.5838928439637
+1971-09-01 17:00:00,12.3029083028864
+1971-09-01 18:00:00,13.5203726857776
+1971-09-01 19:00:00,14.0729006298056
+1971-09-01 20:00:00,7.16392794820309
+1971-09-01 21:00:00,10.8806417046109
+1971-09-01 22:00:00,13.5882044096233
+1971-09-01 23:00:00,9.22878468304828
+1971-09-02 00:00:00,9.96599052127971
+1971-09-02 01:00:00,7.38075132549469
+1971-09-02 02:00:00,15.5613781113558
+1971-09-02 03:00:00,15.0638226832566
+1971-09-02 04:00:00,19.3757495493744
+1971-09-02 05:00:00,17.3000778755925
+1971-09-02 06:00:00,10.3228952949282
+1971-09-02 07:00:00,11.6045177526006
+1971-09-02 08:00:00,15.3161363612647
+1971-09-02 09:00:00,12.2523466829751
+1971-09-02 10:00:00,8.85938095114203
+1971-09-02 11:00:00,12.8526310889533
+1971-09-02 12:00:00,12.2486299535308
+1971-09-02 13:00:00,26.6300312749382
+1971-09-02 14:00:00,14.5577884450789
+1971-09-02 15:00:00,11.4780895780644
+1971-09-02 16:00:00,15.272590589367
+1971-09-02 17:00:00,21.3232294166434
+1971-09-02 18:00:00,23.2486398746685
+1971-09-02 19:00:00,15.3162211359541
+1971-09-02 20:00:00,17.1953946314726
+1971-09-02 21:00:00,13.397530136572
+1971-09-02 22:00:00,13.5408898924927
+1971-09-02 23:00:00,11.2616993512347
+1971-09-03 00:00:00,10.787474469128
+1971-09-03 01:00:00,15.2513880198639
+1971-09-03 02:00:00,10.9483445972118
+1971-09-03 03:00:00,13.0561641638545
+1971-09-03 04:00:00,11.2912022605501
+1971-09-03 05:00:00,7.48461082476995
+1971-09-03 06:00:00,8.22267177919794
+1971-09-03 07:00:00,16.5903769318528
+1971-09-03 08:00:00,15.9679339811719
+1971-09-03 09:00:00,18.7560786589376
+1971-09-03 10:00:00,13.8102366331477
+1971-09-03 11:00:00,13.1173633868747
+1971-09-03 12:00:00,14.6801212651924
+1971-09-03 13:00:00,11.5898826954345
+1971-09-03 14:00:00,20.1701615646339
+1971-09-03 15:00:00,22.7933678579744
+1971-09-03 16:00:00,12.7871265962888
+1971-09-03 17:00:00,16.9089225841422
+1971-09-03 18:00:00,16.3351482026301
+1971-09-03 19:00:00,13.4047361116698
+1971-09-03 20:00:00,8.66217904825693
+1971-09-03 21:00:00,11.5304703881911
+1971-09-03 22:00:00,9.9560234055991
+1971-09-03 23:00:00,7.29488645358002
+1971-09-04 00:00:00,11.0854934854655
+1971-09-04 01:00:00,9.58756328618227
+1971-09-04 02:00:00,9.58256399147779
+1971-09-04 03:00:00,19.439776503966
+1971-09-04 04:00:00,11.1911935026003
+1971-09-04 05:00:00,10.1141876895007
+1971-09-04 06:00:00,11.0625074977274
+1971-09-04 07:00:00,10.7974262335264
+1971-09-04 08:00:00,12.678251797017
+1971-09-04 09:00:00,24.2701491252472
+1971-09-04 10:00:00,8.60321311604176
+1971-09-04 11:00:00,8.30178266177474
+1971-09-04 12:00:00,9.32627409214989
+1971-09-04 13:00:00,13.1081100317406
+1971-09-04 14:00:00,11.6140111390258
+1971-09-04 15:00:00,10.1583427631317
+1971-09-04 16:00:00,18.813347059685
+1971-09-04 17:00:00,12.5618445873486
+1971-09-04 18:00:00,8.37707228870859
+1971-09-04 19:00:00,12.4485279351915
+1971-09-04 20:00:00,10.7659387524673
+1971-09-04 21:00:00,18.3227666451511
+1971-09-04 22:00:00,18.622925296117
+1971-09-04 23:00:00,8.8013143558804
+1971-09-05 00:00:00,9.4425397126047
+1971-09-05 01:00:00,10.6884410327887
+1971-09-05 02:00:00,16.0803109671505
+1971-09-05 03:00:00,9.00273356167491
+1971-09-05 04:00:00,12.3618193372677
+1971-09-05 05:00:00,7.7996302677192
+1971-09-05 06:00:00,18.3761412777365
+1971-09-05 07:00:00,19.3378984989933
+1971-09-05 08:00:00,15.946574881317
+1971-09-05 09:00:00,7.10743428116375
+1971-09-05 10:00:00,18.3399076316022
+1971-09-05 11:00:00,12.1650003146517
+1971-09-05 12:00:00,8.65413319599828
+1971-09-05 13:00:00,14.6249116601194
+1971-09-05 14:00:00,10.7197152878851
+1971-09-05 15:00:00,3.44160144341894
+1971-09-05 16:00:00,15.1942645201002
+1971-09-05 17:00:00,8.21435553502477
+1971-09-05 18:00:00,13.2839187523214
+1971-09-05 19:00:00,18.233529304226
+1971-09-05 20:00:00,15.3157703481255
+1971-09-05 21:00:00,13.7104193612483
+1971-09-05 22:00:00,15.397298160362
+1971-09-05 23:00:00,17.5578971273508
+1971-09-06 00:00:00,19.5299368099265
+1971-09-06 01:00:00,9.34950944352303
+1971-09-06 02:00:00,11.9856920477499
+1971-09-06 03:00:00,9.21933510386924
+1971-09-06 04:00:00,13.2694550454124
+1971-09-06 05:00:00,14.3046988162719
+1971-09-06 06:00:00,11.3043456580236
+1971-09-06 07:00:00,11.5615190869718
+1971-09-06 08:00:00,15.1414206867077
+1971-09-06 09:00:00,10.5622853010953
+1971-09-06 10:00:00,21.8136408493518
+1971-09-06 11:00:00,20.2623007834166
+1971-09-06 12:00:00,19.5916473423732
+1971-09-06 13:00:00,16.0315615236937
+1971-09-06 14:00:00,16.7458045635241
+1971-09-06 15:00:00,11.383030757493
+1971-09-06 16:00:00,17.3180254525434
+1971-09-06 17:00:00,13.9185850305153
+1971-09-06 18:00:00,10.9518857226035
+1971-09-06 19:00:00,22.9375424914235
+1971-09-06 20:00:00,16.6304652908973
+1971-09-06 21:00:00,13.3249938091135
+1971-09-06 22:00:00,14.9294988395246
+1971-09-06 23:00:00,16.9402051537105
+1971-09-07 00:00:00,14.3186438558287
+1971-09-07 01:00:00,9.61464152731242
+1971-09-07 02:00:00,14.0743160816665
+1971-09-07 03:00:00,6.8922884894884
+1971-09-07 04:00:00,10.1111134471405
+1971-09-07 05:00:00,12.3641152496669
+1971-09-07 06:00:00,13.8986427743232
+1971-09-07 07:00:00,13.4885259971516
+1971-09-07 08:00:00,19.9631122579025
+1971-09-07 09:00:00,10.6091193446813
+1971-09-07 10:00:00,8.66104960980826
+1971-09-07 11:00:00,9.88071005705697
+1971-09-07 12:00:00,22.7501440307193
+1971-09-07 13:00:00,10.0535673369722
+1971-09-07 14:00:00,19.6768342447949
+1971-09-07 15:00:00,8.22446346324046
+1971-09-07 16:00:00,11.6267902616201
+1971-09-07 17:00:00,14.8648809410827
+1971-09-07 18:00:00,10.9372493198322
+1971-09-07 19:00:00,19.5610848100528
+1971-09-07 20:00:00,17.9682246774018
+1971-09-07 21:00:00,9.62507718214338
+1971-09-07 22:00:00,9.16038201445968
+1971-09-07 23:00:00,10.4030063059512
+1971-09-08 00:00:00,21.3636010559171
+1971-09-08 01:00:00,19.8766269315567
+1971-09-08 02:00:00,13.1464023371728
+1971-09-08 03:00:00,17.4608339696437
+1971-09-08 04:00:00,8.84243555903051
+1971-09-08 05:00:00,13.940328985305
+1971-09-08 06:00:00,20.9048992296818
+1971-09-08 07:00:00,18.2565895068417
+1971-09-08 08:00:00,10.9446191211615
+1971-09-08 09:00:00,12.6508051746268
+1971-09-08 10:00:00,15.4391379012775
+1971-09-08 11:00:00,17.9416947721988
+1971-09-08 12:00:00,15.3807276694447
+1971-09-08 13:00:00,16.8053095186879
+1971-09-08 14:00:00,22.9998737744868
+1971-09-08 15:00:00,8.2070790704001
+1971-09-08 16:00:00,21.0526998401023
+1971-09-08 17:00:00,10.5010727473639
+1971-09-08 18:00:00,17.0479351095184
+1971-09-08 19:00:00,13.0730782698687
+1971-09-08 20:00:00,18.3290172482004
+1971-09-08 21:00:00,12.4304518070077
+1971-09-08 22:00:00,20.3734478396272
+1971-09-08 23:00:00,16.6153007193939
+1971-09-09 00:00:00,14.5524466411211
+1971-09-09 01:00:00,15.4193652498499
+1971-09-09 02:00:00,11.621825679972
+1971-09-09 03:00:00,20.4373525959372
+1971-09-09 04:00:00,10.5007379004763
+1971-09-09 05:00:00,21.5307173111314
+1971-09-09 06:00:00,20.3497078827956
+1971-09-09 07:00:00,14.8244422011643
+1971-09-09 08:00:00,13.5035027529406
+1971-09-09 09:00:00,14.4159336727343
+1971-09-09 10:00:00,23.4696340820053
+1971-09-09 11:00:00,19.104575200453
+1971-09-09 12:00:00,8.46265582911892
+1971-09-09 13:00:00,8.22341665216596
+1971-09-09 14:00:00,10.4440895769313
+1971-09-09 15:00:00,12.1852576892752
+1971-09-09 16:00:00,11.5081745753621
+1971-09-09 17:00:00,12.8840473702687
+1971-09-09 18:00:00,18.2595031349167
+1971-09-09 19:00:00,8.69677689355962
+1971-09-09 20:00:00,18.2607244898564
+1971-09-09 21:00:00,15.065329201585
+1971-09-09 22:00:00,10.4166368803383
+1971-09-09 23:00:00,11.5951626025179
+1971-09-10 00:00:00,11.5052922213786
+1971-09-10 01:00:00,10.0385432989433
+1971-09-10 02:00:00,7.01080286731185
+1971-09-10 03:00:00,13.5419820478277
+1971-09-10 04:00:00,14.434990349339
+1971-09-10 05:00:00,10.4338078676858
+1971-09-10 06:00:00,10.8607203196829
+1971-09-10 07:00:00,11.8432976921964
+1971-09-10 08:00:00,12.0031686194083
+1971-09-10 09:00:00,8.31941991165712
+1971-09-10 10:00:00,11.8996672950448
+1971-09-10 11:00:00,9.31304898318976
+1971-09-10 12:00:00,20.4594575779041
+1971-09-10 13:00:00,18.6006191778554
+1971-09-10 14:00:00,13.4591182531867
+1971-09-10 15:00:00,11.3514683087159
+1971-09-10 16:00:00,9.0356082244835
+1971-09-10 17:00:00,11.8641404851841
+1971-09-10 18:00:00,13.0645562546338
+1971-09-10 19:00:00,8.74324839625194
+1971-09-10 20:00:00,18.2974609648009
+1971-09-10 21:00:00,14.1992805942399
+1971-09-10 22:00:00,16.4155218157
+1971-09-10 23:00:00,7.74287721000684
+1971-09-11 00:00:00,15.8070370271886
+1971-09-11 01:00:00,12.5637844469059
+1971-09-11 02:00:00,21.1061454389169
+1971-09-11 03:00:00,17.0014872801751
+1971-09-11 04:00:00,14.4285609765227
+1971-09-11 05:00:00,22.1495102217776
+1971-09-11 06:00:00,14.1132372322611
+1971-09-11 07:00:00,8.83938973985141
+1971-09-11 08:00:00,11.2032012324462
+1971-09-11 09:00:00,16.922358043385
+1971-09-11 10:00:00,11.1294930132765
+1971-09-11 11:00:00,11.6605283650339
+1971-09-11 12:00:00,20.2110180171211
+1971-09-11 13:00:00,7.60933126328414
+1971-09-11 14:00:00,16.3425002410635
+1971-09-11 15:00:00,10.1714379650543
+1971-09-11 16:00:00,20.4265258572467
+1971-09-11 17:00:00,9.33607813025237
+1971-09-11 18:00:00,12.619462345478
+1971-09-11 19:00:00,10.4795623637445
+1971-09-11 20:00:00,12.9214128332325
+1971-09-11 21:00:00,7.89212359930425
+1971-09-11 22:00:00,16.02474433851
+1971-09-11 23:00:00,9.15749466761178
+1971-09-12 00:00:00,11.3394337349869
+1971-09-12 01:00:00,10.5195407206057
+1971-09-12 02:00:00,13.0885788728894
+1971-09-12 03:00:00,13.2901492646469
+1971-09-12 04:00:00,12.0227936629313
+1971-09-12 05:00:00,11.4936009407785
+1971-09-12 06:00:00,13.0905775359176
+1971-09-12 07:00:00,9.75683513758662
+1971-09-12 08:00:00,9.55167084471668
+1971-09-12 09:00:00,16.8313789409894
+1971-09-12 10:00:00,16.0485863583219
+1971-09-12 11:00:00,8.67130297211914
+1971-09-12 12:00:00,9.28784755931291
+1971-09-12 13:00:00,13.3766856897967
+1971-09-12 14:00:00,18.4512259744633
+1971-09-12 15:00:00,32.8564323229649
+1971-09-12 16:00:00,19.2397890493754
+1971-09-12 17:00:00,12.7215597525144
+1971-09-12 18:00:00,8.77835761356194
+1971-09-12 19:00:00,15.0100467348006
+1971-09-12 20:00:00,12.0185730418214
+1971-09-12 21:00:00,10.6112421501535
+1971-09-12 22:00:00,17.1762704494501
+1971-09-12 23:00:00,12.497090244147
+1971-09-13 00:00:00,11.5033992836679
+1971-09-13 01:00:00,7.99896134383615
+1971-09-13 02:00:00,15.51233884698
+1971-09-13 03:00:00,12.1718679077806
+1971-09-13 04:00:00,18.1394395674216
+1971-09-13 05:00:00,19.5670763573867
+1971-09-13 06:00:00,13.8857916610048
+1971-09-13 07:00:00,25.0545798587985
+1971-09-13 08:00:00,9.16629610674843
+1971-09-13 09:00:00,26.8724363759156
+1971-09-13 10:00:00,12.9719152774495
+1971-09-13 11:00:00,21.0997507218749
+1971-09-13 12:00:00,16.4172905430534
+1971-09-13 13:00:00,16.5775316481125
+1971-09-13 14:00:00,14.5248155050783
+1971-09-13 15:00:00,9.74950269357765
+1971-09-13 16:00:00,10.8123490620462
+1971-09-13 17:00:00,19.1866144953736
+1971-09-13 18:00:00,8.47585948485032
+1971-09-13 19:00:00,9.81759261417769
+1971-09-13 20:00:00,18.040580913105
+1971-09-13 21:00:00,18.4421407774162
+1971-09-13 22:00:00,8.75464199300979
+1971-09-13 23:00:00,10.5563999166278
+1971-09-14 00:00:00,19.4993869734077
+1971-09-14 01:00:00,14.9806572866778
+1971-09-14 02:00:00,15.5754802289014
+1971-09-14 03:00:00,14.6450391252041
+1971-09-14 04:00:00,9.50287342699939
+1971-09-14 05:00:00,20.5449971222822
+1971-09-14 06:00:00,13.4145846179833
+1971-09-14 07:00:00,10.4804093557635
+1971-09-14 08:00:00,16.0020132816942
+1971-09-14 09:00:00,12.6497295853737
+1971-09-14 10:00:00,17.9548142735916
+1971-09-14 11:00:00,10.7079074242291
+1971-09-14 12:00:00,24.4090475561143
+1971-09-14 13:00:00,11.117482572069
+1971-09-14 14:00:00,22.3991213659861
+1971-09-14 15:00:00,4.4404210324656
+1971-09-14 16:00:00,12.9109294131493
+1971-09-14 17:00:00,13.6027105503726
+1971-09-14 18:00:00,16.7296740475532
+1971-09-14 19:00:00,17.293198919719
+1971-09-14 20:00:00,16.4360861889175
+1971-09-14 21:00:00,12.2162062446538
+1971-09-14 22:00:00,19.4468007507212
+1971-09-14 23:00:00,12.2099062519312
+1971-09-15 00:00:00,15.7006521168448
+1971-09-15 01:00:00,9.12306860624349
+1971-09-15 02:00:00,12.6315652123597
+1971-09-15 03:00:00,14.1597973162147
+1971-09-15 04:00:00,12.9460380158875
+1971-09-15 05:00:00,15.6084821257645
+1971-09-15 06:00:00,7.8510923550147
+1971-09-15 07:00:00,14.9001985860261
+1971-09-15 08:00:00,19.7868339745481
+1971-09-15 09:00:00,14.7976634488897
+1971-09-15 10:00:00,13.1072802443274
+1971-09-15 11:00:00,19.312849298216
+1971-09-15 12:00:00,13.0284739877116
+1971-09-15 13:00:00,19.3614450932004
+1971-09-15 14:00:00,11.8761987674261
+1971-09-15 15:00:00,9.21826961633431
+1971-09-15 16:00:00,17.4315109902999
+1971-09-15 17:00:00,4.02609436667583
+1971-09-15 18:00:00,9.27917509529946
+1971-09-15 19:00:00,19.609836937001
+1971-09-15 20:00:00,6.14026487794736
+1971-09-15 21:00:00,14.8030946086395
+1971-09-15 22:00:00,14.1405946207124
+1971-09-15 23:00:00,16.8242920186596
+1971-09-16 00:00:00,20.1769875617459
+1971-09-16 01:00:00,14.9296113920965
+1971-09-16 02:00:00,18.3593523715452
+1971-09-16 03:00:00,11.6395780272544
+1971-09-16 04:00:00,11.3049345238607
+1971-09-16 05:00:00,12.6807593610326
+1971-09-16 06:00:00,25.2897983869093
+1971-09-16 07:00:00,13.1050549079727
+1971-09-16 08:00:00,14.3410090367565
+1971-09-16 09:00:00,25.4013076285565
+1971-09-16 10:00:00,13.5791063219891
+1971-09-16 11:00:00,15.1780174348911
+1971-09-16 12:00:00,13.5969609797628
+1971-09-16 13:00:00,12.0897189027615
+1971-09-16 14:00:00,13.8388358522601
+1971-09-16 15:00:00,7.98816242542046
+1971-09-16 16:00:00,11.8813223807958
+1971-09-16 17:00:00,20.3028488925694
+1971-09-16 18:00:00,21.8273634634954
+1971-09-16 19:00:00,12.7901044658908
+1971-09-16 20:00:00,16.2632123250343
+1971-09-16 21:00:00,26.3995637310818
+1971-09-16 22:00:00,16.7592601421249
+1971-09-16 23:00:00,14.3952731470163
+1971-09-17 00:00:00,8.3815018198012
+1971-09-17 01:00:00,14.5626174307137
+1971-09-17 02:00:00,23.8637690265649
+1971-09-17 03:00:00,10.5686433019529
+1971-09-17 04:00:00,26.4333391180357
+1971-09-17 05:00:00,10.7116205795593
+1971-09-17 06:00:00,11.1466554012479
+1971-09-17 07:00:00,11.5903050099422
+1971-09-17 08:00:00,14.7564396868993
+1971-09-17 09:00:00,13.367985582855
+1971-09-17 10:00:00,22.76639219709
+1971-09-17 11:00:00,18.0496571818062
+1971-09-17 12:00:00,17.2792938171748
+1971-09-17 13:00:00,8.71465984176281
+1971-09-17 14:00:00,16.1380382798839
+1971-09-17 15:00:00,26.2175975671444
+1971-09-17 16:00:00,10.6423182996395
+1971-09-17 17:00:00,13.8092813841925
+1971-09-17 18:00:00,16.2724681387499
+1971-09-17 19:00:00,7.93236678959064
+1971-09-17 20:00:00,13.1590894509473
+1971-09-17 21:00:00,15.2615054209184
+1971-09-17 22:00:00,12.5839566056159
+1971-09-17 23:00:00,19.468381667111
+1971-09-18 00:00:00,12.008778545556
+1971-09-18 01:00:00,10.7680917106873
+1971-09-18 02:00:00,11.3400044737011
+1971-09-18 03:00:00,12.8211607818356
+1971-09-18 04:00:00,18.4694936133024
+1971-09-18 05:00:00,14.2464157194742
+1971-09-18 06:00:00,15.2701387120562
+1971-09-18 07:00:00,10.2121500238685
+1971-09-18 08:00:00,9.54519896390516
+1971-09-18 09:00:00,8.16000555163604
+1971-09-18 10:00:00,15.6074512032993
+1971-09-18 11:00:00,17.2196215935325
+1971-09-18 12:00:00,15.4637825110585
+1971-09-18 13:00:00,19.4721319417642
+1971-09-18 14:00:00,10.8603587250067
+1971-09-18 15:00:00,13.685635389998
+1971-09-18 16:00:00,10.3963052234064
+1971-09-18 17:00:00,14.8200267713637
+1971-09-18 18:00:00,6.64122644751252
+1971-09-18 19:00:00,17.2840298465661
+1971-09-18 20:00:00,16.1595168976939
+1971-09-18 21:00:00,10.1126541847726
+1971-09-18 22:00:00,11.8411625545301
+1971-09-18 23:00:00,12.649036081688
+1971-09-19 00:00:00,15.3587659156647
+1971-09-19 01:00:00,12.5003840140889
+1971-09-19 02:00:00,11.1681445573401
+1971-09-19 03:00:00,18.6818663357502
+1971-09-19 04:00:00,15.6532527432429
+1971-09-19 05:00:00,14.8838016551897
+1971-09-19 06:00:00,15.5892429248826
+1971-09-19 07:00:00,15.8569761440182
+1971-09-19 08:00:00,11.2620771492928
+1971-09-19 09:00:00,19.7635042181809
+1971-09-19 10:00:00,6.04937402044903
+1971-09-19 11:00:00,7.32700911381465
+1971-09-19 12:00:00,21.403128426175
+1971-09-19 13:00:00,14.2050634028222
+1971-09-19 14:00:00,8.10997243809254
+1971-09-19 15:00:00,17.7934043245126
+1971-09-19 16:00:00,12.9336691668521
+1971-09-19 17:00:00,10.2898011218526
+1971-09-19 18:00:00,14.6104717743999
+1971-09-19 19:00:00,9.07905446237405
+1971-09-19 20:00:00,24.040737157728
+1971-09-19 21:00:00,15.3647387546854
+1971-09-19 22:00:00,15.0402092048185
+1971-09-19 23:00:00,11.0556858358528
+1971-09-20 00:00:00,13.4330764895858
+1971-09-20 01:00:00,17.5203199153647
+1971-09-20 02:00:00,23.0855048145011
+1971-09-20 03:00:00,11.3879897241293
+1971-09-20 04:00:00,13.9055895367452
+1971-09-20 05:00:00,9.91175660353254
+1971-09-20 06:00:00,7.75898711684137
+1971-09-20 07:00:00,12.436461227392
+1971-09-20 08:00:00,11.294746551529
+1971-09-20 09:00:00,11.0612484433491
+1971-09-20 10:00:00,17.2002460579467
+1971-09-20 11:00:00,15.2937830265823
+1971-09-20 12:00:00,10.0046273303159
+1971-09-20 13:00:00,17.8514815994593
+1971-09-20 14:00:00,10.20595171332
+1971-09-20 15:00:00,17.6929585079258
+1971-09-20 16:00:00,18.2480171843409
+1971-09-20 17:00:00,15.1893701978441
+1971-09-20 18:00:00,11.5502244699338
+1971-09-20 19:00:00,18.9875794622212
+1971-09-20 20:00:00,6.89358272527696
+1971-09-20 21:00:00,8.1937561432724
+1971-09-20 22:00:00,12.0013175258231
+1971-09-20 23:00:00,15.0070409519637
+1971-09-21 00:00:00,15.2322075490459
+1971-09-21 01:00:00,12.3971310235383
+1971-09-21 02:00:00,16.4155448578049
+1971-09-21 03:00:00,13.4697156148051
+1971-09-21 04:00:00,8.99552194983595
+1971-09-21 05:00:00,15.030612360463
+1971-09-21 06:00:00,21.4490453417518
+1971-09-21 07:00:00,9.89868152394781
+1971-09-21 08:00:00,12.4094256792558
+1971-09-21 09:00:00,22.1080330577632
+1971-09-21 10:00:00,19.0090399092064
+1971-09-21 11:00:00,18.4786340362373
+1971-09-21 12:00:00,12.578449319144
+1971-09-21 13:00:00,18.5162829840924
+1971-09-21 14:00:00,9.81684912732647
+1971-09-21 15:00:00,7.88949176767186
+1971-09-21 16:00:00,21.9227752816784
+1971-09-21 17:00:00,21.0734600109079
+1971-09-21 18:00:00,12.3232492901475
+1971-09-21 19:00:00,13.7447109787117
+1971-09-21 20:00:00,20.6669608040685
+1971-09-21 21:00:00,14.1413509222165
+1971-09-21 22:00:00,22.2812599073026
+1971-09-21 23:00:00,25.7967959867945
+1971-09-22 00:00:00,17.0503116499887
+1971-09-22 01:00:00,12.4322111492209
+1971-09-22 02:00:00,13.0615528882019
+1971-09-22 03:00:00,17.6126960075481
+1971-09-22 04:00:00,19.5692429102141
+1971-09-22 05:00:00,14.259500341705
+1971-09-22 06:00:00,10.1185004413895
+1971-09-22 07:00:00,16.8589498205574
+1971-09-22 08:00:00,12.6964074104684
+1971-09-22 09:00:00,9.31626158756343
+1971-09-22 10:00:00,18.1735376190373
+1971-09-22 11:00:00,10.1374222164137
+1971-09-22 12:00:00,13.1083247591869
+1971-09-22 13:00:00,17.0894692494459
+1971-09-22 14:00:00,17.0266757296712
+1971-09-22 15:00:00,13.7783748146631
+1971-09-22 16:00:00,17.6039749006199
+1971-09-22 17:00:00,14.7518202920711
+1971-09-22 18:00:00,14.4311564608022
+1971-09-22 19:00:00,12.5937480612305
+1971-09-22 20:00:00,26.2941742910684
+1971-09-22 21:00:00,11.9756027288053
+1971-09-22 22:00:00,15.9129330343159
+1971-09-22 23:00:00,10.7175327733823
+1971-09-23 00:00:00,11.0498862059884
+1971-09-23 01:00:00,14.550062215456
+1971-09-23 02:00:00,20.0834437549016
+1971-09-23 03:00:00,20.4785927227282
+1971-09-23 04:00:00,15.1484820480092
+1971-09-23 05:00:00,8.71277305728698
+1971-09-23 06:00:00,7.65669913006205
+1971-09-23 07:00:00,9.13658399352083
+1971-09-23 08:00:00,7.99657624222855
+1971-09-23 09:00:00,14.9997539463221
+1971-09-23 10:00:00,15.0377839714664
+1971-09-23 11:00:00,4.70436961406994
+1971-09-23 12:00:00,18.5415851437074
+1971-09-23 13:00:00,18.5718252967759
+1971-09-23 14:00:00,16.3710067323603
+1971-09-23 15:00:00,18.4006187731956
+1971-09-23 16:00:00,24.9748941000066
+1971-09-23 17:00:00,16.4681153932896
+1971-09-23 18:00:00,7.6929065316222
+1971-09-23 19:00:00,14.7561398356441
+1971-09-23 20:00:00,8.09612531963694
+1971-09-23 21:00:00,14.5643659260869
+1971-09-23 22:00:00,9.82459472602072
+1971-09-23 23:00:00,18.7115530389305
+1971-09-24 00:00:00,11.9158805790162
+1971-09-24 01:00:00,17.1732031868304
+1971-09-24 02:00:00,7.06888991456563
+1971-09-24 03:00:00,15.2832092218413
+1971-09-24 04:00:00,7.68084744491314
+1971-09-24 05:00:00,10.5444510272418
+1971-09-24 06:00:00,11.7738407192246
+1971-09-24 07:00:00,16.1771168198191
+1971-09-24 08:00:00,7.49391107507698
+1971-09-24 09:00:00,6.64151750838315
+1971-09-24 10:00:00,15.7866192852402
+1971-09-24 11:00:00,16.5399620964746
+1971-09-24 12:00:00,18.9801075499814
+1971-09-24 13:00:00,15.5919305798195
+1971-09-24 14:00:00,16.0006698740541
+1971-09-24 15:00:00,10.5452594568046
+1971-09-24 16:00:00,14.4699477126492
+1971-09-24 17:00:00,15.5091001532385
+1971-09-24 18:00:00,11.2066895424075
+1971-09-24 19:00:00,13.9434218399015
+1971-09-24 20:00:00,10.915447146569
+1971-09-24 21:00:00,8.43319673284011
+1971-09-24 22:00:00,20.6450479330318
+1971-09-24 23:00:00,13.8508314710791
+1971-09-25 00:00:00,14.7096008334792
+1971-09-25 01:00:00,10.6023721479208
+1971-09-25 02:00:00,22.1136985482894
+1971-09-25 03:00:00,14.9635197755763
+1971-09-25 04:00:00,23.903637333618
+1971-09-25 05:00:00,12.409106073892
+1971-09-25 06:00:00,15.5388204070317
+1971-09-25 07:00:00,18.0307621211479
+1971-09-25 08:00:00,15.8507480814127
+1971-09-25 09:00:00,15.8487130297035
+1971-09-25 10:00:00,19.7025469687134
+1971-09-25 11:00:00,14.8037449530324
+1971-09-25 12:00:00,24.7553116079472
+1971-09-25 13:00:00,10.1171717344547
+1971-09-25 14:00:00,12.241670148286
+1971-09-25 15:00:00,13.1506990988773
+1971-09-25 16:00:00,12.9943580179618
+1971-09-25 17:00:00,16.5403152300521
+1971-09-25 18:00:00,14.9938944680307
+1971-09-25 19:00:00,8.52698076664971
+1971-09-25 20:00:00,11.2334716280286
+1971-09-25 21:00:00,12.0623016433418
+1971-09-25 22:00:00,15.6090854105147
+1971-09-25 23:00:00,9.98776025070986
+1971-09-26 00:00:00,18.4434765736928
+1971-09-26 01:00:00,6.81015356283197
+1971-09-26 02:00:00,13.2562769247844
+1971-09-26 03:00:00,11.5771413157879
+1971-09-26 04:00:00,9.75177148719833
+1971-09-26 05:00:00,8.06357728571823
+1971-09-26 06:00:00,18.3375213537869
+1971-09-26 07:00:00,6.57932585355948
+1971-09-26 08:00:00,11.4409036819511
+1971-09-26 09:00:00,7.21989921725399
+1971-09-26 10:00:00,14.9000383134394
+1971-09-26 11:00:00,18.2876740564062
+1971-09-26 12:00:00,8.78400902556296
+1971-09-26 13:00:00,13.4487128992213
+1971-09-26 14:00:00,12.7520593152454
+1971-09-26 15:00:00,10.1902762708214
+1971-09-26 16:00:00,9.14519193801891
+1971-09-26 17:00:00,9.61182239603344
+1971-09-26 18:00:00,6.72845177076771
+1971-09-26 19:00:00,20.5603462250464
+1971-09-26 20:00:00,22.5049806003623
+1971-09-26 21:00:00,15.4187614631255
+1971-09-26 22:00:00,15.6073471398967
+1971-09-26 23:00:00,13.8716998918504
+1971-09-27 00:00:00,23.5757184075763
+1971-09-27 01:00:00,17.3516132473621
+1971-09-27 02:00:00,18.298426380705
+1971-09-27 03:00:00,20.855334730739
+1971-09-27 04:00:00,18.4051363784007
+1971-09-27 05:00:00,15.2521073178816
+1971-09-27 06:00:00,14.0846790253011
+1971-09-27 07:00:00,13.1341960991771
+1971-09-27 08:00:00,10.2227836103157
+1971-09-27 09:00:00,15.6425180539672
+1971-09-27 10:00:00,16.2330772971778
+1971-09-27 11:00:00,11.9785710398794
+1971-09-27 12:00:00,6.63072953335414
+1971-09-27 13:00:00,13.6253259040351
+1971-09-27 14:00:00,10.9178417557813
+1971-09-27 15:00:00,27.3836009340107
+1971-09-27 16:00:00,18.4718225123823
+1971-09-27 17:00:00,12.909262692334
+1971-09-27 18:00:00,14.7713700631142
+1971-09-27 19:00:00,8.33397205469292
+1971-09-27 20:00:00,12.2117392466865
+1971-09-27 21:00:00,14.239535278825
+1971-09-27 22:00:00,13.3297553008048
+1971-09-27 23:00:00,19.7218705412242
+1971-09-28 00:00:00,16.797381954321
+1971-09-28 01:00:00,10.3859670063971
+1971-09-28 02:00:00,19.2252194377792
+1971-09-28 03:00:00,16.3114593335929
+1971-09-28 04:00:00,20.9988016726634
+1971-09-28 05:00:00,17.0229510220119
+1971-09-28 06:00:00,20.0566807591087
+1971-09-28 07:00:00,16.8766350313576
+1971-09-28 08:00:00,11.5466559441908
+1971-09-28 09:00:00,14.2795429911705
+1971-09-28 10:00:00,15.3723522445982
+1971-09-28 11:00:00,12.0985218069004
+1971-09-28 12:00:00,15.0847847008427
+1971-09-28 13:00:00,9.52947438117722
+1971-09-28 14:00:00,9.96783265797018
+1971-09-28 15:00:00,9.37785300847113
+1971-09-28 16:00:00,18.5665752328418
+1971-09-28 17:00:00,30.0899886079426
+1971-09-28 18:00:00,15.0838338703382
+1971-09-28 19:00:00,10.5511634725855
+1971-09-28 20:00:00,10.8348804459787
+1971-09-28 21:00:00,21.441238167576
+1971-09-28 22:00:00,10.2364305445888
+1971-09-28 23:00:00,11.4516458944883
+1971-09-29 00:00:00,13.6616877635442
+1971-09-29 01:00:00,12.5474245977515
+1971-09-29 02:00:00,19.4043874687238
+1971-09-29 03:00:00,16.1521414536128
+1971-09-29 04:00:00,12.2720502302837
+1971-09-29 05:00:00,17.4641666990595
+1971-09-29 06:00:00,9.56870344653606
+1971-09-29 07:00:00,17.1576544375599
+1971-09-29 08:00:00,13.6294449087904
+1971-09-29 09:00:00,19.1384741318045
+1971-09-29 10:00:00,17.5800500029867
+1971-09-29 11:00:00,10.9695670523731
+1971-09-29 12:00:00,22.2613613923366
+1971-09-29 13:00:00,13.5819146746154
+1971-09-29 14:00:00,17.5904749200915
+1971-09-29 15:00:00,9.21369214159145
+1971-09-29 16:00:00,7.8693668232946
+1971-09-29 17:00:00,14.6369539962869
+1971-09-29 18:00:00,7.27674115351944
+1971-09-29 19:00:00,17.8964215500541
+1971-09-29 20:00:00,11.7390106191053
+1971-09-29 21:00:00,11.5840269920892
+1971-09-29 22:00:00,18.2709960355031
+1971-09-29 23:00:00,19.2688021885905
+1971-09-30 00:00:00,12.2174305014672
+1971-09-30 01:00:00,15.8245892204805
+1971-09-30 02:00:00,20.9483152463092
+1971-09-30 03:00:00,19.1262878522085
+1971-09-30 04:00:00,18.3039025326312
+1971-09-30 05:00:00,15.6786607377146
+1971-09-30 06:00:00,15.2305722466813
+1971-09-30 07:00:00,17.5144312078673
+1971-09-30 08:00:00,8.04152846321634
+1971-09-30 09:00:00,11.8980528074282
+1971-09-30 10:00:00,8.24196707826126
+1971-09-30 11:00:00,10.1459166109499
+1971-09-30 12:00:00,13.9903752875347
+1971-09-30 13:00:00,16.1662638073992
+1971-09-30 14:00:00,15.660507604128
+1971-09-30 15:00:00,8.786698119703
+1971-09-30 16:00:00,19.6664499277819
+1971-09-30 17:00:00,13.7151265897554
+1971-09-30 18:00:00,12.2676911209231
+1971-09-30 19:00:00,22.8348650955546
+1971-09-30 20:00:00,12.3397152599705
+1971-09-30 21:00:00,8.49701735271897
+1971-09-30 22:00:00,10.9678412918228
+1971-09-30 23:00:00,10.4868694828871
+1971-10-01 00:00:00,26.1440049193853
+1971-10-01 01:00:00,16.0718040614625
+1971-10-01 02:00:00,16.6857708616407
+1971-10-01 03:00:00,26.5299412257125
+1971-10-01 04:00:00,18.9616278796497
+1971-10-01 05:00:00,12.4277043321656
+1971-10-01 06:00:00,7.57433083571643
+1971-10-01 07:00:00,7.35939840679274
+1971-10-01 08:00:00,7.24366056944003
+1971-10-01 09:00:00,19.4149115895874
+1971-10-01 10:00:00,9.76191696207962
+1971-10-01 11:00:00,13.7494792412816
+1971-10-01 12:00:00,9.03894107978994
+1971-10-01 13:00:00,13.7281118817571
+1971-10-01 14:00:00,12.0220217843771
+1971-10-01 15:00:00,7.81378893172334
+1971-10-01 16:00:00,14.5231518739543
+1971-10-01 17:00:00,16.6689234724121
+1971-10-01 18:00:00,14.6921060431272
+1971-10-01 19:00:00,9.5589539057186
+1971-10-01 20:00:00,17.4788746644336
+1971-10-01 21:00:00,13.924279748186
+1971-10-01 22:00:00,11.3559247370484
+1971-10-01 23:00:00,15.2194691577562
+1971-10-02 00:00:00,10.3171670305199
+1971-10-02 01:00:00,11.5979290439246
+1971-10-02 02:00:00,13.1508429733352
+1971-10-02 03:00:00,12.3496769425319
+1971-10-02 04:00:00,11.3432209252659
+1971-10-02 05:00:00,18.5576162978997
+1971-10-02 06:00:00,7.3209071318864
+1971-10-02 07:00:00,9.82460752448331
+1971-10-02 08:00:00,12.0012072223273
+1971-10-02 09:00:00,12.6263843696045
+1971-10-02 10:00:00,18.6470444634315
+1971-10-02 11:00:00,19.9921985827765
+1971-10-02 12:00:00,9.59326798226858
+1971-10-02 13:00:00,16.2681777685164
+1971-10-02 14:00:00,10.7808498675867
+1971-10-02 15:00:00,11.2429605054954
+1971-10-02 16:00:00,10.2092367085243
+1971-10-02 17:00:00,6.35425012492666
+1971-10-02 18:00:00,24.4917448512729
+1971-10-02 19:00:00,11.464908931753
+1971-10-02 20:00:00,13.3129178516838
+1971-10-02 21:00:00,21.0897442187577
+1971-10-02 22:00:00,7.12931083969767
+1971-10-02 23:00:00,21.6138100890992
+1971-10-03 00:00:00,15.0628200301032
+1971-10-03 01:00:00,16.6527033363948
+1971-10-03 02:00:00,16.6200168881694
+1971-10-03 03:00:00,11.3291874802655
+1971-10-03 04:00:00,10.2403510488456
+1971-10-03 05:00:00,11.8147959375155
+1971-10-03 06:00:00,13.8840595886614
+1971-10-03 07:00:00,14.6925879288952
+1971-10-03 08:00:00,12.0082937502596
+1971-10-03 09:00:00,12.4238543231349
+1971-10-03 10:00:00,16.1150908766262
+1971-10-03 11:00:00,11.1061100703811
+1971-10-03 12:00:00,15.0176899811143
+1971-10-03 13:00:00,17.1991427365094
+1971-10-03 14:00:00,7.910491866716
+1971-10-03 15:00:00,14.9982652519188
+1971-10-03 16:00:00,11.3980996544162
+1971-10-03 17:00:00,10.0104994922672
+1971-10-03 18:00:00,14.8245757598503
+1971-10-03 19:00:00,16.1704805220488
+1971-10-03 20:00:00,15.5209931611625
+1971-10-03 21:00:00,13.2279029105338
+1971-10-03 22:00:00,5.00276081233842
+1971-10-03 23:00:00,16.0725120087507
+1971-10-04 00:00:00,9.11469987027312
+1971-10-04 01:00:00,21.9705060816955
+1971-10-04 02:00:00,13.2204651448181
+1971-10-04 03:00:00,19.548196520411
+1971-10-04 04:00:00,8.75668434343374
+1971-10-04 05:00:00,13.5964215615793
+1971-10-04 06:00:00,8.03548323531616
+1971-10-04 07:00:00,15.5689534628305
+1971-10-04 08:00:00,11.1788206381314
+1971-10-04 09:00:00,13.4429447135173
+1971-10-04 10:00:00,13.7182503464266
+1971-10-04 11:00:00,12.3262001734631
+1971-10-04 12:00:00,10.7320554078198
+1971-10-04 13:00:00,10.0823759237821
+1971-10-04 14:00:00,9.67943908424024
+1971-10-04 15:00:00,23.4243070414975
+1971-10-04 16:00:00,14.6582360630637
+1971-10-04 17:00:00,14.0319901614911
+1971-10-04 18:00:00,10.6682345040638
+1971-10-04 19:00:00,9.97443429994238
+1971-10-04 20:00:00,13.4374731480483
+1971-10-04 21:00:00,8.39562499269437
+1971-10-04 22:00:00,21.5824755160238
+1971-10-04 23:00:00,9.7494085284275
+1971-10-05 00:00:00,16.7385135849151
+1971-10-05 01:00:00,12.638338802024
+1971-10-05 02:00:00,17.8594665165448
+1971-10-05 03:00:00,13.5120135579241
+1971-10-05 04:00:00,13.8128686756121
+1971-10-05 05:00:00,15.4645655552828
+1971-10-05 06:00:00,16.4073307014289
+1971-10-05 07:00:00,8.88620262292809
+1971-10-05 08:00:00,13.9978467055904
+1971-10-05 09:00:00,11.8258145311804
+1971-10-05 10:00:00,18.317162454155
+1971-10-05 11:00:00,14.6250683996535
+1971-10-05 12:00:00,8.08391735088583
+1971-10-05 13:00:00,9.15689021891946
+1971-10-05 14:00:00,22.7893884981695
+1971-10-05 15:00:00,15.57042760469
+1971-10-05 16:00:00,12.8772115233801
+1971-10-05 17:00:00,8.68045613478827
+1971-10-05 18:00:00,15.2751595859279
+1971-10-05 19:00:00,13.2046304259754
+1971-10-05 20:00:00,12.9516697744971
+1971-10-05 21:00:00,9.44732646895853
+1971-10-05 22:00:00,8.26560160171069
+1971-10-05 23:00:00,19.2037182993069
+1971-10-06 00:00:00,12.8014945551275
+1971-10-06 01:00:00,8.37236680382115
+1971-10-06 02:00:00,19.0144295214421
+1971-10-06 03:00:00,10.1958445615582
+1971-10-06 04:00:00,17.8857744901205
+1971-10-06 05:00:00,11.0274096889258
+1971-10-06 06:00:00,11.5998115103928
+1971-10-06 07:00:00,22.6727798174835
+1971-10-06 08:00:00,9.11168978934701
+1971-10-06 09:00:00,16.4869373493485
+1971-10-06 10:00:00,15.2714533609795
+1971-10-06 11:00:00,10.042173356679
+1971-10-06 12:00:00,8.24120772073508
+1971-10-06 13:00:00,22.5510204863057
+1971-10-06 14:00:00,15.9519856892881
+1971-10-06 15:00:00,10.2834247002617
+1971-10-06 16:00:00,12.6330177681437
+1971-10-06 17:00:00,25.0475247418472
+1971-10-06 18:00:00,11.7620716439824
+1971-10-06 19:00:00,14.7238253592103
+1971-10-06 20:00:00,15.0639022897317
+1971-10-06 21:00:00,8.96578891015243
+1971-10-06 22:00:00,17.6350045469917
+1971-10-06 23:00:00,14.3547853324554
+1971-10-07 00:00:00,11.6176546533634
+1971-10-07 01:00:00,10.755717729999
+1971-10-07 02:00:00,7.58868336918653
+1971-10-07 03:00:00,9.00997028213362
+1971-10-07 04:00:00,12.5394602678081
+1971-10-07 05:00:00,16.5771301763669
+1971-10-07 06:00:00,10.6464176460311
+1971-10-07 07:00:00,15.2096128224824
+1971-10-07 08:00:00,8.75612570813104
+1971-10-07 09:00:00,18.076389322461
+1971-10-07 10:00:00,7.15807070993112
+1971-10-07 11:00:00,12.1704264738738
+1971-10-07 12:00:00,13.3215826477183
+1971-10-07 13:00:00,15.5746710899337
+1971-10-07 14:00:00,10.0409234913094
+1971-10-07 15:00:00,20.2671090615316
+1971-10-07 16:00:00,16.4794575156591
+1971-10-07 17:00:00,11.8148407626939
+1971-10-07 18:00:00,13.5614772206369
+1971-10-07 19:00:00,15.8952711568843
+1971-10-07 20:00:00,8.32854251166124
+1971-10-07 21:00:00,21.3692935501012
+1971-10-07 22:00:00,18.2137867082602
+1971-10-07 23:00:00,10.1623956719443
+1971-10-08 00:00:00,13.8028642667723
+1971-10-08 01:00:00,15.0429365394199
+1971-10-08 02:00:00,20.1226214302859
+1971-10-08 03:00:00,14.9166749993271
+1971-10-08 04:00:00,13.0273202621514
+1971-10-08 05:00:00,21.4746645245653
+1971-10-08 06:00:00,12.8327428523053
+1971-10-08 07:00:00,15.2257832102465
+1971-10-08 08:00:00,15.1604046181354
+1971-10-08 09:00:00,17.5098801821444
+1971-10-08 10:00:00,11.5564318525145
+1971-10-08 11:00:00,14.8828585046409
+1971-10-08 12:00:00,12.571757602548
+1971-10-08 13:00:00,20.2366776802321
+1971-10-08 14:00:00,14.4055932996871
+1971-10-08 15:00:00,12.9745390908758
+1971-10-08 16:00:00,15.6573169126567
+1971-10-08 17:00:00,15.3883347245676
+1971-10-08 18:00:00,14.0749262100015
+1971-10-08 19:00:00,12.2676638794957
+1971-10-08 20:00:00,19.3430551994314
+1971-10-08 21:00:00,9.50807530135324
+1971-10-08 22:00:00,17.6970383792937
+1971-10-08 23:00:00,12.4180216005628
+1971-10-09 00:00:00,12.0214432240713
+1971-10-09 01:00:00,13.1459387309257
+1971-10-09 02:00:00,10.6257941792971
+1971-10-09 03:00:00,13.6604084832383
+1971-10-09 04:00:00,17.5618940638143
+1971-10-09 05:00:00,13.1426935549513
+1971-10-09 06:00:00,15.2826946098741
+1971-10-09 07:00:00,8.25945839194941
+1971-10-09 08:00:00,12.7966364630356
+1971-10-09 09:00:00,14.5521551147778
+1971-10-09 10:00:00,13.5436449062445
+1971-10-09 11:00:00,6.18555345835317
+1971-10-09 12:00:00,20.7205301774016
+1971-10-09 13:00:00,25.1644879769847
+1971-10-09 14:00:00,19.2755694018306
+1971-10-09 15:00:00,13.9846910468847
+1971-10-09 16:00:00,19.3442269787192
+1971-10-09 17:00:00,10.2577335132555
+1971-10-09 18:00:00,11.2416361665317
+1971-10-09 19:00:00,18.3346969470645
+1971-10-09 20:00:00,17.1791293507322
+1971-10-09 21:00:00,15.5184444526917
+1971-10-09 22:00:00,14.9843944708371
+1971-10-09 23:00:00,16.8557706188945
+1971-10-10 00:00:00,10.8747344422371
+1971-10-10 01:00:00,12.2037026056918
+1971-10-10 02:00:00,9.20449656683407
+1971-10-10 03:00:00,16.333650746399
+1971-10-10 04:00:00,15.5987429285306
+1971-10-10 05:00:00,16.8561263649426
+1971-10-10 06:00:00,17.718976895088
+1971-10-10 07:00:00,15.2250586329554
+1971-10-10 08:00:00,22.3279127821592
+1971-10-10 09:00:00,15.7985323350178
+1971-10-10 10:00:00,8.50627175105225
+1971-10-10 11:00:00,15.2561030411849
+1971-10-10 12:00:00,19.3942621491543
+1971-10-10 13:00:00,18.7960778609799
+1971-10-10 14:00:00,10.2159444873377
+1971-10-10 15:00:00,13.2245853899977
+1971-10-10 16:00:00,16.5290854144859
+1971-10-10 17:00:00,18.1440524369932
+1971-10-10 18:00:00,14.1333129398185
+1971-10-10 19:00:00,20.4872346008455
+1971-10-10 20:00:00,17.5735828734553
+1971-10-10 21:00:00,7.77105829830315
+1971-10-10 22:00:00,8.50785760738394
+1971-10-10 23:00:00,5.96006554811655
+1971-10-11 00:00:00,22.7948404119571
+1971-10-11 01:00:00,9.26711572872148
+1971-10-11 02:00:00,24.3004288184649
+1971-10-11 03:00:00,7.64468827961539
+1971-10-11 04:00:00,11.21489618945
+1971-10-11 05:00:00,17.855261195745
+1971-10-11 06:00:00,7.18980473452854
+1971-10-11 07:00:00,16.9911962103303
+1971-10-11 08:00:00,14.4216632377014
+1971-10-11 09:00:00,15.2228193495505
+1971-10-11 10:00:00,15.6195153304992
+1971-10-11 11:00:00,23.4809500969058
+1971-10-11 12:00:00,16.0789313441863
+1971-10-11 13:00:00,14.8877269242077
+1971-10-11 14:00:00,18.6047549914957
+1971-10-11 15:00:00,22.9229541700221
+1971-10-11 16:00:00,11.7446806534989
+1971-10-11 17:00:00,8.64331569122023
+1971-10-11 18:00:00,15.6809384256334
+1971-10-11 19:00:00,11.8120520666694
+1971-10-11 20:00:00,12.5368862168549
+1971-10-11 21:00:00,19.8191487715127
+1971-10-11 22:00:00,13.3672457160291
+1971-10-11 23:00:00,26.6312778047288
+1971-10-12 00:00:00,23.611571936112
+1971-10-12 01:00:00,15.2697120838195
+1971-10-12 02:00:00,11.2682960586833
+1971-10-12 03:00:00,12.1624885762416
+1971-10-12 04:00:00,14.7123084624246
+1971-10-12 05:00:00,12.9163817240547
+1971-10-12 06:00:00,19.6315991424871
+1971-10-12 07:00:00,16.4303664301108
+1971-10-12 08:00:00,16.9585611934565
+1971-10-12 09:00:00,7.85726121026067
+1971-10-12 10:00:00,9.79296194559896
+1971-10-12 11:00:00,13.1856852503639
+1971-10-12 12:00:00,13.8657666477151
+1971-10-12 13:00:00,10.0063842159098
+1971-10-12 14:00:00,14.5053497287852
+1971-10-12 15:00:00,14.3394417070355
+1971-10-12 16:00:00,13.012494480012
+1971-10-12 17:00:00,10.0098828634502
+1971-10-12 18:00:00,10.7214004139979
+1971-10-12 19:00:00,15.8420257105867
+1971-10-12 20:00:00,11.1780596674275
+1971-10-12 21:00:00,13.9485779125646
+1971-10-12 22:00:00,16.4141169777072
+1971-10-12 23:00:00,14.2526046047239
+1971-10-13 00:00:00,12.964989596135
+1971-10-13 01:00:00,15.6178350823347
+1971-10-13 02:00:00,9.00147145671077
+1971-10-13 03:00:00,9.59169031842364
+1971-10-13 04:00:00,18.5631066793135
+1971-10-13 05:00:00,11.0621036413558
+1971-10-13 06:00:00,16.4864939349677
+1971-10-13 07:00:00,13.1268892704267
+1971-10-13 08:00:00,9.93266165584749
+1971-10-13 09:00:00,13.7337772244564
+1971-10-13 10:00:00,13.1689767221356
+1971-10-13 11:00:00,14.2003839141765
+1971-10-13 12:00:00,9.20461048278571
+1971-10-13 13:00:00,11.1864850347325
+1971-10-13 14:00:00,6.68027322087843
+1971-10-13 15:00:00,27.6742383520172
+1971-10-13 16:00:00,13.717119282456
+1971-10-13 17:00:00,7.05186009384297
+1971-10-13 18:00:00,17.6584027819651
+1971-10-13 19:00:00,12.3000982406778
+1971-10-13 20:00:00,14.8998310013933
+1971-10-13 21:00:00,15.2362143999734
+1971-10-13 22:00:00,10.7710290334928
+1971-10-13 23:00:00,10.9638195665211
+1971-10-14 00:00:00,9.44545874337637
+1971-10-14 01:00:00,8.29371831481423
+1971-10-14 02:00:00,16.7375566016546
+1971-10-14 03:00:00,11.8977135755696
+1971-10-14 04:00:00,19.0498134164403
+1971-10-14 05:00:00,13.9714797801859
+1971-10-14 06:00:00,19.0560462723454
+1971-10-14 07:00:00,14.2167759535632
+1971-10-14 08:00:00,9.67560943111063
+1971-10-14 09:00:00,9.93497122916298
+1971-10-14 10:00:00,13.7042076949851
+1971-10-14 11:00:00,8.24754639169374
+1971-10-14 12:00:00,13.3720515650994
+1971-10-14 13:00:00,8.10318469547914
+1971-10-14 14:00:00,16.3129570082478
+1971-10-14 15:00:00,8.78661997798486
+1971-10-14 16:00:00,12.7413014459545
+1971-10-14 17:00:00,9.05956224598257
+1971-10-14 18:00:00,16.7951809864182
+1971-10-14 19:00:00,14.5945098522417
+1971-10-14 20:00:00,12.3228548071679
+1971-10-14 21:00:00,14.6699726332913
+1971-10-14 22:00:00,19.2049403877318
+1971-10-14 23:00:00,9.01754609019384
+1971-10-15 00:00:00,27.0650404866974
+1971-10-15 01:00:00,22.864658888855
+1971-10-15 02:00:00,12.4041984861605
+1971-10-15 03:00:00,6.7606670834926
+1971-10-15 04:00:00,9.44054566312374
+1971-10-15 05:00:00,8.77711197656041
+1971-10-15 06:00:00,11.7712807191665
+1971-10-15 07:00:00,9.78957461605455
+1971-10-15 08:00:00,15.2925491349073
+1971-10-15 09:00:00,10.9655197445451
+1971-10-15 10:00:00,9.98396838652549
+1971-10-15 11:00:00,11.7080215150504
+1971-10-15 12:00:00,14.5179958340874
+1971-10-15 13:00:00,6.7609998149974
+1971-10-15 14:00:00,12.3118789869221
+1971-10-15 15:00:00,9.4926435250215
+1971-10-15 16:00:00,23.7652818026764
+1971-10-15 17:00:00,16.3354248838629
+1971-10-15 18:00:00,21.6025370243141
+1971-10-15 19:00:00,8.71385769200562
+1971-10-15 20:00:00,12.1847244665634
+1971-10-15 21:00:00,11.1398708028136
+1971-10-15 22:00:00,11.5852064666927
+1971-10-15 23:00:00,11.0957064123783
+1971-10-16 00:00:00,19.4112374428011
+1971-10-16 01:00:00,14.8347671415979
+1971-10-16 02:00:00,20.3263056029813
+1971-10-16 03:00:00,19.9242983759746
+1971-10-16 04:00:00,15.3136995904048
+1971-10-16 05:00:00,15.2433963250047
+1971-10-16 06:00:00,14.3632525878446
+1971-10-16 07:00:00,23.1010905868608
+1971-10-16 08:00:00,11.7439493799849
+1971-10-16 09:00:00,12.9178590627697
+1971-10-16 10:00:00,11.4528881256531
+1971-10-16 11:00:00,4.11409193327418
+1971-10-16 12:00:00,12.4075606313321
+1971-10-16 13:00:00,15.8904216678031
+1971-10-16 14:00:00,17.121680211679
+1971-10-16 15:00:00,12.4140830668531
+1971-10-16 16:00:00,8.1675507436863
+1971-10-16 17:00:00,17.4768487515454
+1971-10-16 18:00:00,7.73473728455464
+1971-10-16 19:00:00,12.0670716980569
+1971-10-16 20:00:00,15.1421803359977
+1971-10-16 21:00:00,18.9223047123428
+1971-10-16 22:00:00,11.1319058780459
+1971-10-16 23:00:00,13.1313107418267
+1971-10-17 00:00:00,23.4064701083847
+1971-10-17 01:00:00,9.33487819299206
+1971-10-17 02:00:00,16.0636577743731
+1971-10-17 03:00:00,23.3932377337226
+1971-10-17 04:00:00,17.4042154217652
+1971-10-17 05:00:00,12.3483101013152
+1971-10-17 06:00:00,13.8236259288273
+1971-10-17 07:00:00,12.9518047192558
+1971-10-17 08:00:00,19.3498023755889
+1971-10-17 09:00:00,16.4619939312892
+1971-10-17 10:00:00,15.5194600359706
+1971-10-17 11:00:00,15.6982305383831
+1971-10-17 12:00:00,13.224239381461
+1971-10-17 13:00:00,16.6949278103455
+1971-10-17 14:00:00,13.0383177432764
+1971-10-17 15:00:00,12.0994242448028
+1971-10-17 16:00:00,10.7827455497246
+1971-10-17 17:00:00,15.6631863421828
+1971-10-17 18:00:00,6.8192461462483
+1971-10-17 19:00:00,24.653627609453
+1971-10-17 20:00:00,18.8216815063695
+1971-10-17 21:00:00,4.72247129876594
+1971-10-17 22:00:00,11.9668941214694
+1971-10-17 23:00:00,20.8246767118761
+1971-10-18 00:00:00,11.6265000706562
+1971-10-18 01:00:00,8.21875655406659
+1971-10-18 02:00:00,15.3088126012172
+1971-10-18 03:00:00,23.4013335751318
+1971-10-18 04:00:00,12.7436450393409
+1971-10-18 05:00:00,14.7380588974665
+1971-10-18 06:00:00,14.8213718226919
+1971-10-18 07:00:00,11.8379887725879
+1971-10-18 08:00:00,7.76583225780427
+1971-10-18 09:00:00,13.0088309118274
+1971-10-18 10:00:00,11.6457601163992
+1971-10-18 11:00:00,17.5165786236669
+1971-10-18 12:00:00,18.9980325817767
+1971-10-18 13:00:00,11.5467632022758
+1971-10-18 14:00:00,14.8044833924856
+1971-10-18 15:00:00,9.94744449726721
+1971-10-18 16:00:00,16.3002258803382
+1971-10-18 17:00:00,18.3033510717896
+1971-10-18 18:00:00,13.2173636230377
+1971-10-18 19:00:00,16.8360850025297
+1971-10-18 20:00:00,13.975294084419
+1971-10-18 21:00:00,17.2413553501265
+1971-10-18 22:00:00,14.3986446544032
+1971-10-18 23:00:00,13.5757773243285
+1971-10-19 00:00:00,16.4097390042643
+1971-10-19 01:00:00,11.5371348998536
+1971-10-19 02:00:00,12.1783927148478
+1971-10-19 03:00:00,12.228950502704
+1971-10-19 04:00:00,15.5008947447533
+1971-10-19 05:00:00,12.7828192829697
+1971-10-19 06:00:00,8.47389734411659
+1971-10-19 07:00:00,11.3682665429821
+1971-10-19 08:00:00,7.21004701165508
+1971-10-19 09:00:00,14.8872501976209
+1971-10-19 10:00:00,24.5198785701075
+1971-10-19 11:00:00,15.4958607828603
+1971-10-19 12:00:00,14.0853169919067
+1971-10-19 13:00:00,18.0644422245603
+1971-10-19 14:00:00,8.2306750959754
+1971-10-19 15:00:00,10.9871044836486
+1971-10-19 16:00:00,9.69083841404385
+1971-10-19 17:00:00,15.1916881659397
+1971-10-19 18:00:00,16.9939587564136
+1971-10-19 19:00:00,12.4424076163446
+1971-10-19 20:00:00,17.6725654935272
+1971-10-19 21:00:00,13.9623342218891
+1971-10-19 22:00:00,10.7812362882253
+1971-10-19 23:00:00,17.9745086812029
+1971-10-20 00:00:00,10.8457379148541
+1971-10-20 01:00:00,22.6654202722914
+1971-10-20 02:00:00,12.3660050538312
+1971-10-20 03:00:00,18.4665502677925
+1971-10-20 04:00:00,6.66883346440594
+1971-10-20 05:00:00,16.5561614400742
+1971-10-20 06:00:00,23.7349891346886
+1971-10-20 07:00:00,14.8404857808837
+1971-10-20 08:00:00,14.4056603445172
+1971-10-20 09:00:00,11.8176938320208
+1971-10-20 10:00:00,11.0924525319882
+1971-10-20 11:00:00,18.6212354794642
+1971-10-20 12:00:00,8.70003652968669
+1971-10-20 13:00:00,10.7122602371239
+1971-10-20 14:00:00,14.4652051631194
+1971-10-20 15:00:00,5.68179370486468
+1971-10-20 16:00:00,7.89811853227224
+1971-10-20 17:00:00,16.7321517081013
+1971-10-20 18:00:00,21.0137529073451
+1971-10-20 19:00:00,14.199251462385
+1971-10-20 20:00:00,14.5192985773246
+1971-10-20 21:00:00,20.6309290787482
+1971-10-20 22:00:00,9.55999491742192
+1971-10-20 23:00:00,14.8418343970947
+1971-10-21 00:00:00,19.161656228285
+1971-10-21 01:00:00,18.2562038934922
+1971-10-21 02:00:00,12.1702393742063
+1971-10-21 03:00:00,8.84233403298335
+1971-10-21 04:00:00,23.6845574237659
+1971-10-21 05:00:00,7.6782797739323
+1971-10-21 06:00:00,5.26099421331255
+1971-10-21 07:00:00,10.6470445207937
+1971-10-21 08:00:00,8.02893819385486
+1971-10-21 09:00:00,16.8125954094469
+1971-10-21 10:00:00,15.7342885135424
+1971-10-21 11:00:00,11.1601930391075
+1971-10-21 12:00:00,12.7305453563933
+1971-10-21 13:00:00,8.34828496584324
+1971-10-21 14:00:00,8.09394463274555
+1971-10-21 15:00:00,7.71155031489766
+1971-10-21 16:00:00,10.308571993131
+1971-10-21 17:00:00,15.9851082048795
+1971-10-21 18:00:00,18.522182381366
+1971-10-21 19:00:00,11.8885091887155
+1971-10-21 20:00:00,18.861822535302
+1971-10-21 21:00:00,13.8024123000185
+1971-10-21 22:00:00,14.7313689495854
+1971-10-21 23:00:00,16.8054857211969
+1971-10-22 00:00:00,15.3163956087534
+1971-10-22 01:00:00,10.2920634796378
+1971-10-22 02:00:00,11.8223124408888
+1971-10-22 03:00:00,12.5065425158247
+1971-10-22 04:00:00,19.0949315383414
+1971-10-22 05:00:00,13.4887284352597
+1971-10-22 06:00:00,13.9661312094149
+1971-10-22 07:00:00,9.11324542974845
+1971-10-22 08:00:00,12.2673381692675
+1971-10-22 09:00:00,11.0772097465872
+1971-10-22 10:00:00,21.4783113115102
+1971-10-22 11:00:00,13.9707468548673
+1971-10-22 12:00:00,16.4272723228432
+1971-10-22 13:00:00,15.9532639585011
+1971-10-22 14:00:00,13.9500027249129
+1971-10-22 15:00:00,13.0117613997324
+1971-10-22 16:00:00,7.96442569331535
+1971-10-22 17:00:00,9.96682722968865
+1971-10-22 18:00:00,11.8495091038493
+1971-10-22 19:00:00,16.7751720394199
+1971-10-22 20:00:00,9.74884565242053
+1971-10-22 21:00:00,6.8206645174412
+1971-10-22 22:00:00,21.7666052638229
+1971-10-22 23:00:00,23.4321541411468
+1971-10-23 00:00:00,9.09584212040251
+1971-10-23 01:00:00,8.05830711216748
+1971-10-23 02:00:00,15.6654920967436
+1971-10-23 03:00:00,10.0663686512478
+1971-10-23 04:00:00,16.7505619178554
+1971-10-23 05:00:00,21.6112244140987
+1971-10-23 06:00:00,16.0549963621571
+1971-10-23 07:00:00,23.1968246320517
+1971-10-23 08:00:00,8.61582542431307
+1971-10-23 09:00:00,18.6186224085449
+1971-10-23 10:00:00,15.218900198834
+1971-10-23 11:00:00,32.0127873752679
+1971-10-23 12:00:00,25.7048485156384
+1971-10-23 13:00:00,18.1580350441764
+1971-10-23 14:00:00,24.4497359798294
+1971-10-23 15:00:00,15.7119198970668
+1971-10-23 16:00:00,10.7298320351798
+1971-10-23 17:00:00,22.6831842280532
+1971-10-23 18:00:00,9.34130562981823
+1971-10-23 19:00:00,22.5705282366961
+1971-10-23 20:00:00,8.43159335780347
+1971-10-23 21:00:00,19.689981250445
+1971-10-23 22:00:00,14.1693323497583
+1971-10-23 23:00:00,10.7556111147929
+1971-10-24 00:00:00,14.621498419155
+1971-10-24 01:00:00,18.5845247842743
+1971-10-24 02:00:00,6.22219705111879
+1971-10-24 03:00:00,13.516944529132
+1971-10-24 04:00:00,8.04452949776454
+1971-10-24 05:00:00,13.5781094292852
+1971-10-24 06:00:00,20.9491784308386
+1971-10-24 07:00:00,14.1816483058544
+1971-10-24 08:00:00,21.8014980061529
+1971-10-24 09:00:00,8.82269363828288
+1971-10-24 10:00:00,13.0895946863744
+1971-10-24 11:00:00,9.34278273989179
+1971-10-24 12:00:00,10.7197397316661
+1971-10-24 13:00:00,14.7738205563037
+1971-10-24 14:00:00,17.2660267708753
+1971-10-24 15:00:00,8.46203354381927
+1971-10-24 16:00:00,18.5182045000954
+1971-10-24 17:00:00,14.0643563587639
+1971-10-24 18:00:00,21.4175298839876
+1971-10-24 19:00:00,12.3195433265093
+1971-10-24 20:00:00,18.8986076173625
+1971-10-24 21:00:00,15.505731682605
+1971-10-24 22:00:00,11.4764250993675
+1971-10-24 23:00:00,13.2849815383195
+1971-10-25 00:00:00,10.9276783328968
+1971-10-25 01:00:00,18.1421086440848
+1971-10-25 02:00:00,17.1253049485861
+1971-10-25 03:00:00,13.1479249381704
+1971-10-25 04:00:00,20.1818766500859
+1971-10-25 05:00:00,24.6847013413877
+1971-10-25 06:00:00,13.307533079748
+1971-10-25 07:00:00,13.3438696310443
+1971-10-25 08:00:00,5.37284784969754
+1971-10-25 09:00:00,13.8998535219692
+1971-10-25 10:00:00,14.9241607799715
+1971-10-25 11:00:00,18.5280509322931
+1971-10-25 12:00:00,14.4020105585456
+1971-10-25 13:00:00,19.0184675578197
+1971-10-25 14:00:00,11.1235030500709
+1971-10-25 15:00:00,10.276496370169
+1971-10-25 16:00:00,11.284459765671
+1971-10-25 17:00:00,7.31886109669507
+1971-10-25 18:00:00,22.4332198680443
+1971-10-25 19:00:00,12.8567284420704
+1971-10-25 20:00:00,11.6113017741137
+1971-10-25 21:00:00,11.9794111827769
+1971-10-25 22:00:00,15.3921608323781
+1971-10-25 23:00:00,10.8500781520649
+1971-10-26 00:00:00,21.2184723967504
+1971-10-26 01:00:00,8.60015197124364
+1971-10-26 02:00:00,20.3957365849219
+1971-10-26 03:00:00,11.9145963379936
+1971-10-26 04:00:00,11.0858787935892
+1971-10-26 05:00:00,13.3527137100093
+1971-10-26 06:00:00,12.8298226326987
+1971-10-26 07:00:00,17.2367990976172
+1971-10-26 08:00:00,9.98971323551716
+1971-10-26 09:00:00,10.5418831533899
+1971-10-26 10:00:00,13.7093140909495
+1971-10-26 11:00:00,12.849219504389
+1971-10-26 12:00:00,5.55634383529173
+1971-10-26 13:00:00,16.7592920628077
+1971-10-26 14:00:00,15.2785090507136
+1971-10-26 15:00:00,14.7276393917256
+1971-10-26 16:00:00,12.8714139453216
+1971-10-26 17:00:00,17.4463709798649
+1971-10-26 18:00:00,10.429672784749
+1971-10-26 19:00:00,11.884230615789
+1971-10-26 20:00:00,17.4306054453552
+1971-10-26 21:00:00,12.3242794118309
+1971-10-26 22:00:00,8.96057236754812
+1971-10-26 23:00:00,18.6427193413092
+1971-10-27 00:00:00,9.83862829392798
+1971-10-27 01:00:00,8.66723232328374
+1971-10-27 02:00:00,14.7891578054196
+1971-10-27 03:00:00,6.31495589121899
+1971-10-27 04:00:00,18.347277425516
+1971-10-27 05:00:00,11.8014922705654
+1971-10-27 06:00:00,9.92297348983397
+1971-10-27 07:00:00,12.6727455224623
+1971-10-27 08:00:00,14.615299355889
+1971-10-27 09:00:00,14.2461117446566
+1971-10-27 10:00:00,13.5610649200196
+1971-10-27 11:00:00,15.6301081259308
+1971-10-27 12:00:00,11.7726373352091
+1971-10-27 13:00:00,10.9610232141885
+1971-10-27 14:00:00,15.3835829194354
+1971-10-27 15:00:00,13.9817769497389
+1971-10-27 16:00:00,10.1929156224616
+1971-10-27 17:00:00,8.02758246018357
+1971-10-27 18:00:00,18.4220649346067
+1971-10-27 19:00:00,12.1765444102108
+1971-10-27 20:00:00,12.7561876490744
+1971-10-27 21:00:00,16.7181302735719
+1971-10-27 22:00:00,13.650673720759
+1971-10-27 23:00:00,16.8795398001734
+1971-10-28 00:00:00,13.2900743360027
+1971-10-28 01:00:00,11.6952019162143
+1971-10-28 02:00:00,10.2308439606049
+1971-10-28 03:00:00,10.3457603359851
+1971-10-28 04:00:00,19.6119658919939
+1971-10-28 05:00:00,17.8931914871991
+1971-10-28 06:00:00,22.617831983074
+1971-10-28 07:00:00,11.8536949686256
+1971-10-28 08:00:00,13.1520952617908
+1971-10-28 09:00:00,10.7906285744745
+1971-10-28 10:00:00,12.8951334881807
+1971-10-28 11:00:00,12.1516068603674
+1971-10-28 12:00:00,13.6563248953931
+1971-10-28 13:00:00,24.9476783301526
+1971-10-28 14:00:00,18.1968262999789
+1971-10-28 15:00:00,15.9254503992699
+1971-10-28 16:00:00,9.46631397244436
+1971-10-28 17:00:00,9.53689680741629
+1971-10-28 18:00:00,19.3238643736112
+1971-10-28 19:00:00,17.8400612116642
+1971-10-28 20:00:00,14.3536843177486
+1971-10-28 21:00:00,10.548165626924
+1971-10-28 22:00:00,9.26405215361821
+1971-10-28 23:00:00,14.9190274998608
+1971-10-29 00:00:00,14.0170592198834
+1971-10-29 01:00:00,17.7659494779081
+1971-10-29 02:00:00,8.4390148894485
+1971-10-29 03:00:00,15.3180153014167
+1971-10-29 04:00:00,9.20160967855519
+1971-10-29 05:00:00,18.3417407211837
+1971-10-29 06:00:00,15.2229465609359
+1971-10-29 07:00:00,13.6931494401679
+1971-10-29 08:00:00,8.2029186450301
+1971-10-29 09:00:00,9.05358404272406
+1971-10-29 10:00:00,12.0516247395528
+1971-10-29 11:00:00,12.4478385149593
+1971-10-29 12:00:00,13.8814571004207
+1971-10-29 13:00:00,13.6873149568928
+1971-10-29 14:00:00,20.8130384661447
+1971-10-29 15:00:00,14.750756889161
+1971-10-29 16:00:00,15.9871893833958
+1971-10-29 17:00:00,11.2478772686283
+1971-10-29 18:00:00,21.3272059417927
+1971-10-29 19:00:00,13.5058923341819
+1971-10-29 20:00:00,10.784642285748
+1971-10-29 21:00:00,20.5741880248831
+1971-10-29 22:00:00,16.0993835829087
+1971-10-29 23:00:00,14.8349145214608
+1971-10-30 00:00:00,27.1100697591369
+1971-10-30 01:00:00,16.4178894112349
+1971-10-30 02:00:00,11.4615337650182
+1971-10-30 03:00:00,13.6989802582826
+1971-10-30 04:00:00,12.2535003691209
+1971-10-30 05:00:00,9.26196940407252
+1971-10-30 06:00:00,16.7162802101451
+1971-10-30 07:00:00,6.83968005623975
+1971-10-30 08:00:00,16.7421178746545
+1971-10-30 09:00:00,12.9041348556046
+1971-10-30 10:00:00,15.869597840252
+1971-10-30 11:00:00,18.5371611481943
+1971-10-30 12:00:00,17.7210493071975
+1971-10-30 13:00:00,10.2147720452266
+1971-10-30 14:00:00,14.2046916580369
+1971-10-30 15:00:00,6.12745325222537
+1971-10-30 16:00:00,9.95999947765122
+1971-10-30 17:00:00,12.7716237075962
+1971-10-30 18:00:00,17.1357890250998
+1971-10-30 19:00:00,24.2263561326352
+1971-10-30 20:00:00,15.3283282963471
+1971-10-30 21:00:00,9.84035169703324
+1971-10-30 22:00:00,20.8398891969854
+1971-10-30 23:00:00,14.8739812184356
+1971-10-31 00:00:00,18.5303171651164
+1971-10-31 01:00:00,21.2479184122592
+1971-10-31 02:00:00,16.4997673347285
+1971-10-31 03:00:00,12.3344775771358
+1971-10-31 04:00:00,15.0948789790693
+1971-10-31 05:00:00,14.8732665293859
+1971-10-31 06:00:00,19.3424385438187
+1971-10-31 07:00:00,8.23906355305652
+1971-10-31 08:00:00,12.6512687329526
+1971-10-31 09:00:00,6.06515196222245
+1971-10-31 10:00:00,20.1462556306234
+1971-10-31 11:00:00,17.3433411819683
+1971-10-31 12:00:00,13.5812829090986
+1971-10-31 13:00:00,9.53754332830215
+1971-10-31 14:00:00,9.22857732758745
+1971-10-31 15:00:00,9.94344786195379
+1971-10-31 16:00:00,8.69539796749377
+1971-10-31 17:00:00,13.3824988384077
+1971-10-31 18:00:00,11.5014293559042
+1971-10-31 19:00:00,10.0364679886194
+1971-10-31 20:00:00,9.85987587011224
+1971-10-31 21:00:00,17.7604542459877
+1971-10-31 22:00:00,15.0785913641848
+1971-10-31 23:00:00,14.0089176998621
+1971-11-01 00:00:00,16.4067302830735
+1971-11-01 01:00:00,18.8315947971105
+1971-11-01 02:00:00,10.8336166086168
+1971-11-01 03:00:00,11.1219227049464
+1971-11-01 04:00:00,12.9989313141376
+1971-11-01 05:00:00,13.4171688092186
+1971-11-01 06:00:00,18.9425625276543
+1971-11-01 07:00:00,14.1066304013009
+1971-11-01 08:00:00,20.1574337170607
+1971-11-01 09:00:00,30.2069732280618
+1971-11-01 10:00:00,6.48780212767279
+1971-11-01 11:00:00,7.41101547403509
+1971-11-01 12:00:00,12.1622103526619
+1971-11-01 13:00:00,17.2583944953515
+1971-11-01 14:00:00,14.4966267165158
+1971-11-01 15:00:00,19.2551645344869
+1971-11-01 16:00:00,13.7564403855083
+1971-11-01 17:00:00,24.5620196443244
+1971-11-01 18:00:00,17.8372392125225
+1971-11-01 19:00:00,14.8105455888263
+1971-11-01 20:00:00,8.66262082815816
+1971-11-01 21:00:00,29.7036828451442
+1971-11-01 22:00:00,11.5650608646621
+1971-11-01 23:00:00,13.7188877891304
+1971-11-02 00:00:00,9.80848359899697
+1971-11-02 01:00:00,16.09000546642
+1971-11-02 02:00:00,10.2411645201535
+1971-11-02 03:00:00,13.9987608981022
+1971-11-02 04:00:00,14.6139382777927
+1971-11-02 05:00:00,24.619139706162
+1971-11-02 06:00:00,16.6372366242205
+1971-11-02 07:00:00,12.7278775382459
+1971-11-02 08:00:00,19.4376985834165
+1971-11-02 09:00:00,9.47931890051199
+1971-11-02 10:00:00,14.1956179381383
+1971-11-02 11:00:00,22.6814839169339
+1971-11-02 12:00:00,15.4974865021629
+1971-11-02 13:00:00,14.5959525527864
+1971-11-02 14:00:00,12.0636780927141
+1971-11-02 15:00:00,16.3393459101929
+1971-11-02 16:00:00,16.7507173361339
+1971-11-02 17:00:00,10.2561326084643
+1971-11-02 18:00:00,15.0466339271125
+1971-11-02 19:00:00,9.32034438592091
+1971-11-02 20:00:00,19.2853644302268
+1971-11-02 21:00:00,7.59169283472146
+1971-11-02 22:00:00,8.79965602082524
+1971-11-02 23:00:00,12.8221449122937
+1971-11-03 00:00:00,17.8887725228505
+1971-11-03 01:00:00,9.36575447369755
+1971-11-03 02:00:00,9.22772054399971
+1971-11-03 03:00:00,14.7612901010473
+1971-11-03 04:00:00,15.6970808499971
+1971-11-03 05:00:00,19.7311568053509
+1971-11-03 06:00:00,16.7398554424817
+1971-11-03 07:00:00,15.3580997743154
+1971-11-03 08:00:00,12.29088523259
+1971-11-03 09:00:00,11.6961556269808
+1971-11-03 10:00:00,12.4086548116328
+1971-11-03 11:00:00,13.7776286835012
+1971-11-03 12:00:00,16.6920176005504
+1971-11-03 13:00:00,17.5296849023013
+1971-11-03 14:00:00,12.4578664947666
+1971-11-03 15:00:00,6.78656826541864
+1971-11-03 16:00:00,8.92288996450065
+1971-11-03 17:00:00,11.1731608399838
+1971-11-03 18:00:00,13.3484585530267
+1971-11-03 19:00:00,21.4432053115001
+1971-11-03 20:00:00,12.7255450971989
+1971-11-03 21:00:00,14.6620267426931
+1971-11-03 22:00:00,4.9600714576177
+1971-11-03 23:00:00,10.6720176450791
+1971-11-04 00:00:00,11.0399421825802
+1971-11-04 01:00:00,22.9285354306503
+1971-11-04 02:00:00,15.8913734905189
+1971-11-04 03:00:00,10.0212941741424
+1971-11-04 04:00:00,15.1809505919136
+1971-11-04 05:00:00,11.8328772367898
+1971-11-04 06:00:00,8.86816858333652
+1971-11-04 07:00:00,19.6488200258209
+1971-11-04 08:00:00,18.2592783292271
+1971-11-04 09:00:00,8.54582590025355
+1971-11-04 10:00:00,20.2116066407078
+1971-11-04 11:00:00,14.4689227028668
+1971-11-04 12:00:00,19.5779493134413
+1971-11-04 13:00:00,9.14325921753675
+1971-11-04 14:00:00,7.34081937660846
+1971-11-04 15:00:00,20.901424813949
+1971-11-04 16:00:00,19.4969950326605
+1971-11-04 17:00:00,11.0382569430169
+1971-11-04 18:00:00,21.2646419023884
+1971-11-04 19:00:00,14.2965682198976
+1971-11-04 20:00:00,11.8151680076627
+1971-11-04 21:00:00,21.591269040351
+1971-11-04 22:00:00,21.3254473804407
+1971-11-04 23:00:00,9.36660808642324
+1971-11-05 00:00:00,18.6440730441106
+1971-11-05 01:00:00,16.0428334746893
+1971-11-05 02:00:00,18.749069178147
+1971-11-05 03:00:00,17.4122643649305
+1971-11-05 04:00:00,5.12238002622307
+1971-11-05 05:00:00,11.4855739840757
+1971-11-05 06:00:00,26.4502008716196
+1971-11-05 07:00:00,15.5734496030772
+1971-11-05 08:00:00,10.1675222944235
+1971-11-05 09:00:00,18.8188070393492
+1971-11-05 10:00:00,5.6927629754788
+1971-11-05 11:00:00,13.6839703021369
+1971-11-05 12:00:00,8.09252939906231
+1971-11-05 13:00:00,14.7168375811393
+1971-11-05 14:00:00,10.1661964530747
+1971-11-05 15:00:00,15.2611282541998
+1971-11-05 16:00:00,12.2827478078659
+1971-11-05 17:00:00,18.9222515338445
+1971-11-05 18:00:00,6.98394220206065
+1971-11-05 19:00:00,12.8903426336998
+1971-11-05 20:00:00,16.5071978524996
+1971-11-05 21:00:00,14.8249990534417
+1971-11-05 22:00:00,24.0137451479386
+1971-11-05 23:00:00,15.9834660572879
+1971-11-06 00:00:00,20.3268878423084
+1971-11-06 01:00:00,19.2626010077781
+1971-11-06 02:00:00,18.5389437328423
+1971-11-06 03:00:00,8.85304667140333
+1971-11-06 04:00:00,4.83962717009076
+1971-11-06 05:00:00,10.3267744971062
+1971-11-06 06:00:00,14.2965175856797
+1971-11-06 07:00:00,11.1921178673478
+1971-11-06 08:00:00,11.9330878154463
+1971-11-06 09:00:00,7.76311550935626
+1971-11-06 10:00:00,17.0663532412176
+1971-11-06 11:00:00,12.6611338574192
+1971-11-06 12:00:00,18.38682341134
+1971-11-06 13:00:00,21.2828505523213
+1971-11-06 14:00:00,11.1613175728997
+1971-11-06 15:00:00,18.274647952499
+1971-11-06 16:00:00,14.7088260273456
+1971-11-06 17:00:00,17.5685690990865
+1971-11-06 18:00:00,20.3294212374539
+1971-11-06 19:00:00,19.1039406076953
+1971-11-06 20:00:00,18.2023077084198
+1971-11-06 21:00:00,12.8642610638658
+1971-11-06 22:00:00,19.8843642758512
+1971-11-06 23:00:00,13.6175436285629
+1971-11-07 00:00:00,6.73506541116918
+1971-11-07 01:00:00,10.587941495523
+1971-11-07 02:00:00,4.15245042554381
+1971-11-07 03:00:00,13.8854210935403
+1971-11-07 04:00:00,12.5808597685357
+1971-11-07 05:00:00,20.2830697287663
+1971-11-07 06:00:00,6.79761821987026
+1971-11-07 07:00:00,16.4679995178424
+1971-11-07 08:00:00,17.4365629062473
+1971-11-07 09:00:00,7.84369541716785
+1971-11-07 10:00:00,13.4846182856853
+1971-11-07 11:00:00,16.4804730851768
+1971-11-07 12:00:00,19.2947104664238
+1971-11-07 13:00:00,12.1800369128579
+1971-11-07 14:00:00,16.2660917105663
+1971-11-07 15:00:00,11.7405047512458
+1971-11-07 16:00:00,18.2955852334689
+1971-11-07 17:00:00,20.4356521547319
+1971-11-07 18:00:00,15.8748593821787
+1971-11-07 19:00:00,18.3680331119312
+1971-11-07 20:00:00,12.8608329198287
+1971-11-07 21:00:00,19.6051179399279
+1971-11-07 22:00:00,16.0620186004486
+1971-11-07 23:00:00,12.1601805298924
+1971-11-08 00:00:00,11.7545743485787
+1971-11-08 01:00:00,6.56648838693005
+1971-11-08 02:00:00,6.60765528093566
+1971-11-08 03:00:00,10.0439563596841
+1971-11-08 04:00:00,10.0161472746745
+1971-11-08 05:00:00,15.3110267094031
+1971-11-08 06:00:00,11.4479791116938
+1971-11-08 07:00:00,15.9203617391534
+1971-11-08 08:00:00,7.41487818561605
+1971-11-08 09:00:00,10.362424196441
+1971-11-08 10:00:00,9.16679356665731
+1971-11-08 11:00:00,10.2396301222752
+1971-11-08 12:00:00,8.91508287506743
+1971-11-08 13:00:00,17.8366248712577
+1971-11-08 14:00:00,24.0805327905429
+1971-11-08 15:00:00,15.7410574200202
+1971-11-08 16:00:00,12.7219546679971
+1971-11-08 17:00:00,16.1802166337279
+1971-11-08 18:00:00,12.3705148430893
+1971-11-08 19:00:00,19.4861733702991
+1971-11-08 20:00:00,14.2008057792752
+1971-11-08 21:00:00,12.6473053635084
+1971-11-08 22:00:00,9.64319274177325
+1971-11-08 23:00:00,10.7914667912596
+1971-11-09 00:00:00,14.5157171828385
+1971-11-09 01:00:00,15.1351353229351
+1971-11-09 02:00:00,13.0983622160961
+1971-11-09 03:00:00,17.265392601097
+1971-11-09 04:00:00,24.5938671404167
+1971-11-09 05:00:00,15.1568630166641
+1971-11-09 06:00:00,15.4494483814273
+1971-11-09 07:00:00,16.9013190881974
+1971-11-09 08:00:00,16.7091389743698
+1971-11-09 09:00:00,17.4981304213804
+1971-11-09 10:00:00,9.34280946840917
+1971-11-09 11:00:00,21.8285595533487
+1971-11-09 12:00:00,19.9755604448449
+1971-11-09 13:00:00,11.1178521680656
+1971-11-09 14:00:00,17.6077252948011
+1971-11-09 15:00:00,26.9073008545805
+1971-11-09 16:00:00,20.0901055571982
+1971-11-09 17:00:00,19.1909899154329
+1971-11-09 18:00:00,10.5489602156238
+1971-11-09 19:00:00,21.7692330927482
+1971-11-09 20:00:00,14.4475866048436
+1971-11-09 21:00:00,18.5383532274381
+1971-11-09 22:00:00,12.5112852069657
+1971-11-09 23:00:00,17.5063994502707
+1971-11-10 00:00:00,16.2372940548614
+1971-11-10 01:00:00,19.7146858293004
+1971-11-10 02:00:00,11.4406813501854
+1971-11-10 03:00:00,22.227599455212
+1971-11-10 04:00:00,17.5591513162354
+1971-11-10 05:00:00,15.3016136419668
+1971-11-10 06:00:00,18.8558946728622
+1971-11-10 07:00:00,14.99694994459
+1971-11-10 08:00:00,14.1671148850151
+1971-11-10 09:00:00,13.6763666307579
+1971-11-10 10:00:00,12.5361545541939
+1971-11-10 11:00:00,11.9415528574668
+1971-11-10 12:00:00,12.0797230346117
+1971-11-10 13:00:00,10.2781622795068
+1971-11-10 14:00:00,14.4368403237558
+1971-11-10 15:00:00,15.2197664468269
+1971-11-10 16:00:00,16.2012642903963
+1971-11-10 17:00:00,16.0210253734781
+1971-11-10 18:00:00,7.85735871541922
+1971-11-10 19:00:00,12.0807428186159
+1971-11-10 20:00:00,15.0363994228211
+1971-11-10 21:00:00,17.300530498091
+1971-11-10 22:00:00,10.7035985267617
+1971-11-10 23:00:00,13.1709829188266
+1971-11-11 00:00:00,16.549604268582
+1971-11-11 01:00:00,14.0088967974638
+1971-11-11 02:00:00,11.8843029205621
+1971-11-11 03:00:00,13.7212463929594
+1971-11-11 04:00:00,17.9069324978854
+1971-11-11 05:00:00,16.1332377693328
+1971-11-11 06:00:00,10.5990992798917
+1971-11-11 07:00:00,12.3786072114447
+1971-11-11 08:00:00,26.2332973820422
+1971-11-11 09:00:00,18.0981833268576
+1971-11-11 10:00:00,18.9372823425396
+1971-11-11 11:00:00,15.7914224206722
+1971-11-11 12:00:00,28.6250164234483
+1971-11-11 13:00:00,11.4076139550986
+1971-11-11 14:00:00,11.3794704697474
+1971-11-11 15:00:00,18.5602420268524
+1971-11-11 16:00:00,15.4798254831318
+1971-11-11 17:00:00,7.30206143012884
+1971-11-11 18:00:00,16.9580715118665
+1971-11-11 19:00:00,24.1638829568374
+1971-11-11 20:00:00,19.9762626052404
+1971-11-11 21:00:00,11.9654954338081
+1971-11-11 22:00:00,16.9009656449395
+1971-11-11 23:00:00,16.5115405607696
+1971-11-12 00:00:00,9.94077644789835
+1971-11-12 01:00:00,7.49253085554677
+1971-11-12 02:00:00,11.5773578831448
+1971-11-12 03:00:00,13.9422062665162
+1971-11-12 04:00:00,13.4121271953505
+1971-11-12 05:00:00,14.3477437817812
+1971-11-12 06:00:00,12.4896511813813
+1971-11-12 07:00:00,17.1137463308207
+1971-11-12 08:00:00,21.4185931692951
+1971-11-12 09:00:00,14.1123702753837
+1971-11-12 10:00:00,12.7585887210984
+1971-11-12 11:00:00,12.1043272427747
+1971-11-12 12:00:00,18.3463685204788
+1971-11-12 13:00:00,14.3725546174149
+1971-11-12 14:00:00,17.1573521317898
+1971-11-12 15:00:00,11.3332945365327
+1971-11-12 16:00:00,13.7394187195324
+1971-11-12 17:00:00,8.7759753544344
+1971-11-12 18:00:00,13.2485698184085
+1971-11-12 19:00:00,17.7683972120778
+1971-11-12 20:00:00,14.2477604892332
+1971-11-12 21:00:00,14.491893035174
+1971-11-12 22:00:00,13.9305856655377
+1971-11-12 23:00:00,10.9403649962818
+1971-11-13 00:00:00,16.1022024889943
+1971-11-13 01:00:00,24.7185797070198
+1971-11-13 02:00:00,10.1235631776929
+1971-11-13 03:00:00,11.2088199656165
+1971-11-13 04:00:00,7.65669221049428
+1971-11-13 05:00:00,20.0237152622759
+1971-11-13 06:00:00,12.6505977442644
+1971-11-13 07:00:00,8.38268971075188
+1971-11-13 08:00:00,9.21623238161881
+1971-11-13 09:00:00,10.9733592973285
+1971-11-13 10:00:00,12.7411871956818
+1971-11-13 11:00:00,10.5682100514533
+1971-11-13 12:00:00,8.31465483828573
+1971-11-13 13:00:00,14.8958624707749
+1971-11-13 14:00:00,20.3620982840711
+1971-11-13 15:00:00,16.6494489358586
+1971-11-13 16:00:00,5.69825182694118
+1971-11-13 17:00:00,10.2318904305428
+1971-11-13 18:00:00,12.2091780710583
+1971-11-13 19:00:00,15.1461515679336
+1971-11-13 20:00:00,25.0350894089184
+1971-11-13 21:00:00,13.6976409144662
+1971-11-13 22:00:00,19.937742821941
+1971-11-13 23:00:00,14.3217137565155
+1971-11-14 00:00:00,9.93005404717252
+1971-11-14 01:00:00,12.9102713452101
+1971-11-14 02:00:00,7.92380898220292
+1971-11-14 03:00:00,26.5911790692346
+1971-11-14 04:00:00,8.29165995574009
+1971-11-14 05:00:00,16.6428143787776
+1971-11-14 06:00:00,9.69263803356722
+1971-11-14 07:00:00,11.4273759493083
+1971-11-14 08:00:00,15.8597530052317
+1971-11-14 09:00:00,12.3510159640097
+1971-11-14 10:00:00,13.1953743169232
+1971-11-14 11:00:00,17.1334737829544
+1971-11-14 12:00:00,13.7615062110771
+1971-11-14 13:00:00,10.0593907535627
+1971-11-14 14:00:00,10.7772411595892
+1971-11-14 15:00:00,10.8085446329177
+1971-11-14 16:00:00,14.883072733891
+1971-11-14 17:00:00,10.8711569542422
+1971-11-14 18:00:00,13.9874373877193
+1971-11-14 19:00:00,14.0460940364355
+1971-11-14 20:00:00,8.70239580743811
+1971-11-14 21:00:00,24.8449319632138
+1971-11-14 22:00:00,10.6597277368149
+1971-11-14 23:00:00,19.8024224257511
+1971-11-15 00:00:00,12.488249991429
+1971-11-15 01:00:00,14.6470839151526
+1971-11-15 02:00:00,6.3446391054771
+1971-11-15 03:00:00,9.95110371679103
+1971-11-15 04:00:00,15.0395740579309
+1971-11-15 05:00:00,17.8601626045258
+1971-11-15 06:00:00,13.9656482259187
+1971-11-15 07:00:00,11.5082796766794
+1971-11-15 08:00:00,11.1849116089469
+1971-11-15 09:00:00,10.9348210231158
+1971-11-15 10:00:00,9.67850529840869
+1971-11-15 11:00:00,11.3920521494978
+1971-11-15 12:00:00,12.9187927280211
+1971-11-15 13:00:00,6.04359251687102
+1971-11-15 14:00:00,14.0331307632252
+1971-11-15 15:00:00,18.5422559642157
+1971-11-15 16:00:00,11.4317568153559
+1971-11-15 17:00:00,12.3187621400396
+1971-11-15 18:00:00,17.2182780532898
+1971-11-15 19:00:00,18.6905120019759
+1971-11-15 20:00:00,19.3110812679716
+1971-11-15 21:00:00,18.7754345773836
+1971-11-15 22:00:00,13.286991068064
+1971-11-15 23:00:00,12.0577199827475
+1971-11-16 00:00:00,23.7936733552442
+1971-11-16 01:00:00,6.82487246480907
+1971-11-16 02:00:00,23.5012715459382
+1971-11-16 03:00:00,10.5715563101101
+1971-11-16 04:00:00,10.6603055347584
+1971-11-16 05:00:00,11.7815600324883
+1971-11-16 06:00:00,12.9495283719291
+1971-11-16 07:00:00,10.5972702924107
+1971-11-16 08:00:00,22.745404219731
+1971-11-16 09:00:00,13.6154192379343
+1971-11-16 10:00:00,17.4857065428144
+1971-11-16 11:00:00,19.6972841332928
+1971-11-16 12:00:00,16.1924209653526
+1971-11-16 13:00:00,11.7438572987242
+1971-11-16 14:00:00,15.8965016331942
+1971-11-16 15:00:00,8.99894221382285
+1971-11-16 16:00:00,11.1284638228181
+1971-11-16 17:00:00,9.52168874514038
+1971-11-16 18:00:00,16.0738437431653
+1971-11-16 19:00:00,12.9754548118599
+1971-11-16 20:00:00,8.94270417732164
+1971-11-16 21:00:00,18.1390006113731
+1971-11-16 22:00:00,19.2090744322449
+1971-11-16 23:00:00,21.2620764463546
+1971-11-17 00:00:00,14.9094565976193
+1971-11-17 01:00:00,10.5797246541616
+1971-11-17 02:00:00,12.9950707259841
+1971-11-17 03:00:00,16.725471348696
+1971-11-17 04:00:00,9.96969725385884
+1971-11-17 05:00:00,18.6872257250836
+1971-11-17 06:00:00,13.1686142166018
+1971-11-17 07:00:00,12.7707964695851
+1971-11-17 08:00:00,16.5539909006758
+1971-11-17 09:00:00,15.5552076145939
+1971-11-17 10:00:00,15.5508933033155
+1971-11-17 11:00:00,13.6706146642233
+1971-11-17 12:00:00,18.9845532405231
+1971-11-17 13:00:00,17.1636881437577
+1971-11-17 14:00:00,5.1755624179101
+1971-11-17 15:00:00,23.0307922866685
+1971-11-17 16:00:00,10.4726206258569
+1971-11-17 17:00:00,16.8705162533615
+1971-11-17 18:00:00,17.0667312709713
+1971-11-17 19:00:00,19.0852712566607
+1971-11-17 20:00:00,8.90711355796858
+1971-11-17 21:00:00,12.1158583467499
+1971-11-17 22:00:00,9.72949392107196
+1971-11-17 23:00:00,16.5490679768396
+1971-11-18 00:00:00,8.04372684379692
+1971-11-18 01:00:00,11.7645792115362
+1971-11-18 02:00:00,14.3784839068682
+1971-11-18 03:00:00,11.5461980601949
+1971-11-18 04:00:00,9.5982111828144
+1971-11-18 05:00:00,20.7988003121857
+1971-11-18 06:00:00,11.1767172631227
+1971-11-18 07:00:00,17.0844993298952
+1971-11-18 08:00:00,24.0918802169062
+1971-11-18 09:00:00,16.2062850346188
+1971-11-18 10:00:00,17.2896949676538
+1971-11-18 11:00:00,14.8553835104187
+1971-11-18 12:00:00,21.1156901967756
+1971-11-18 13:00:00,21.1989076000636
+1971-11-18 14:00:00,12.7077441550659
+1971-11-18 15:00:00,7.97993361951166
+1971-11-18 16:00:00,13.3554081852939
+1971-11-18 17:00:00,17.1102283362915
+1971-11-18 18:00:00,11.2309556072522
+1971-11-18 19:00:00,14.4517310272937
+1971-11-18 20:00:00,17.6317336794021
+1971-11-18 21:00:00,12.1574542240829
+1971-11-18 22:00:00,19.6869910798667
+1971-11-18 23:00:00,14.3784528389774
+1971-11-19 00:00:00,17.1275720419869
+1971-11-19 01:00:00,9.45164765314125
+1971-11-19 02:00:00,4.38591982449517
+1971-11-19 03:00:00,14.7364474433523
+1971-11-19 04:00:00,23.8008921624402
+1971-11-19 05:00:00,11.3927230765921
+1971-11-19 06:00:00,23.6381844784293
+1971-11-19 07:00:00,14.7662137363187
+1971-11-19 08:00:00,13.0788532786501
+1971-11-19 09:00:00,19.5068251254605
+1971-11-19 10:00:00,16.1065370090802
+1971-11-19 11:00:00,10.2912273573883
+1971-11-19 12:00:00,12.5527423599261
+1971-11-19 13:00:00,11.1714502944993
+1971-11-19 14:00:00,18.6864791664751
+1971-11-19 15:00:00,22.3020770998601
+1971-11-19 16:00:00,6.1878251847852
+1971-11-19 17:00:00,15.2397301569302
+1971-11-19 18:00:00,15.5113466543884
+1971-11-19 19:00:00,12.1930444967289
+1971-11-19 20:00:00,22.400003244044
+1971-11-19 21:00:00,14.2751713518946
+1971-11-19 22:00:00,4.03385775968488
+1971-11-19 23:00:00,11.1206606083944
+1971-11-20 00:00:00,12.0641427490018
+1971-11-20 01:00:00,18.8208996438408
+1971-11-20 02:00:00,9.04573572431947
+1971-11-20 03:00:00,13.3177645260688
+1971-11-20 04:00:00,16.4538310128297
+1971-11-20 05:00:00,25.1301943109598
+1971-11-20 06:00:00,8.69242666173649
+1971-11-20 07:00:00,7.57420257344276
+1971-11-20 08:00:00,25.3264506962213
+1971-11-20 09:00:00,23.104104935532
+1971-11-20 10:00:00,13.1744363187336
+1971-11-20 11:00:00,10.1705567589878
+1971-11-20 12:00:00,14.940326866576
+1971-11-20 13:00:00,16.8605571242871
+1971-11-20 14:00:00,12.3452501772858
+1971-11-20 15:00:00,13.2253927135447
+1971-11-20 16:00:00,11.1983835010083
+1971-11-20 17:00:00,8.58125341548785
+1971-11-20 18:00:00,12.6205990435626
+1971-11-20 19:00:00,19.2739324581923
+1971-11-20 20:00:00,10.7822251442126
+1971-11-20 21:00:00,5.30606307157071
+1971-11-20 22:00:00,12.3633981883835
+1971-11-20 23:00:00,11.6401121425273
+1971-11-21 00:00:00,13.5906254946698
+1971-11-21 01:00:00,11.3094812250757
+1971-11-21 02:00:00,15.7939070893272
+1971-11-21 03:00:00,11.4787730643571
+1971-11-21 04:00:00,13.2555572310236
+1971-11-21 05:00:00,19.46440146191
+1971-11-21 06:00:00,19.8055722941732
+1971-11-21 07:00:00,10.3234039128796
+1971-11-21 08:00:00,10.4628866381653
+1971-11-21 09:00:00,15.4839078558837
+1971-11-21 10:00:00,13.2791567616982
+1971-11-21 11:00:00,13.9749381224395
+1971-11-21 12:00:00,26.1261837328749
+1971-11-21 13:00:00,8.55626378212046
+1971-11-21 14:00:00,10.5022164485814
+1971-11-21 15:00:00,12.9726554424944
+1971-11-21 16:00:00,17.8078252799097
+1971-11-21 17:00:00,25.1713935113768
+1971-11-21 18:00:00,10.8659537528219
+1971-11-21 19:00:00,14.7597799693382
+1971-11-21 20:00:00,16.7802776030525
+1971-11-21 21:00:00,16.8016745473216
+1971-11-21 22:00:00,11.6674108079675
+1971-11-21 23:00:00,13.9660955646642
+1971-11-22 00:00:00,16.4359500591476
+1971-11-22 01:00:00,5.44182384813437
+1971-11-22 02:00:00,23.8901187509747
+1971-11-22 03:00:00,16.1190360483689
+1971-11-22 04:00:00,11.0200104251504
+1971-11-22 05:00:00,25.5603148482145
+1971-11-22 06:00:00,10.3374395704938
+1971-11-22 07:00:00,15.0071994405276
+1971-11-22 08:00:00,11.0100988084002
+1971-11-22 09:00:00,18.6689634024933
+1971-11-22 10:00:00,18.9464767677497
+1971-11-22 11:00:00,17.8324791986638
+1971-11-22 12:00:00,15.0034751213853
+1971-11-22 13:00:00,14.6604507630564
+1971-11-22 14:00:00,16.8692546341073
+1971-11-22 15:00:00,9.55354912960434
+1971-11-22 16:00:00,15.4361437165399
+1971-11-22 17:00:00,15.8071641465042
+1971-11-22 18:00:00,8.68134081042893
+1971-11-22 19:00:00,13.0380799014278
+1971-11-22 20:00:00,12.3874216158814
+1971-11-22 21:00:00,14.2076311508156
+1971-11-22 22:00:00,18.6680160653058
+1971-11-22 23:00:00,15.1206724172868
+1971-11-23 00:00:00,16.5877473363078
+1971-11-23 01:00:00,14.4704763420207
+1971-11-23 02:00:00,11.5684872754089
+1971-11-23 03:00:00,23.5905538067774
+1971-11-23 04:00:00,12.9272178239698
+1971-11-23 05:00:00,15.2056388376443
+1971-11-23 06:00:00,14.3468864797134
+1971-11-23 07:00:00,17.6241797658732
+1971-11-23 08:00:00,15.851749062911
+1971-11-23 09:00:00,9.70151849964799
+1971-11-23 10:00:00,13.4855069889334
+1971-11-23 11:00:00,8.4836427947111
+1971-11-23 12:00:00,10.7500404091475
+1971-11-23 13:00:00,17.5822143106553
+1971-11-23 14:00:00,11.9975053575455
+1971-11-23 15:00:00,9.17473872259223
+1971-11-23 16:00:00,20.8532436797247
+1971-11-23 17:00:00,11.1558829664027
+1971-11-23 18:00:00,12.4719677823258
+1971-11-23 19:00:00,15.8818708863439
+1971-11-23 20:00:00,10.5623647822058
+1971-11-23 21:00:00,16.8052117513726
+1971-11-23 22:00:00,17.6661793330664
+1971-11-23 23:00:00,20.0043701379527
+1971-11-24 00:00:00,15.5724137927317
+1971-11-24 01:00:00,9.33641464711892
+1971-11-24 02:00:00,5.20390892752117
+1971-11-24 03:00:00,13.7070555247478
+1971-11-24 04:00:00,14.5934686616977
+1971-11-24 05:00:00,17.4688067668773
+1971-11-24 06:00:00,11.5405875286702
+1971-11-24 07:00:00,10.0697437690656
+1971-11-24 08:00:00,10.5381419290411
+1971-11-24 09:00:00,17.2738488444535
+1971-11-24 10:00:00,11.4587325642284
+1971-11-24 11:00:00,11.7443337686011
+1971-11-24 12:00:00,10.1737495595589
+1971-11-24 13:00:00,16.8204599034429
+1971-11-24 14:00:00,17.0331125462178
+1971-11-24 15:00:00,13.0552896828503
+1971-11-24 16:00:00,8.41416285138683
+1971-11-24 17:00:00,7.48090064012704
+1971-11-24 18:00:00,11.4371853375372
+1971-11-24 19:00:00,11.3720268362695
+1971-11-24 20:00:00,11.2196794203746
+1971-11-24 21:00:00,13.54641995539
+1971-11-24 22:00:00,19.9737873569655
+1971-11-24 23:00:00,14.3630444779762
+1971-11-25 00:00:00,16.9439021647493
+1971-11-25 01:00:00,8.97055893339829
+1971-11-25 02:00:00,12.4437632410053
+1971-11-25 03:00:00,21.075631719058
+1971-11-25 04:00:00,17.5754229541024
+1971-11-25 05:00:00,12.4568302159279
+1971-11-25 06:00:00,9.7032809849784
+1971-11-25 07:00:00,13.8366742036367
+1971-11-25 08:00:00,16.9449945896649
+1971-11-25 09:00:00,13.1519393010232
+1971-11-25 10:00:00,12.8793684622475
+1971-11-25 11:00:00,14.4910534122646
+1971-11-25 12:00:00,13.13555863093
+1971-11-25 13:00:00,18.7422485653898
+1971-11-25 14:00:00,11.2037895762142
+1971-11-25 15:00:00,16.6585271406038
+1971-11-25 16:00:00,16.2857797485832
+1971-11-25 17:00:00,11.0066233346647
+1971-11-25 18:00:00,14.9751126737409
+1971-11-25 19:00:00,18.1863308515822
+1971-11-25 20:00:00,20.0364232868563
+1971-11-25 21:00:00,12.3939430546854
+1971-11-25 22:00:00,9.36648925136367
+1971-11-25 23:00:00,18.862896290035
+1971-11-26 00:00:00,18.1331314369286
+1971-11-26 01:00:00,14.1093087208151
+1971-11-26 02:00:00,13.5058190128291
+1971-11-26 03:00:00,20.9910976678504
+1971-11-26 04:00:00,16.6519671816197
+1971-11-26 05:00:00,13.3170116230708
+1971-11-26 06:00:00,21.0046401696229
+1971-11-26 07:00:00,15.745964957298
+1971-11-26 08:00:00,17.1048231400526
+1971-11-26 09:00:00,16.5892566475308
+1971-11-26 10:00:00,11.8838944779398
+1971-11-26 11:00:00,15.281794326693
+1971-11-26 12:00:00,11.7997837811273
+1971-11-26 13:00:00,19.5211482730676
+1971-11-26 14:00:00,19.1212285934264
+1971-11-26 15:00:00,13.0030984658939
+1971-11-26 16:00:00,9.48378819115791
+1971-11-26 17:00:00,18.4229482568733
+1971-11-26 18:00:00,17.1189534322366
+1971-11-26 19:00:00,15.5472673608548
+1971-11-26 20:00:00,13.6960948190553
+1971-11-26 21:00:00,7.43108450750785
+1971-11-26 22:00:00,10.8573394096123
+1971-11-26 23:00:00,11.9502084269982
+1971-11-27 00:00:00,14.929694428876
+1971-11-27 01:00:00,16.4090414508903
+1971-11-27 02:00:00,6.88392895366988
+1971-11-27 03:00:00,11.2436653308234
+1971-11-27 04:00:00,10.9706768773708
+1971-11-27 05:00:00,13.8909146756606
+1971-11-27 06:00:00,9.29480146835779
+1971-11-27 07:00:00,10.2825679522371
+1971-11-27 08:00:00,12.85090660368
+1971-11-27 09:00:00,14.1749674396832
+1971-11-27 10:00:00,16.9930253610816
+1971-11-27 11:00:00,15.8928257525926
+1971-11-27 12:00:00,24.7327696578054
+1971-11-27 13:00:00,14.8790636079355
+1971-11-27 14:00:00,17.4455336197788
+1971-11-27 15:00:00,17.7312823722206
+1971-11-27 16:00:00,25.6908520017281
+1971-11-27 17:00:00,20.535284810246
+1971-11-27 18:00:00,8.34235916889972
+1971-11-27 19:00:00,7.1057457534843
+1971-11-27 20:00:00,20.2199636703524
+1971-11-27 21:00:00,12.6584271628084
+1971-11-27 22:00:00,14.274484405767
+1971-11-27 23:00:00,9.68897896260324
+1971-11-28 00:00:00,16.6921506615822
+1971-11-28 01:00:00,14.4383798723465
+1971-11-28 02:00:00,13.6312584041745
+1971-11-28 03:00:00,17.581714266684
+1971-11-28 04:00:00,19.9355529453015
+1971-11-28 05:00:00,18.4448611296515
+1971-11-28 06:00:00,15.8322584912822
+1971-11-28 07:00:00,10.7496323564505
+1971-11-28 08:00:00,22.8059261765366
+1971-11-28 09:00:00,10.9908903441295
+1971-11-28 10:00:00,15.9382094513293
+1971-11-28 11:00:00,12.5882671098524
+1971-11-28 12:00:00,12.4788386560933
+1971-11-28 13:00:00,15.9180065812723
+1971-11-28 14:00:00,24.5893077708487
+1971-11-28 15:00:00,13.4676688318178
+1971-11-28 16:00:00,15.4957337958011
+1971-11-28 17:00:00,11.0398991130902
+1971-11-28 18:00:00,16.8096363529735
+1971-11-28 19:00:00,14.471928087341
+1971-11-28 20:00:00,19.1936695143734
+1971-11-28 21:00:00,16.323507187243
+1971-11-28 22:00:00,9.35191742534763
+1971-11-28 23:00:00,19.7428919085017
+1971-11-29 00:00:00,8.13473133833928
+1971-11-29 01:00:00,12.1156088380167
+1971-11-29 02:00:00,19.4434233171104
+1971-11-29 03:00:00,8.40529718194587
+1971-11-29 04:00:00,15.6246328071715
+1971-11-29 05:00:00,17.3378919937744
+1971-11-29 06:00:00,12.4111022930123
+1971-11-29 07:00:00,16.3822372673726
+1971-11-29 08:00:00,20.1526142798195
+1971-11-29 09:00:00,20.6536648751896
+1971-11-29 10:00:00,20.047684584569
+1971-11-29 11:00:00,18.0990991654384
+1971-11-29 12:00:00,14.2588504406063
+1971-11-29 13:00:00,15.0079859779301
+1971-11-29 14:00:00,10.3019733828396
+1971-11-29 15:00:00,9.88366319972643
+1971-11-29 16:00:00,16.237491731442
+1971-11-29 17:00:00,24.9066321162013
+1971-11-29 18:00:00,12.2284925506628
+1971-11-29 19:00:00,14.7096980510713
+1971-11-29 20:00:00,11.8412572794328
+1971-11-29 21:00:00,10.4426364279006
+1971-11-29 22:00:00,20.7780307160883
+1971-11-29 23:00:00,13.7450417026902
+1971-11-30 00:00:00,9.36119304346115
+1971-11-30 01:00:00,8.47567710202497
+1971-11-30 02:00:00,18.8150277628388
+1971-11-30 03:00:00,11.370497157921
+1971-11-30 04:00:00,13.5025923039852
+1971-11-30 05:00:00,13.0356846126206
+1971-11-30 06:00:00,15.7894514408293
+1971-11-30 07:00:00,15.4285256584552
+1971-11-30 08:00:00,13.8261978778772
+1971-11-30 09:00:00,12.4633352405711
+1971-11-30 10:00:00,13.7531417233384
+1971-11-30 11:00:00,7.86249089211595
+1971-11-30 12:00:00,13.1248783132121
+1971-11-30 13:00:00,16.1016552369477
+1971-11-30 14:00:00,14.1543553711541
+1971-11-30 15:00:00,8.57699184569035
+1971-11-30 16:00:00,14.210428997688
+1971-11-30 17:00:00,9.50889350430983
+1971-11-30 18:00:00,11.6119222308969
+1971-11-30 19:00:00,11.4530808828454
+1971-11-30 20:00:00,15.6743812465505
+1971-11-30 21:00:00,12.0181926480947
+1971-11-30 22:00:00,12.2145519600232
+1971-11-30 23:00:00,15.2967303918144
+1971-12-01 00:00:00,13.1550416264434
+1971-12-01 01:00:00,16.2434491834889
+1971-12-01 02:00:00,9.28580435735834
+1971-12-01 03:00:00,16.010556789194
+1971-12-01 04:00:00,17.5337212559066
+1971-12-01 05:00:00,21.2129712124371
+1971-12-01 06:00:00,17.0971148813398
+1971-12-01 07:00:00,16.2044933212056
+1971-12-01 08:00:00,8.27978953883476
+1971-12-01 09:00:00,16.1242234965971
+1971-12-01 10:00:00,11.3170492529478
+1971-12-01 11:00:00,14.1733880506256
+1971-12-01 12:00:00,11.7544272543102
+1971-12-01 13:00:00,8.43641433265276
+1971-12-01 14:00:00,18.491042984355
+1971-12-01 15:00:00,16.2974027091797
+1971-12-01 16:00:00,16.6331763602166
+1971-12-01 17:00:00,25.7587450367417
+1971-12-01 18:00:00,12.1130476683778
+1971-12-01 19:00:00,16.0803758521631
+1971-12-01 20:00:00,12.6162439718804
+1971-12-01 21:00:00,9.22241226371544
+1971-12-01 22:00:00,14.3582505768253
+1971-12-01 23:00:00,13.7053476068593
+1971-12-02 00:00:00,8.41119990527557
+1971-12-02 01:00:00,8.17253798419596
+1971-12-02 02:00:00,13.8497193676847
+1971-12-02 03:00:00,8.0016350023431
+1971-12-02 04:00:00,16.4668261321215
+1971-12-02 05:00:00,11.0759244751531
+1971-12-02 06:00:00,8.44898051646632
+1971-12-02 07:00:00,11.8142311321827
+1971-12-02 08:00:00,11.5358487672516
+1971-12-02 09:00:00,13.003129561534
+1971-12-02 10:00:00,9.05266458776975
+1971-12-02 11:00:00,20.5645471845891
+1971-12-02 12:00:00,14.4453571379904
+1971-12-02 13:00:00,13.8207267893261
+1971-12-02 14:00:00,8.21554624402869
+1971-12-02 15:00:00,9.1558634842205
+1971-12-02 16:00:00,11.9566718899397
+1971-12-02 17:00:00,13.5873863556504
+1971-12-02 18:00:00,11.6234082746523
+1971-12-02 19:00:00,14.8122895694437
+1971-12-02 20:00:00,12.8301130168269
+1971-12-02 21:00:00,12.1210205434653
+1971-12-02 22:00:00,14.9537594363648
+1971-12-02 23:00:00,19.7141493264329
+1971-12-03 00:00:00,11.5938474996339
+1971-12-03 01:00:00,13.0981166474254
+1971-12-03 02:00:00,13.175790061064
+1971-12-03 03:00:00,12.5091025250796
+1971-12-03 04:00:00,12.5964225424756
+1971-12-03 05:00:00,15.0648360862993
+1971-12-03 06:00:00,12.295863238366
+1971-12-03 07:00:00,23.6961353583812
+1971-12-03 08:00:00,16.9930059329003
+1971-12-03 09:00:00,10.4284456487204
+1971-12-03 10:00:00,10.2753090904756
+1971-12-03 11:00:00,16.85778728045
+1971-12-03 12:00:00,16.9937966555429
+1971-12-03 13:00:00,14.7799471257952
+1971-12-03 14:00:00,9.2174706487241
+1971-12-03 15:00:00,11.1143395153707
+1971-12-03 16:00:00,18.6769852865154
+1971-12-03 17:00:00,11.2459279372075
+1971-12-03 18:00:00,13.7079120225829
+1971-12-03 19:00:00,12.4753494572987
+1971-12-03 20:00:00,14.2047410471513
+1971-12-03 21:00:00,26.5776566979212
+1971-12-03 22:00:00,10.4719262602039
+1971-12-03 23:00:00,13.3727696216764
+1971-12-04 00:00:00,9.38057225763312
+1971-12-04 01:00:00,14.3135696687644
+1971-12-04 02:00:00,16.2163243419338
+1971-12-04 03:00:00,13.4100410721838
+1971-12-04 04:00:00,9.01614345635419
+1971-12-04 05:00:00,15.3369245732433
+1971-12-04 06:00:00,15.9835918446375
+1971-12-04 07:00:00,18.8775487436366
+1971-12-04 08:00:00,12.7602852828105
+1971-12-04 09:00:00,8.7567280153696
+1971-12-04 10:00:00,16.8535468477365
+1971-12-04 11:00:00,14.5533122606302
+1971-12-04 12:00:00,11.7316620480044
+1971-12-04 13:00:00,14.6948758585952
+1971-12-04 14:00:00,14.037448945779
+1971-12-04 15:00:00,17.0649713388845
+1971-12-04 16:00:00,11.2530888436021
+1971-12-04 17:00:00,18.9590051521773
+1971-12-04 18:00:00,9.5898740739132
+1971-12-04 19:00:00,14.5949983223563
+1971-12-04 20:00:00,12.3230198111507
+1971-12-04 21:00:00,23.2480054906746
+1971-12-04 22:00:00,20.039611495017
+1971-12-04 23:00:00,7.22092898209414
+1971-12-05 00:00:00,8.29477400924333
+1971-12-05 01:00:00,13.8836615519175
+1971-12-05 02:00:00,10.0549480715523
+1971-12-05 03:00:00,9.77891099509369
+1971-12-05 04:00:00,20.1991818145117
+1971-12-05 05:00:00,18.64115909088
+1971-12-05 06:00:00,16.4081650003476
+1971-12-05 07:00:00,19.532992885906
+1971-12-05 08:00:00,18.3844635449147
+1971-12-05 09:00:00,13.7019037745247
+1971-12-05 10:00:00,13.7633187709735
+1971-12-05 11:00:00,15.9534484777182
+1971-12-05 12:00:00,14.5974718512364
+1971-12-05 13:00:00,15.5411136584578
+1971-12-05 14:00:00,13.3618623471461
+1971-12-05 15:00:00,26.0850648971257
+1971-12-05 16:00:00,16.0840253778285
+1971-12-05 17:00:00,21.7082797438324
+1971-12-05 18:00:00,13.8309979194649
+1971-12-05 19:00:00,8.78874055915328
+1971-12-05 20:00:00,10.6535968697779
+1971-12-05 21:00:00,12.2338288515677
+1971-12-05 22:00:00,16.6014310987378
+1971-12-05 23:00:00,19.0885974210153
+1971-12-06 00:00:00,16.2832124345575
+1971-12-06 01:00:00,13.0343762099757
+1971-12-06 02:00:00,13.1645545829941
+1971-12-06 03:00:00,12.5717455703629
+1971-12-06 04:00:00,8.47012941873981
+1971-12-06 05:00:00,14.9952704674424
+1971-12-06 06:00:00,11.5885982397408
+1971-12-06 07:00:00,11.8232407852692
+1971-12-06 08:00:00,8.55704442494225
+1971-12-06 09:00:00,18.1164911395279
+1971-12-06 10:00:00,19.3853882090124
+1971-12-06 11:00:00,15.4780821476923
+1971-12-06 12:00:00,16.1276649624122
+1971-12-06 13:00:00,11.3604446161346
+1971-12-06 14:00:00,13.2269731944069
+1971-12-06 15:00:00,13.4830834365587
+1971-12-06 16:00:00,11.5285655398402
+1971-12-06 17:00:00,10.5094172794367
+1971-12-06 18:00:00,13.1957826996887
+1971-12-06 19:00:00,20.9443611117775
+1971-12-06 20:00:00,10.9981070935235
+1971-12-06 21:00:00,10.5329544743981
+1971-12-06 22:00:00,13.217379729851
+1971-12-06 23:00:00,18.6960597115796
+1971-12-07 00:00:00,16.3812914357928
+1971-12-07 01:00:00,10.8454767356139
+1971-12-07 02:00:00,23.2847866735498
+1971-12-07 03:00:00,12.1846336619733
+1971-12-07 04:00:00,19.0061068804486
+1971-12-07 05:00:00,8.35537718336946
+1971-12-07 06:00:00,6.80394216527087
+1971-12-07 07:00:00,20.2913361193152
+1971-12-07 08:00:00,14.4597786974372
+1971-12-07 09:00:00,13.2886727589381
+1971-12-07 10:00:00,13.6911743858477
+1971-12-07 11:00:00,8.55108408554231
+1971-12-07 12:00:00,11.8340762328113
+1971-12-07 13:00:00,11.1021011619745
+1971-12-07 14:00:00,9.3808894273415
+1971-12-07 15:00:00,9.59202948941703
+1971-12-07 16:00:00,9.04172698784547
+1971-12-07 17:00:00,8.4305976459129
+1971-12-07 18:00:00,9.71162840078631
+1971-12-07 19:00:00,8.6805611243152
+1971-12-07 20:00:00,11.9098455503608
+1971-12-07 21:00:00,16.2035016347502
+1971-12-07 22:00:00,8.16526435379785
+1971-12-07 23:00:00,10.2595686318072
+1971-12-08 00:00:00,22.0277482797981
+1971-12-08 01:00:00,20.5018292541642
+1971-12-08 02:00:00,12.5241823239044
+1971-12-08 03:00:00,17.1167379917098
+1971-12-08 04:00:00,10.3055069127884
+1971-12-08 05:00:00,8.33014507273381
+1971-12-08 06:00:00,7.46002757029173
+1971-12-08 07:00:00,13.1922175136746
+1971-12-08 08:00:00,15.632869687807
+1971-12-08 09:00:00,7.9609035816585
+1971-12-08 10:00:00,23.6546992300545
+1971-12-08 11:00:00,17.7335850521924
+1971-12-08 12:00:00,9.27223137366061
+1971-12-08 13:00:00,12.5894749001427
+1971-12-08 14:00:00,13.2890898139818
+1971-12-08 15:00:00,13.8978867871117
+1971-12-08 16:00:00,16.2119999962139
+1971-12-08 17:00:00,17.7594678826462
+1971-12-08 18:00:00,10.2145932912809
+1971-12-08 19:00:00,5.81199551155061
+1971-12-08 20:00:00,18.1202710849003
+1971-12-08 21:00:00,11.2121126729853
+1971-12-08 22:00:00,10.7672051869553
+1971-12-08 23:00:00,17.302059756646
+1971-12-09 00:00:00,11.7778040200399
+1971-12-09 01:00:00,11.4537591557109
+1971-12-09 02:00:00,15.5152670246037
+1971-12-09 03:00:00,12.5412042787401
+1971-12-09 04:00:00,13.4367834505584
+1971-12-09 05:00:00,15.2283259520561
+1971-12-09 06:00:00,20.7535030320539
+1971-12-09 07:00:00,14.9976060498026
+1971-12-09 08:00:00,8.51294116763173
+1971-12-09 09:00:00,13.2200759201291
+1971-12-09 10:00:00,14.1321651615653
+1971-12-09 11:00:00,11.743597596161
+1971-12-09 12:00:00,12.1723138374571
+1971-12-09 13:00:00,11.8401006737042
+1971-12-09 14:00:00,17.2884426348262
+1971-12-09 15:00:00,13.5890903654176
+1971-12-09 16:00:00,12.9846151555681
+1971-12-09 17:00:00,21.1311950497526
+1971-12-09 18:00:00,12.3139314325595
+1971-12-09 19:00:00,17.3782462160616
+1971-12-09 20:00:00,10.7351452140848
+1971-12-09 21:00:00,15.2659249494513
+1971-12-09 22:00:00,7.88225634719124
+1971-12-09 23:00:00,10.0883186038726
+1971-12-10 00:00:00,13.686657809402
+1971-12-10 01:00:00,18.7395699779849
+1971-12-10 02:00:00,16.4929849230619
+1971-12-10 03:00:00,21.0058042509274
+1971-12-10 04:00:00,11.6412362560154
+1971-12-10 05:00:00,15.1059407168993
+1971-12-10 06:00:00,17.7304822080428
+1971-12-10 07:00:00,13.3034695747481
+1971-12-10 08:00:00,17.870207667966
+1971-12-10 09:00:00,14.1646234450939
+1971-12-10 10:00:00,17.4432802442175
+1971-12-10 11:00:00,12.3983435329365
+1971-12-10 12:00:00,18.6592386557815
+1971-12-10 13:00:00,8.51270529383483
+1971-12-10 14:00:00,10.2787729479165
+1971-12-10 15:00:00,24.7672261971853
+1971-12-10 16:00:00,12.4758974434075
+1971-12-10 17:00:00,12.7385087812958
+1971-12-10 18:00:00,14.3068385385016
+1971-12-10 19:00:00,12.821344188024
+1971-12-10 20:00:00,13.0856672231834
+1971-12-10 21:00:00,14.8454747173197
+1971-12-10 22:00:00,10.2788724562417
+1971-12-10 23:00:00,15.0752901048749
+1971-12-11 00:00:00,17.6571823592735
+1971-12-11 01:00:00,16.4545836414685
+1971-12-11 02:00:00,13.610194321411
+1971-12-11 03:00:00,15.8381921414584
+1971-12-11 04:00:00,14.2073727522204
+1971-12-11 05:00:00,20.9975354022744
+1971-12-11 06:00:00,7.76367266642029
+1971-12-11 07:00:00,15.2988941685614
+1971-12-11 08:00:00,13.5643204810097
+1971-12-11 09:00:00,8.37070587648889
+1971-12-11 10:00:00,10.6776751213403
+1971-12-11 11:00:00,27.1161236987003
+1971-12-11 12:00:00,18.7115634653235
+1971-12-11 13:00:00,6.83951748469268
+1971-12-11 14:00:00,19.8524886108678
+1971-12-11 15:00:00,20.7370772006269
+1971-12-11 16:00:00,14.3742326130631
+1971-12-11 17:00:00,9.19095350215506
+1971-12-11 18:00:00,13.6432290839434
+1971-12-11 19:00:00,20.5073039682833
+1971-12-11 20:00:00,9.32725657866973
+1971-12-11 21:00:00,10.0765289643512
+1971-12-11 22:00:00,9.72524182715969
+1971-12-11 23:00:00,13.5824811613373
+1971-12-12 00:00:00,14.4622426624046
+1971-12-12 01:00:00,15.8922450209084
+1971-12-12 02:00:00,16.5324188220915
+1971-12-12 03:00:00,14.5614118079398
+1971-12-12 04:00:00,14.6886504447794
+1971-12-12 05:00:00,17.8145269354716
+1971-12-12 06:00:00,29.5622442422877
+1971-12-12 07:00:00,13.0184244691148
+1971-12-12 08:00:00,14.1118440127351
+1971-12-12 09:00:00,16.6469460979004
+1971-12-12 10:00:00,12.1110760076481
+1971-12-12 11:00:00,11.9930225487468
+1971-12-12 12:00:00,14.0900609451644
+1971-12-12 13:00:00,7.66655356465291
+1971-12-12 14:00:00,18.803878122352
+1971-12-12 15:00:00,11.1863478328316
+1971-12-12 16:00:00,8.69998547502334
+1971-12-12 17:00:00,5.60097797355854
+1971-12-12 18:00:00,9.24084411105999
+1971-12-12 19:00:00,11.4762939602659
+1971-12-12 20:00:00,17.5758165679809
+1971-12-12 21:00:00,14.7555997022061
+1971-12-12 22:00:00,19.3668168146563
+1971-12-12 23:00:00,12.8623997754522
+1971-12-13 00:00:00,15.9678202383728
+1971-12-13 01:00:00,14.0384799458502
+1971-12-13 02:00:00,10.6538971288368
+1971-12-13 03:00:00,14.1244274170577
+1971-12-13 04:00:00,15.0972283914667
+1971-12-13 05:00:00,14.6548781360223
+1971-12-13 06:00:00,12.3294945465639
+1971-12-13 07:00:00,6.93475389100768
+1971-12-13 08:00:00,16.4905569604223
+1971-12-13 09:00:00,12.5187279983147
+1971-12-13 10:00:00,9.77549702361942
+1971-12-13 11:00:00,10.3650861723495
+1971-12-13 12:00:00,19.6852719420175
+1971-12-13 13:00:00,16.3939256010911
+1971-12-13 14:00:00,11.8417747179024
+1971-12-13 15:00:00,14.8713179877695
+1971-12-13 16:00:00,18.5868273132338
+1971-12-13 17:00:00,10.9478592391271
+1971-12-13 18:00:00,11.0891565882401
+1971-12-13 19:00:00,9.45656522689763
+1971-12-13 20:00:00,19.4908643024486
+1971-12-13 21:00:00,12.2282156507734
+1971-12-13 22:00:00,14.2287063332828
+1971-12-13 23:00:00,15.4262388870829
+1971-12-14 00:00:00,10.5293044712086
+1971-12-14 01:00:00,9.27789307007797
+1971-12-14 02:00:00,10.0798851432557
+1971-12-14 03:00:00,11.7500329436257
+1971-12-14 04:00:00,18.5232860418167
+1971-12-14 05:00:00,7.65691402908276
+1971-12-14 06:00:00,18.489683859082
+1971-12-14 07:00:00,12.2380605085622
+1971-12-14 08:00:00,14.2452715148517
+1971-12-14 09:00:00,14.8864432166316
+1971-12-14 10:00:00,10.7543122096701
+1971-12-14 11:00:00,9.33921718870598
+1971-12-14 12:00:00,15.7508192250187
+1971-12-14 13:00:00,12.3600311506588
+1971-12-14 14:00:00,21.6010056711566
+1971-12-14 15:00:00,12.1898309459251
+1971-12-14 16:00:00,17.2314700399665
+1971-12-14 17:00:00,8.52695070716062
+1971-12-14 18:00:00,17.7211767611068
+1971-12-14 19:00:00,18.2225683887715
+1971-12-14 20:00:00,9.87668101763329
+1971-12-14 21:00:00,10.6796159799512
+1971-12-14 22:00:00,14.9544724805609
+1971-12-14 23:00:00,9.56496361680102
+1971-12-15 00:00:00,12.3507611429338
+1971-12-15 01:00:00,11.611777208004
+1971-12-15 02:00:00,8.72739112046758
+1971-12-15 03:00:00,7.65692267022586
+1971-12-15 04:00:00,11.4544339978807
+1971-12-15 05:00:00,14.3008730987207
+1971-12-15 06:00:00,9.15062168981331
+1971-12-15 07:00:00,11.2239560750485
+1971-12-15 08:00:00,12.9431287945481
+1971-12-15 09:00:00,11.6184310031143
+1971-12-15 10:00:00,10.5873218803057
+1971-12-15 11:00:00,19.2398697289529
+1971-12-15 12:00:00,17.6399787574836
+1971-12-15 13:00:00,16.5475201413617
+1971-12-15 14:00:00,15.6594349684384
+1971-12-15 15:00:00,18.2291338859449
+1971-12-15 16:00:00,18.9102047770621
+1971-12-15 17:00:00,28.3130174360767
+1971-12-15 18:00:00,10.4534161714164
+1971-12-15 19:00:00,13.314147432874
+1971-12-15 20:00:00,8.06651072508646
+1971-12-15 21:00:00,12.3066870175424
+1971-12-15 22:00:00,16.7428192980435
+1971-12-15 23:00:00,20.7219624205169
+1971-12-16 00:00:00,13.3747427241209
+1971-12-16 01:00:00,16.1080035406453
+1971-12-16 02:00:00,7.48880957632096
+1971-12-16 03:00:00,23.23779917626
+1971-12-16 04:00:00,16.2635402302096
+1971-12-16 05:00:00,15.20287169708
+1971-12-16 06:00:00,14.2359563361001
+1971-12-16 07:00:00,13.0147691892465
+1971-12-16 08:00:00,14.2760572605102
+1971-12-16 09:00:00,19.2454665468332
+1971-12-16 10:00:00,11.7215194997902
+1971-12-16 11:00:00,11.7167057629194
+1971-12-16 12:00:00,9.41435314132041
+1971-12-16 13:00:00,13.3645186275185
+1971-12-16 14:00:00,9.58919744202911
+1971-12-16 15:00:00,21.2561835279131
+1971-12-16 16:00:00,24.6471615738055
+1971-12-16 17:00:00,14.2535141265346
+1971-12-16 18:00:00,18.8860649009128
+1971-12-16 19:00:00,14.9897455117514
+1971-12-16 20:00:00,16.7879558710094
+1971-12-16 21:00:00,12.3708213801185
+1971-12-16 22:00:00,15.902159084686
+1971-12-16 23:00:00,17.0021557807259
+1971-12-17 00:00:00,12.6995817481578
+1971-12-17 01:00:00,12.2574853994521
+1971-12-17 02:00:00,18.3904852810476
+1971-12-17 03:00:00,10.3966396886971
+1971-12-17 04:00:00,8.97758499699409
+1971-12-17 05:00:00,11.6361757481602
+1971-12-17 06:00:00,16.2557356191187
+1971-12-17 07:00:00,6.9043599425639
+1971-12-17 08:00:00,6.04876543840717
+1971-12-17 09:00:00,16.3282654260575
+1971-12-17 10:00:00,17.6194094068987
+1971-12-17 11:00:00,12.1636684970568
+1971-12-17 12:00:00,17.4833430387658
+1971-12-17 13:00:00,7.75224211614306
+1971-12-17 14:00:00,14.7331668456365
+1971-12-17 15:00:00,9.16528830686123
+1971-12-17 16:00:00,9.68463570719984
+1971-12-17 17:00:00,7.21573657963533
+1971-12-17 18:00:00,13.8894048468867
+1971-12-17 19:00:00,10.0181078776398
+1971-12-17 20:00:00,16.7248002345177
+1971-12-17 21:00:00,12.6036304693297
+1971-12-17 22:00:00,10.0525973560598
+1971-12-17 23:00:00,12.7934240670635
+1971-12-18 00:00:00,20.425717107696
+1971-12-18 01:00:00,15.8295122462825
+1971-12-18 02:00:00,8.28856082304142
+1971-12-18 03:00:00,17.138715486461
+1971-12-18 04:00:00,20.172361415466
+1971-12-18 05:00:00,7.2783731860678
+1971-12-18 06:00:00,10.2826386562449
+1971-12-18 07:00:00,9.19386313741015
+1971-12-18 08:00:00,22.2156078279628
+1971-12-18 09:00:00,12.3625998727126
+1971-12-18 10:00:00,8.30597416690034
+1971-12-18 11:00:00,6.45483683663982
+1971-12-18 12:00:00,7.65919457925852
+1971-12-18 13:00:00,29.6372488507223
+1971-12-18 14:00:00,12.9357852133583
+1971-12-18 15:00:00,10.8681829272731
+1971-12-18 16:00:00,16.9129335185681
+1971-12-18 17:00:00,15.9029119770223
+1971-12-18 18:00:00,18.8018403633997
+1971-12-18 19:00:00,10.3831678528375
+1971-12-18 20:00:00,22.1651892478179
+1971-12-18 21:00:00,13.331621853095
+1971-12-18 22:00:00,9.17055292679309
+1971-12-18 23:00:00,11.7490047924759
+1971-12-19 00:00:00,15.1681576646995
+1971-12-19 01:00:00,15.6037232485727
+1971-12-19 02:00:00,12.8982343610365
+1971-12-19 03:00:00,15.4514311079285
+1971-12-19 04:00:00,17.9456934235742
+1971-12-19 05:00:00,13.9621047722546
+1971-12-19 06:00:00,9.12034415482653
+1971-12-19 07:00:00,17.2944054861446
+1971-12-19 08:00:00,15.7773960716854
+1971-12-19 09:00:00,18.6861855546161
+1971-12-19 10:00:00,21.9264700283848
+1971-12-19 11:00:00,17.0709555358943
+1971-12-19 12:00:00,7.0434923219831
+1971-12-19 13:00:00,13.7137655202968
+1971-12-19 14:00:00,8.31795914648901
+1971-12-19 15:00:00,16.0438603776223
+1971-12-19 16:00:00,7.07824689663286
+1971-12-19 17:00:00,10.3135001413529
+1971-12-19 18:00:00,11.6873657112592
+1971-12-19 19:00:00,14.9954779773872
+1971-12-19 20:00:00,5.67261065896071
+1971-12-19 21:00:00,9.54976045250062
+1971-12-19 22:00:00,15.7060076329057
+1971-12-19 23:00:00,12.0773434388119
+1971-12-20 00:00:00,16.9786309635987
+1971-12-20 01:00:00,15.5976410356959
+1971-12-20 02:00:00,10.6588777505934
+1971-12-20 03:00:00,12.0085529009328
+1971-12-20 04:00:00,15.2729934428963
+1971-12-20 05:00:00,18.0137731934164
+1971-12-20 06:00:00,16.5037371388407
+1971-12-20 07:00:00,27.2934560161993
+1971-12-20 08:00:00,11.1431685517623
+1971-12-20 09:00:00,14.2114786251391
+1971-12-20 10:00:00,8.68283046980977
+1971-12-20 11:00:00,8.81707579361111
+1971-12-20 12:00:00,13.3881034673062
+1971-12-20 13:00:00,14.8992230708385
+1971-12-20 14:00:00,16.2768721073597
+1971-12-20 15:00:00,27.0455006014389
+1971-12-20 16:00:00,12.2344652590005
+1971-12-20 17:00:00,9.33029830389764
+1971-12-20 18:00:00,15.8789801878952
+1971-12-20 19:00:00,13.7537847288152
+1971-12-20 20:00:00,14.7036966705738
+1971-12-20 21:00:00,20.6925177032637
+1971-12-20 22:00:00,14.2406320588996
+1971-12-20 23:00:00,6.46568714695325
+1971-12-21 00:00:00,15.5998038484615
+1971-12-21 01:00:00,14.8680810540587
+1971-12-21 02:00:00,17.3139494348648
+1971-12-21 03:00:00,16.6019426102647
+1971-12-21 04:00:00,13.37215663663
+1971-12-21 05:00:00,14.2302086954769
+1971-12-21 06:00:00,12.8274802004065
+1971-12-21 07:00:00,8.57909969947344
+1971-12-21 08:00:00,12.5643498099027
+1971-12-21 09:00:00,17.1117891141005
+1971-12-21 10:00:00,17.068700551413
+1971-12-21 11:00:00,19.6279420070506
+1971-12-21 12:00:00,12.2190391368367
+1971-12-21 13:00:00,17.5629546831618
+1971-12-21 14:00:00,13.9923824301217
+1971-12-21 15:00:00,17.4583144305741
+1971-12-21 16:00:00,17.5066347147295
+1971-12-21 17:00:00,11.3178835787913
+1971-12-21 18:00:00,13.9403059591303
+1971-12-21 19:00:00,17.9456173820912
+1971-12-21 20:00:00,18.6704844287691
+1971-12-21 21:00:00,9.67250860545808
+1971-12-21 22:00:00,9.82815912107443
+1971-12-21 23:00:00,13.9601086557336
+1971-12-22 00:00:00,11.5603547932751
+1971-12-22 01:00:00,19.2123591242894
+1971-12-22 02:00:00,14.8388263818379
+1971-12-22 03:00:00,25.5055320724365
+1971-12-22 04:00:00,13.4455866276563
+1971-12-22 05:00:00,7.16925924163405
+1971-12-22 06:00:00,13.4680138962449
+1971-12-22 07:00:00,16.2977271539409
+1971-12-22 08:00:00,13.7845862466792
+1971-12-22 09:00:00,11.2332350082986
+1971-12-22 10:00:00,18.5168329081214
+1971-12-22 11:00:00,9.58362871003588
+1971-12-22 12:00:00,12.6832723698196
+1971-12-22 13:00:00,12.9077374323619
+1971-12-22 14:00:00,16.0166618251631
+1971-12-22 15:00:00,14.0605140955562
+1971-12-22 16:00:00,13.4494872215639
+1971-12-22 17:00:00,17.8475623293595
+1971-12-22 18:00:00,18.9970429773629
+1971-12-22 19:00:00,13.3330582457195
+1971-12-22 20:00:00,13.1304887265733
+1971-12-22 21:00:00,14.5369069110165
+1971-12-22 22:00:00,13.5119587320428
+1971-12-22 23:00:00,12.8444598915875
+1971-12-23 00:00:00,5.4825542553445
+1971-12-23 01:00:00,12.6557361393302
+1971-12-23 02:00:00,11.8162763959764
+1971-12-23 03:00:00,17.314591380441
+1971-12-23 04:00:00,15.0077017806387
+1971-12-23 05:00:00,16.5740660618125
+1971-12-23 06:00:00,6.76576274292272
+1971-12-23 07:00:00,16.3533047095256
+1971-12-23 08:00:00,15.3509463330373
+1971-12-23 09:00:00,17.0557450863573
+1971-12-23 10:00:00,6.57706374468368
+1971-12-23 11:00:00,11.7961613843222
+1971-12-23 12:00:00,20.2468630719273
+1971-12-23 13:00:00,15.3535520997947
+1971-12-23 14:00:00,17.5805748856664
+1971-12-23 15:00:00,15.3697894718727
+1971-12-23 16:00:00,9.97410268356336
+1971-12-23 17:00:00,11.3274437425946
+1971-12-23 18:00:00,21.4639112001853
+1971-12-23 19:00:00,24.2915410720777
+1971-12-23 20:00:00,15.0210207821822
+1971-12-23 21:00:00,14.6701394553624
+1971-12-23 22:00:00,11.5829138508815
+1971-12-23 23:00:00,8.42232978142424
+1971-12-24 00:00:00,21.6222514920841
+1971-12-24 01:00:00,19.8636973001191
+1971-12-24 02:00:00,12.4818564004285
+1971-12-24 03:00:00,9.87684371401032
+1971-12-24 04:00:00,13.6012211605937
+1971-12-24 05:00:00,16.4924475813055
+1971-12-24 06:00:00,14.1767008197711
+1971-12-24 07:00:00,15.288698227228
+1971-12-24 08:00:00,9.17243181394933
+1971-12-24 09:00:00,17.8821214361329
+1971-12-24 10:00:00,11.635698521661
+1971-12-24 11:00:00,17.3029543057185
+1971-12-24 12:00:00,21.8859787873075
+1971-12-24 13:00:00,13.7199029071386
+1971-12-24 14:00:00,11.0575029767318
+1971-12-24 15:00:00,18.7715886323665
+1971-12-24 16:00:00,9.41300867356305
+1971-12-24 17:00:00,19.4335039392668
+1971-12-24 18:00:00,11.1499375162382
+1971-12-24 19:00:00,7.42111477379919
+1971-12-24 20:00:00,9.42502376446948
+1971-12-24 21:00:00,9.98231261033161
+1971-12-24 22:00:00,13.9013379817601
+1971-12-24 23:00:00,18.4061504274946
+1971-12-25 00:00:00,9.97423437898911
+1971-12-25 01:00:00,17.5500162201369
+1971-12-25 02:00:00,9.50312774672579
+1971-12-25 03:00:00,16.1886637843262
+1971-12-25 04:00:00,22.7810814562021
+1971-12-25 05:00:00,12.316225359542
+1971-12-25 06:00:00,14.8162236818939
+1971-12-25 07:00:00,16.3827225173469
+1971-12-25 08:00:00,9.01379091294932
+1971-12-25 09:00:00,8.25460109395441
+1971-12-25 10:00:00,16.8830828540065
+1971-12-25 11:00:00,16.602790214947
+1971-12-25 12:00:00,11.2216376501259
+1971-12-25 13:00:00,13.6122052475462
+1971-12-25 14:00:00,7.93769014177062
+1971-12-25 15:00:00,15.5212256025114
+1971-12-25 16:00:00,12.668981676718
+1971-12-25 17:00:00,17.9623492175927
+1971-12-25 18:00:00,24.3948743371471
+1971-12-25 19:00:00,12.7437720178348
+1971-12-25 20:00:00,17.8008583821797
+1971-12-25 21:00:00,18.4269772259721
+1971-12-25 22:00:00,13.3758907912753
+1971-12-25 23:00:00,10.2602749434829
+1971-12-26 00:00:00,8.72720827808756
+1971-12-26 01:00:00,16.3521498188025
+1971-12-26 02:00:00,15.977217406162
+1971-12-26 03:00:00,11.1599008920055
+1971-12-26 04:00:00,13.2202158036412
+1971-12-26 05:00:00,19.0203892569844
+1971-12-26 06:00:00,13.876025166349
+1971-12-26 07:00:00,15.1723173840459
+1971-12-26 08:00:00,12.2685089023401
+1971-12-26 09:00:00,16.2439487795415
+1971-12-26 10:00:00,11.4556330521995
+1971-12-26 11:00:00,15.7459915574002
+1971-12-26 12:00:00,16.4844998313981
+1971-12-26 13:00:00,14.816082875796
+1971-12-26 14:00:00,14.3147107185833
+1971-12-26 15:00:00,23.1060677356118
+1971-12-26 16:00:00,10.2728486306534
+1971-12-26 17:00:00,16.5981417294985
+1971-12-26 18:00:00,9.57510432489947
+1971-12-26 19:00:00,17.5000441211514
+1971-12-26 20:00:00,9.62527785055342
+1971-12-26 21:00:00,18.9684003728734
+1971-12-26 22:00:00,14.0132548994179
+1971-12-26 23:00:00,16.9629529157295
+1971-12-27 00:00:00,26.3415255672842
+1971-12-27 01:00:00,16.5280384028968
+1971-12-27 02:00:00,9.27700522940395
+1971-12-27 03:00:00,16.8236407241033
+1971-12-27 04:00:00,9.63112822612952
+1971-12-27 05:00:00,17.3286245715207
+1971-12-27 06:00:00,14.8290288078438
+1971-12-27 07:00:00,23.8915103107997
+1971-12-27 08:00:00,15.3427651157168
+1971-12-27 09:00:00,11.4304156671318
+1971-12-27 10:00:00,20.330615593326
+1971-12-27 11:00:00,17.0799351201485
+1971-12-27 12:00:00,11.8751538608523
+1971-12-27 13:00:00,20.7962918104376
+1971-12-27 14:00:00,8.2945229325348
+1971-12-27 15:00:00,22.2919743194676
+1971-12-27 16:00:00,19.9235344512385
+1971-12-27 17:00:00,14.2695657845629
+1971-12-27 18:00:00,15.8203809664282
+1971-12-27 19:00:00,10.2248094437155
+1971-12-27 20:00:00,5.76190871123975
+1971-12-27 21:00:00,10.6672676715806
+1971-12-27 22:00:00,13.8487332001625
+1971-12-27 23:00:00,8.99098541599396
+1971-12-28 00:00:00,15.5227133696999
+1971-12-28 01:00:00,13.9080490354227
+1971-12-28 02:00:00,16.7617924758638
+1971-12-28 03:00:00,5.86865158811227
+1971-12-28 04:00:00,8.69316612224749
+1971-12-28 05:00:00,12.8308221257977
+1971-12-28 06:00:00,9.76836909254541
+1971-12-28 07:00:00,7.69462095458328
+1971-12-28 08:00:00,11.8336638848861
+1971-12-28 09:00:00,14.3951931701454
+1971-12-28 10:00:00,14.127771458952
+1971-12-28 11:00:00,11.1604630598149
+1971-12-28 12:00:00,16.5813091894811
+1971-12-28 13:00:00,16.258401833866
+1971-12-28 14:00:00,15.6863635250253
+1971-12-28 15:00:00,18.6942962385294
+1971-12-28 16:00:00,20.5677695415554
+1971-12-28 17:00:00,16.5044138194465
+1971-12-28 18:00:00,6.31767050514864
+1971-12-28 19:00:00,10.6802929587269
+1971-12-28 20:00:00,10.6191355869012
+1971-12-28 21:00:00,19.2219293997269
+1971-12-28 22:00:00,13.4581277262404
+1971-12-28 23:00:00,9.89868376029375
+1971-12-29 00:00:00,12.2956192963632
+1971-12-29 01:00:00,14.0613238168559
+1971-12-29 02:00:00,15.7541525522197
+1971-12-29 03:00:00,5.54519683680691
+1971-12-29 04:00:00,16.3899738003127
+1971-12-29 05:00:00,8.7848133373725
+1971-12-29 06:00:00,11.9108457437311
+1971-12-29 07:00:00,17.4956946755148
+1971-12-29 08:00:00,7.03373139304262
+1971-12-29 09:00:00,14.6842186251863
+1971-12-29 10:00:00,7.64572262198471
+1971-12-29 11:00:00,21.2906259876662
+1971-12-29 12:00:00,11.0873727914647
+1971-12-29 13:00:00,17.6644391842861
+1971-12-29 14:00:00,17.4792680976607
+1971-12-29 15:00:00,16.7770052722564
+1971-12-29 16:00:00,10.9262889938637
+1971-12-29 17:00:00,10.5277027727435
+1971-12-29 18:00:00,15.7018455922594
+1971-12-29 19:00:00,10.5498832208192
+1971-12-29 20:00:00,16.3287151475052
+1971-12-29 21:00:00,11.2693588082137
+1971-12-29 22:00:00,6.671320392179
+1971-12-29 23:00:00,13.7269457273577
+1971-12-30 00:00:00,15.2977653345574
+1971-12-30 01:00:00,17.2498600045374
+1971-12-30 02:00:00,16.4414504006047
+1971-12-30 03:00:00,17.9160822253436
+1971-12-30 04:00:00,13.1199844495596
+1971-12-30 05:00:00,12.8232947866014
+1971-12-30 06:00:00,8.76945188611041
+1971-12-30 07:00:00,14.1389633661869
+1971-12-30 08:00:00,16.0711991916819
+1971-12-30 09:00:00,14.6471610052571
+1971-12-30 10:00:00,11.183427196299
+1971-12-30 11:00:00,18.8152065680239
+1971-12-30 12:00:00,18.398659188007
+1971-12-30 13:00:00,15.4591127510858
+1971-12-30 14:00:00,9.62980871373148
+1971-12-30 15:00:00,10.7399372908207
+1971-12-30 16:00:00,15.8986523904087
+1971-12-30 17:00:00,12.9044820037468
+1971-12-30 18:00:00,13.5566556598215
+1971-12-30 19:00:00,10.1541703850612
+1971-12-30 20:00:00,18.6076013336374
+1971-12-30 21:00:00,11.6617529454299
+1971-12-30 22:00:00,14.9829493313219
+1971-12-30 23:00:00,27.2999772907818
+1971-12-31 00:00:00,18.0460297207167
+1971-12-31 01:00:00,9.67197918313561
+1971-12-31 02:00:00,6.39816217643302
+1971-12-31 03:00:00,17.1572083651225
+1971-12-31 04:00:00,22.5957512534639
+1971-12-31 05:00:00,9.94429435412049
+1971-12-31 06:00:00,17.2144027230248
+1971-12-31 07:00:00,7.85309428167662
+1971-12-31 08:00:00,10.4507127407796
+1971-12-31 09:00:00,16.0526833258383
+1971-12-31 10:00:00,17.4699113786946
+1971-12-31 11:00:00,13.6304960690609
+1971-12-31 12:00:00,13.9385240978425
+1971-12-31 13:00:00,9.44476677833967
+1971-12-31 14:00:00,14.0372219474255
+1971-12-31 15:00:00,5.9352378551468
+1971-12-31 16:00:00,17.1658367598194
+1971-12-31 17:00:00,10.849124447877
+1971-12-31 18:00:00,21.0204334896779
+1971-12-31 19:00:00,11.7783090754397
+1971-12-31 20:00:00,12.6509936838632
+1971-12-31 21:00:00,13.7330042812043
+1971-12-31 22:00:00,15.7497663531681
+1971-12-31 23:00:00,12.9870928402055
+1972-01-01 00:00:00,13.9815068588867
diff --git a/pkg/inst/testdata/exo_test.csv b/pkg/inst/testdata/exo_test.csv
new file mode 100644 (file)
index 0000000..1bfe04f
--- /dev/null
@@ -0,0 +1,183 @@
+"date","var","var_pred"
+2007-01-01,-0.217529873016855,0.23669463638363
+2007-01-02,1.53196800458768,0.154479283092565
+2007-01-03,-0.179414148531688,0.732872787481357
+2007-01-04,-0.34541895305433,2.67195401288337
+2007-01-05,1.36308157727048,1.77663726195027
+2007-01-06,1.84194517680528,3.36995634091707
+2007-01-07,0.530281392375643,-1.84195737868931
+2007-01-08,0.456844553461606,1.87523328963312
+2007-01-09,1.35905801334973,1.54478130510417
+2007-01-10,1.27608018153745,0.776642205200036
+2007-01-11,0.807765654334124,1.87328618841723
+2007-01-12,0.460001737845824,1.1106857798858
+2007-01-13,-0.234991244199412,1.47694085290114
+2007-01-14,1.62981955882565,0.518565899410766
+2007-01-15,0.267991337745133,0.881137803163065
+2007-01-16,0.461356067519436,-0.510835415363863
+2007-01-17,1.05274533392338,1.84781548853864
+2007-01-18,1.58759810235407,0.919350736887847
+2007-01-19,0.910798250271897,0.444865886612813
+2007-01-20,2.53136984201421,-0.247354510388352
+2007-01-21,0.448307815052593,2.0975723813015
+2007-01-22,1.06155056890105,0.332886841755604
+2007-01-23,0.436751382569659,-1.36172869205215
+2007-01-24,1.75434079361525,0.949872608636806
+2007-01-25,-0.0915087128553402,0.836492899270147
+2007-01-26,0.259045088336356,1.57043727699625
+2007-01-27,-0.945371222147577,0.169206679768931
+2007-01-28,0.598758753178153,-0.155387982169515
+2007-01-29,0.923908444203986,1.27032136625352
+2007-01-30,2.45759531829471,1.38048970950148
+2007-01-31,-0.597802551661792,0.100435411718593
+2007-02-01,1.57833088062749,0.736442281052783
+2007-02-02,2.84728247871725,2.52923041720706
+2007-02-03,0.20112801646758,0.820218394227867
+2007-02-04,0.330783891688626,-0.117871575836685
+2007-02-05,2.19643403934764,1.78051607361239
+2007-02-06,1.28433651439804,-0.335330863782928
+2007-02-07,0.156685275463554,1.04769595502872
+2007-02-08,1.14643584163998,-0.0745590940631269
+2007-02-09,1.05675510344477,1.21964330736613
+2007-02-10,1.48964302989163,1.62681379248013
+2007-02-11,0.0890313959971395,0.833170937533103
+2007-02-12,1.34500556519813,-0.789844305388806
+2007-02-13,1.19730129394584,-0.993441506611018
+2007-02-14,2.50410769097511,1.68190018459363
+2007-02-15,0.500619603321642,0.167704339891159
+2007-02-16,-0.837932383721317,1.22768953607984
+2007-02-17,2.26420907937987,1.39805183236129
+2007-02-18,1.01943779233342,1.01303566096006
+2007-02-19,-1.6516542574183,-0.446765965769887
+2007-02-20,0.664659733798599,-2.29926713195933
+2007-02-21,2.22139728643704,2.9469634427798
+2007-02-22,-0.710269483385798,2.2000123230068
+2007-02-23,0.938419606981613,1.89799571954235
+2007-02-24,0.679688378012208,-0.348535666192827
+2007-02-25,1.34111264341224,0.712290012317878
+2007-02-26,0.132056773825026,1.16980736531258
+2007-02-27,1.60466043799838,0.692210230682102
+2007-02-28,1.305436548997,0.776733739735433
+2007-03-01,2.36554103904522,0.725463370434253
+2007-03-02,1.00272108288593,0.266965947028999
+2007-03-03,1.34954132687811,0.502367752619553
+2007-03-04,-0.121217840668098,1.78368596909857
+2007-03-05,0.794312753463377,1.30204256643455
+2007-03-06,-0.331414510388407,1.10827494107121
+2007-03-07,0.677200326525247,0.610377176165785
+2007-03-08,-0.11458605120384,2.46930066653989
+2007-03-09,-0.606847572022917,1.26678710805086
+2007-03-10,0.537885465904514,-0.574550792369274
+2007-03-11,-0.0359442651857305,2.8321869949606
+2007-03-12,0.435085882514671,0.384197892654633
+2007-03-13,2.98420245473607,1.56665268149676
+2007-03-14,2.00537925416718,1.57201321127857
+2007-03-15,0.366951392596131,-1.20773923661117
+2007-03-16,1.66613122466074,1.7155703224606
+2007-03-17,-0.475290176208421,2.4391907119067
+2007-03-18,2.21199630210952,0.0564787938029571
+2007-03-19,-0.89733007534121,1.98167733361517
+2007-03-20,0.7704936465039,0.204187208630914
+2007-03-21,0.0553587559435245,0.189262646208553
+2007-03-22,2.56568387489902,2.38200081737848
+2007-03-23,0.529549369099002,0.850822521327942
+2007-03-24,1.94275240221399,1.71316792478401
+2007-03-25,0.573626246257412,2.1184782600409
+2007-03-26,0.0180391491661054,1.10402596169187
+2007-03-27,1.54901563649578,-0.227796264794409
+2007-03-28,-0.277588572514013,-0.148125783267069
+2007-03-29,0.0253860355753674,2.40978725408083
+2007-03-30,2.12248910248527,2.84395472922855
+2007-03-31,0.903811134530458,1.57165393017338
+2007-04-01,1.64797188558046,2.02627857898986
+2007-04-02,0.954504067589499,2.41098201489776
+2007-04-03,0.98718794574349,0.557251494180333
+2007-04-04,-1.18862635225587,1.19335118398612
+2007-04-05,1.01884923770693,0.396701701018546
+2007-04-06,1.68564235888197,2.11104317804647
+2007-04-07,1.40285106729707,2.82952700961495
+2007-04-08,0.933981490847203,1.89763049527176
+2007-04-09,0.812248475723638,-0.525896300004831
+2007-04-10,4.06848981684062,-0.132491395435415
+2007-04-11,1.66100393721175,0.741529919006386
+2007-04-12,0.842470552604748,-0.127815898188662
+2007-04-13,0.516906592919108,1.42652963796571
+2007-04-14,2.91316051368498,0.358242435842644
+2007-04-15,2.14094649779851,3.00723470204627
+2007-04-16,2.90983670747131,-1.62720884652662
+2007-04-17,1.2826052776302,1.86032239550053
+2007-04-18,0.996254185655035,0.638856701139992
+2007-04-19,0.968134527172702,0.841209263653058
+2007-04-20,0.407050473539953,0.727459395473199
+2007-04-21,0.801966194028208,1.61060212236245
+2007-04-22,2.8161699503107,0.264646671556202
+2007-04-23,2.43956964203104,0.49854405595275
+2007-04-24,1.69667467576475,1.49329102315368
+2007-04-25,1.14305409555977,-0.308909966252053
+2007-04-26,1.82172780911434,-1.38904824545954
+2007-04-27,0.283631650078866,1.10425586880369
+2007-04-28,2.38522115775937,1.00265458445881
+2007-04-29,1.15828368932608,2.10563570413331
+2007-04-30,1.53886094529131,0.961808902736525
+2007-05-01,2.0359120109938,1.60189354445783
+2007-05-02,2.06978517142195,1.37137040390549
+2007-05-03,-0.500466539927713,3.26053996953217
+2007-05-04,2.80223589166336,0.755959781388539
+2007-05-05,1.1029898062672,-0.229794357616761
+2007-05-06,0.950683766159169,-1.30928269111694
+2007-05-07,2.32663576580893,0.852450619874498
+2007-05-08,0.00963010804274844,2.07671047289728
+2007-05-09,1.4588395372144,0.950812794539938
+2007-05-10,0.435479121719761,0.746255949525299
+2007-05-11,1.47987317697104,0.733012939292789
+2007-05-12,1.85058993245995,1.3137922382328
+2007-05-13,3.50828197601271,-0.687739550112597
+2007-05-14,0.210929884045954,0.963319039304413
+2007-05-15,0.453871260307971,-0.00866183797058095
+2007-05-16,2.36985905766601,1.44809166896494
+2007-05-17,1.27690118234276,0.675597414778885
+2007-05-18,2.10642271645894,-0.312857129084119
+2007-05-19,0.173583050444253,0.678020453613819
+2007-05-20,0.553030908552197,-0.00278070493678428
+2007-05-21,2.08986919294885,0.941918576278858
+2007-05-22,-0.411500484007027,2.53186864708584
+2007-05-23,1.61402467141939,0.421837868638456
+2007-05-24,0.557930010619156,0.554206898442595
+2007-05-25,2.41596545012092,1.9377109536111
+2007-05-26,1.5372658218941,1.41701540557568
+2007-05-27,-0.60970778529946,-0.344856107870914
+2007-05-28,2.48695901482752,3.28738744946954
+2007-05-29,0.604980091322159,-0.19961976828103
+2007-05-30,2.73291422658047,1.51165648459948
+2007-05-31,0.161091548923861,1.50211077032101
+2007-06-01,1.75113585991621,1.86141875665746
+2007-06-02,1.20850695337263,2.4255783774875
+2007-06-03,0.165847076952844,0.807585535476741
+2007-06-04,1.22983424908668,1.18086739406559
+2007-06-05,0.872149411610759,2.52897920590051
+2007-06-06,1.43441427033131,2.18900198463698
+2007-06-07,1.95536957295318,1.0764508242848
+2007-06-08,2.14043056328265,1.41947985803005
+2007-06-09,0.887159560648017,0.95893826317485
+2007-06-10,1.31491792238877,0.896463996984854
+2007-06-11,3.39973483350848,2.64228509289349
+2007-06-12,1.29131947052007,-0.720938123365023
+2007-06-13,0.664615933967417,1.6219861007571
+2007-06-14,1.88394913718553,0.946378078948034
+2007-06-15,1.22745872828342,1.31290672518321
+2007-06-16,0.534210311896985,1.88495480833103
+2007-06-17,0.843097766244683,0.616409775312251
+2007-06-18,1.10006922442837,0.451579360885859
+2007-06-19,0.991140955761967,1.72671417995287
+2007-06-20,-0.111116193615988,0.627290329152559
+2007-06-21,2.62536527998344,1.20298121092611
+2007-06-22,0.4053025705843,1.13944593251986
+2007-06-23,1.61558902323344,1.17581952190633
+2007-06-24,1.51827291807388,0.80120295670349
+2007-06-25,0.565265930340422,2.20247390492565
+2007-06-26,1.39747972273939,0.835775057416925
+2007-06-27,-0.290269249525718,1.71432919353744
+2007-06-28,0.868163815476782,-0.488242182550005
+2007-06-29,1.54287858510342,1.62564364573503
+2007-06-30,2.23761082378784,0.591070870626255
+2007-07-01,1.17994032081609,1.4834535567909
diff --git a/pkg/inst/testdata/ts_test.csv b/pkg/inst/testdata/ts_test.csv
new file mode 100644 (file)
index 0000000..6d5b4c6
--- /dev/null
@@ -0,0 +1,4369 @@
+"time","value"
+"2007-01-01 01:00:00",1
+"2007-01-01 02:00:00",1
+"2007-01-01 03:00:00",1
+"2007-01-01 04:00:00",1
+"2007-01-01 05:00:00",1
+"2007-01-01 06:00:00",1
+"2007-01-01 07:00:00",1
+"2007-01-01 08:00:00",1
+"2007-01-01 09:00:00",1
+"2007-01-01 10:00:00",1
+"2007-01-01 11:00:00",1
+"2007-01-01 12:00:00",1
+"2007-01-01 13:00:00",1
+"2007-01-01 14:00:00",1
+"2007-01-01 15:00:00",1
+"2007-01-01 16:00:00",1
+"2007-01-01 17:00:00",1
+"2007-01-01 18:00:00",1
+"2007-01-01 19:00:00",1
+"2007-01-01 20:00:00",1
+"2007-01-01 21:00:00",1
+"2007-01-01 22:00:00",1
+"2007-01-01 23:00:00",1
+"2007-01-02 00:00:00",1
+"2007-01-02 01:00:00",2
+"2007-01-02 02:00:00",2
+"2007-01-02 03:00:00",2
+"2007-01-02 04:00:00",2
+"2007-01-02 05:00:00",2
+"2007-01-02 06:00:00",2
+"2007-01-02 07:00:00",2
+"2007-01-02 08:00:00",2
+"2007-01-02 09:00:00",2
+"2007-01-02 10:00:00",2
+"2007-01-02 11:00:00",2
+"2007-01-02 12:00:00",2
+"2007-01-02 13:00:00",2
+"2007-01-02 14:00:00",2
+"2007-01-02 15:00:00",2
+"2007-01-02 16:00:00",2
+"2007-01-02 17:00:00",2
+"2007-01-02 18:00:00",2
+"2007-01-02 19:00:00",2
+"2007-01-02 20:00:00",2
+"2007-01-02 21:00:00",2
+"2007-01-02 22:00:00",2
+"2007-01-02 23:00:00",2
+"2007-01-03 00:00:00",2
+"2007-01-03 01:00:00",3
+"2007-01-03 02:00:00",3
+"2007-01-03 03:00:00",3
+"2007-01-03 04:00:00",3
+"2007-01-03 05:00:00",3
+"2007-01-03 06:00:00",3
+"2007-01-03 07:00:00",3
+"2007-01-03 08:00:00",3
+"2007-01-03 09:00:00",3
+"2007-01-03 10:00:00",3
+"2007-01-03 11:00:00",3
+"2007-01-03 12:00:00",3
+"2007-01-03 13:00:00",3
+"2007-01-03 14:00:00",3
+"2007-01-03 15:00:00",3
+"2007-01-03 16:00:00",3
+"2007-01-03 17:00:00",3
+"2007-01-03 18:00:00",3
+"2007-01-03 19:00:00",3
+"2007-01-03 20:00:00",3
+"2007-01-03 21:00:00",3
+"2007-01-03 22:00:00",3
+"2007-01-03 23:00:00",3
+"2007-01-04 00:00:00",3
+"2007-01-04 01:00:00",4
+"2007-01-04 02:00:00",4
+"2007-01-04 03:00:00",4
+"2007-01-04 04:00:00",4
+"2007-01-04 05:00:00",4
+"2007-01-04 06:00:00",4
+"2007-01-04 07:00:00",4
+"2007-01-04 08:00:00",4
+"2007-01-04 09:00:00",4
+"2007-01-04 10:00:00",4
+"2007-01-04 11:00:00",4
+"2007-01-04 12:00:00",4
+"2007-01-04 13:00:00",4
+"2007-01-04 14:00:00",4
+"2007-01-04 15:00:00",4
+"2007-01-04 16:00:00",4
+"2007-01-04 17:00:00",4
+"2007-01-04 18:00:00",4
+"2007-01-04 19:00:00",4
+"2007-01-04 20:00:00",4
+"2007-01-04 21:00:00",4
+"2007-01-04 22:00:00",4
+"2007-01-04 23:00:00",4
+"2007-01-05 00:00:00",4
+"2007-01-05 01:00:00",5
+"2007-01-05 02:00:00",5
+"2007-01-05 03:00:00",5
+"2007-01-05 04:00:00",5
+"2007-01-05 05:00:00",5
+"2007-01-05 06:00:00",5
+"2007-01-05 07:00:00",5
+"2007-01-05 08:00:00",5
+"2007-01-05 09:00:00",5
+"2007-01-05 10:00:00",5
+"2007-01-05 11:00:00",5
+"2007-01-05 12:00:00",5
+"2007-01-05 13:00:00",5
+"2007-01-05 14:00:00",5
+"2007-01-05 15:00:00",5
+"2007-01-05 16:00:00",5
+"2007-01-05 17:00:00",5
+"2007-01-05 18:00:00",5
+"2007-01-05 19:00:00",5
+"2007-01-05 20:00:00",5
+"2007-01-05 21:00:00",5
+"2007-01-05 22:00:00",5
+"2007-01-05 23:00:00",5
+"2007-01-06 00:00:00",5
+"2007-01-06 01:00:00",6
+"2007-01-06 02:00:00",6
+"2007-01-06 03:00:00",6
+"2007-01-06 04:00:00",6
+"2007-01-06 05:00:00",6
+"2007-01-06 06:00:00",6
+"2007-01-06 07:00:00",6
+"2007-01-06 08:00:00",6
+"2007-01-06 09:00:00",6
+"2007-01-06 10:00:00",6
+"2007-01-06 11:00:00",6
+"2007-01-06 12:00:00",6
+"2007-01-06 13:00:00",6
+"2007-01-06 14:00:00",6
+"2007-01-06 15:00:00",6
+"2007-01-06 16:00:00",6
+"2007-01-06 17:00:00",6
+"2007-01-06 18:00:00",6
+"2007-01-06 19:00:00",6
+"2007-01-06 20:00:00",6
+"2007-01-06 21:00:00",6
+"2007-01-06 22:00:00",6
+"2007-01-06 23:00:00",6
+"2007-01-07 00:00:00",6
+"2007-01-07 01:00:00",7
+"2007-01-07 02:00:00",7
+"2007-01-07 03:00:00",7
+"2007-01-07 04:00:00",7
+"2007-01-07 05:00:00",7
+"2007-01-07 06:00:00",7
+"2007-01-07 07:00:00",7
+"2007-01-07 08:00:00",7
+"2007-01-07 09:00:00",7
+"2007-01-07 10:00:00",7
+"2007-01-07 11:00:00",7
+"2007-01-07 12:00:00",7
+"2007-01-07 13:00:00",7
+"2007-01-07 14:00:00",7
+"2007-01-07 15:00:00",7
+"2007-01-07 16:00:00",7
+"2007-01-07 17:00:00",7
+"2007-01-07 18:00:00",7
+"2007-01-07 19:00:00",7
+"2007-01-07 20:00:00",7
+"2007-01-07 21:00:00",7
+"2007-01-07 22:00:00",7
+"2007-01-07 23:00:00",7
+"2007-01-08 00:00:00",7
+"2007-01-08 01:00:00",1
+"2007-01-08 02:00:00",1
+"2007-01-08 03:00:00",1
+"2007-01-08 04:00:00",1
+"2007-01-08 05:00:00",1
+"2007-01-08 06:00:00",1
+"2007-01-08 07:00:00",1
+"2007-01-08 08:00:00",1
+"2007-01-08 09:00:00",1
+"2007-01-08 10:00:00",1
+"2007-01-08 11:00:00",1
+"2007-01-08 12:00:00",1
+"2007-01-08 13:00:00",1
+"2007-01-08 14:00:00",1
+"2007-01-08 15:00:00",1
+"2007-01-08 16:00:00",1
+"2007-01-08 17:00:00",1
+"2007-01-08 18:00:00",1
+"2007-01-08 19:00:00",1
+"2007-01-08 20:00:00",1
+"2007-01-08 21:00:00",1
+"2007-01-08 22:00:00",1
+"2007-01-08 23:00:00",1
+"2007-01-09 00:00:00",1
+"2007-01-09 01:00:00",2
+"2007-01-09 02:00:00",2
+"2007-01-09 03:00:00",2
+"2007-01-09 04:00:00",2
+"2007-01-09 05:00:00",2
+"2007-01-09 06:00:00",2
+"2007-01-09 07:00:00",2
+"2007-01-09 08:00:00",2
+"2007-01-09 09:00:00",2
+"2007-01-09 10:00:00",2
+"2007-01-09 11:00:00",2
+"2007-01-09 12:00:00",2
+"2007-01-09 13:00:00",2
+"2007-01-09 14:00:00",2
+"2007-01-09 15:00:00",2
+"2007-01-09 16:00:00",2
+"2007-01-09 17:00:00",2
+"2007-01-09 18:00:00",2
+"2007-01-09 19:00:00",2
+"2007-01-09 20:00:00",2
+"2007-01-09 21:00:00",2
+"2007-01-09 22:00:00",2
+"2007-01-09 23:00:00",2
+"2007-01-10 00:00:00",2
+"2007-01-10 01:00:00",3
+"2007-01-10 02:00:00",3
+"2007-01-10 03:00:00",3
+"2007-01-10 04:00:00",3
+"2007-01-10 05:00:00",3
+"2007-01-10 06:00:00",3
+"2007-01-10 07:00:00",3
+"2007-01-10 08:00:00",3
+"2007-01-10 09:00:00",3
+"2007-01-10 10:00:00",3
+"2007-01-10 11:00:00",3
+"2007-01-10 12:00:00",3
+"2007-01-10 13:00:00",3
+"2007-01-10 14:00:00",3
+"2007-01-10 15:00:00",3
+"2007-01-10 16:00:00",3
+"2007-01-10 17:00:00",3
+"2007-01-10 18:00:00",3
+"2007-01-10 19:00:00",3
+"2007-01-10 20:00:00",3
+"2007-01-10 21:00:00",3
+"2007-01-10 22:00:00",3
+"2007-01-10 23:00:00",3
+"2007-01-11 00:00:00",3
+"2007-01-11 01:00:00",4
+"2007-01-11 02:00:00",4
+"2007-01-11 03:00:00",4
+"2007-01-11 04:00:00",4
+"2007-01-11 05:00:00",4
+"2007-01-11 06:00:00",4
+"2007-01-11 07:00:00",4
+"2007-01-11 08:00:00",4
+"2007-01-11 09:00:00",4
+"2007-01-11 10:00:00",4
+"2007-01-11 11:00:00",4
+"2007-01-11 12:00:00",4
+"2007-01-11 13:00:00",4
+"2007-01-11 14:00:00",4
+"2007-01-11 15:00:00",4
+"2007-01-11 16:00:00",4
+"2007-01-11 17:00:00",4
+"2007-01-11 18:00:00",4
+"2007-01-11 19:00:00",4
+"2007-01-11 20:00:00",4
+"2007-01-11 21:00:00",4
+"2007-01-11 22:00:00",4
+"2007-01-11 23:00:00",4
+"2007-01-12 00:00:00",4
+"2007-01-12 01:00:00",5
+"2007-01-12 02:00:00",5
+"2007-01-12 03:00:00",5
+"2007-01-12 04:00:00",5
+"2007-01-12 05:00:00",5
+"2007-01-12 06:00:00",5
+"2007-01-12 07:00:00",5
+"2007-01-12 08:00:00",5
+"2007-01-12 09:00:00",5
+"2007-01-12 10:00:00",5
+"2007-01-12 11:00:00",5
+"2007-01-12 12:00:00",5
+"2007-01-12 13:00:00",5
+"2007-01-12 14:00:00",5
+"2007-01-12 15:00:00",5
+"2007-01-12 16:00:00",5
+"2007-01-12 17:00:00",5
+"2007-01-12 18:00:00",5
+"2007-01-12 19:00:00",5
+"2007-01-12 20:00:00",5
+"2007-01-12 21:00:00",5
+"2007-01-12 22:00:00",5
+"2007-01-12 23:00:00",5
+"2007-01-13 00:00:00",5
+"2007-01-13 01:00:00",6
+"2007-01-13 02:00:00",6
+"2007-01-13 03:00:00",6
+"2007-01-13 04:00:00",6
+"2007-01-13 05:00:00",6
+"2007-01-13 06:00:00",6
+"2007-01-13 07:00:00",6
+"2007-01-13 08:00:00",6
+"2007-01-13 09:00:00",6
+"2007-01-13 10:00:00",6
+"2007-01-13 11:00:00",6
+"2007-01-13 12:00:00",6
+"2007-01-13 13:00:00",6
+"2007-01-13 14:00:00",6
+"2007-01-13 15:00:00",6
+"2007-01-13 16:00:00",6
+"2007-01-13 17:00:00",6
+"2007-01-13 18:00:00",6
+"2007-01-13 19:00:00",6
+"2007-01-13 20:00:00",6
+"2007-01-13 21:00:00",6
+"2007-01-13 22:00:00",6
+"2007-01-13 23:00:00",6
+"2007-01-14 00:00:00",6
+"2007-01-14 01:00:00",7
+"2007-01-14 02:00:00",7
+"2007-01-14 03:00:00",7
+"2007-01-14 04:00:00",7
+"2007-01-14 05:00:00",7
+"2007-01-14 06:00:00",7
+"2007-01-14 07:00:00",7
+"2007-01-14 08:00:00",7
+"2007-01-14 09:00:00",7
+"2007-01-14 10:00:00",7
+"2007-01-14 11:00:00",7
+"2007-01-14 12:00:00",7
+"2007-01-14 13:00:00",7
+"2007-01-14 14:00:00",7
+"2007-01-14 15:00:00",7
+"2007-01-14 16:00:00",7
+"2007-01-14 17:00:00",7
+"2007-01-14 18:00:00",7
+"2007-01-14 19:00:00",7
+"2007-01-14 20:00:00",7
+"2007-01-14 21:00:00",7
+"2007-01-14 22:00:00",7
+"2007-01-14 23:00:00",7
+"2007-01-15 00:00:00",7
+"2007-01-15 01:00:00",1
+"2007-01-15 02:00:00",1
+"2007-01-15 03:00:00",1
+"2007-01-15 04:00:00",1
+"2007-01-15 05:00:00",1
+"2007-01-15 06:00:00",1
+"2007-01-15 07:00:00",1
+"2007-01-15 08:00:00",1
+"2007-01-15 09:00:00",1
+"2007-01-15 10:00:00",1
+"2007-01-15 11:00:00",1
+"2007-01-15 12:00:00",1
+"2007-01-15 13:00:00",1
+"2007-01-15 14:00:00",1
+"2007-01-15 15:00:00",1
+"2007-01-15 16:00:00",1
+"2007-01-15 17:00:00",1
+"2007-01-15 18:00:00",1
+"2007-01-15 19:00:00",1
+"2007-01-15 20:00:00",1
+"2007-01-15 21:00:00",1
+"2007-01-15 22:00:00",1
+"2007-01-15 23:00:00",1
+"2007-01-16 00:00:00",1
+"2007-01-16 01:00:00",2
+"2007-01-16 02:00:00",2
+"2007-01-16 03:00:00",2
+"2007-01-16 04:00:00",2
+"2007-01-16 05:00:00",2
+"2007-01-16 06:00:00",2
+"2007-01-16 07:00:00",2
+"2007-01-16 08:00:00",2
+"2007-01-16 09:00:00",2
+"2007-01-16 10:00:00",2
+"2007-01-16 11:00:00",2
+"2007-01-16 12:00:00",2
+"2007-01-16 13:00:00",2
+"2007-01-16 14:00:00",2
+"2007-01-16 15:00:00",2
+"2007-01-16 16:00:00",2
+"2007-01-16 17:00:00",2
+"2007-01-16 18:00:00",2
+"2007-01-16 19:00:00",2
+"2007-01-16 20:00:00",2
+"2007-01-16 21:00:00",2
+"2007-01-16 22:00:00",2
+"2007-01-16 23:00:00",2
+"2007-01-17 00:00:00",2
+"2007-01-17 01:00:00",3
+"2007-01-17 02:00:00",3
+"2007-01-17 03:00:00",3
+"2007-01-17 04:00:00",3
+"2007-01-17 05:00:00",3
+"2007-01-17 06:00:00",3
+"2007-01-17 07:00:00",3
+"2007-01-17 08:00:00",3
+"2007-01-17 09:00:00",3
+"2007-01-17 10:00:00",3
+"2007-01-17 11:00:00",3
+"2007-01-17 12:00:00",3
+"2007-01-17 13:00:00",3
+"2007-01-17 14:00:00",3
+"2007-01-17 15:00:00",3
+"2007-01-17 16:00:00",3
+"2007-01-17 17:00:00",3
+"2007-01-17 18:00:00",3
+"2007-01-17 19:00:00",3
+"2007-01-17 20:00:00",3
+"2007-01-17 21:00:00",3
+"2007-01-17 22:00:00",3
+"2007-01-17 23:00:00",3
+"2007-01-18 00:00:00",3
+"2007-01-18 01:00:00",4
+"2007-01-18 02:00:00",4
+"2007-01-18 03:00:00",4
+"2007-01-18 04:00:00",4
+"2007-01-18 05:00:00",4
+"2007-01-18 06:00:00",4
+"2007-01-18 07:00:00",4
+"2007-01-18 08:00:00",4
+"2007-01-18 09:00:00",4
+"2007-01-18 10:00:00",4
+"2007-01-18 11:00:00",4
+"2007-01-18 12:00:00",4
+"2007-01-18 13:00:00",4
+"2007-01-18 14:00:00",4
+"2007-01-18 15:00:00",4
+"2007-01-18 16:00:00",4
+"2007-01-18 17:00:00",4
+"2007-01-18 18:00:00",4
+"2007-01-18 19:00:00",4
+"2007-01-18 20:00:00",4
+"2007-01-18 21:00:00",4
+"2007-01-18 22:00:00",4
+"2007-01-18 23:00:00",4
+"2007-01-19 00:00:00",4
+"2007-01-19 01:00:00",5
+"2007-01-19 02:00:00",5
+"2007-01-19 03:00:00",5
+"2007-01-19 04:00:00",5
+"2007-01-19 05:00:00",5
+"2007-01-19 06:00:00",5
+"2007-01-19 07:00:00",5
+"2007-01-19 08:00:00",5
+"2007-01-19 09:00:00",5
+"2007-01-19 10:00:00",5
+"2007-01-19 11:00:00",5
+"2007-01-19 12:00:00",5
+"2007-01-19 13:00:00",5
+"2007-01-19 14:00:00",5
+"2007-01-19 15:00:00",5
+"2007-01-19 16:00:00",5
+"2007-01-19 17:00:00",5
+"2007-01-19 18:00:00",5
+"2007-01-19 19:00:00",5
+"2007-01-19 20:00:00",5
+"2007-01-19 21:00:00",5
+"2007-01-19 22:00:00",5
+"2007-01-19 23:00:00",5
+"2007-01-20 00:00:00",5
+"2007-01-20 01:00:00",6
+"2007-01-20 02:00:00",6
+"2007-01-20 03:00:00",6
+"2007-01-20 04:00:00",6
+"2007-01-20 05:00:00",6
+"2007-01-20 06:00:00",6
+"2007-01-20 07:00:00",6
+"2007-01-20 08:00:00",6
+"2007-01-20 09:00:00",6
+"2007-01-20 10:00:00",6
+"2007-01-20 11:00:00",6
+"2007-01-20 12:00:00",6
+"2007-01-20 13:00:00",6
+"2007-01-20 14:00:00",6
+"2007-01-20 15:00:00",6
+"2007-01-20 16:00:00",6
+"2007-01-20 17:00:00",6
+"2007-01-20 18:00:00",6
+"2007-01-20 19:00:00",6
+"2007-01-20 20:00:00",6
+"2007-01-20 21:00:00",6
+"2007-01-20 22:00:00",6
+"2007-01-20 23:00:00",6
+"2007-01-21 00:00:00",6
+"2007-01-21 01:00:00",7
+"2007-01-21 02:00:00",7
+"2007-01-21 03:00:00",7
+"2007-01-21 04:00:00",7
+"2007-01-21 05:00:00",7
+"2007-01-21 06:00:00",7
+"2007-01-21 07:00:00",7
+"2007-01-21 08:00:00",7
+"2007-01-21 09:00:00",7
+"2007-01-21 10:00:00",7
+"2007-01-21 11:00:00",7
+"2007-01-21 12:00:00",7
+"2007-01-21 13:00:00",7
+"2007-01-21 14:00:00",7
+"2007-01-21 15:00:00",7
+"2007-01-21 16:00:00",7
+"2007-01-21 17:00:00",7
+"2007-01-21 18:00:00",7
+"2007-01-21 19:00:00",7
+"2007-01-21 20:00:00",7
+"2007-01-21 21:00:00",7
+"2007-01-21 22:00:00",7
+"2007-01-21 23:00:00",7
+"2007-01-22 00:00:00",7
+"2007-01-22 01:00:00",1
+"2007-01-22 02:00:00",1
+"2007-01-22 03:00:00",1
+"2007-01-22 04:00:00",1
+"2007-01-22 05:00:00",1
+"2007-01-22 06:00:00",1
+"2007-01-22 07:00:00",1
+"2007-01-22 08:00:00",1
+"2007-01-22 09:00:00",1
+"2007-01-22 10:00:00",1
+"2007-01-22 11:00:00",1
+"2007-01-22 12:00:00",1
+"2007-01-22 13:00:00",1
+"2007-01-22 14:00:00",1
+"2007-01-22 15:00:00",1
+"2007-01-22 16:00:00",1
+"2007-01-22 17:00:00",1
+"2007-01-22 18:00:00",1
+"2007-01-22 19:00:00",1
+"2007-01-22 20:00:00",1
+"2007-01-22 21:00:00",1
+"2007-01-22 22:00:00",1
+"2007-01-22 23:00:00",1
+"2007-01-23 00:00:00",1
+"2007-01-23 01:00:00",2
+"2007-01-23 02:00:00",2
+"2007-01-23 03:00:00",2
+"2007-01-23 04:00:00",2
+"2007-01-23 05:00:00",2
+"2007-01-23 06:00:00",2
+"2007-01-23 07:00:00",2
+"2007-01-23 08:00:00",2
+"2007-01-23 09:00:00",2
+"2007-01-23 10:00:00",2
+"2007-01-23 11:00:00",2
+"2007-01-23 12:00:00",2
+"2007-01-23 13:00:00",2
+"2007-01-23 14:00:00",2
+"2007-01-23 15:00:00",2
+"2007-01-23 16:00:00",2
+"2007-01-23 17:00:00",2
+"2007-01-23 18:00:00",2
+"2007-01-23 19:00:00",2
+"2007-01-23 20:00:00",2
+"2007-01-23 21:00:00",2
+"2007-01-23 22:00:00",2
+"2007-01-23 23:00:00",2
+"2007-01-24 00:00:00",2
+"2007-01-24 01:00:00",3
+"2007-01-24 02:00:00",3
+"2007-01-24 03:00:00",3
+"2007-01-24 04:00:00",3
+"2007-01-24 05:00:00",3
+"2007-01-24 06:00:00",3
+"2007-01-24 07:00:00",3
+"2007-01-24 08:00:00",3
+"2007-01-24 09:00:00",3
+"2007-01-24 10:00:00",3
+"2007-01-24 11:00:00",3
+"2007-01-24 12:00:00",3
+"2007-01-24 13:00:00",3
+"2007-01-24 14:00:00",3
+"2007-01-24 15:00:00",3
+"2007-01-24 16:00:00",3
+"2007-01-24 17:00:00",3
+"2007-01-24 18:00:00",3
+"2007-01-24 19:00:00",3
+"2007-01-24 20:00:00",3
+"2007-01-24 21:00:00",3
+"2007-01-24 22:00:00",3
+"2007-01-24 23:00:00",3
+"2007-01-25 00:00:00",3
+"2007-01-25 01:00:00",4
+"2007-01-25 02:00:00",4
+"2007-01-25 03:00:00",4
+"2007-01-25 04:00:00",4
+"2007-01-25 05:00:00",4
+"2007-01-25 06:00:00",4
+"2007-01-25 07:00:00",4
+"2007-01-25 08:00:00",4
+"2007-01-25 09:00:00",4
+"2007-01-25 10:00:00",4
+"2007-01-25 11:00:00",4
+"2007-01-25 12:00:00",4
+"2007-01-25 13:00:00",4
+"2007-01-25 14:00:00",4
+"2007-01-25 15:00:00",4
+"2007-01-25 16:00:00",4
+"2007-01-25 17:00:00",4
+"2007-01-25 18:00:00",4
+"2007-01-25 19:00:00",4
+"2007-01-25 20:00:00",4
+"2007-01-25 21:00:00",4
+"2007-01-25 22:00:00",4
+"2007-01-25 23:00:00",4
+"2007-01-26 00:00:00",4
+"2007-01-26 01:00:00",5
+"2007-01-26 02:00:00",5
+"2007-01-26 03:00:00",5
+"2007-01-26 04:00:00",5
+"2007-01-26 05:00:00",5
+"2007-01-26 06:00:00",5
+"2007-01-26 07:00:00",5
+"2007-01-26 08:00:00",5
+"2007-01-26 09:00:00",5
+"2007-01-26 10:00:00",5
+"2007-01-26 11:00:00",5
+"2007-01-26 12:00:00",5
+"2007-01-26 13:00:00",5
+"2007-01-26 14:00:00",5
+"2007-01-26 15:00:00",5
+"2007-01-26 16:00:00",5
+"2007-01-26 17:00:00",5
+"2007-01-26 18:00:00",5
+"2007-01-26 19:00:00",5
+"2007-01-26 20:00:00",5
+"2007-01-26 21:00:00",5
+"2007-01-26 22:00:00",5
+"2007-01-26 23:00:00",5
+"2007-01-27 00:00:00",5
+"2007-01-27 01:00:00",6
+"2007-01-27 02:00:00",6
+"2007-01-27 03:00:00",6
+"2007-01-27 04:00:00",6
+"2007-01-27 05:00:00",6
+"2007-01-27 06:00:00",6
+"2007-01-27 07:00:00",6
+"2007-01-27 08:00:00",6
+"2007-01-27 09:00:00",6
+"2007-01-27 10:00:00",6
+"2007-01-27 11:00:00",6
+"2007-01-27 12:00:00",6
+"2007-01-27 13:00:00",6
+"2007-01-27 14:00:00",6
+"2007-01-27 15:00:00",6
+"2007-01-27 16:00:00",6
+"2007-01-27 17:00:00",6
+"2007-01-27 18:00:00",6
+"2007-01-27 19:00:00",6
+"2007-01-27 20:00:00",6
+"2007-01-27 21:00:00",6
+"2007-01-27 22:00:00",6
+"2007-01-27 23:00:00",6
+"2007-01-28 00:00:00",6
+"2007-01-28 01:00:00",7
+"2007-01-28 02:00:00",7
+"2007-01-28 03:00:00",7
+"2007-01-28 04:00:00",7
+"2007-01-28 05:00:00",7
+"2007-01-28 06:00:00",7
+"2007-01-28 07:00:00",7
+"2007-01-28 08:00:00",7
+"2007-01-28 09:00:00",7
+"2007-01-28 10:00:00",7
+"2007-01-28 11:00:00",7
+"2007-01-28 12:00:00",7
+"2007-01-28 13:00:00",7
+"2007-01-28 14:00:00",7
+"2007-01-28 15:00:00",7
+"2007-01-28 16:00:00",7
+"2007-01-28 17:00:00",7
+"2007-01-28 18:00:00",7
+"2007-01-28 19:00:00",7
+"2007-01-28 20:00:00",7
+"2007-01-28 21:00:00",7
+"2007-01-28 22:00:00",7
+"2007-01-28 23:00:00",7
+"2007-01-29 00:00:00",7
+"2007-01-29 01:00:00",1
+"2007-01-29 02:00:00",1
+"2007-01-29 03:00:00",1
+"2007-01-29 04:00:00",1
+"2007-01-29 05:00:00",1
+"2007-01-29 06:00:00",1
+"2007-01-29 07:00:00",1
+"2007-01-29 08:00:00",1
+"2007-01-29 09:00:00",1
+"2007-01-29 10:00:00",1
+"2007-01-29 11:00:00",1
+"2007-01-29 12:00:00",1
+"2007-01-29 13:00:00",1
+"2007-01-29 14:00:00",1
+"2007-01-29 15:00:00",1
+"2007-01-29 16:00:00",1
+"2007-01-29 17:00:00",1
+"2007-01-29 18:00:00",1
+"2007-01-29 19:00:00",1
+"2007-01-29 20:00:00",1
+"2007-01-29 21:00:00",1
+"2007-01-29 22:00:00",1
+"2007-01-29 23:00:00",1
+"2007-01-30 00:00:00",1
+"2007-01-30 01:00:00",2
+"2007-01-30 02:00:00",2
+"2007-01-30 03:00:00",2
+"2007-01-30 04:00:00",2
+"2007-01-30 05:00:00",2
+"2007-01-30 06:00:00",2
+"2007-01-30 07:00:00",2
+"2007-01-30 08:00:00",2
+"2007-01-30 09:00:00",2
+"2007-01-30 10:00:00",2
+"2007-01-30 11:00:00",2
+"2007-01-30 12:00:00",2
+"2007-01-30 13:00:00",2
+"2007-01-30 14:00:00",2
+"2007-01-30 15:00:00",2
+"2007-01-30 16:00:00",2
+"2007-01-30 17:00:00",2
+"2007-01-30 18:00:00",2
+"2007-01-30 19:00:00",2
+"2007-01-30 20:00:00",2
+"2007-01-30 21:00:00",2
+"2007-01-30 22:00:00",2
+"2007-01-30 23:00:00",2
+"2007-01-31 00:00:00",2
+"2007-01-31 01:00:00",3
+"2007-01-31 02:00:00",3
+"2007-01-31 03:00:00",3
+"2007-01-31 04:00:00",3
+"2007-01-31 05:00:00",3
+"2007-01-31 06:00:00",3
+"2007-01-31 07:00:00",3
+"2007-01-31 08:00:00",3
+"2007-01-31 09:00:00",3
+"2007-01-31 10:00:00",3
+"2007-01-31 11:00:00",3
+"2007-01-31 12:00:00",3
+"2007-01-31 13:00:00",3
+"2007-01-31 14:00:00",3
+"2007-01-31 15:00:00",3
+"2007-01-31 16:00:00",3
+"2007-01-31 17:00:00",3
+"2007-01-31 18:00:00",3
+"2007-01-31 19:00:00",3
+"2007-01-31 20:00:00",3
+"2007-01-31 21:00:00",3
+"2007-01-31 22:00:00",3
+"2007-01-31 23:00:00",3
+"2007-02-01 00:00:00",3
+"2007-02-01 01:00:00",4
+"2007-02-01 02:00:00",4
+"2007-02-01 03:00:00",4
+"2007-02-01 04:00:00",4
+"2007-02-01 05:00:00",4
+"2007-02-01 06:00:00",4
+"2007-02-01 07:00:00",4
+"2007-02-01 08:00:00",4
+"2007-02-01 09:00:00",4
+"2007-02-01 10:00:00",4
+"2007-02-01 11:00:00",4
+"2007-02-01 12:00:00",4
+"2007-02-01 13:00:00",4
+"2007-02-01 14:00:00",4
+"2007-02-01 15:00:00",4
+"2007-02-01 16:00:00",4
+"2007-02-01 17:00:00",4
+"2007-02-01 18:00:00",4
+"2007-02-01 19:00:00",4
+"2007-02-01 20:00:00",4
+"2007-02-01 21:00:00",4
+"2007-02-01 22:00:00",4
+"2007-02-01 23:00:00",4
+"2007-02-02 00:00:00",4
+"2007-02-02 01:00:00",5
+"2007-02-02 02:00:00",5
+"2007-02-02 03:00:00",5
+"2007-02-02 04:00:00",5
+"2007-02-02 05:00:00",5
+"2007-02-02 06:00:00",5
+"2007-02-02 07:00:00",5
+"2007-02-02 08:00:00",5
+"2007-02-02 09:00:00",5
+"2007-02-02 10:00:00",5
+"2007-02-02 11:00:00",5
+"2007-02-02 12:00:00",5
+"2007-02-02 13:00:00",5
+"2007-02-02 14:00:00",5
+"2007-02-02 15:00:00",5
+"2007-02-02 16:00:00",5
+"2007-02-02 17:00:00",5
+"2007-02-02 18:00:00",5
+"2007-02-02 19:00:00",5
+"2007-02-02 20:00:00",5
+"2007-02-02 21:00:00",5
+"2007-02-02 22:00:00",5
+"2007-02-02 23:00:00",5
+"2007-02-03 00:00:00",5
+"2007-02-03 01:00:00",6
+"2007-02-03 02:00:00",6
+"2007-02-03 03:00:00",6
+"2007-02-03 04:00:00",6
+"2007-02-03 05:00:00",6
+"2007-02-03 06:00:00",6
+"2007-02-03 07:00:00",6
+"2007-02-03 08:00:00",6
+"2007-02-03 09:00:00",6
+"2007-02-03 10:00:00",6
+"2007-02-03 11:00:00",6
+"2007-02-03 12:00:00",6
+"2007-02-03 13:00:00",6
+"2007-02-03 14:00:00",6
+"2007-02-03 15:00:00",6
+"2007-02-03 16:00:00",6
+"2007-02-03 17:00:00",6
+"2007-02-03 18:00:00",6
+"2007-02-03 19:00:00",6
+"2007-02-03 20:00:00",6
+"2007-02-03 21:00:00",6
+"2007-02-03 22:00:00",6
+"2007-02-03 23:00:00",6
+"2007-02-04 00:00:00",6
+"2007-02-04 01:00:00",7
+"2007-02-04 02:00:00",7
+"2007-02-04 03:00:00",7
+"2007-02-04 04:00:00",7
+"2007-02-04 05:00:00",7
+"2007-02-04 06:00:00",7
+"2007-02-04 07:00:00",7
+"2007-02-04 08:00:00",7
+"2007-02-04 09:00:00",7
+"2007-02-04 10:00:00",7
+"2007-02-04 11:00:00",7
+"2007-02-04 12:00:00",7
+"2007-02-04 13:00:00",7
+"2007-02-04 14:00:00",7
+"2007-02-04 15:00:00",7
+"2007-02-04 16:00:00",7
+"2007-02-04 17:00:00",7
+"2007-02-04 18:00:00",7
+"2007-02-04 19:00:00",7
+"2007-02-04 20:00:00",7
+"2007-02-04 21:00:00",7
+"2007-02-04 22:00:00",7
+"2007-02-04 23:00:00",7
+"2007-02-05 00:00:00",7
+"2007-02-05 01:00:00",1
+"2007-02-05 02:00:00",1
+"2007-02-05 03:00:00",1
+"2007-02-05 04:00:00",1
+"2007-02-05 05:00:00",1
+"2007-02-05 06:00:00",1
+"2007-02-05 07:00:00",1
+"2007-02-05 08:00:00",1
+"2007-02-05 09:00:00",1
+"2007-02-05 10:00:00",1
+"2007-02-05 11:00:00",1
+"2007-02-05 12:00:00",1
+"2007-02-05 13:00:00",1
+"2007-02-05 14:00:00",1
+"2007-02-05 15:00:00",1
+"2007-02-05 16:00:00",1
+"2007-02-05 17:00:00",1
+"2007-02-05 18:00:00",1
+"2007-02-05 19:00:00",1
+"2007-02-05 20:00:00",1
+"2007-02-05 21:00:00",1
+"2007-02-05 22:00:00",1
+"2007-02-05 23:00:00",1
+"2007-02-06 00:00:00",1
+"2007-02-06 01:00:00",2
+"2007-02-06 02:00:00",2
+"2007-02-06 03:00:00",2
+"2007-02-06 04:00:00",2
+"2007-02-06 05:00:00",2
+"2007-02-06 06:00:00",2
+"2007-02-06 07:00:00",2
+"2007-02-06 08:00:00",2
+"2007-02-06 09:00:00",2
+"2007-02-06 10:00:00",2
+"2007-02-06 11:00:00",2
+"2007-02-06 12:00:00",2
+"2007-02-06 13:00:00",2
+"2007-02-06 14:00:00",2
+"2007-02-06 15:00:00",2
+"2007-02-06 16:00:00",2
+"2007-02-06 17:00:00",2
+"2007-02-06 18:00:00",2
+"2007-02-06 19:00:00",2
+"2007-02-06 20:00:00",2
+"2007-02-06 21:00:00",2
+"2007-02-06 22:00:00",2
+"2007-02-06 23:00:00",2
+"2007-02-07 00:00:00",2
+"2007-02-07 01:00:00",3
+"2007-02-07 02:00:00",3
+"2007-02-07 03:00:00",3
+"2007-02-07 04:00:00",3
+"2007-02-07 05:00:00",3
+"2007-02-07 06:00:00",3
+"2007-02-07 07:00:00",3
+"2007-02-07 08:00:00",3
+"2007-02-07 09:00:00",3
+"2007-02-07 10:00:00",3
+"2007-02-07 11:00:00",3
+"2007-02-07 12:00:00",3
+"2007-02-07 13:00:00",3
+"2007-02-07 14:00:00",3
+"2007-02-07 15:00:00",3
+"2007-02-07 16:00:00",3
+"2007-02-07 17:00:00",3
+"2007-02-07 18:00:00",3
+"2007-02-07 19:00:00",3
+"2007-02-07 20:00:00",3
+"2007-02-07 21:00:00",3
+"2007-02-07 22:00:00",3
+"2007-02-07 23:00:00",3
+"2007-02-08 00:00:00",3
+"2007-02-08 01:00:00",4
+"2007-02-08 02:00:00",4
+"2007-02-08 03:00:00",4
+"2007-02-08 04:00:00",4
+"2007-02-08 05:00:00",4
+"2007-02-08 06:00:00",4
+"2007-02-08 07:00:00",4
+"2007-02-08 08:00:00",4
+"2007-02-08 09:00:00",4
+"2007-02-08 10:00:00",4
+"2007-02-08 11:00:00",4
+"2007-02-08 12:00:00",4
+"2007-02-08 13:00:00",4
+"2007-02-08 14:00:00",4
+"2007-02-08 15:00:00",4
+"2007-02-08 16:00:00",4
+"2007-02-08 17:00:00",4
+"2007-02-08 18:00:00",4
+"2007-02-08 19:00:00",4
+"2007-02-08 20:00:00",4
+"2007-02-08 21:00:00",4
+"2007-02-08 22:00:00",4
+"2007-02-08 23:00:00",4
+"2007-02-09 00:00:00",4
+"2007-02-09 01:00:00",5
+"2007-02-09 02:00:00",5
+"2007-02-09 03:00:00",5
+"2007-02-09 04:00:00",5
+"2007-02-09 05:00:00",5
+"2007-02-09 06:00:00",5
+"2007-02-09 07:00:00",5
+"2007-02-09 08:00:00",5
+"2007-02-09 09:00:00",5
+"2007-02-09 10:00:00",5
+"2007-02-09 11:00:00",5
+"2007-02-09 12:00:00",5
+"2007-02-09 13:00:00",5
+"2007-02-09 14:00:00",5
+"2007-02-09 15:00:00",5
+"2007-02-09 16:00:00",5
+"2007-02-09 17:00:00",5
+"2007-02-09 18:00:00",5
+"2007-02-09 19:00:00",5
+"2007-02-09 20:00:00",5
+"2007-02-09 21:00:00",5
+"2007-02-09 22:00:00",5
+"2007-02-09 23:00:00",5
+"2007-02-10 00:00:00",5
+"2007-02-10 01:00:00",6
+"2007-02-10 02:00:00",6
+"2007-02-10 03:00:00",6
+"2007-02-10 04:00:00",6
+"2007-02-10 05:00:00",6
+"2007-02-10 06:00:00",6
+"2007-02-10 07:00:00",6
+"2007-02-10 08:00:00",6
+"2007-02-10 09:00:00",6
+"2007-02-10 10:00:00",6
+"2007-02-10 11:00:00",6
+"2007-02-10 12:00:00",6
+"2007-02-10 13:00:00",6
+"2007-02-10 14:00:00",6
+"2007-02-10 15:00:00",6
+"2007-02-10 16:00:00",6
+"2007-02-10 17:00:00",6
+"2007-02-10 18:00:00",6
+"2007-02-10 19:00:00",6
+"2007-02-10 20:00:00",6
+"2007-02-10 21:00:00",6
+"2007-02-10 22:00:00",6
+"2007-02-10 23:00:00",6
+"2007-02-11 00:00:00",6
+"2007-02-11 01:00:00",7
+"2007-02-11 02:00:00",7
+"2007-02-11 03:00:00",7
+"2007-02-11 04:00:00",7
+"2007-02-11 05:00:00",7
+"2007-02-11 06:00:00",7
+"2007-02-11 07:00:00",7
+"2007-02-11 08:00:00",7
+"2007-02-11 09:00:00",7
+"2007-02-11 10:00:00",7
+"2007-02-11 11:00:00",7
+"2007-02-11 12:00:00",7
+"2007-02-11 13:00:00",7
+"2007-02-11 14:00:00",7
+"2007-02-11 15:00:00",7
+"2007-02-11 16:00:00",7
+"2007-02-11 17:00:00",7
+"2007-02-11 18:00:00",7
+"2007-02-11 19:00:00",7
+"2007-02-11 20:00:00",7
+"2007-02-11 21:00:00",7
+"2007-02-11 22:00:00",7
+"2007-02-11 23:00:00",7
+"2007-02-12 00:00:00",7
+"2007-02-12 01:00:00",1
+"2007-02-12 02:00:00",1
+"2007-02-12 03:00:00",1
+"2007-02-12 04:00:00",1
+"2007-02-12 05:00:00",1
+"2007-02-12 06:00:00",1
+"2007-02-12 07:00:00",1
+"2007-02-12 08:00:00",1
+"2007-02-12 09:00:00",1
+"2007-02-12 10:00:00",1
+"2007-02-12 11:00:00",1
+"2007-02-12 12:00:00",1
+"2007-02-12 13:00:00",1
+"2007-02-12 14:00:00",1
+"2007-02-12 15:00:00",1
+"2007-02-12 16:00:00",1
+"2007-02-12 17:00:00",1
+"2007-02-12 18:00:00",1
+"2007-02-12 19:00:00",1
+"2007-02-12 20:00:00",1
+"2007-02-12 21:00:00",1
+"2007-02-12 22:00:00",1
+"2007-02-12 23:00:00",1
+"2007-02-13 00:00:00",1
+"2007-02-13 01:00:00",2
+"2007-02-13 02:00:00",2
+"2007-02-13 03:00:00",2
+"2007-02-13 04:00:00",2
+"2007-02-13 05:00:00",2
+"2007-02-13 06:00:00",2
+"2007-02-13 07:00:00",2
+"2007-02-13 08:00:00",2
+"2007-02-13 09:00:00",2
+"2007-02-13 10:00:00",2
+"2007-02-13 11:00:00",2
+"2007-02-13 12:00:00",2
+"2007-02-13 13:00:00",2
+"2007-02-13 14:00:00",2
+"2007-02-13 15:00:00",2
+"2007-02-13 16:00:00",2
+"2007-02-13 17:00:00",2
+"2007-02-13 18:00:00",2
+"2007-02-13 19:00:00",2
+"2007-02-13 20:00:00",2
+"2007-02-13 21:00:00",2
+"2007-02-13 22:00:00",2
+"2007-02-13 23:00:00",2
+"2007-02-14 00:00:00",2
+"2007-02-14 01:00:00",3
+"2007-02-14 02:00:00",3
+"2007-02-14 03:00:00",3
+"2007-02-14 04:00:00",3
+"2007-02-14 05:00:00",3
+"2007-02-14 06:00:00",3
+"2007-02-14 07:00:00",3
+"2007-02-14 08:00:00",3
+"2007-02-14 09:00:00",3
+"2007-02-14 10:00:00",3
+"2007-02-14 11:00:00",3
+"2007-02-14 12:00:00",3
+"2007-02-14 13:00:00",3
+"2007-02-14 14:00:00",3
+"2007-02-14 15:00:00",3
+"2007-02-14 16:00:00",3
+"2007-02-14 17:00:00",3
+"2007-02-14 18:00:00",3
+"2007-02-14 19:00:00",3
+"2007-02-14 20:00:00",3
+"2007-02-14 21:00:00",3
+"2007-02-14 22:00:00",3
+"2007-02-14 23:00:00",3
+"2007-02-15 00:00:00",3
+"2007-02-15 01:00:00",4
+"2007-02-15 02:00:00",4
+"2007-02-15 03:00:00",4
+"2007-02-15 04:00:00",4
+"2007-02-15 05:00:00",4
+"2007-02-15 06:00:00",4
+"2007-02-15 07:00:00",4
+"2007-02-15 08:00:00",4
+"2007-02-15 09:00:00",4
+"2007-02-15 10:00:00",4
+"2007-02-15 11:00:00",4
+"2007-02-15 12:00:00",4
+"2007-02-15 13:00:00",4
+"2007-02-15 14:00:00",4
+"2007-02-15 15:00:00",4
+"2007-02-15 16:00:00",4
+"2007-02-15 17:00:00",4
+"2007-02-15 18:00:00",4
+"2007-02-15 19:00:00",4
+"2007-02-15 20:00:00",4
+"2007-02-15 21:00:00",4
+"2007-02-15 22:00:00",4
+"2007-02-15 23:00:00",4
+"2007-02-16 00:00:00",4
+"2007-02-16 01:00:00",5
+"2007-02-16 02:00:00",5
+"2007-02-16 03:00:00",5
+"2007-02-16 04:00:00",5
+"2007-02-16 05:00:00",5
+"2007-02-16 06:00:00",5
+"2007-02-16 07:00:00",5
+"2007-02-16 08:00:00",5
+"2007-02-16 09:00:00",5
+"2007-02-16 10:00:00",5
+"2007-02-16 11:00:00",5
+"2007-02-16 12:00:00",5
+"2007-02-16 13:00:00",5
+"2007-02-16 14:00:00",5
+"2007-02-16 15:00:00",5
+"2007-02-16 16:00:00",5
+"2007-02-16 17:00:00",5
+"2007-02-16 18:00:00",5
+"2007-02-16 19:00:00",5
+"2007-02-16 20:00:00",5
+"2007-02-16 21:00:00",5
+"2007-02-16 22:00:00",5
+"2007-02-16 23:00:00",5
+"2007-02-17 00:00:00",5
+"2007-02-17 01:00:00",6
+"2007-02-17 02:00:00",6
+"2007-02-17 03:00:00",6
+"2007-02-17 04:00:00",6
+"2007-02-17 05:00:00",6
+"2007-02-17 06:00:00",6
+"2007-02-17 07:00:00",6
+"2007-02-17 08:00:00",6
+"2007-02-17 09:00:00",6
+"2007-02-17 10:00:00",6
+"2007-02-17 11:00:00",6
+"2007-02-17 12:00:00",6
+"2007-02-17 13:00:00",6
+"2007-02-17 14:00:00",6
+"2007-02-17 15:00:00",6
+"2007-02-17 16:00:00",6
+"2007-02-17 17:00:00",6
+"2007-02-17 18:00:00",6
+"2007-02-17 19:00:00",6
+"2007-02-17 20:00:00",6
+"2007-02-17 21:00:00",6
+"2007-02-17 22:00:00",6
+"2007-02-17 23:00:00",6
+"2007-02-18 00:00:00",6
+"2007-02-18 01:00:00",7
+"2007-02-18 02:00:00",7
+"2007-02-18 03:00:00",7
+"2007-02-18 04:00:00",7
+"2007-02-18 05:00:00",7
+"2007-02-18 06:00:00",7
+"2007-02-18 07:00:00",7
+"2007-02-18 08:00:00",7
+"2007-02-18 09:00:00",7
+"2007-02-18 10:00:00",7
+"2007-02-18 11:00:00",7
+"2007-02-18 12:00:00",7
+"2007-02-18 13:00:00",7
+"2007-02-18 14:00:00",7
+"2007-02-18 15:00:00",7
+"2007-02-18 16:00:00",7
+"2007-02-18 17:00:00",7
+"2007-02-18 18:00:00",7
+"2007-02-18 19:00:00",7
+"2007-02-18 20:00:00",7
+"2007-02-18 21:00:00",7
+"2007-02-18 22:00:00",7
+"2007-02-18 23:00:00",7
+"2007-02-19 00:00:00",7
+"2007-02-19 01:00:00",1
+"2007-02-19 02:00:00",1
+"2007-02-19 03:00:00",1
+"2007-02-19 04:00:00",1
+"2007-02-19 05:00:00",1
+"2007-02-19 06:00:00",1
+"2007-02-19 07:00:00",1
+"2007-02-19 08:00:00",1
+"2007-02-19 09:00:00",1
+"2007-02-19 10:00:00",1
+"2007-02-19 11:00:00",1
+"2007-02-19 12:00:00",1
+"2007-02-19 13:00:00",1
+"2007-02-19 14:00:00",1
+"2007-02-19 15:00:00",1
+"2007-02-19 16:00:00",1
+"2007-02-19 17:00:00",1
+"2007-02-19 18:00:00",1
+"2007-02-19 19:00:00",1
+"2007-02-19 20:00:00",1
+"2007-02-19 21:00:00",1
+"2007-02-19 22:00:00",1
+"2007-02-19 23:00:00",1
+"2007-02-20 00:00:00",1
+"2007-02-20 01:00:00",2
+"2007-02-20 02:00:00",2
+"2007-02-20 03:00:00",2
+"2007-02-20 04:00:00",2
+"2007-02-20 05:00:00",2
+"2007-02-20 06:00:00",2
+"2007-02-20 07:00:00",2
+"2007-02-20 08:00:00",2
+"2007-02-20 09:00:00",2
+"2007-02-20 10:00:00",2
+"2007-02-20 11:00:00",2
+"2007-02-20 12:00:00",2
+"2007-02-20 13:00:00",2
+"2007-02-20 14:00:00",2
+"2007-02-20 15:00:00",2
+"2007-02-20 16:00:00",2
+"2007-02-20 17:00:00",2
+"2007-02-20 18:00:00",2
+"2007-02-20 19:00:00",2
+"2007-02-20 20:00:00",2
+"2007-02-20 21:00:00",2
+"2007-02-20 22:00:00",2
+"2007-02-20 23:00:00",2
+"2007-02-21 00:00:00",2
+"2007-02-21 01:00:00",3
+"2007-02-21 02:00:00",3
+"2007-02-21 03:00:00",3
+"2007-02-21 04:00:00",3
+"2007-02-21 05:00:00",3
+"2007-02-21 06:00:00",3
+"2007-02-21 07:00:00",3
+"2007-02-21 08:00:00",3
+"2007-02-21 09:00:00",3
+"2007-02-21 10:00:00",3
+"2007-02-21 11:00:00",3
+"2007-02-21 12:00:00",3
+"2007-02-21 13:00:00",3
+"2007-02-21 14:00:00",3
+"2007-02-21 15:00:00",3
+"2007-02-21 16:00:00",3
+"2007-02-21 17:00:00",3
+"2007-02-21 18:00:00",3
+"2007-02-21 19:00:00",3
+"2007-02-21 20:00:00",3
+"2007-02-21 21:00:00",3
+"2007-02-21 22:00:00",3
+"2007-02-21 23:00:00",3
+"2007-02-22 00:00:00",3
+"2007-02-22 01:00:00",4
+"2007-02-22 02:00:00",4
+"2007-02-22 03:00:00",4
+"2007-02-22 04:00:00",4
+"2007-02-22 05:00:00",4
+"2007-02-22 06:00:00",4
+"2007-02-22 07:00:00",4
+"2007-02-22 08:00:00",4
+"2007-02-22 09:00:00",4
+"2007-02-22 10:00:00",4
+"2007-02-22 11:00:00",4
+"2007-02-22 12:00:00",4
+"2007-02-22 13:00:00",4
+"2007-02-22 14:00:00",4
+"2007-02-22 15:00:00",4
+"2007-02-22 16:00:00",4
+"2007-02-22 17:00:00",4
+"2007-02-22 18:00:00",4
+"2007-02-22 19:00:00",4
+"2007-02-22 20:00:00",4
+"2007-02-22 21:00:00",4
+"2007-02-22 22:00:00",4
+"2007-02-22 23:00:00",4
+"2007-02-23 00:00:00",4
+"2007-02-23 01:00:00",5
+"2007-02-23 02:00:00",5
+"2007-02-23 03:00:00",5
+"2007-02-23 04:00:00",5
+"2007-02-23 05:00:00",5
+"2007-02-23 06:00:00",5
+"2007-02-23 07:00:00",5
+"2007-02-23 08:00:00",5
+"2007-02-23 09:00:00",5
+"2007-02-23 10:00:00",5
+"2007-02-23 11:00:00",5
+"2007-02-23 12:00:00",5
+"2007-02-23 13:00:00",5
+"2007-02-23 14:00:00",5
+"2007-02-23 15:00:00",5
+"2007-02-23 16:00:00",5
+"2007-02-23 17:00:00",5
+"2007-02-23 18:00:00",5
+"2007-02-23 19:00:00",5
+"2007-02-23 20:00:00",5
+"2007-02-23 21:00:00",5
+"2007-02-23 22:00:00",5
+"2007-02-23 23:00:00",5
+"2007-02-24 00:00:00",5
+"2007-02-24 01:00:00",6
+"2007-02-24 02:00:00",6
+"2007-02-24 03:00:00",6
+"2007-02-24 04:00:00",6
+"2007-02-24 05:00:00",6
+"2007-02-24 06:00:00",6
+"2007-02-24 07:00:00",6
+"2007-02-24 08:00:00",6
+"2007-02-24 09:00:00",6
+"2007-02-24 10:00:00",6
+"2007-02-24 11:00:00",6
+"2007-02-24 12:00:00",6
+"2007-02-24 13:00:00",6
+"2007-02-24 14:00:00",6
+"2007-02-24 15:00:00",6
+"2007-02-24 16:00:00",6
+"2007-02-24 17:00:00",6
+"2007-02-24 18:00:00",6
+"2007-02-24 19:00:00",6
+"2007-02-24 20:00:00",6
+"2007-02-24 21:00:00",6
+"2007-02-24 22:00:00",6
+"2007-02-24 23:00:00",6
+"2007-02-25 00:00:00",6
+"2007-02-25 01:00:00",7
+"2007-02-25 02:00:00",7
+"2007-02-25 03:00:00",7
+"2007-02-25 04:00:00",7
+"2007-02-25 05:00:00",7
+"2007-02-25 06:00:00",7
+"2007-02-25 07:00:00",7
+"2007-02-25 08:00:00",7
+"2007-02-25 09:00:00",7
+"2007-02-25 10:00:00",7
+"2007-02-25 11:00:00",7
+"2007-02-25 12:00:00",7
+"2007-02-25 13:00:00",7
+"2007-02-25 14:00:00",7
+"2007-02-25 15:00:00",7
+"2007-02-25 16:00:00",7
+"2007-02-25 17:00:00",7
+"2007-02-25 18:00:00",7
+"2007-02-25 19:00:00",7
+"2007-02-25 20:00:00",7
+"2007-02-25 21:00:00",7
+"2007-02-25 22:00:00",7
+"2007-02-25 23:00:00",7
+"2007-02-26 00:00:00",7
+"2007-02-26 01:00:00",1
+"2007-02-26 02:00:00",1
+"2007-02-26 03:00:00",1
+"2007-02-26 04:00:00",1
+"2007-02-26 05:00:00",1
+"2007-02-26 06:00:00",1
+"2007-02-26 07:00:00",1
+"2007-02-26 08:00:00",1
+"2007-02-26 09:00:00",1
+"2007-02-26 10:00:00",1
+"2007-02-26 11:00:00",1
+"2007-02-26 12:00:00",1
+"2007-02-26 13:00:00",1
+"2007-02-26 14:00:00",1
+"2007-02-26 15:00:00",1
+"2007-02-26 16:00:00",1
+"2007-02-26 17:00:00",1
+"2007-02-26 18:00:00",1
+"2007-02-26 19:00:00",1
+"2007-02-26 20:00:00",1
+"2007-02-26 21:00:00",1
+"2007-02-26 22:00:00",1
+"2007-02-26 23:00:00",1
+"2007-02-27 00:00:00",1
+"2007-02-27 01:00:00",2
+"2007-02-27 02:00:00",2
+"2007-02-27 03:00:00",2
+"2007-02-27 04:00:00",2
+"2007-02-27 05:00:00",2
+"2007-02-27 06:00:00",2
+"2007-02-27 07:00:00",2
+"2007-02-27 08:00:00",2
+"2007-02-27 09:00:00",2
+"2007-02-27 10:00:00",2
+"2007-02-27 11:00:00",2
+"2007-02-27 12:00:00",2
+"2007-02-27 13:00:00",2
+"2007-02-27 14:00:00",2
+"2007-02-27 15:00:00",2
+"2007-02-27 16:00:00",2
+"2007-02-27 17:00:00",2
+"2007-02-27 18:00:00",2
+"2007-02-27 19:00:00",2
+"2007-02-27 20:00:00",2
+"2007-02-27 21:00:00",2
+"2007-02-27 22:00:00",2
+"2007-02-27 23:00:00",2
+"2007-02-28 00:00:00",2
+"2007-02-28 01:00:00",3
+"2007-02-28 02:00:00",3
+"2007-02-28 03:00:00",3
+"2007-02-28 04:00:00",3
+"2007-02-28 05:00:00",3
+"2007-02-28 06:00:00",3
+"2007-02-28 07:00:00",3
+"2007-02-28 08:00:00",3
+"2007-02-28 09:00:00",3
+"2007-02-28 10:00:00",3
+"2007-02-28 11:00:00",3
+"2007-02-28 12:00:00",3
+"2007-02-28 13:00:00",3
+"2007-02-28 14:00:00",3
+"2007-02-28 15:00:00",3
+"2007-02-28 16:00:00",3
+"2007-02-28 17:00:00",3
+"2007-02-28 18:00:00",3
+"2007-02-28 19:00:00",3
+"2007-02-28 20:00:00",3
+"2007-02-28 21:00:00",3
+"2007-02-28 22:00:00",3
+"2007-02-28 23:00:00",3
+"2007-03-01 00:00:00",3
+"2007-03-01 01:00:00",4
+"2007-03-01 02:00:00",4
+"2007-03-01 03:00:00",4
+"2007-03-01 04:00:00",4
+"2007-03-01 05:00:00",4
+"2007-03-01 06:00:00",4
+"2007-03-01 07:00:00",4
+"2007-03-01 08:00:00",4
+"2007-03-01 09:00:00",4
+"2007-03-01 10:00:00",4
+"2007-03-01 11:00:00",4
+"2007-03-01 12:00:00",4
+"2007-03-01 13:00:00",4
+"2007-03-01 14:00:00",4
+"2007-03-01 15:00:00",4
+"2007-03-01 16:00:00",4
+"2007-03-01 17:00:00",4
+"2007-03-01 18:00:00",4
+"2007-03-01 19:00:00",4
+"2007-03-01 20:00:00",4
+"2007-03-01 21:00:00",4
+"2007-03-01 22:00:00",4
+"2007-03-01 23:00:00",4
+"2007-03-02 00:00:00",4
+"2007-03-02 01:00:00",5
+"2007-03-02 02:00:00",5
+"2007-03-02 03:00:00",5
+"2007-03-02 04:00:00",5
+"2007-03-02 05:00:00",5
+"2007-03-02 06:00:00",5
+"2007-03-02 07:00:00",5
+"2007-03-02 08:00:00",5
+"2007-03-02 09:00:00",5
+"2007-03-02 10:00:00",5
+"2007-03-02 11:00:00",5
+"2007-03-02 12:00:00",5
+"2007-03-02 13:00:00",5
+"2007-03-02 14:00:00",5
+"2007-03-02 15:00:00",5
+"2007-03-02 16:00:00",5
+"2007-03-02 17:00:00",5
+"2007-03-02 18:00:00",5
+"2007-03-02 19:00:00",5
+"2007-03-02 20:00:00",5
+"2007-03-02 21:00:00",5
+"2007-03-02 22:00:00",5
+"2007-03-02 23:00:00",5
+"2007-03-03 00:00:00",5
+"2007-03-03 01:00:00",6
+"2007-03-03 02:00:00",6
+"2007-03-03 03:00:00",6
+"2007-03-03 04:00:00",6
+"2007-03-03 05:00:00",6
+"2007-03-03 06:00:00",6
+"2007-03-03 07:00:00",6
+"2007-03-03 08:00:00",6
+"2007-03-03 09:00:00",6
+"2007-03-03 10:00:00",6
+"2007-03-03 11:00:00",6
+"2007-03-03 12:00:00",6
+"2007-03-03 13:00:00",6
+"2007-03-03 14:00:00",6
+"2007-03-03 15:00:00",6
+"2007-03-03 16:00:00",6
+"2007-03-03 17:00:00",6
+"2007-03-03 18:00:00",6
+"2007-03-03 19:00:00",6
+"2007-03-03 20:00:00",6
+"2007-03-03 21:00:00",6
+"2007-03-03 22:00:00",6
+"2007-03-03 23:00:00",6
+"2007-03-04 00:00:00",6
+"2007-03-04 01:00:00",7
+"2007-03-04 02:00:00",7
+"2007-03-04 03:00:00",7
+"2007-03-04 04:00:00",7
+"2007-03-04 05:00:00",7
+"2007-03-04 06:00:00",7
+"2007-03-04 07:00:00",7
+"2007-03-04 08:00:00",7
+"2007-03-04 09:00:00",7
+"2007-03-04 10:00:00",7
+"2007-03-04 11:00:00",7
+"2007-03-04 12:00:00",7
+"2007-03-04 13:00:00",7
+"2007-03-04 14:00:00",7
+"2007-03-04 15:00:00",7
+"2007-03-04 16:00:00",7
+"2007-03-04 17:00:00",7
+"2007-03-04 18:00:00",7
+"2007-03-04 19:00:00",7
+"2007-03-04 20:00:00",7
+"2007-03-04 21:00:00",7
+"2007-03-04 22:00:00",7
+"2007-03-04 23:00:00",7
+"2007-03-05 00:00:00",7
+"2007-03-05 01:00:00",1
+"2007-03-05 02:00:00",1
+"2007-03-05 03:00:00",1
+"2007-03-05 04:00:00",1
+"2007-03-05 05:00:00",1
+"2007-03-05 06:00:00",1
+"2007-03-05 07:00:00",1
+"2007-03-05 08:00:00",1
+"2007-03-05 09:00:00",1
+"2007-03-05 10:00:00",1
+"2007-03-05 11:00:00",1
+"2007-03-05 12:00:00",1
+"2007-03-05 13:00:00",1
+"2007-03-05 14:00:00",1
+"2007-03-05 15:00:00",1
+"2007-03-05 16:00:00",1
+"2007-03-05 17:00:00",1
+"2007-03-05 18:00:00",1
+"2007-03-05 19:00:00",1
+"2007-03-05 20:00:00",1
+"2007-03-05 21:00:00",1
+"2007-03-05 22:00:00",1
+"2007-03-05 23:00:00",1
+"2007-03-06 00:00:00",1
+"2007-03-06 01:00:00",2
+"2007-03-06 02:00:00",2
+"2007-03-06 03:00:00",2
+"2007-03-06 04:00:00",2
+"2007-03-06 05:00:00",2
+"2007-03-06 06:00:00",2
+"2007-03-06 07:00:00",2
+"2007-03-06 08:00:00",2
+"2007-03-06 09:00:00",2
+"2007-03-06 10:00:00",2
+"2007-03-06 11:00:00",2
+"2007-03-06 12:00:00",2
+"2007-03-06 13:00:00",2
+"2007-03-06 14:00:00",2
+"2007-03-06 15:00:00",2
+"2007-03-06 16:00:00",2
+"2007-03-06 17:00:00",2
+"2007-03-06 18:00:00",2
+"2007-03-06 19:00:00",2
+"2007-03-06 20:00:00",2
+"2007-03-06 21:00:00",2
+"2007-03-06 22:00:00",2
+"2007-03-06 23:00:00",2
+"2007-03-07 00:00:00",2
+"2007-03-07 01:00:00",3
+"2007-03-07 02:00:00",3
+"2007-03-07 03:00:00",3
+"2007-03-07 04:00:00",3
+"2007-03-07 05:00:00",3
+"2007-03-07 06:00:00",3
+"2007-03-07 07:00:00",3
+"2007-03-07 08:00:00",3
+"2007-03-07 09:00:00",3
+"2007-03-07 10:00:00",3
+"2007-03-07 11:00:00",3
+"2007-03-07 12:00:00",3
+"2007-03-07 13:00:00",3
+"2007-03-07 14:00:00",3
+"2007-03-07 15:00:00",3
+"2007-03-07 16:00:00",3
+"2007-03-07 17:00:00",3
+"2007-03-07 18:00:00",3
+"2007-03-07 19:00:00",3
+"2007-03-07 20:00:00",3
+"2007-03-07 21:00:00",3
+"2007-03-07 22:00:00",3
+"2007-03-07 23:00:00",3
+"2007-03-08 00:00:00",3
+"2007-03-08 01:00:00",4
+"2007-03-08 02:00:00",4
+"2007-03-08 03:00:00",4
+"2007-03-08 04:00:00",4
+"2007-03-08 05:00:00",4
+"2007-03-08 06:00:00",4
+"2007-03-08 07:00:00",4
+"2007-03-08 08:00:00",4
+"2007-03-08 09:00:00",4
+"2007-03-08 10:00:00",4
+"2007-03-08 11:00:00",4
+"2007-03-08 12:00:00",4
+"2007-03-08 13:00:00",4
+"2007-03-08 14:00:00",4
+"2007-03-08 15:00:00",4
+"2007-03-08 16:00:00",4
+"2007-03-08 17:00:00",4
+"2007-03-08 18:00:00",4
+"2007-03-08 19:00:00",4
+"2007-03-08 20:00:00",4
+"2007-03-08 21:00:00",4
+"2007-03-08 22:00:00",4
+"2007-03-08 23:00:00",4
+"2007-03-09 00:00:00",4
+"2007-03-09 01:00:00",5
+"2007-03-09 02:00:00",5
+"2007-03-09 03:00:00",5
+"2007-03-09 04:00:00",5
+"2007-03-09 05:00:00",5
+"2007-03-09 06:00:00",5
+"2007-03-09 07:00:00",5
+"2007-03-09 08:00:00",5
+"2007-03-09 09:00:00",5
+"2007-03-09 10:00:00",5
+"2007-03-09 11:00:00",5
+"2007-03-09 12:00:00",5
+"2007-03-09 13:00:00",5
+"2007-03-09 14:00:00",5
+"2007-03-09 15:00:00",5
+"2007-03-09 16:00:00",5
+"2007-03-09 17:00:00",5
+"2007-03-09 18:00:00",5
+"2007-03-09 19:00:00",5
+"2007-03-09 20:00:00",5
+"2007-03-09 21:00:00",5
+"2007-03-09 22:00:00",5
+"2007-03-09 23:00:00",5
+"2007-03-10 00:00:00",5
+"2007-03-10 01:00:00",6
+"2007-03-10 02:00:00",6
+"2007-03-10 03:00:00",6
+"2007-03-10 04:00:00",6
+"2007-03-10 05:00:00",6
+"2007-03-10 06:00:00",6
+"2007-03-10 07:00:00",6
+"2007-03-10 08:00:00",6
+"2007-03-10 09:00:00",6
+"2007-03-10 10:00:00",6
+"2007-03-10 11:00:00",6
+"2007-03-10 12:00:00",6
+"2007-03-10 13:00:00",6
+"2007-03-10 14:00:00",6
+"2007-03-10 15:00:00",6
+"2007-03-10 16:00:00",6
+"2007-03-10 17:00:00",6
+"2007-03-10 18:00:00",6
+"2007-03-10 19:00:00",6
+"2007-03-10 20:00:00",6
+"2007-03-10 21:00:00",6
+"2007-03-10 22:00:00",6
+"2007-03-10 23:00:00",6
+"2007-03-11 00:00:00",6
+"2007-03-11 01:00:00",7
+"2007-03-11 02:00:00",7
+"2007-03-11 03:00:00",7
+"2007-03-11 04:00:00",7
+"2007-03-11 05:00:00",7
+"2007-03-11 06:00:00",7
+"2007-03-11 07:00:00",7
+"2007-03-11 08:00:00",7
+"2007-03-11 09:00:00",7
+"2007-03-11 10:00:00",7
+"2007-03-11 11:00:00",7
+"2007-03-11 12:00:00",7
+"2007-03-11 13:00:00",7
+"2007-03-11 14:00:00",7
+"2007-03-11 15:00:00",7
+"2007-03-11 16:00:00",7
+"2007-03-11 17:00:00",7
+"2007-03-11 18:00:00",7
+"2007-03-11 19:00:00",7
+"2007-03-11 20:00:00",7
+"2007-03-11 21:00:00",7
+"2007-03-11 22:00:00",7
+"2007-03-11 23:00:00",7
+"2007-03-12 00:00:00",7
+"2007-03-12 01:00:00",1
+"2007-03-12 02:00:00",1
+"2007-03-12 03:00:00",1
+"2007-03-12 04:00:00",1
+"2007-03-12 05:00:00",1
+"2007-03-12 06:00:00",1
+"2007-03-12 07:00:00",1
+"2007-03-12 08:00:00",1
+"2007-03-12 09:00:00",1
+"2007-03-12 10:00:00",1
+"2007-03-12 11:00:00",1
+"2007-03-12 12:00:00",1
+"2007-03-12 13:00:00",1
+"2007-03-12 14:00:00",1
+"2007-03-12 15:00:00",1
+"2007-03-12 16:00:00",1
+"2007-03-12 17:00:00",1
+"2007-03-12 18:00:00",1
+"2007-03-12 19:00:00",1
+"2007-03-12 20:00:00",1
+"2007-03-12 21:00:00",1
+"2007-03-12 22:00:00",1
+"2007-03-12 23:00:00",1
+"2007-03-13 00:00:00",1
+"2007-03-13 01:00:00",2
+"2007-03-13 02:00:00",2
+"2007-03-13 03:00:00",2
+"2007-03-13 04:00:00",2
+"2007-03-13 05:00:00",2
+"2007-03-13 06:00:00",2
+"2007-03-13 07:00:00",2
+"2007-03-13 08:00:00",2
+"2007-03-13 09:00:00",2
+"2007-03-13 10:00:00",2
+"2007-03-13 11:00:00",2
+"2007-03-13 12:00:00",2
+"2007-03-13 13:00:00",2
+"2007-03-13 14:00:00",2
+"2007-03-13 15:00:00",2
+"2007-03-13 16:00:00",2
+"2007-03-13 17:00:00",2
+"2007-03-13 18:00:00",2
+"2007-03-13 19:00:00",2
+"2007-03-13 20:00:00",2
+"2007-03-13 21:00:00",2
+"2007-03-13 22:00:00",2
+"2007-03-13 23:00:00",2
+"2007-03-14 00:00:00",2
+"2007-03-14 01:00:00",3
+"2007-03-14 02:00:00",3
+"2007-03-14 03:00:00",3
+"2007-03-14 04:00:00",3
+"2007-03-14 05:00:00",3
+"2007-03-14 06:00:00",3
+"2007-03-14 07:00:00",3
+"2007-03-14 08:00:00",3
+"2007-03-14 09:00:00",3
+"2007-03-14 10:00:00",3
+"2007-03-14 11:00:00",3
+"2007-03-14 12:00:00",3
+"2007-03-14 13:00:00",3
+"2007-03-14 14:00:00",3
+"2007-03-14 15:00:00",3
+"2007-03-14 16:00:00",3
+"2007-03-14 17:00:00",3
+"2007-03-14 18:00:00",3
+"2007-03-14 19:00:00",3
+"2007-03-14 20:00:00",3
+"2007-03-14 21:00:00",3
+"2007-03-14 22:00:00",3
+"2007-03-14 23:00:00",3
+"2007-03-15 00:00:00",3
+"2007-03-15 01:00:00",4
+"2007-03-15 02:00:00",4
+"2007-03-15 03:00:00",4
+"2007-03-15 04:00:00",4
+"2007-03-15 05:00:00",4
+"2007-03-15 06:00:00",4
+"2007-03-15 07:00:00",4
+"2007-03-15 08:00:00",4
+"2007-03-15 09:00:00",4
+"2007-03-15 10:00:00",4
+"2007-03-15 11:00:00",4
+"2007-03-15 12:00:00",4
+"2007-03-15 13:00:00",4
+"2007-03-15 14:00:00",4
+"2007-03-15 15:00:00",4
+"2007-03-15 16:00:00",4
+"2007-03-15 17:00:00",4
+"2007-03-15 18:00:00",4
+"2007-03-15 19:00:00",4
+"2007-03-15 20:00:00",4
+"2007-03-15 21:00:00",4
+"2007-03-15 22:00:00",4
+"2007-03-15 23:00:00",4
+"2007-03-16 00:00:00",4
+"2007-03-16 01:00:00",5
+"2007-03-16 02:00:00",5
+"2007-03-16 03:00:00",5
+"2007-03-16 04:00:00",5
+"2007-03-16 05:00:00",5
+"2007-03-16 06:00:00",5
+"2007-03-16 07:00:00",5
+"2007-03-16 08:00:00",5
+"2007-03-16 09:00:00",5
+"2007-03-16 10:00:00",5
+"2007-03-16 11:00:00",5
+"2007-03-16 12:00:00",5
+"2007-03-16 13:00:00",5
+"2007-03-16 14:00:00",5
+"2007-03-16 15:00:00",5
+"2007-03-16 16:00:00",5
+"2007-03-16 17:00:00",5
+"2007-03-16 18:00:00",5
+"2007-03-16 19:00:00",5
+"2007-03-16 20:00:00",5
+"2007-03-16 21:00:00",5
+"2007-03-16 22:00:00",5
+"2007-03-16 23:00:00",5
+"2007-03-17 00:00:00",5
+"2007-03-17 01:00:00",6
+"2007-03-17 02:00:00",6
+"2007-03-17 03:00:00",6
+"2007-03-17 04:00:00",6
+"2007-03-17 05:00:00",6
+"2007-03-17 06:00:00",6
+"2007-03-17 07:00:00",6
+"2007-03-17 08:00:00",6
+"2007-03-17 09:00:00",6
+"2007-03-17 10:00:00",6
+"2007-03-17 11:00:00",6
+"2007-03-17 12:00:00",6
+"2007-03-17 13:00:00",6
+"2007-03-17 14:00:00",6
+"2007-03-17 15:00:00",6
+"2007-03-17 16:00:00",6
+"2007-03-17 17:00:00",6
+"2007-03-17 18:00:00",6
+"2007-03-17 19:00:00",6
+"2007-03-17 20:00:00",6
+"2007-03-17 21:00:00",6
+"2007-03-17 22:00:00",6
+"2007-03-17 23:00:00",6
+"2007-03-18 00:00:00",6
+"2007-03-18 01:00:00",7
+"2007-03-18 02:00:00",7
+"2007-03-18 03:00:00",7
+"2007-03-18 04:00:00",7
+"2007-03-18 05:00:00",7
+"2007-03-18 06:00:00",7
+"2007-03-18 07:00:00",7
+"2007-03-18 08:00:00",7
+"2007-03-18 09:00:00",7
+"2007-03-18 10:00:00",7
+"2007-03-18 11:00:00",7
+"2007-03-18 12:00:00",7
+"2007-03-18 13:00:00",7
+"2007-03-18 14:00:00",7
+"2007-03-18 15:00:00",7
+"2007-03-18 16:00:00",7
+"2007-03-18 17:00:00",7
+"2007-03-18 18:00:00",7
+"2007-03-18 19:00:00",7
+"2007-03-18 20:00:00",7
+"2007-03-18 21:00:00",7
+"2007-03-18 22:00:00",7
+"2007-03-18 23:00:00",7
+"2007-03-19 00:00:00",7
+"2007-03-19 01:00:00",1
+"2007-03-19 02:00:00",1
+"2007-03-19 03:00:00",1
+"2007-03-19 04:00:00",1
+"2007-03-19 05:00:00",1
+"2007-03-19 06:00:00",1
+"2007-03-19 07:00:00",1
+"2007-03-19 08:00:00",1
+"2007-03-19 09:00:00",1
+"2007-03-19 10:00:00",1
+"2007-03-19 11:00:00",1
+"2007-03-19 12:00:00",1
+"2007-03-19 13:00:00",1
+"2007-03-19 14:00:00",1
+"2007-03-19 15:00:00",1
+"2007-03-19 16:00:00",1
+"2007-03-19 17:00:00",1
+"2007-03-19 18:00:00",1
+"2007-03-19 19:00:00",1
+"2007-03-19 20:00:00",1
+"2007-03-19 21:00:00",1
+"2007-03-19 22:00:00",1
+"2007-03-19 23:00:00",1
+"2007-03-20 00:00:00",1
+"2007-03-20 01:00:00",2
+"2007-03-20 02:00:00",2
+"2007-03-20 03:00:00",2
+"2007-03-20 04:00:00",2
+"2007-03-20 05:00:00",2
+"2007-03-20 06:00:00",2
+"2007-03-20 07:00:00",2
+"2007-03-20 08:00:00",2
+"2007-03-20 09:00:00",2
+"2007-03-20 10:00:00",2
+"2007-03-20 11:00:00",2
+"2007-03-20 12:00:00",2
+"2007-03-20 13:00:00",2
+"2007-03-20 14:00:00",2
+"2007-03-20 15:00:00",2
+"2007-03-20 16:00:00",2
+"2007-03-20 17:00:00",2
+"2007-03-20 18:00:00",2
+"2007-03-20 19:00:00",2
+"2007-03-20 20:00:00",2
+"2007-03-20 21:00:00",2
+"2007-03-20 22:00:00",2
+"2007-03-20 23:00:00",2
+"2007-03-21 00:00:00",2
+"2007-03-21 01:00:00",3
+"2007-03-21 02:00:00",3
+"2007-03-21 03:00:00",3
+"2007-03-21 04:00:00",3
+"2007-03-21 05:00:00",3
+"2007-03-21 06:00:00",3
+"2007-03-21 07:00:00",3
+"2007-03-21 08:00:00",3
+"2007-03-21 09:00:00",3
+"2007-03-21 10:00:00",3
+"2007-03-21 11:00:00",3
+"2007-03-21 12:00:00",3
+"2007-03-21 13:00:00",3
+"2007-03-21 14:00:00",3
+"2007-03-21 15:00:00",3
+"2007-03-21 16:00:00",3
+"2007-03-21 17:00:00",3
+"2007-03-21 18:00:00",3
+"2007-03-21 19:00:00",3
+"2007-03-21 20:00:00",3
+"2007-03-21 21:00:00",3
+"2007-03-21 22:00:00",3
+"2007-03-21 23:00:00",3
+"2007-03-22 00:00:00",3
+"2007-03-22 01:00:00",4
+"2007-03-22 02:00:00",4
+"2007-03-22 03:00:00",4
+"2007-03-22 04:00:00",4
+"2007-03-22 05:00:00",4
+"2007-03-22 06:00:00",4
+"2007-03-22 07:00:00",4
+"2007-03-22 08:00:00",4
+"2007-03-22 09:00:00",4
+"2007-03-22 10:00:00",4
+"2007-03-22 11:00:00",4
+"2007-03-22 12:00:00",4
+"2007-03-22 13:00:00",4
+"2007-03-22 14:00:00",4
+"2007-03-22 15:00:00",4
+"2007-03-22 16:00:00",4
+"2007-03-22 17:00:00",4
+"2007-03-22 18:00:00",4
+"2007-03-22 19:00:00",4
+"2007-03-22 20:00:00",4
+"2007-03-22 21:00:00",4
+"2007-03-22 22:00:00",4
+"2007-03-22 23:00:00",4
+"2007-03-23 00:00:00",4
+"2007-03-23 01:00:00",5
+"2007-03-23 02:00:00",5
+"2007-03-23 03:00:00",5
+"2007-03-23 04:00:00",5
+"2007-03-23 05:00:00",5
+"2007-03-23 06:00:00",5
+"2007-03-23 07:00:00",5
+"2007-03-23 08:00:00",5
+"2007-03-23 09:00:00",5
+"2007-03-23 10:00:00",5
+"2007-03-23 11:00:00",5
+"2007-03-23 12:00:00",5
+"2007-03-23 13:00:00",5
+"2007-03-23 14:00:00",5
+"2007-03-23 15:00:00",5
+"2007-03-23 16:00:00",5
+"2007-03-23 17:00:00",5
+"2007-03-23 18:00:00",5
+"2007-03-23 19:00:00",5
+"2007-03-23 20:00:00",5
+"2007-03-23 21:00:00",5
+"2007-03-23 22:00:00",5
+"2007-03-23 23:00:00",5
+"2007-03-24 00:00:00",5
+"2007-03-24 01:00:00",6
+"2007-03-24 02:00:00",6
+"2007-03-24 03:00:00",6
+"2007-03-24 04:00:00",6
+"2007-03-24 05:00:00",6
+"2007-03-24 06:00:00",6
+"2007-03-24 07:00:00",6
+"2007-03-24 08:00:00",6
+"2007-03-24 09:00:00",6
+"2007-03-24 10:00:00",6
+"2007-03-24 11:00:00",6
+"2007-03-24 12:00:00",6
+"2007-03-24 13:00:00",6
+"2007-03-24 14:00:00",6
+"2007-03-24 15:00:00",6
+"2007-03-24 16:00:00",6
+"2007-03-24 17:00:00",6
+"2007-03-24 18:00:00",6
+"2007-03-24 19:00:00",6
+"2007-03-24 20:00:00",6
+"2007-03-24 21:00:00",6
+"2007-03-24 22:00:00",6
+"2007-03-24 23:00:00",6
+"2007-03-25 00:00:00",6
+"2007-03-25 01:00:00",7
+"2007-03-25 02:00:00",7
+"2007-03-25 03:00:00",7
+"2007-03-25 04:00:00",7
+"2007-03-25 05:00:00",7
+"2007-03-25 06:00:00",7
+"2007-03-25 07:00:00",7
+"2007-03-25 08:00:00",7
+"2007-03-25 09:00:00",7
+"2007-03-25 10:00:00",7
+"2007-03-25 11:00:00",7
+"2007-03-25 12:00:00",7
+"2007-03-25 13:00:00",7
+"2007-03-25 14:00:00",7
+"2007-03-25 15:00:00",7
+"2007-03-25 16:00:00",7
+"2007-03-25 17:00:00",7
+"2007-03-25 18:00:00",7
+"2007-03-25 19:00:00",7
+"2007-03-25 20:00:00",7
+"2007-03-25 21:00:00",7
+"2007-03-25 22:00:00",7
+"2007-03-25 23:00:00",7
+"2007-03-26 00:00:00",7
+"2007-03-26 01:00:00",1
+"2007-03-26 02:00:00",1
+"2007-03-26 03:00:00",1
+"2007-03-26 04:00:00",1
+"2007-03-26 05:00:00",1
+"2007-03-26 06:00:00",1
+"2007-03-26 07:00:00",1
+"2007-03-26 08:00:00",1
+"2007-03-26 09:00:00",1
+"2007-03-26 10:00:00",1
+"2007-03-26 11:00:00",1
+"2007-03-26 12:00:00",1
+"2007-03-26 13:00:00",1
+"2007-03-26 14:00:00",1
+"2007-03-26 15:00:00",1
+"2007-03-26 16:00:00",1
+"2007-03-26 17:00:00",1
+"2007-03-26 18:00:00",1
+"2007-03-26 19:00:00",1
+"2007-03-26 20:00:00",1
+"2007-03-26 21:00:00",1
+"2007-03-26 22:00:00",1
+"2007-03-26 23:00:00",1
+"2007-03-27 00:00:00",1
+"2007-03-27 01:00:00",2
+"2007-03-27 02:00:00",2
+"2007-03-27 03:00:00",2
+"2007-03-27 04:00:00",2
+"2007-03-27 05:00:00",2
+"2007-03-27 06:00:00",2
+"2007-03-27 07:00:00",2
+"2007-03-27 08:00:00",2
+"2007-03-27 09:00:00",2
+"2007-03-27 10:00:00",2
+"2007-03-27 11:00:00",2
+"2007-03-27 12:00:00",2
+"2007-03-27 13:00:00",2
+"2007-03-27 14:00:00",2
+"2007-03-27 15:00:00",2
+"2007-03-27 16:00:00",2
+"2007-03-27 17:00:00",2
+"2007-03-27 18:00:00",2
+"2007-03-27 19:00:00",2
+"2007-03-27 20:00:00",2
+"2007-03-27 21:00:00",2
+"2007-03-27 22:00:00",2
+"2007-03-27 23:00:00",2
+"2007-03-28 00:00:00",2
+"2007-03-28 01:00:00",3
+"2007-03-28 02:00:00",3
+"2007-03-28 03:00:00",3
+"2007-03-28 04:00:00",3
+"2007-03-28 05:00:00",3
+"2007-03-28 06:00:00",3
+"2007-03-28 07:00:00",3
+"2007-03-28 08:00:00",3
+"2007-03-28 09:00:00",3
+"2007-03-28 10:00:00",3
+"2007-03-28 11:00:00",3
+"2007-03-28 12:00:00",3
+"2007-03-28 13:00:00",3
+"2007-03-28 14:00:00",3
+"2007-03-28 15:00:00",3
+"2007-03-28 16:00:00",3
+"2007-03-28 17:00:00",3
+"2007-03-28 18:00:00",3
+"2007-03-28 19:00:00",3
+"2007-03-28 20:00:00",3
+"2007-03-28 21:00:00",3
+"2007-03-28 22:00:00",3
+"2007-03-28 23:00:00",3
+"2007-03-29 00:00:00",3
+"2007-03-29 01:00:00",4
+"2007-03-29 02:00:00",4
+"2007-03-29 03:00:00",4
+"2007-03-29 04:00:00",4
+"2007-03-29 05:00:00",4
+"2007-03-29 06:00:00",4
+"2007-03-29 07:00:00",4
+"2007-03-29 08:00:00",4
+"2007-03-29 09:00:00",4
+"2007-03-29 10:00:00",4
+"2007-03-29 11:00:00",4
+"2007-03-29 12:00:00",4
+"2007-03-29 13:00:00",4
+"2007-03-29 14:00:00",4
+"2007-03-29 15:00:00",4
+"2007-03-29 16:00:00",4
+"2007-03-29 17:00:00",4
+"2007-03-29 18:00:00",4
+"2007-03-29 19:00:00",4
+"2007-03-29 20:00:00",4
+"2007-03-29 21:00:00",4
+"2007-03-29 22:00:00",4
+"2007-03-29 23:00:00",4
+"2007-03-30 00:00:00",4
+"2007-03-30 01:00:00",5
+"2007-03-30 02:00:00",5
+"2007-03-30 03:00:00",5
+"2007-03-30 04:00:00",5
+"2007-03-30 05:00:00",5
+"2007-03-30 06:00:00",5
+"2007-03-30 07:00:00",5
+"2007-03-30 08:00:00",5
+"2007-03-30 09:00:00",5
+"2007-03-30 10:00:00",5
+"2007-03-30 11:00:00",5
+"2007-03-30 12:00:00",5
+"2007-03-30 13:00:00",5
+"2007-03-30 14:00:00",5
+"2007-03-30 15:00:00",5
+"2007-03-30 16:00:00",5
+"2007-03-30 17:00:00",5
+"2007-03-30 18:00:00",5
+"2007-03-30 19:00:00",5
+"2007-03-30 20:00:00",5
+"2007-03-30 21:00:00",5
+"2007-03-30 22:00:00",5
+"2007-03-30 23:00:00",5
+"2007-03-31 00:00:00",5
+"2007-03-31 01:00:00",6
+"2007-03-31 02:00:00",6
+"2007-03-31 03:00:00",6
+"2007-03-31 04:00:00",6
+"2007-03-31 05:00:00",6
+"2007-03-31 06:00:00",6
+"2007-03-31 07:00:00",6
+"2007-03-31 08:00:00",6
+"2007-03-31 09:00:00",6
+"2007-03-31 10:00:00",6
+"2007-03-31 11:00:00",6
+"2007-03-31 12:00:00",6
+"2007-03-31 13:00:00",6
+"2007-03-31 14:00:00",6
+"2007-03-31 15:00:00",6
+"2007-03-31 16:00:00",6
+"2007-03-31 17:00:00",6
+"2007-03-31 18:00:00",6
+"2007-03-31 19:00:00",6
+"2007-03-31 20:00:00",6
+"2007-03-31 21:00:00",6
+"2007-03-31 22:00:00",6
+"2007-03-31 23:00:00",6
+"2007-04-01 00:00:00",6
+"2007-04-01 01:00:00",7
+"2007-04-01 02:00:00",7
+"2007-04-01 03:00:00",7
+"2007-04-01 04:00:00",7
+"2007-04-01 05:00:00",7
+"2007-04-01 06:00:00",7
+"2007-04-01 07:00:00",7
+"2007-04-01 08:00:00",7
+"2007-04-01 09:00:00",7
+"2007-04-01 10:00:00",7
+"2007-04-01 11:00:00",7
+"2007-04-01 12:00:00",7
+"2007-04-01 13:00:00",7
+"2007-04-01 14:00:00",7
+"2007-04-01 15:00:00",7
+"2007-04-01 16:00:00",7
+"2007-04-01 17:00:00",7
+"2007-04-01 18:00:00",7
+"2007-04-01 19:00:00",7
+"2007-04-01 20:00:00",7
+"2007-04-01 21:00:00",7
+"2007-04-01 22:00:00",7
+"2007-04-01 23:00:00",7
+"2007-04-02 00:00:00",7
+"2007-04-02 01:00:00",1
+"2007-04-02 02:00:00",1
+"2007-04-02 03:00:00",1
+"2007-04-02 04:00:00",1
+"2007-04-02 05:00:00",1
+"2007-04-02 06:00:00",1
+"2007-04-02 07:00:00",1
+"2007-04-02 08:00:00",1
+"2007-04-02 09:00:00",1
+"2007-04-02 10:00:00",1
+"2007-04-02 11:00:00",1
+"2007-04-02 12:00:00",1
+"2007-04-02 13:00:00",1
+"2007-04-02 14:00:00",1
+"2007-04-02 15:00:00",1
+"2007-04-02 16:00:00",1
+"2007-04-02 17:00:00",1
+"2007-04-02 18:00:00",1
+"2007-04-02 19:00:00",1
+"2007-04-02 20:00:00",1
+"2007-04-02 21:00:00",1
+"2007-04-02 22:00:00",1
+"2007-04-02 23:00:00",1
+"2007-04-03 00:00:00",1
+"2007-04-03 01:00:00",2
+"2007-04-03 02:00:00",2
+"2007-04-03 03:00:00",2
+"2007-04-03 04:00:00",2
+"2007-04-03 05:00:00",2
+"2007-04-03 06:00:00",2
+"2007-04-03 07:00:00",2
+"2007-04-03 08:00:00",2
+"2007-04-03 09:00:00",2
+"2007-04-03 10:00:00",2
+"2007-04-03 11:00:00",2
+"2007-04-03 12:00:00",2
+"2007-04-03 13:00:00",2
+"2007-04-03 14:00:00",2
+"2007-04-03 15:00:00",2
+"2007-04-03 16:00:00",2
+"2007-04-03 17:00:00",2
+"2007-04-03 18:00:00",2
+"2007-04-03 19:00:00",2
+"2007-04-03 20:00:00",2
+"2007-04-03 21:00:00",2
+"2007-04-03 22:00:00",2
+"2007-04-03 23:00:00",2
+"2007-04-04 00:00:00",2
+"2007-04-04 01:00:00",3
+"2007-04-04 02:00:00",3
+"2007-04-04 03:00:00",3
+"2007-04-04 04:00:00",3
+"2007-04-04 05:00:00",3
+"2007-04-04 06:00:00",3
+"2007-04-04 07:00:00",3
+"2007-04-04 08:00:00",3
+"2007-04-04 09:00:00",3
+"2007-04-04 10:00:00",3
+"2007-04-04 11:00:00",3
+"2007-04-04 12:00:00",3
+"2007-04-04 13:00:00",3
+"2007-04-04 14:00:00",3
+"2007-04-04 15:00:00",3
+"2007-04-04 16:00:00",3
+"2007-04-04 17:00:00",3
+"2007-04-04 18:00:00",3
+"2007-04-04 19:00:00",3
+"2007-04-04 20:00:00",3
+"2007-04-04 21:00:00",3
+"2007-04-04 22:00:00",3
+"2007-04-04 23:00:00",3
+"2007-04-05 00:00:00",3
+"2007-04-05 01:00:00",4
+"2007-04-05 02:00:00",4
+"2007-04-05 03:00:00",4
+"2007-04-05 04:00:00",4
+"2007-04-05 05:00:00",4
+"2007-04-05 06:00:00",4
+"2007-04-05 07:00:00",4
+"2007-04-05 08:00:00",4
+"2007-04-05 09:00:00",4
+"2007-04-05 10:00:00",4
+"2007-04-05 11:00:00",4
+"2007-04-05 12:00:00",4
+"2007-04-05 13:00:00",4
+"2007-04-05 14:00:00",4
+"2007-04-05 15:00:00",4
+"2007-04-05 16:00:00",4
+"2007-04-05 17:00:00",4
+"2007-04-05 18:00:00",4
+"2007-04-05 19:00:00",4
+"2007-04-05 20:00:00",4
+"2007-04-05 21:00:00",4
+"2007-04-05 22:00:00",4
+"2007-04-05 23:00:00",4
+"2007-04-06 00:00:00",4
+"2007-04-06 01:00:00",5
+"2007-04-06 02:00:00",5
+"2007-04-06 03:00:00",5
+"2007-04-06 04:00:00",5
+"2007-04-06 05:00:00",5
+"2007-04-06 06:00:00",5
+"2007-04-06 07:00:00",5
+"2007-04-06 08:00:00",5
+"2007-04-06 09:00:00",5
+"2007-04-06 10:00:00",5
+"2007-04-06 11:00:00",5
+"2007-04-06 12:00:00",5
+"2007-04-06 13:00:00",5
+"2007-04-06 14:00:00",5
+"2007-04-06 15:00:00",5
+"2007-04-06 16:00:00",5
+"2007-04-06 17:00:00",5
+"2007-04-06 18:00:00",5
+"2007-04-06 19:00:00",5
+"2007-04-06 20:00:00",5
+"2007-04-06 21:00:00",5
+"2007-04-06 22:00:00",5
+"2007-04-06 23:00:00",5
+"2007-04-07 00:00:00",5
+"2007-04-07 01:00:00",6
+"2007-04-07 02:00:00",6
+"2007-04-07 03:00:00",6
+"2007-04-07 04:00:00",6
+"2007-04-07 05:00:00",6
+"2007-04-07 06:00:00",6
+"2007-04-07 07:00:00",6
+"2007-04-07 08:00:00",6
+"2007-04-07 09:00:00",6
+"2007-04-07 10:00:00",6
+"2007-04-07 11:00:00",6
+"2007-04-07 12:00:00",6
+"2007-04-07 13:00:00",6
+"2007-04-07 14:00:00",6
+"2007-04-07 15:00:00",6
+"2007-04-07 16:00:00",6
+"2007-04-07 17:00:00",6
+"2007-04-07 18:00:00",6
+"2007-04-07 19:00:00",6
+"2007-04-07 20:00:00",6
+"2007-04-07 21:00:00",6
+"2007-04-07 22:00:00",6
+"2007-04-07 23:00:00",6
+"2007-04-08 00:00:00",6
+"2007-04-08 01:00:00",7
+"2007-04-08 02:00:00",7
+"2007-04-08 03:00:00",7
+"2007-04-08 04:00:00",7
+"2007-04-08 05:00:00",7
+"2007-04-08 06:00:00",7
+"2007-04-08 07:00:00",7
+"2007-04-08 08:00:00",7
+"2007-04-08 09:00:00",7
+"2007-04-08 10:00:00",7
+"2007-04-08 11:00:00",7
+"2007-04-08 12:00:00",7
+"2007-04-08 13:00:00",7
+"2007-04-08 14:00:00",7
+"2007-04-08 15:00:00",7
+"2007-04-08 16:00:00",7
+"2007-04-08 17:00:00",7
+"2007-04-08 18:00:00",7
+"2007-04-08 19:00:00",7
+"2007-04-08 20:00:00",7
+"2007-04-08 21:00:00",7
+"2007-04-08 22:00:00",7
+"2007-04-08 23:00:00",7
+"2007-04-09 00:00:00",7
+"2007-04-09 01:00:00",1
+"2007-04-09 02:00:00",1
+"2007-04-09 03:00:00",1
+"2007-04-09 04:00:00",1
+"2007-04-09 05:00:00",1
+"2007-04-09 06:00:00",1
+"2007-04-09 07:00:00",1
+"2007-04-09 08:00:00",1
+"2007-04-09 09:00:00",1
+"2007-04-09 10:00:00",1
+"2007-04-09 11:00:00",1
+"2007-04-09 12:00:00",1
+"2007-04-09 13:00:00",1
+"2007-04-09 14:00:00",1
+"2007-04-09 15:00:00",1
+"2007-04-09 16:00:00",1
+"2007-04-09 17:00:00",1
+"2007-04-09 18:00:00",1
+"2007-04-09 19:00:00",1
+"2007-04-09 20:00:00",1
+"2007-04-09 21:00:00",1
+"2007-04-09 22:00:00",1
+"2007-04-09 23:00:00",1
+"2007-04-10 00:00:00",1
+"2007-04-10 01:00:00",2
+"2007-04-10 02:00:00",2
+"2007-04-10 03:00:00",2
+"2007-04-10 04:00:00",2
+"2007-04-10 05:00:00",2
+"2007-04-10 06:00:00",2
+"2007-04-10 07:00:00",2
+"2007-04-10 08:00:00",2
+"2007-04-10 09:00:00",2
+"2007-04-10 10:00:00",2
+"2007-04-10 11:00:00",2
+"2007-04-10 12:00:00",2
+"2007-04-10 13:00:00",2
+"2007-04-10 14:00:00",2
+"2007-04-10 15:00:00",2
+"2007-04-10 16:00:00",2
+"2007-04-10 17:00:00",2
+"2007-04-10 18:00:00",2
+"2007-04-10 19:00:00",2
+"2007-04-10 20:00:00",2
+"2007-04-10 21:00:00",2
+"2007-04-10 22:00:00",2
+"2007-04-10 23:00:00",2
+"2007-04-11 00:00:00",2
+"2007-04-11 01:00:00",3
+"2007-04-11 02:00:00",3
+"2007-04-11 03:00:00",3
+"2007-04-11 04:00:00",3
+"2007-04-11 05:00:00",3
+"2007-04-11 06:00:00",3
+"2007-04-11 07:00:00",3
+"2007-04-11 08:00:00",3
+"2007-04-11 09:00:00",3
+"2007-04-11 10:00:00",3
+"2007-04-11 11:00:00",3
+"2007-04-11 12:00:00",3
+"2007-04-11 13:00:00",3
+"2007-04-11 14:00:00",3
+"2007-04-11 15:00:00",3
+"2007-04-11 16:00:00",3
+"2007-04-11 17:00:00",3
+"2007-04-11 18:00:00",3
+"2007-04-11 19:00:00",3
+"2007-04-11 20:00:00",3
+"2007-04-11 21:00:00",3
+"2007-04-11 22:00:00",3
+"2007-04-11 23:00:00",3
+"2007-04-12 00:00:00",3
+"2007-04-12 01:00:00",4
+"2007-04-12 02:00:00",4
+"2007-04-12 03:00:00",4
+"2007-04-12 04:00:00",4
+"2007-04-12 05:00:00",4
+"2007-04-12 06:00:00",4
+"2007-04-12 07:00:00",4
+"2007-04-12 08:00:00",4
+"2007-04-12 09:00:00",4
+"2007-04-12 10:00:00",4
+"2007-04-12 11:00:00",4
+"2007-04-12 12:00:00",4
+"2007-04-12 13:00:00",4
+"2007-04-12 14:00:00",4
+"2007-04-12 15:00:00",4
+"2007-04-12 16:00:00",4
+"2007-04-12 17:00:00",4
+"2007-04-12 18:00:00",4
+"2007-04-12 19:00:00",4
+"2007-04-12 20:00:00",4
+"2007-04-12 21:00:00",4
+"2007-04-12 22:00:00",4
+"2007-04-12 23:00:00",4
+"2007-04-13 00:00:00",4
+"2007-04-13 01:00:00",5
+"2007-04-13 02:00:00",5
+"2007-04-13 03:00:00",5
+"2007-04-13 04:00:00",5
+"2007-04-13 05:00:00",5
+"2007-04-13 06:00:00",5
+"2007-04-13 07:00:00",5
+"2007-04-13 08:00:00",5
+"2007-04-13 09:00:00",5
+"2007-04-13 10:00:00",5
+"2007-04-13 11:00:00",5
+"2007-04-13 12:00:00",5
+"2007-04-13 13:00:00",5
+"2007-04-13 14:00:00",5
+"2007-04-13 15:00:00",5
+"2007-04-13 16:00:00",5
+"2007-04-13 17:00:00",5
+"2007-04-13 18:00:00",5
+"2007-04-13 19:00:00",5
+"2007-04-13 20:00:00",5
+"2007-04-13 21:00:00",5
+"2007-04-13 22:00:00",5
+"2007-04-13 23:00:00",5
+"2007-04-14 00:00:00",5
+"2007-04-14 01:00:00",6
+"2007-04-14 02:00:00",6
+"2007-04-14 03:00:00",6
+"2007-04-14 04:00:00",6
+"2007-04-14 05:00:00",6
+"2007-04-14 06:00:00",6
+"2007-04-14 07:00:00",6
+"2007-04-14 08:00:00",6
+"2007-04-14 09:00:00",6
+"2007-04-14 10:00:00",6
+"2007-04-14 11:00:00",6
+"2007-04-14 12:00:00",6
+"2007-04-14 13:00:00",6
+"2007-04-14 14:00:00",6
+"2007-04-14 15:00:00",6
+"2007-04-14 16:00:00",6
+"2007-04-14 17:00:00",6
+"2007-04-14 18:00:00",6
+"2007-04-14 19:00:00",6
+"2007-04-14 20:00:00",6
+"2007-04-14 21:00:00",6
+"2007-04-14 22:00:00",6
+"2007-04-14 23:00:00",6
+"2007-04-15 00:00:00",6
+"2007-04-15 01:00:00",7
+"2007-04-15 02:00:00",7
+"2007-04-15 03:00:00",7
+"2007-04-15 04:00:00",7
+"2007-04-15 05:00:00",7
+"2007-04-15 06:00:00",7
+"2007-04-15 07:00:00",7
+"2007-04-15 08:00:00",7
+"2007-04-15 09:00:00",7
+"2007-04-15 10:00:00",7
+"2007-04-15 11:00:00",7
+"2007-04-15 12:00:00",7
+"2007-04-15 13:00:00",7
+"2007-04-15 14:00:00",7
+"2007-04-15 15:00:00",7
+"2007-04-15 16:00:00",7
+"2007-04-15 17:00:00",7
+"2007-04-15 18:00:00",7
+"2007-04-15 19:00:00",7
+"2007-04-15 20:00:00",7
+"2007-04-15 21:00:00",7
+"2007-04-15 22:00:00",7
+"2007-04-15 23:00:00",7
+"2007-04-16 00:00:00",7
+"2007-04-16 01:00:00",1
+"2007-04-16 02:00:00",1
+"2007-04-16 03:00:00",1
+"2007-04-16 04:00:00",1
+"2007-04-16 05:00:00",1
+"2007-04-16 06:00:00",1
+"2007-04-16 07:00:00",1
+"2007-04-16 08:00:00",1
+"2007-04-16 09:00:00",1
+"2007-04-16 10:00:00",1
+"2007-04-16 11:00:00",1
+"2007-04-16 12:00:00",1
+"2007-04-16 13:00:00",1
+"2007-04-16 14:00:00",1
+"2007-04-16 15:00:00",1
+"2007-04-16 16:00:00",1
+"2007-04-16 17:00:00",1
+"2007-04-16 18:00:00",1
+"2007-04-16 19:00:00",1
+"2007-04-16 20:00:00",1
+"2007-04-16 21:00:00",1
+"2007-04-16 22:00:00",1
+"2007-04-16 23:00:00",1
+"2007-04-17 00:00:00",1
+"2007-04-17 01:00:00",2
+"2007-04-17 02:00:00",2
+"2007-04-17 03:00:00",2
+"2007-04-17 04:00:00",2
+"2007-04-17 05:00:00",2
+"2007-04-17 06:00:00",2
+"2007-04-17 07:00:00",2
+"2007-04-17 08:00:00",2
+"2007-04-17 09:00:00",2
+"2007-04-17 10:00:00",2
+"2007-04-17 11:00:00",2
+"2007-04-17 12:00:00",2
+"2007-04-17 13:00:00",2
+"2007-04-17 14:00:00",2
+"2007-04-17 15:00:00",2
+"2007-04-17 16:00:00",2
+"2007-04-17 17:00:00",2
+"2007-04-17 18:00:00",2
+"2007-04-17 19:00:00",2
+"2007-04-17 20:00:00",2
+"2007-04-17 21:00:00",2
+"2007-04-17 22:00:00",2
+"2007-04-17 23:00:00",2
+"2007-04-18 00:00:00",2
+"2007-04-18 01:00:00",3
+"2007-04-18 02:00:00",3
+"2007-04-18 03:00:00",3
+"2007-04-18 04:00:00",3
+"2007-04-18 05:00:00",3
+"2007-04-18 06:00:00",3
+"2007-04-18 07:00:00",3
+"2007-04-18 08:00:00",3
+"2007-04-18 09:00:00",3
+"2007-04-18 10:00:00",3
+"2007-04-18 11:00:00",3
+"2007-04-18 12:00:00",3
+"2007-04-18 13:00:00",3
+"2007-04-18 14:00:00",3
+"2007-04-18 15:00:00",3
+"2007-04-18 16:00:00",3
+"2007-04-18 17:00:00",3
+"2007-04-18 18:00:00",3
+"2007-04-18 19:00:00",3
+"2007-04-18 20:00:00",3
+"2007-04-18 21:00:00",3
+"2007-04-18 22:00:00",3
+"2007-04-18 23:00:00",3
+"2007-04-19 00:00:00",3
+"2007-04-19 01:00:00",4
+"2007-04-19 02:00:00",4
+"2007-04-19 03:00:00",4
+"2007-04-19 04:00:00",4
+"2007-04-19 05:00:00",4
+"2007-04-19 06:00:00",4
+"2007-04-19 07:00:00",4
+"2007-04-19 08:00:00",4
+"2007-04-19 09:00:00",4
+"2007-04-19 10:00:00",4
+"2007-04-19 11:00:00",4
+"2007-04-19 12:00:00",4
+"2007-04-19 13:00:00",4
+"2007-04-19 14:00:00",4
+"2007-04-19 15:00:00",4
+"2007-04-19 16:00:00",4
+"2007-04-19 17:00:00",4
+"2007-04-19 18:00:00",4
+"2007-04-19 19:00:00",4
+"2007-04-19 20:00:00",4
+"2007-04-19 21:00:00",4
+"2007-04-19 22:00:00",4
+"2007-04-19 23:00:00",4
+"2007-04-20 00:00:00",4
+"2007-04-20 01:00:00",5
+"2007-04-20 02:00:00",5
+"2007-04-20 03:00:00",5
+"2007-04-20 04:00:00",5
+"2007-04-20 05:00:00",5
+"2007-04-20 06:00:00",5
+"2007-04-20 07:00:00",5
+"2007-04-20 08:00:00",5
+"2007-04-20 09:00:00",5
+"2007-04-20 10:00:00",5
+"2007-04-20 11:00:00",5
+"2007-04-20 12:00:00",5
+"2007-04-20 13:00:00",5
+"2007-04-20 14:00:00",5
+"2007-04-20 15:00:00",5
+"2007-04-20 16:00:00",5
+"2007-04-20 17:00:00",5
+"2007-04-20 18:00:00",5
+"2007-04-20 19:00:00",5
+"2007-04-20 20:00:00",5
+"2007-04-20 21:00:00",5
+"2007-04-20 22:00:00",5
+"2007-04-20 23:00:00",5
+"2007-04-21 00:00:00",5
+"2007-04-21 01:00:00",6
+"2007-04-21 02:00:00",6
+"2007-04-21 03:00:00",6
+"2007-04-21 04:00:00",6
+"2007-04-21 05:00:00",6
+"2007-04-21 06:00:00",6
+"2007-04-21 07:00:00",6
+"2007-04-21 08:00:00",6
+"2007-04-21 09:00:00",6
+"2007-04-21 10:00:00",6
+"2007-04-21 11:00:00",6
+"2007-04-21 12:00:00",6
+"2007-04-21 13:00:00",6
+"2007-04-21 14:00:00",6
+"2007-04-21 15:00:00",6
+"2007-04-21 16:00:00",6
+"2007-04-21 17:00:00",6
+"2007-04-21 18:00:00",6
+"2007-04-21 19:00:00",6
+"2007-04-21 20:00:00",6
+"2007-04-21 21:00:00",6
+"2007-04-21 22:00:00",6
+"2007-04-21 23:00:00",6
+"2007-04-22 00:00:00",6
+"2007-04-22 01:00:00",7
+"2007-04-22 02:00:00",7
+"2007-04-22 03:00:00",7
+"2007-04-22 04:00:00",7
+"2007-04-22 05:00:00",7
+"2007-04-22 06:00:00",7
+"2007-04-22 07:00:00",7
+"2007-04-22 08:00:00",7
+"2007-04-22 09:00:00",7
+"2007-04-22 10:00:00",7
+"2007-04-22 11:00:00",7
+"2007-04-22 12:00:00",7
+"2007-04-22 13:00:00",7
+"2007-04-22 14:00:00",7
+"2007-04-22 15:00:00",7
+"2007-04-22 16:00:00",7
+"2007-04-22 17:00:00",7
+"2007-04-22 18:00:00",7
+"2007-04-22 19:00:00",7
+"2007-04-22 20:00:00",7
+"2007-04-22 21:00:00",7
+"2007-04-22 22:00:00",7
+"2007-04-22 23:00:00",7
+"2007-04-23 00:00:00",7
+"2007-04-23 01:00:00",1
+"2007-04-23 02:00:00",1
+"2007-04-23 03:00:00",1
+"2007-04-23 04:00:00",1
+"2007-04-23 05:00:00",1
+"2007-04-23 06:00:00",1
+"2007-04-23 07:00:00",1
+"2007-04-23 08:00:00",1
+"2007-04-23 09:00:00",1
+"2007-04-23 10:00:00",1
+"2007-04-23 11:00:00",1
+"2007-04-23 12:00:00",1
+"2007-04-23 13:00:00",1
+"2007-04-23 14:00:00",1
+"2007-04-23 15:00:00",1
+"2007-04-23 16:00:00",1
+"2007-04-23 17:00:00",1
+"2007-04-23 18:00:00",1
+"2007-04-23 19:00:00",1
+"2007-04-23 20:00:00",1
+"2007-04-23 21:00:00",1
+"2007-04-23 22:00:00",1
+"2007-04-23 23:00:00",1
+"2007-04-24 00:00:00",1
+"2007-04-24 01:00:00",2
+"2007-04-24 02:00:00",2
+"2007-04-24 03:00:00",2
+"2007-04-24 04:00:00",2
+"2007-04-24 05:00:00",2
+"2007-04-24 06:00:00",2
+"2007-04-24 07:00:00",2
+"2007-04-24 08:00:00",2
+"2007-04-24 09:00:00",2
+"2007-04-24 10:00:00",2
+"2007-04-24 11:00:00",2
+"2007-04-24 12:00:00",2
+"2007-04-24 13:00:00",2
+"2007-04-24 14:00:00",2
+"2007-04-24 15:00:00",2
+"2007-04-24 16:00:00",2
+"2007-04-24 17:00:00",2
+"2007-04-24 18:00:00",2
+"2007-04-24 19:00:00",2
+"2007-04-24 20:00:00",2
+"2007-04-24 21:00:00",2
+"2007-04-24 22:00:00",2
+"2007-04-24 23:00:00",2
+"2007-04-25 00:00:00",2
+"2007-04-25 01:00:00",3
+"2007-04-25 02:00:00",3
+"2007-04-25 03:00:00",3
+"2007-04-25 04:00:00",3
+"2007-04-25 05:00:00",3
+"2007-04-25 06:00:00",3
+"2007-04-25 07:00:00",3
+"2007-04-25 08:00:00",3
+"2007-04-25 09:00:00",3
+"2007-04-25 10:00:00",3
+"2007-04-25 11:00:00",3
+"2007-04-25 12:00:00",3
+"2007-04-25 13:00:00",3
+"2007-04-25 14:00:00",3
+"2007-04-25 15:00:00",3
+"2007-04-25 16:00:00",3
+"2007-04-25 17:00:00",3
+"2007-04-25 18:00:00",3
+"2007-04-25 19:00:00",3
+"2007-04-25 20:00:00",3
+"2007-04-25 21:00:00",3
+"2007-04-25 22:00:00",3
+"2007-04-25 23:00:00",3
+"2007-04-26 00:00:00",3
+"2007-04-26 01:00:00",4
+"2007-04-26 02:00:00",4
+"2007-04-26 03:00:00",4
+"2007-04-26 04:00:00",4
+"2007-04-26 05:00:00",4
+"2007-04-26 06:00:00",4
+"2007-04-26 07:00:00",4
+"2007-04-26 08:00:00",4
+"2007-04-26 09:00:00",4
+"2007-04-26 10:00:00",4
+"2007-04-26 11:00:00",4
+"2007-04-26 12:00:00",4
+"2007-04-26 13:00:00",4
+"2007-04-26 14:00:00",4
+"2007-04-26 15:00:00",4
+"2007-04-26 16:00:00",4
+"2007-04-26 17:00:00",4
+"2007-04-26 18:00:00",4
+"2007-04-26 19:00:00",4
+"2007-04-26 20:00:00",4
+"2007-04-26 21:00:00",4
+"2007-04-26 22:00:00",4
+"2007-04-26 23:00:00",4
+"2007-04-27 00:00:00",4
+"2007-04-27 01:00:00",5
+"2007-04-27 02:00:00",5
+"2007-04-27 03:00:00",5
+"2007-04-27 04:00:00",5
+"2007-04-27 05:00:00",5
+"2007-04-27 06:00:00",5
+"2007-04-27 07:00:00",5
+"2007-04-27 08:00:00",5
+"2007-04-27 09:00:00",5
+"2007-04-27 10:00:00",5
+"2007-04-27 11:00:00",5
+"2007-04-27 12:00:00",5
+"2007-04-27 13:00:00",5
+"2007-04-27 14:00:00",5
+"2007-04-27 15:00:00",5
+"2007-04-27 16:00:00",5
+"2007-04-27 17:00:00",5
+"2007-04-27 18:00:00",5
+"2007-04-27 19:00:00",5
+"2007-04-27 20:00:00",5
+"2007-04-27 21:00:00",5
+"2007-04-27 22:00:00",5
+"2007-04-27 23:00:00",5
+"2007-04-28 00:00:00",5
+"2007-04-28 01:00:00",6
+"2007-04-28 02:00:00",6
+"2007-04-28 03:00:00",6
+"2007-04-28 04:00:00",6
+"2007-04-28 05:00:00",6
+"2007-04-28 06:00:00",6
+"2007-04-28 07:00:00",6
+"2007-04-28 08:00:00",6
+"2007-04-28 09:00:00",6
+"2007-04-28 10:00:00",6
+"2007-04-28 11:00:00",6
+"2007-04-28 12:00:00",6
+"2007-04-28 13:00:00",6
+"2007-04-28 14:00:00",6
+"2007-04-28 15:00:00",6
+"2007-04-28 16:00:00",6
+"2007-04-28 17:00:00",6
+"2007-04-28 18:00:00",6
+"2007-04-28 19:00:00",6
+"2007-04-28 20:00:00",6
+"2007-04-28 21:00:00",6
+"2007-04-28 22:00:00",6
+"2007-04-28 23:00:00",6
+"2007-04-29 00:00:00",6
+"2007-04-29 01:00:00",7
+"2007-04-29 02:00:00",7
+"2007-04-29 03:00:00",7
+"2007-04-29 04:00:00",7
+"2007-04-29 05:00:00",7
+"2007-04-29 06:00:00",7
+"2007-04-29 07:00:00",7
+"2007-04-29 08:00:00",7
+"2007-04-29 09:00:00",7
+"2007-04-29 10:00:00",7
+"2007-04-29 11:00:00",7
+"2007-04-29 12:00:00",7
+"2007-04-29 13:00:00",7
+"2007-04-29 14:00:00",7
+"2007-04-29 15:00:00",7
+"2007-04-29 16:00:00",7
+"2007-04-29 17:00:00",7
+"2007-04-29 18:00:00",7
+"2007-04-29 19:00:00",7
+"2007-04-29 20:00:00",7
+"2007-04-29 21:00:00",7
+"2007-04-29 22:00:00",7
+"2007-04-29 23:00:00",7
+"2007-04-30 00:00:00",7
+"2007-04-30 01:00:00",1
+"2007-04-30 02:00:00",1
+"2007-04-30 03:00:00",1
+"2007-04-30 04:00:00",1
+"2007-04-30 05:00:00",1
+"2007-04-30 06:00:00",1
+"2007-04-30 07:00:00",1
+"2007-04-30 08:00:00",1
+"2007-04-30 09:00:00",1
+"2007-04-30 10:00:00",1
+"2007-04-30 11:00:00",1
+"2007-04-30 12:00:00",1
+"2007-04-30 13:00:00",1
+"2007-04-30 14:00:00",1
+"2007-04-30 15:00:00",1
+"2007-04-30 16:00:00",1
+"2007-04-30 17:00:00",1
+"2007-04-30 18:00:00",1
+"2007-04-30 19:00:00",1
+"2007-04-30 20:00:00",1
+"2007-04-30 21:00:00",1
+"2007-04-30 22:00:00",1
+"2007-04-30 23:00:00",1
+"2007-05-01 00:00:00",1
+"2007-05-01 01:00:00",2
+"2007-05-01 02:00:00",2
+"2007-05-01 03:00:00",2
+"2007-05-01 04:00:00",2
+"2007-05-01 05:00:00",2
+"2007-05-01 06:00:00",2
+"2007-05-01 07:00:00",2
+"2007-05-01 08:00:00",2
+"2007-05-01 09:00:00",2
+"2007-05-01 10:00:00",2
+"2007-05-01 11:00:00",2
+"2007-05-01 12:00:00",2
+"2007-05-01 13:00:00",2
+"2007-05-01 14:00:00",2
+"2007-05-01 15:00:00",2
+"2007-05-01 16:00:00",2
+"2007-05-01 17:00:00",2
+"2007-05-01 18:00:00",2
+"2007-05-01 19:00:00",2
+"2007-05-01 20:00:00",2
+"2007-05-01 21:00:00",2
+"2007-05-01 22:00:00",2
+"2007-05-01 23:00:00",2
+"2007-05-02 00:00:00",2
+"2007-05-02 01:00:00",3
+"2007-05-02 02:00:00",3
+"2007-05-02 03:00:00",3
+"2007-05-02 04:00:00",3
+"2007-05-02 05:00:00",3
+"2007-05-02 06:00:00",3
+"2007-05-02 07:00:00",3
+"2007-05-02 08:00:00",3
+"2007-05-02 09:00:00",3
+"2007-05-02 10:00:00",3
+"2007-05-02 11:00:00",3
+"2007-05-02 12:00:00",3
+"2007-05-02 13:00:00",3
+"2007-05-02 14:00:00",3
+"2007-05-02 15:00:00",3
+"2007-05-02 16:00:00",3
+"2007-05-02 17:00:00",3
+"2007-05-02 18:00:00",3
+"2007-05-02 19:00:00",3
+"2007-05-02 20:00:00",3
+"2007-05-02 21:00:00",3
+"2007-05-02 22:00:00",3
+"2007-05-02 23:00:00",3
+"2007-05-03 00:00:00",3
+"2007-05-03 01:00:00",4
+"2007-05-03 02:00:00",4
+"2007-05-03 03:00:00",4
+"2007-05-03 04:00:00",4
+"2007-05-03 05:00:00",4
+"2007-05-03 06:00:00",4
+"2007-05-03 07:00:00",4
+"2007-05-03 08:00:00",4
+"2007-05-03 09:00:00",4
+"2007-05-03 10:00:00",4
+"2007-05-03 11:00:00",4
+"2007-05-03 12:00:00",4
+"2007-05-03 13:00:00",4
+"2007-05-03 14:00:00",4
+"2007-05-03 15:00:00",4
+"2007-05-03 16:00:00",4
+"2007-05-03 17:00:00",4
+"2007-05-03 18:00:00",4
+"2007-05-03 19:00:00",4
+"2007-05-03 20:00:00",4
+"2007-05-03 21:00:00",4
+"2007-05-03 22:00:00",4
+"2007-05-03 23:00:00",4
+"2007-05-04 00:00:00",4
+"2007-05-04 01:00:00",5
+"2007-05-04 02:00:00",5
+"2007-05-04 03:00:00",5
+"2007-05-04 04:00:00",5
+"2007-05-04 05:00:00",5
+"2007-05-04 06:00:00",5
+"2007-05-04 07:00:00",5
+"2007-05-04 08:00:00",5
+"2007-05-04 09:00:00",5
+"2007-05-04 10:00:00",5
+"2007-05-04 11:00:00",5
+"2007-05-04 12:00:00",5
+"2007-05-04 13:00:00",5
+"2007-05-04 14:00:00",5
+"2007-05-04 15:00:00",5
+"2007-05-04 16:00:00",5
+"2007-05-04 17:00:00",5
+"2007-05-04 18:00:00",5
+"2007-05-04 19:00:00",5
+"2007-05-04 20:00:00",5
+"2007-05-04 21:00:00",5
+"2007-05-04 22:00:00",5
+"2007-05-04 23:00:00",5
+"2007-05-05 00:00:00",5
+"2007-05-05 01:00:00",6
+"2007-05-05 02:00:00",6
+"2007-05-05 03:00:00",6
+"2007-05-05 04:00:00",6
+"2007-05-05 05:00:00",6
+"2007-05-05 06:00:00",6
+"2007-05-05 07:00:00",6
+"2007-05-05 08:00:00",6
+"2007-05-05 09:00:00",6
+"2007-05-05 10:00:00",6
+"2007-05-05 11:00:00",6
+"2007-05-05 12:00:00",6
+"2007-05-05 13:00:00",6
+"2007-05-05 14:00:00",6
+"2007-05-05 15:00:00",6
+"2007-05-05 16:00:00",6
+"2007-05-05 17:00:00",6
+"2007-05-05 18:00:00",6
+"2007-05-05 19:00:00",6
+"2007-05-05 20:00:00",6
+"2007-05-05 21:00:00",6
+"2007-05-05 22:00:00",6
+"2007-05-05 23:00:00",6
+"2007-05-06 00:00:00",6
+"2007-05-06 01:00:00",7
+"2007-05-06 02:00:00",7
+"2007-05-06 03:00:00",7
+"2007-05-06 04:00:00",7
+"2007-05-06 05:00:00",7
+"2007-05-06 06:00:00",7
+"2007-05-06 07:00:00",7
+"2007-05-06 08:00:00",7
+"2007-05-06 09:00:00",7
+"2007-05-06 10:00:00",7
+"2007-05-06 11:00:00",7
+"2007-05-06 12:00:00",7
+"2007-05-06 13:00:00",7
+"2007-05-06 14:00:00",7
+"2007-05-06 15:00:00",7
+"2007-05-06 16:00:00",7
+"2007-05-06 17:00:00",7
+"2007-05-06 18:00:00",7
+"2007-05-06 19:00:00",7
+"2007-05-06 20:00:00",7
+"2007-05-06 21:00:00",7
+"2007-05-06 22:00:00",7
+"2007-05-06 23:00:00",7
+"2007-05-07 00:00:00",7
+"2007-05-07 01:00:00",1
+"2007-05-07 02:00:00",1
+"2007-05-07 03:00:00",1
+"2007-05-07 04:00:00",1
+"2007-05-07 05:00:00",1
+"2007-05-07 06:00:00",1
+"2007-05-07 07:00:00",1
+"2007-05-07 08:00:00",1
+"2007-05-07 09:00:00",1
+"2007-05-07 10:00:00",1
+"2007-05-07 11:00:00",1
+"2007-05-07 12:00:00",1
+"2007-05-07 13:00:00",1
+"2007-05-07 14:00:00",1
+"2007-05-07 15:00:00",1
+"2007-05-07 16:00:00",1
+"2007-05-07 17:00:00",1
+"2007-05-07 18:00:00",1
+"2007-05-07 19:00:00",1
+"2007-05-07 20:00:00",1
+"2007-05-07 21:00:00",1
+"2007-05-07 22:00:00",1
+"2007-05-07 23:00:00",1
+"2007-05-08 00:00:00",1
+"2007-05-08 01:00:00",2
+"2007-05-08 02:00:00",2
+"2007-05-08 03:00:00",2
+"2007-05-08 04:00:00",2
+"2007-05-08 05:00:00",2
+"2007-05-08 06:00:00",2
+"2007-05-08 07:00:00",2
+"2007-05-08 08:00:00",2
+"2007-05-08 09:00:00",2
+"2007-05-08 10:00:00",2
+"2007-05-08 11:00:00",2
+"2007-05-08 12:00:00",2
+"2007-05-08 13:00:00",2
+"2007-05-08 14:00:00",2
+"2007-05-08 15:00:00",2
+"2007-05-08 16:00:00",2
+"2007-05-08 17:00:00",2
+"2007-05-08 18:00:00",2
+"2007-05-08 19:00:00",2
+"2007-05-08 20:00:00",2
+"2007-05-08 21:00:00",2
+"2007-05-08 22:00:00",2
+"2007-05-08 23:00:00",2
+"2007-05-09 00:00:00",2
+"2007-05-09 01:00:00",3
+"2007-05-09 02:00:00",3
+"2007-05-09 03:00:00",3
+"2007-05-09 04:00:00",3
+"2007-05-09 05:00:00",3
+"2007-05-09 06:00:00",3
+"2007-05-09 07:00:00",3
+"2007-05-09 08:00:00",3
+"2007-05-09 09:00:00",3
+"2007-05-09 10:00:00",3
+"2007-05-09 11:00:00",3
+"2007-05-09 12:00:00",3
+"2007-05-09 13:00:00",3
+"2007-05-09 14:00:00",3
+"2007-05-09 15:00:00",3
+"2007-05-09 16:00:00",3
+"2007-05-09 17:00:00",3
+"2007-05-09 18:00:00",3
+"2007-05-09 19:00:00",3
+"2007-05-09 20:00:00",3
+"2007-05-09 21:00:00",3
+"2007-05-09 22:00:00",3
+"2007-05-09 23:00:00",3
+"2007-05-10 00:00:00",3
+"2007-05-10 01:00:00",4
+"2007-05-10 02:00:00",4
+"2007-05-10 03:00:00",4
+"2007-05-10 04:00:00",4
+"2007-05-10 05:00:00",4
+"2007-05-10 06:00:00",4
+"2007-05-10 07:00:00",4
+"2007-05-10 08:00:00",4
+"2007-05-10 09:00:00",4
+"2007-05-10 10:00:00",4
+"2007-05-10 11:00:00",4
+"2007-05-10 12:00:00",4
+"2007-05-10 13:00:00",4
+"2007-05-10 14:00:00",4
+"2007-05-10 15:00:00",4
+"2007-05-10 16:00:00",4
+"2007-05-10 17:00:00",4
+"2007-05-10 18:00:00",4
+"2007-05-10 19:00:00",4
+"2007-05-10 20:00:00",4
+"2007-05-10 21:00:00",4
+"2007-05-10 22:00:00",4
+"2007-05-10 23:00:00",4
+"2007-05-11 00:00:00",4
+"2007-05-11 01:00:00",5
+"2007-05-11 02:00:00",5
+"2007-05-11 03:00:00",5
+"2007-05-11 04:00:00",5
+"2007-05-11 05:00:00",5
+"2007-05-11 06:00:00",5
+"2007-05-11 07:00:00",5
+"2007-05-11 08:00:00",5
+"2007-05-11 09:00:00",5
+"2007-05-11 10:00:00",5
+"2007-05-11 11:00:00",5
+"2007-05-11 12:00:00",5
+"2007-05-11 13:00:00",5
+"2007-05-11 14:00:00",5
+"2007-05-11 15:00:00",5
+"2007-05-11 16:00:00",5
+"2007-05-11 17:00:00",5
+"2007-05-11 18:00:00",5
+"2007-05-11 19:00:00",5
+"2007-05-11 20:00:00",5
+"2007-05-11 21:00:00",5
+"2007-05-11 22:00:00",5
+"2007-05-11 23:00:00",5
+"2007-05-12 00:00:00",5
+"2007-05-12 01:00:00",6
+"2007-05-12 02:00:00",6
+"2007-05-12 03:00:00",6
+"2007-05-12 04:00:00",6
+"2007-05-12 05:00:00",6
+"2007-05-12 06:00:00",6
+"2007-05-12 07:00:00",6
+"2007-05-12 08:00:00",6
+"2007-05-12 09:00:00",6
+"2007-05-12 10:00:00",6
+"2007-05-12 11:00:00",6
+"2007-05-12 12:00:00",6
+"2007-05-12 13:00:00",6
+"2007-05-12 14:00:00",6
+"2007-05-12 15:00:00",6
+"2007-05-12 16:00:00",6
+"2007-05-12 17:00:00",6
+"2007-05-12 18:00:00",6
+"2007-05-12 19:00:00",6
+"2007-05-12 20:00:00",6
+"2007-05-12 21:00:00",6
+"2007-05-12 22:00:00",6
+"2007-05-12 23:00:00",6
+"2007-05-13 00:00:00",6
+"2007-05-13 01:00:00",7
+"2007-05-13 02:00:00",7
+"2007-05-13 03:00:00",7
+"2007-05-13 04:00:00",7
+"2007-05-13 05:00:00",7
+"2007-05-13 06:00:00",7
+"2007-05-13 07:00:00",7
+"2007-05-13 08:00:00",7
+"2007-05-13 09:00:00",7
+"2007-05-13 10:00:00",7
+"2007-05-13 11:00:00",7
+"2007-05-13 12:00:00",7
+"2007-05-13 13:00:00",7
+"2007-05-13 14:00:00",7
+"2007-05-13 15:00:00",7
+"2007-05-13 16:00:00",7
+"2007-05-13 17:00:00",7
+"2007-05-13 18:00:00",7
+"2007-05-13 19:00:00",7
+"2007-05-13 20:00:00",7
+"2007-05-13 21:00:00",7
+"2007-05-13 22:00:00",7
+"2007-05-13 23:00:00",7
+"2007-05-14 00:00:00",7
+"2007-05-14 01:00:00",1
+"2007-05-14 02:00:00",1
+"2007-05-14 03:00:00",1
+"2007-05-14 04:00:00",1
+"2007-05-14 05:00:00",1
+"2007-05-14 06:00:00",1
+"2007-05-14 07:00:00",1
+"2007-05-14 08:00:00",1
+"2007-05-14 09:00:00",1
+"2007-05-14 10:00:00",1
+"2007-05-14 11:00:00",1
+"2007-05-14 12:00:00",1
+"2007-05-14 13:00:00",1
+"2007-05-14 14:00:00",1
+"2007-05-14 15:00:00",1
+"2007-05-14 16:00:00",1
+"2007-05-14 17:00:00",1
+"2007-05-14 18:00:00",1
+"2007-05-14 19:00:00",1
+"2007-05-14 20:00:00",1
+"2007-05-14 21:00:00",1
+"2007-05-14 22:00:00",1
+"2007-05-14 23:00:00",1
+"2007-05-15 00:00:00",1
+"2007-05-15 01:00:00",2
+"2007-05-15 02:00:00",2
+"2007-05-15 03:00:00",2
+"2007-05-15 04:00:00",2
+"2007-05-15 05:00:00",2
+"2007-05-15 06:00:00",2
+"2007-05-15 07:00:00",2
+"2007-05-15 08:00:00",2
+"2007-05-15 09:00:00",2
+"2007-05-15 10:00:00",2
+"2007-05-15 11:00:00",2
+"2007-05-15 12:00:00",2
+"2007-05-15 13:00:00",2
+"2007-05-15 14:00:00",2
+"2007-05-15 15:00:00",2
+"2007-05-15 16:00:00",2
+"2007-05-15 17:00:00",2
+"2007-05-15 18:00:00",2
+"2007-05-15 19:00:00",2
+"2007-05-15 20:00:00",2
+"2007-05-15 21:00:00",2
+"2007-05-15 22:00:00",2
+"2007-05-15 23:00:00",2
+"2007-05-16 00:00:00",2
+"2007-05-16 01:00:00",3
+"2007-05-16 02:00:00",3
+"2007-05-16 03:00:00",3
+"2007-05-16 04:00:00",3
+"2007-05-16 05:00:00",3
+"2007-05-16 06:00:00",3
+"2007-05-16 07:00:00",3
+"2007-05-16 08:00:00",3
+"2007-05-16 09:00:00",3
+"2007-05-16 10:00:00",3
+"2007-05-16 11:00:00",3
+"2007-05-16 12:00:00",3
+"2007-05-16 13:00:00",3
+"2007-05-16 14:00:00",3
+"2007-05-16 15:00:00",3
+"2007-05-16 16:00:00",3
+"2007-05-16 17:00:00",3
+"2007-05-16 18:00:00",3
+"2007-05-16 19:00:00",3
+"2007-05-16 20:00:00",3
+"2007-05-16 21:00:00",3
+"2007-05-16 22:00:00",3
+"2007-05-16 23:00:00",3
+"2007-05-17 00:00:00",3
+"2007-05-17 01:00:00",4
+"2007-05-17 02:00:00",4
+"2007-05-17 03:00:00",4
+"2007-05-17 04:00:00",4
+"2007-05-17 05:00:00",4
+"2007-05-17 06:00:00",4
+"2007-05-17 07:00:00",4
+"2007-05-17 08:00:00",4
+"2007-05-17 09:00:00",4
+"2007-05-17 10:00:00",4
+"2007-05-17 11:00:00",4
+"2007-05-17 12:00:00",4
+"2007-05-17 13:00:00",4
+"2007-05-17 14:00:00",4
+"2007-05-17 15:00:00",4
+"2007-05-17 16:00:00",4
+"2007-05-17 17:00:00",4
+"2007-05-17 18:00:00",4
+"2007-05-17 19:00:00",4
+"2007-05-17 20:00:00",4
+"2007-05-17 21:00:00",4
+"2007-05-17 22:00:00",4
+"2007-05-17 23:00:00",4
+"2007-05-18 00:00:00",4
+"2007-05-18 01:00:00",5
+"2007-05-18 02:00:00",5
+"2007-05-18 03:00:00",5
+"2007-05-18 04:00:00",5
+"2007-05-18 05:00:00",5
+"2007-05-18 06:00:00",5
+"2007-05-18 07:00:00",5
+"2007-05-18 08:00:00",5
+"2007-05-18 09:00:00",5
+"2007-05-18 10:00:00",5
+"2007-05-18 11:00:00",5
+"2007-05-18 12:00:00",5
+"2007-05-18 13:00:00",5
+"2007-05-18 14:00:00",5
+"2007-05-18 15:00:00",5
+"2007-05-18 16:00:00",5
+"2007-05-18 17:00:00",5
+"2007-05-18 18:00:00",5
+"2007-05-18 19:00:00",5
+"2007-05-18 20:00:00",5
+"2007-05-18 21:00:00",5
+"2007-05-18 22:00:00",5
+"2007-05-18 23:00:00",5
+"2007-05-19 00:00:00",5
+"2007-05-19 01:00:00",6
+"2007-05-19 02:00:00",6
+"2007-05-19 03:00:00",6
+"2007-05-19 04:00:00",6
+"2007-05-19 05:00:00",6
+"2007-05-19 06:00:00",6
+"2007-05-19 07:00:00",6
+"2007-05-19 08:00:00",6
+"2007-05-19 09:00:00",6
+"2007-05-19 10:00:00",6
+"2007-05-19 11:00:00",6
+"2007-05-19 12:00:00",6
+"2007-05-19 13:00:00",6
+"2007-05-19 14:00:00",6
+"2007-05-19 15:00:00",6
+"2007-05-19 16:00:00",6
+"2007-05-19 17:00:00",6
+"2007-05-19 18:00:00",6
+"2007-05-19 19:00:00",6
+"2007-05-19 20:00:00",6
+"2007-05-19 21:00:00",6
+"2007-05-19 22:00:00",6
+"2007-05-19 23:00:00",6
+"2007-05-20 00:00:00",6
+"2007-05-20 01:00:00",7
+"2007-05-20 02:00:00",7
+"2007-05-20 03:00:00",7
+"2007-05-20 04:00:00",7
+"2007-05-20 05:00:00",7
+"2007-05-20 06:00:00",7
+"2007-05-20 07:00:00",7
+"2007-05-20 08:00:00",7
+"2007-05-20 09:00:00",7
+"2007-05-20 10:00:00",7
+"2007-05-20 11:00:00",7
+"2007-05-20 12:00:00",7
+"2007-05-20 13:00:00",7
+"2007-05-20 14:00:00",7
+"2007-05-20 15:00:00",7
+"2007-05-20 16:00:00",7
+"2007-05-20 17:00:00",7
+"2007-05-20 18:00:00",7
+"2007-05-20 19:00:00",7
+"2007-05-20 20:00:00",7
+"2007-05-20 21:00:00",7
+"2007-05-20 22:00:00",7
+"2007-05-20 23:00:00",7
+"2007-05-21 00:00:00",7
+"2007-05-21 01:00:00",1
+"2007-05-21 02:00:00",1
+"2007-05-21 03:00:00",1
+"2007-05-21 04:00:00",1
+"2007-05-21 05:00:00",1
+"2007-05-21 06:00:00",1
+"2007-05-21 07:00:00",1
+"2007-05-21 08:00:00",1
+"2007-05-21 09:00:00",1
+"2007-05-21 10:00:00",1
+"2007-05-21 11:00:00",1
+"2007-05-21 12:00:00",1
+"2007-05-21 13:00:00",1
+"2007-05-21 14:00:00",1
+"2007-05-21 15:00:00",1
+"2007-05-21 16:00:00",1
+"2007-05-21 17:00:00",1
+"2007-05-21 18:00:00",1
+"2007-05-21 19:00:00",1
+"2007-05-21 20:00:00",1
+"2007-05-21 21:00:00",1
+"2007-05-21 22:00:00",1
+"2007-05-21 23:00:00",1
+"2007-05-22 00:00:00",1
+"2007-05-22 01:00:00",2
+"2007-05-22 02:00:00",2
+"2007-05-22 03:00:00",2
+"2007-05-22 04:00:00",2
+"2007-05-22 05:00:00",2
+"2007-05-22 06:00:00",2
+"2007-05-22 07:00:00",2
+"2007-05-22 08:00:00",2
+"2007-05-22 09:00:00",2
+"2007-05-22 10:00:00",2
+"2007-05-22 11:00:00",2
+"2007-05-22 12:00:00",2
+"2007-05-22 13:00:00",2
+"2007-05-22 14:00:00",2
+"2007-05-22 15:00:00",2
+"2007-05-22 16:00:00",2
+"2007-05-22 17:00:00",2
+"2007-05-22 18:00:00",2
+"2007-05-22 19:00:00",2
+"2007-05-22 20:00:00",2
+"2007-05-22 21:00:00",2
+"2007-05-22 22:00:00",2
+"2007-05-22 23:00:00",2
+"2007-05-23 00:00:00",2
+"2007-05-23 01:00:00",3
+"2007-05-23 02:00:00",3
+"2007-05-23 03:00:00",3
+"2007-05-23 04:00:00",3
+"2007-05-23 05:00:00",3
+"2007-05-23 06:00:00",3
+"2007-05-23 07:00:00",3
+"2007-05-23 08:00:00",3
+"2007-05-23 09:00:00",3
+"2007-05-23 10:00:00",3
+"2007-05-23 11:00:00",3
+"2007-05-23 12:00:00",3
+"2007-05-23 13:00:00",3
+"2007-05-23 14:00:00",3
+"2007-05-23 15:00:00",3
+"2007-05-23 16:00:00",3
+"2007-05-23 17:00:00",3
+"2007-05-23 18:00:00",3
+"2007-05-23 19:00:00",3
+"2007-05-23 20:00:00",3
+"2007-05-23 21:00:00",3
+"2007-05-23 22:00:00",3
+"2007-05-23 23:00:00",3
+"2007-05-24 00:00:00",3
+"2007-05-24 01:00:00",4
+"2007-05-24 02:00:00",4
+"2007-05-24 03:00:00",4
+"2007-05-24 04:00:00",4
+"2007-05-24 05:00:00",4
+"2007-05-24 06:00:00",4
+"2007-05-24 07:00:00",4
+"2007-05-24 08:00:00",4
+"2007-05-24 09:00:00",4
+"2007-05-24 10:00:00",4
+"2007-05-24 11:00:00",4
+"2007-05-24 12:00:00",4
+"2007-05-24 13:00:00",4
+"2007-05-24 14:00:00",4
+"2007-05-24 15:00:00",4
+"2007-05-24 16:00:00",4
+"2007-05-24 17:00:00",4
+"2007-05-24 18:00:00",4
+"2007-05-24 19:00:00",4
+"2007-05-24 20:00:00",4
+"2007-05-24 21:00:00",4
+"2007-05-24 22:00:00",4
+"2007-05-24 23:00:00",4
+"2007-05-25 00:00:00",4
+"2007-05-25 01:00:00",5
+"2007-05-25 02:00:00",5
+"2007-05-25 03:00:00",5
+"2007-05-25 04:00:00",5
+"2007-05-25 05:00:00",5
+"2007-05-25 06:00:00",5
+"2007-05-25 07:00:00",5
+"2007-05-25 08:00:00",5
+"2007-05-25 09:00:00",5
+"2007-05-25 10:00:00",5
+"2007-05-25 11:00:00",5
+"2007-05-25 12:00:00",5
+"2007-05-25 13:00:00",5
+"2007-05-25 14:00:00",5
+"2007-05-25 15:00:00",5
+"2007-05-25 16:00:00",5
+"2007-05-25 17:00:00",5
+"2007-05-25 18:00:00",5
+"2007-05-25 19:00:00",5
+"2007-05-25 20:00:00",5
+"2007-05-25 21:00:00",5
+"2007-05-25 22:00:00",5
+"2007-05-25 23:00:00",5
+"2007-05-26 00:00:00",5
+"2007-05-26 01:00:00",6
+"2007-05-26 02:00:00",6
+"2007-05-26 03:00:00",6
+"2007-05-26 04:00:00",6
+"2007-05-26 05:00:00",6
+"2007-05-26 06:00:00",6
+"2007-05-26 07:00:00",6
+"2007-05-26 08:00:00",6
+"2007-05-26 09:00:00",6
+"2007-05-26 10:00:00",6
+"2007-05-26 11:00:00",6
+"2007-05-26 12:00:00",6
+"2007-05-26 13:00:00",6
+"2007-05-26 14:00:00",6
+"2007-05-26 15:00:00",6
+"2007-05-26 16:00:00",6
+"2007-05-26 17:00:00",6
+"2007-05-26 18:00:00",6
+"2007-05-26 19:00:00",6
+"2007-05-26 20:00:00",6
+"2007-05-26 21:00:00",6
+"2007-05-26 22:00:00",6
+"2007-05-26 23:00:00",6
+"2007-05-27 00:00:00",6
+"2007-05-27 01:00:00",7
+"2007-05-27 02:00:00",7
+"2007-05-27 03:00:00",7
+"2007-05-27 04:00:00",7
+"2007-05-27 05:00:00",7
+"2007-05-27 06:00:00",7
+"2007-05-27 07:00:00",7
+"2007-05-27 08:00:00",7
+"2007-05-27 09:00:00",7
+"2007-05-27 10:00:00",7
+"2007-05-27 11:00:00",7
+"2007-05-27 12:00:00",7
+"2007-05-27 13:00:00",7
+"2007-05-27 14:00:00",7
+"2007-05-27 15:00:00",7
+"2007-05-27 16:00:00",7
+"2007-05-27 17:00:00",7
+"2007-05-27 18:00:00",7
+"2007-05-27 19:00:00",7
+"2007-05-27 20:00:00",7
+"2007-05-27 21:00:00",7
+"2007-05-27 22:00:00",7
+"2007-05-27 23:00:00",7
+"2007-05-28 00:00:00",7
+"2007-05-28 01:00:00",1
+"2007-05-28 02:00:00",1
+"2007-05-28 03:00:00",1
+"2007-05-28 04:00:00",1
+"2007-05-28 05:00:00",1
+"2007-05-28 06:00:00",1
+"2007-05-28 07:00:00",1
+"2007-05-28 08:00:00",1
+"2007-05-28 09:00:00",1
+"2007-05-28 10:00:00",1
+"2007-05-28 11:00:00",1
+"2007-05-28 12:00:00",1
+"2007-05-28 13:00:00",1
+"2007-05-28 14:00:00",1
+"2007-05-28 15:00:00",1
+"2007-05-28 16:00:00",1
+"2007-05-28 17:00:00",1
+"2007-05-28 18:00:00",1
+"2007-05-28 19:00:00",1
+"2007-05-28 20:00:00",1
+"2007-05-28 21:00:00",1
+"2007-05-28 22:00:00",1
+"2007-05-28 23:00:00",1
+"2007-05-29 00:00:00",1
+"2007-05-29 01:00:00",2
+"2007-05-29 02:00:00",2
+"2007-05-29 03:00:00",2
+"2007-05-29 04:00:00",2
+"2007-05-29 05:00:00",2
+"2007-05-29 06:00:00",2
+"2007-05-29 07:00:00",2
+"2007-05-29 08:00:00",2
+"2007-05-29 09:00:00",2
+"2007-05-29 10:00:00",2
+"2007-05-29 11:00:00",2
+"2007-05-29 12:00:00",2
+"2007-05-29 13:00:00",2
+"2007-05-29 14:00:00",2
+"2007-05-29 15:00:00",2
+"2007-05-29 16:00:00",2
+"2007-05-29 17:00:00",2
+"2007-05-29 18:00:00",2
+"2007-05-29 19:00:00",2
+"2007-05-29 20:00:00",2
+"2007-05-29 21:00:00",2
+"2007-05-29 22:00:00",2
+"2007-05-29 23:00:00",2
+"2007-05-30 00:00:00",2
+"2007-05-30 01:00:00",3
+"2007-05-30 02:00:00",3
+"2007-05-30 03:00:00",3
+"2007-05-30 04:00:00",3
+"2007-05-30 05:00:00",3
+"2007-05-30 06:00:00",3
+"2007-05-30 07:00:00",3
+"2007-05-30 08:00:00",3
+"2007-05-30 09:00:00",3
+"2007-05-30 10:00:00",3
+"2007-05-30 11:00:00",3
+"2007-05-30 12:00:00",3
+"2007-05-30 13:00:00",3
+"2007-05-30 14:00:00",3
+"2007-05-30 15:00:00",3
+"2007-05-30 16:00:00",3
+"2007-05-30 17:00:00",3
+"2007-05-30 18:00:00",3
+"2007-05-30 19:00:00",3
+"2007-05-30 20:00:00",3
+"2007-05-30 21:00:00",3
+"2007-05-30 22:00:00",3
+"2007-05-30 23:00:00",3
+"2007-05-31 00:00:00",3
+"2007-05-31 01:00:00",4
+"2007-05-31 02:00:00",4
+"2007-05-31 03:00:00",4
+"2007-05-31 04:00:00",4
+"2007-05-31 05:00:00",4
+"2007-05-31 06:00:00",4
+"2007-05-31 07:00:00",4
+"2007-05-31 08:00:00",4
+"2007-05-31 09:00:00",4
+"2007-05-31 10:00:00",4
+"2007-05-31 11:00:00",4
+"2007-05-31 12:00:00",4
+"2007-05-31 13:00:00",4
+"2007-05-31 14:00:00",4
+"2007-05-31 15:00:00",4
+"2007-05-31 16:00:00",4
+"2007-05-31 17:00:00",4
+"2007-05-31 18:00:00",4
+"2007-05-31 19:00:00",4
+"2007-05-31 20:00:00",4
+"2007-05-31 21:00:00",4
+"2007-05-31 22:00:00",4
+"2007-05-31 23:00:00",4
+"2007-06-01 00:00:00",4
+"2007-06-01 01:00:00",5
+"2007-06-01 02:00:00",5
+"2007-06-01 03:00:00",5
+"2007-06-01 04:00:00",5
+"2007-06-01 05:00:00",5
+"2007-06-01 06:00:00",5
+"2007-06-01 07:00:00",5
+"2007-06-01 08:00:00",5
+"2007-06-01 09:00:00",5
+"2007-06-01 10:00:00",5
+"2007-06-01 11:00:00",5
+"2007-06-01 12:00:00",5
+"2007-06-01 13:00:00",5
+"2007-06-01 14:00:00",5
+"2007-06-01 15:00:00",5
+"2007-06-01 16:00:00",5
+"2007-06-01 17:00:00",5
+"2007-06-01 18:00:00",5
+"2007-06-01 19:00:00",5
+"2007-06-01 20:00:00",5
+"2007-06-01 21:00:00",5
+"2007-06-01 22:00:00",5
+"2007-06-01 23:00:00",5
+"2007-06-02 00:00:00",5
+"2007-06-02 01:00:00",6
+"2007-06-02 02:00:00",6
+"2007-06-02 03:00:00",6
+"2007-06-02 04:00:00",6
+"2007-06-02 05:00:00",6
+"2007-06-02 06:00:00",6
+"2007-06-02 07:00:00",6
+"2007-06-02 08:00:00",6
+"2007-06-02 09:00:00",6
+"2007-06-02 10:00:00",6
+"2007-06-02 11:00:00",6
+"2007-06-02 12:00:00",6
+"2007-06-02 13:00:00",6
+"2007-06-02 14:00:00",6
+"2007-06-02 15:00:00",6
+"2007-06-02 16:00:00",6
+"2007-06-02 17:00:00",6
+"2007-06-02 18:00:00",6
+"2007-06-02 19:00:00",6
+"2007-06-02 20:00:00",6
+"2007-06-02 21:00:00",6
+"2007-06-02 22:00:00",6
+"2007-06-02 23:00:00",6
+"2007-06-03 00:00:00",6
+"2007-06-03 01:00:00",7
+"2007-06-03 02:00:00",7
+"2007-06-03 03:00:00",7
+"2007-06-03 04:00:00",7
+"2007-06-03 05:00:00",7
+"2007-06-03 06:00:00",7
+"2007-06-03 07:00:00",7
+"2007-06-03 08:00:00",7
+"2007-06-03 09:00:00",7
+"2007-06-03 10:00:00",7
+"2007-06-03 11:00:00",7
+"2007-06-03 12:00:00",7
+"2007-06-03 13:00:00",7
+"2007-06-03 14:00:00",7
+"2007-06-03 15:00:00",7
+"2007-06-03 16:00:00",7
+"2007-06-03 17:00:00",7
+"2007-06-03 18:00:00",7
+"2007-06-03 19:00:00",7
+"2007-06-03 20:00:00",7
+"2007-06-03 21:00:00",7
+"2007-06-03 22:00:00",7
+"2007-06-03 23:00:00",7
+"2007-06-04 00:00:00",7
+"2007-06-04 01:00:00",1
+"2007-06-04 02:00:00",1
+"2007-06-04 03:00:00",1
+"2007-06-04 04:00:00",1
+"2007-06-04 05:00:00",1
+"2007-06-04 06:00:00",1
+"2007-06-04 07:00:00",1
+"2007-06-04 08:00:00",1
+"2007-06-04 09:00:00",1
+"2007-06-04 10:00:00",1
+"2007-06-04 11:00:00",1
+"2007-06-04 12:00:00",1
+"2007-06-04 13:00:00",1
+"2007-06-04 14:00:00",1
+"2007-06-04 15:00:00",1
+"2007-06-04 16:00:00",1
+"2007-06-04 17:00:00",1
+"2007-06-04 18:00:00",1
+"2007-06-04 19:00:00",1
+"2007-06-04 20:00:00",1
+"2007-06-04 21:00:00",1
+"2007-06-04 22:00:00",1
+"2007-06-04 23:00:00",1
+"2007-06-05 00:00:00",1
+"2007-06-05 01:00:00",2
+"2007-06-05 02:00:00",2
+"2007-06-05 03:00:00",2
+"2007-06-05 04:00:00",2
+"2007-06-05 05:00:00",2
+"2007-06-05 06:00:00",2
+"2007-06-05 07:00:00",2
+"2007-06-05 08:00:00",2
+"2007-06-05 09:00:00",2
+"2007-06-05 10:00:00",2
+"2007-06-05 11:00:00",2
+"2007-06-05 12:00:00",2
+"2007-06-05 13:00:00",2
+"2007-06-05 14:00:00",2
+"2007-06-05 15:00:00",2
+"2007-06-05 16:00:00",2
+"2007-06-05 17:00:00",2
+"2007-06-05 18:00:00",2
+"2007-06-05 19:00:00",2
+"2007-06-05 20:00:00",2
+"2007-06-05 21:00:00",2
+"2007-06-05 22:00:00",2
+"2007-06-05 23:00:00",2
+"2007-06-06 00:00:00",2
+"2007-06-06 01:00:00",3
+"2007-06-06 02:00:00",3
+"2007-06-06 03:00:00",3
+"2007-06-06 04:00:00",3
+"2007-06-06 05:00:00",3
+"2007-06-06 06:00:00",3
+"2007-06-06 07:00:00",3
+"2007-06-06 08:00:00",3
+"2007-06-06 09:00:00",3
+"2007-06-06 10:00:00",3
+"2007-06-06 11:00:00",3
+"2007-06-06 12:00:00",3
+"2007-06-06 13:00:00",3
+"2007-06-06 14:00:00",3
+"2007-06-06 15:00:00",3
+"2007-06-06 16:00:00",3
+"2007-06-06 17:00:00",3
+"2007-06-06 18:00:00",3
+"2007-06-06 19:00:00",3
+"2007-06-06 20:00:00",3
+"2007-06-06 21:00:00",3
+"2007-06-06 22:00:00",3
+"2007-06-06 23:00:00",3
+"2007-06-07 00:00:00",3
+"2007-06-07 01:00:00",4
+"2007-06-07 02:00:00",4
+"2007-06-07 03:00:00",4
+"2007-06-07 04:00:00",4
+"2007-06-07 05:00:00",4
+"2007-06-07 06:00:00",4
+"2007-06-07 07:00:00",4
+"2007-06-07 08:00:00",4
+"2007-06-07 09:00:00",4
+"2007-06-07 10:00:00",4
+"2007-06-07 11:00:00",4
+"2007-06-07 12:00:00",4
+"2007-06-07 13:00:00",4
+"2007-06-07 14:00:00",4
+"2007-06-07 15:00:00",4
+"2007-06-07 16:00:00",4
+"2007-06-07 17:00:00",4
+"2007-06-07 18:00:00",4
+"2007-06-07 19:00:00",4
+"2007-06-07 20:00:00",4
+"2007-06-07 21:00:00",4
+"2007-06-07 22:00:00",4
+"2007-06-07 23:00:00",4
+"2007-06-08 00:00:00",4
+"2007-06-08 01:00:00",5
+"2007-06-08 02:00:00",5
+"2007-06-08 03:00:00",5
+"2007-06-08 04:00:00",5
+"2007-06-08 05:00:00",5
+"2007-06-08 06:00:00",5
+"2007-06-08 07:00:00",5
+"2007-06-08 08:00:00",5
+"2007-06-08 09:00:00",5
+"2007-06-08 10:00:00",5
+"2007-06-08 11:00:00",5
+"2007-06-08 12:00:00",5
+"2007-06-08 13:00:00",5
+"2007-06-08 14:00:00",5
+"2007-06-08 15:00:00",5
+"2007-06-08 16:00:00",5
+"2007-06-08 17:00:00",5
+"2007-06-08 18:00:00",5
+"2007-06-08 19:00:00",5
+"2007-06-08 20:00:00",5
+"2007-06-08 21:00:00",5
+"2007-06-08 22:00:00",5
+"2007-06-08 23:00:00",5
+"2007-06-09 00:00:00",5
+"2007-06-09 01:00:00",6
+"2007-06-09 02:00:00",6
+"2007-06-09 03:00:00",6
+"2007-06-09 04:00:00",6
+"2007-06-09 05:00:00",6
+"2007-06-09 06:00:00",6
+"2007-06-09 07:00:00",6
+"2007-06-09 08:00:00",6
+"2007-06-09 09:00:00",6
+"2007-06-09 10:00:00",6
+"2007-06-09 11:00:00",6
+"2007-06-09 12:00:00",6
+"2007-06-09 13:00:00",6
+"2007-06-09 14:00:00",6
+"2007-06-09 15:00:00",6
+"2007-06-09 16:00:00",6
+"2007-06-09 17:00:00",6
+"2007-06-09 18:00:00",6
+"2007-06-09 19:00:00",6
+"2007-06-09 20:00:00",6
+"2007-06-09 21:00:00",6
+"2007-06-09 22:00:00",6
+"2007-06-09 23:00:00",6
+"2007-06-10 00:00:00",6
+"2007-06-10 01:00:00",7
+"2007-06-10 02:00:00",7
+"2007-06-10 03:00:00",7
+"2007-06-10 04:00:00",7
+"2007-06-10 05:00:00",7
+"2007-06-10 06:00:00",7
+"2007-06-10 07:00:00",7
+"2007-06-10 08:00:00",7
+"2007-06-10 09:00:00",7
+"2007-06-10 10:00:00",7
+"2007-06-10 11:00:00",7
+"2007-06-10 12:00:00",7
+"2007-06-10 13:00:00",7
+"2007-06-10 14:00:00",7
+"2007-06-10 15:00:00",7
+"2007-06-10 16:00:00",7
+"2007-06-10 17:00:00",7
+"2007-06-10 18:00:00",7
+"2007-06-10 19:00:00",7
+"2007-06-10 20:00:00",7
+"2007-06-10 21:00:00",7
+"2007-06-10 22:00:00",7
+"2007-06-10 23:00:00",7
+"2007-06-11 00:00:00",7
+"2007-06-11 01:00:00",1
+"2007-06-11 02:00:00",1
+"2007-06-11 03:00:00",1
+"2007-06-11 04:00:00",1
+"2007-06-11 05:00:00",1
+"2007-06-11 06:00:00",1
+"2007-06-11 07:00:00",1
+"2007-06-11 08:00:00",1
+"2007-06-11 09:00:00",1
+"2007-06-11 10:00:00",1
+"2007-06-11 11:00:00",1
+"2007-06-11 12:00:00",1
+"2007-06-11 13:00:00",1
+"2007-06-11 14:00:00",1
+"2007-06-11 15:00:00",1
+"2007-06-11 16:00:00",1
+"2007-06-11 17:00:00",1
+"2007-06-11 18:00:00",1
+"2007-06-11 19:00:00",1
+"2007-06-11 20:00:00",1
+"2007-06-11 21:00:00",1
+"2007-06-11 22:00:00",1
+"2007-06-11 23:00:00",1
+"2007-06-12 00:00:00",1
+"2007-06-12 01:00:00",2
+"2007-06-12 02:00:00",2
+"2007-06-12 03:00:00",2
+"2007-06-12 04:00:00",2
+"2007-06-12 05:00:00",2
+"2007-06-12 06:00:00",2
+"2007-06-12 07:00:00",2
+"2007-06-12 08:00:00",2
+"2007-06-12 09:00:00",2
+"2007-06-12 10:00:00",2
+"2007-06-12 11:00:00",2
+"2007-06-12 12:00:00",2
+"2007-06-12 13:00:00",2
+"2007-06-12 14:00:00",2
+"2007-06-12 15:00:00",2
+"2007-06-12 16:00:00",2
+"2007-06-12 17:00:00",2
+"2007-06-12 18:00:00",2
+"2007-06-12 19:00:00",2
+"2007-06-12 20:00:00",2
+"2007-06-12 21:00:00",2
+"2007-06-12 22:00:00",2
+"2007-06-12 23:00:00",2
+"2007-06-13 00:00:00",2
+"2007-06-13 01:00:00",3
+"2007-06-13 02:00:00",3
+"2007-06-13 03:00:00",3
+"2007-06-13 04:00:00",3
+"2007-06-13 05:00:00",3
+"2007-06-13 06:00:00",3
+"2007-06-13 07:00:00",3
+"2007-06-13 08:00:00",3
+"2007-06-13 09:00:00",3
+"2007-06-13 10:00:00",3
+"2007-06-13 11:00:00",3
+"2007-06-13 12:00:00",3
+"2007-06-13 13:00:00",3
+"2007-06-13 14:00:00",3
+"2007-06-13 15:00:00",3
+"2007-06-13 16:00:00",3
+"2007-06-13 17:00:00",3
+"2007-06-13 18:00:00",3
+"2007-06-13 19:00:00",3
+"2007-06-13 20:00:00",3
+"2007-06-13 21:00:00",3
+"2007-06-13 22:00:00",3
+"2007-06-13 23:00:00",3
+"2007-06-14 00:00:00",3
+"2007-06-14 01:00:00",4
+"2007-06-14 02:00:00",4
+"2007-06-14 03:00:00",4
+"2007-06-14 04:00:00",4
+"2007-06-14 05:00:00",4
+"2007-06-14 06:00:00",4
+"2007-06-14 07:00:00",4
+"2007-06-14 08:00:00",4
+"2007-06-14 09:00:00",4
+"2007-06-14 10:00:00",4
+"2007-06-14 11:00:00",4
+"2007-06-14 12:00:00",4
+"2007-06-14 13:00:00",4
+"2007-06-14 14:00:00",4
+"2007-06-14 15:00:00",4
+"2007-06-14 16:00:00",4
+"2007-06-14 17:00:00",4
+"2007-06-14 18:00:00",4
+"2007-06-14 19:00:00",4
+"2007-06-14 20:00:00",4
+"2007-06-14 21:00:00",4
+"2007-06-14 22:00:00",4
+"2007-06-14 23:00:00",4
+"2007-06-15 00:00:00",4
+"2007-06-15 01:00:00",5
+"2007-06-15 02:00:00",5
+"2007-06-15 03:00:00",5
+"2007-06-15 04:00:00",5
+"2007-06-15 05:00:00",5
+"2007-06-15 06:00:00",5
+"2007-06-15 07:00:00",5
+"2007-06-15 08:00:00",5
+"2007-06-15 09:00:00",5
+"2007-06-15 10:00:00",5
+"2007-06-15 11:00:00",5
+"2007-06-15 12:00:00",5
+"2007-06-15 13:00:00",5
+"2007-06-15 14:00:00",5
+"2007-06-15 15:00:00",5
+"2007-06-15 16:00:00",5
+"2007-06-15 17:00:00",5
+"2007-06-15 18:00:00",5
+"2007-06-15 19:00:00",5
+"2007-06-15 20:00:00",5
+"2007-06-15 21:00:00",5
+"2007-06-15 22:00:00",5
+"2007-06-15 23:00:00",5
+"2007-06-16 00:00:00",5
+"2007-06-16 01:00:00",6
+"2007-06-16 02:00:00",6
+"2007-06-16 03:00:00",6
+"2007-06-16 04:00:00",6
+"2007-06-16 05:00:00",6
+"2007-06-16 06:00:00",6
+"2007-06-16 07:00:00",6
+"2007-06-16 08:00:00",6
+"2007-06-16 09:00:00",6
+"2007-06-16 10:00:00",6
+"2007-06-16 11:00:00",6
+"2007-06-16 12:00:00",6
+"2007-06-16 13:00:00",6
+"2007-06-16 14:00:00",6
+"2007-06-16 15:00:00",6
+"2007-06-16 16:00:00",6
+"2007-06-16 17:00:00",6
+"2007-06-16 18:00:00",6
+"2007-06-16 19:00:00",6
+"2007-06-16 20:00:00",6
+"2007-06-16 21:00:00",6
+"2007-06-16 22:00:00",6
+"2007-06-16 23:00:00",6
+"2007-06-17 00:00:00",6
+"2007-06-17 01:00:00",7
+"2007-06-17 02:00:00",7
+"2007-06-17 03:00:00",7
+"2007-06-17 04:00:00",7
+"2007-06-17 05:00:00",7
+"2007-06-17 06:00:00",7
+"2007-06-17 07:00:00",7
+"2007-06-17 08:00:00",7
+"2007-06-17 09:00:00",7
+"2007-06-17 10:00:00",7
+"2007-06-17 11:00:00",7
+"2007-06-17 12:00:00",7
+"2007-06-17 13:00:00",7
+"2007-06-17 14:00:00",7
+"2007-06-17 15:00:00",7
+"2007-06-17 16:00:00",7
+"2007-06-17 17:00:00",7
+"2007-06-17 18:00:00",7
+"2007-06-17 19:00:00",7
+"2007-06-17 20:00:00",7
+"2007-06-17 21:00:00",7
+"2007-06-17 22:00:00",7
+"2007-06-17 23:00:00",7
+"2007-06-18 00:00:00",7
+"2007-06-18 01:00:00",1
+"2007-06-18 02:00:00",1
+"2007-06-18 03:00:00",1
+"2007-06-18 04:00:00",1
+"2007-06-18 05:00:00",1
+"2007-06-18 06:00:00",1
+"2007-06-18 07:00:00",1
+"2007-06-18 08:00:00",1
+"2007-06-18 09:00:00",1
+"2007-06-18 10:00:00",1
+"2007-06-18 11:00:00",1
+"2007-06-18 12:00:00",1
+"2007-06-18 13:00:00",1
+"2007-06-18 14:00:00",1
+"2007-06-18 15:00:00",1
+"2007-06-18 16:00:00",1
+"2007-06-18 17:00:00",1
+"2007-06-18 18:00:00",1
+"2007-06-18 19:00:00",1
+"2007-06-18 20:00:00",1
+"2007-06-18 21:00:00",1
+"2007-06-18 22:00:00",1
+"2007-06-18 23:00:00",1
+"2007-06-19 00:00:00",1
+"2007-06-19 01:00:00",2
+"2007-06-19 02:00:00",2
+"2007-06-19 03:00:00",2
+"2007-06-19 04:00:00",2
+"2007-06-19 05:00:00",2
+"2007-06-19 06:00:00",2
+"2007-06-19 07:00:00",2
+"2007-06-19 08:00:00",2
+"2007-06-19 09:00:00",2
+"2007-06-19 10:00:00",2
+"2007-06-19 11:00:00",2
+"2007-06-19 12:00:00",2
+"2007-06-19 13:00:00",2
+"2007-06-19 14:00:00",2
+"2007-06-19 15:00:00",2
+"2007-06-19 16:00:00",2
+"2007-06-19 17:00:00",2
+"2007-06-19 18:00:00",2
+"2007-06-19 19:00:00",2
+"2007-06-19 20:00:00",2
+"2007-06-19 21:00:00",2
+"2007-06-19 22:00:00",2
+"2007-06-19 23:00:00",2
+"2007-06-20 00:00:00",2
+"2007-06-20 01:00:00",3
+"2007-06-20 02:00:00",3
+"2007-06-20 03:00:00",3
+"2007-06-20 04:00:00",3
+"2007-06-20 05:00:00",3
+"2007-06-20 06:00:00",3
+"2007-06-20 07:00:00",3
+"2007-06-20 08:00:00",3
+"2007-06-20 09:00:00",3
+"2007-06-20 10:00:00",3
+"2007-06-20 11:00:00",3
+"2007-06-20 12:00:00",3
+"2007-06-20 13:00:00",3
+"2007-06-20 14:00:00",3
+"2007-06-20 15:00:00",3
+"2007-06-20 16:00:00",3
+"2007-06-20 17:00:00",3
+"2007-06-20 18:00:00",3
+"2007-06-20 19:00:00",3
+"2007-06-20 20:00:00",3
+"2007-06-20 21:00:00",3
+"2007-06-20 22:00:00",3
+"2007-06-20 23:00:00",3
+"2007-06-21 00:00:00",3
+"2007-06-21 01:00:00",4
+"2007-06-21 02:00:00",4
+"2007-06-21 03:00:00",4
+"2007-06-21 04:00:00",4
+"2007-06-21 05:00:00",4
+"2007-06-21 06:00:00",4
+"2007-06-21 07:00:00",4
+"2007-06-21 08:00:00",4
+"2007-06-21 09:00:00",4
+"2007-06-21 10:00:00",4
+"2007-06-21 11:00:00",4
+"2007-06-21 12:00:00",4
+"2007-06-21 13:00:00",4
+"2007-06-21 14:00:00",4
+"2007-06-21 15:00:00",4
+"2007-06-21 16:00:00",4
+"2007-06-21 17:00:00",4
+"2007-06-21 18:00:00",4
+"2007-06-21 19:00:00",4
+"2007-06-21 20:00:00",4
+"2007-06-21 21:00:00",4
+"2007-06-21 22:00:00",4
+"2007-06-21 23:00:00",4
+"2007-06-22 00:00:00",4
+"2007-06-22 01:00:00",5
+"2007-06-22 02:00:00",5
+"2007-06-22 03:00:00",5
+"2007-06-22 04:00:00",5
+"2007-06-22 05:00:00",5
+"2007-06-22 06:00:00",5
+"2007-06-22 07:00:00",5
+"2007-06-22 08:00:00",5
+"2007-06-22 09:00:00",5
+"2007-06-22 10:00:00",5
+"2007-06-22 11:00:00",5
+"2007-06-22 12:00:00",5
+"2007-06-22 13:00:00",5
+"2007-06-22 14:00:00",5
+"2007-06-22 15:00:00",5
+"2007-06-22 16:00:00",5
+"2007-06-22 17:00:00",5
+"2007-06-22 18:00:00",5
+"2007-06-22 19:00:00",5
+"2007-06-22 20:00:00",5
+"2007-06-22 21:00:00",5
+"2007-06-22 22:00:00",5
+"2007-06-22 23:00:00",5
+"2007-06-23 00:00:00",5
+"2007-06-23 01:00:00",6
+"2007-06-23 02:00:00",6
+"2007-06-23 03:00:00",6
+"2007-06-23 04:00:00",6
+"2007-06-23 05:00:00",6
+"2007-06-23 06:00:00",6
+"2007-06-23 07:00:00",6
+"2007-06-23 08:00:00",6
+"2007-06-23 09:00:00",6
+"2007-06-23 10:00:00",6
+"2007-06-23 11:00:00",6
+"2007-06-23 12:00:00",6
+"2007-06-23 13:00:00",6
+"2007-06-23 14:00:00",6
+"2007-06-23 15:00:00",6
+"2007-06-23 16:00:00",6
+"2007-06-23 17:00:00",6
+"2007-06-23 18:00:00",6
+"2007-06-23 19:00:00",6
+"2007-06-23 20:00:00",6
+"2007-06-23 21:00:00",6
+"2007-06-23 22:00:00",6
+"2007-06-23 23:00:00",6
+"2007-06-24 00:00:00",6
+"2007-06-24 01:00:00",7
+"2007-06-24 02:00:00",7
+"2007-06-24 03:00:00",7
+"2007-06-24 04:00:00",7
+"2007-06-24 05:00:00",7
+"2007-06-24 06:00:00",7
+"2007-06-24 07:00:00",7
+"2007-06-24 08:00:00",7
+"2007-06-24 09:00:00",7
+"2007-06-24 10:00:00",7
+"2007-06-24 11:00:00",7
+"2007-06-24 12:00:00",7
+"2007-06-24 13:00:00",7
+"2007-06-24 14:00:00",7
+"2007-06-24 15:00:00",7
+"2007-06-24 16:00:00",7
+"2007-06-24 17:00:00",7
+"2007-06-24 18:00:00",7
+"2007-06-24 19:00:00",7
+"2007-06-24 20:00:00",7
+"2007-06-24 21:00:00",7
+"2007-06-24 22:00:00",7
+"2007-06-24 23:00:00",7
+"2007-06-25 00:00:00",7
+"2007-06-25 01:00:00",1
+"2007-06-25 02:00:00",1
+"2007-06-25 03:00:00",1
+"2007-06-25 04:00:00",1
+"2007-06-25 05:00:00",1
+"2007-06-25 06:00:00",1
+"2007-06-25 07:00:00",1
+"2007-06-25 08:00:00",1
+"2007-06-25 09:00:00",1
+"2007-06-25 10:00:00",1
+"2007-06-25 11:00:00",1
+"2007-06-25 12:00:00",1
+"2007-06-25 13:00:00",1
+"2007-06-25 14:00:00",1
+"2007-06-25 15:00:00",1
+"2007-06-25 16:00:00",1
+"2007-06-25 17:00:00",1
+"2007-06-25 18:00:00",1
+"2007-06-25 19:00:00",1
+"2007-06-25 20:00:00",1
+"2007-06-25 21:00:00",1
+"2007-06-25 22:00:00",1
+"2007-06-25 23:00:00",1
+"2007-06-26 00:00:00",1
+"2007-06-26 01:00:00",2
+"2007-06-26 02:00:00",2
+"2007-06-26 03:00:00",2
+"2007-06-26 04:00:00",2
+"2007-06-26 05:00:00",2
+"2007-06-26 06:00:00",2
+"2007-06-26 07:00:00",2
+"2007-06-26 08:00:00",2
+"2007-06-26 09:00:00",2
+"2007-06-26 10:00:00",2
+"2007-06-26 11:00:00",2
+"2007-06-26 12:00:00",2
+"2007-06-26 13:00:00",2
+"2007-06-26 14:00:00",2
+"2007-06-26 15:00:00",2
+"2007-06-26 16:00:00",2
+"2007-06-26 17:00:00",2
+"2007-06-26 18:00:00",2
+"2007-06-26 19:00:00",2
+"2007-06-26 20:00:00",2
+"2007-06-26 21:00:00",2
+"2007-06-26 22:00:00",2
+"2007-06-26 23:00:00",2
+"2007-06-27 00:00:00",2
+"2007-06-27 01:00:00",3
+"2007-06-27 02:00:00",3
+"2007-06-27 03:00:00",3
+"2007-06-27 04:00:00",3
+"2007-06-27 05:00:00",3
+"2007-06-27 06:00:00",3
+"2007-06-27 07:00:00",3
+"2007-06-27 08:00:00",3
+"2007-06-27 09:00:00",3
+"2007-06-27 10:00:00",3
+"2007-06-27 11:00:00",3
+"2007-06-27 12:00:00",3
+"2007-06-27 13:00:00",3
+"2007-06-27 14:00:00",3
+"2007-06-27 15:00:00",3
+"2007-06-27 16:00:00",3
+"2007-06-27 17:00:00",3
+"2007-06-27 18:00:00",3
+"2007-06-27 19:00:00",3
+"2007-06-27 20:00:00",3
+"2007-06-27 21:00:00",3
+"2007-06-27 22:00:00",3
+"2007-06-27 23:00:00",3
+"2007-06-28 00:00:00",3
+"2007-06-28 01:00:00",4
+"2007-06-28 02:00:00",4
+"2007-06-28 03:00:00",4
+"2007-06-28 04:00:00",4
+"2007-06-28 05:00:00",4
+"2007-06-28 06:00:00",4
+"2007-06-28 07:00:00",4
+"2007-06-28 08:00:00",4
+"2007-06-28 09:00:00",4
+"2007-06-28 10:00:00",4
+"2007-06-28 11:00:00",4
+"2007-06-28 12:00:00",4
+"2007-06-28 13:00:00",4
+"2007-06-28 14:00:00",4
+"2007-06-28 15:00:00",4
+"2007-06-28 16:00:00",4
+"2007-06-28 17:00:00",4
+"2007-06-28 18:00:00",4
+"2007-06-28 19:00:00",4
+"2007-06-28 20:00:00",4
+"2007-06-28 21:00:00",4
+"2007-06-28 22:00:00",4
+"2007-06-28 23:00:00",4
+"2007-06-29 00:00:00",4
+"2007-06-29 01:00:00",5
+"2007-06-29 02:00:00",5
+"2007-06-29 03:00:00",5
+"2007-06-29 04:00:00",5
+"2007-06-29 05:00:00",5
+"2007-06-29 06:00:00",5
+"2007-06-29 07:00:00",5
+"2007-06-29 08:00:00",5
+"2007-06-29 09:00:00",5
+"2007-06-29 10:00:00",5
+"2007-06-29 11:00:00",5
+"2007-06-29 12:00:00",5
+"2007-06-29 13:00:00",5
+"2007-06-29 14:00:00",5
+"2007-06-29 15:00:00",5
+"2007-06-29 16:00:00",5
+"2007-06-29 17:00:00",5
+"2007-06-29 18:00:00",5
+"2007-06-29 19:00:00",5
+"2007-06-29 20:00:00",5
+"2007-06-29 21:00:00",5
+"2007-06-29 22:00:00",5
+"2007-06-29 23:00:00",5
+"2007-06-30 00:00:00",5
+"2007-06-30 01:00:00",6
+"2007-06-30 02:00:00",6
+"2007-06-30 03:00:00",6
+"2007-06-30 04:00:00",6
+"2007-06-30 05:00:00",6
+"2007-06-30 06:00:00",6
+"2007-06-30 07:00:00",6
+"2007-06-30 08:00:00",6
+"2007-06-30 09:00:00",6
+"2007-06-30 10:00:00",6
+"2007-06-30 11:00:00",6
+"2007-06-30 12:00:00",6
+"2007-06-30 13:00:00",6
+"2007-06-30 14:00:00",6
+"2007-06-30 15:00:00",6
+"2007-06-30 16:00:00",6
+"2007-06-30 17:00:00",6
+"2007-06-30 18:00:00",6
+"2007-06-30 19:00:00",6
+"2007-06-30 20:00:00",6
+"2007-06-30 21:00:00",6
+"2007-06-30 22:00:00",6
+"2007-06-30 23:00:00",6
+"2007-07-01 00:00:00",6
+"2007-07-01 01:00:00",7
+"2007-07-01 02:00:00",7
+"2007-07-01 03:00:00",7
+"2007-07-01 04:00:00",7
+"2007-07-01 05:00:00",7
+"2007-07-01 06:00:00",7
+"2007-07-01 07:00:00",7
+"2007-07-01 08:00:00",7
+"2007-07-01 09:00:00",7
+"2007-07-01 10:00:00",7
+"2007-07-01 11:00:00",7
+"2007-07-01 12:00:00",7
+"2007-07-01 13:00:00",7
+"2007-07-01 14:00:00",7
+"2007-07-01 15:00:00",7
+"2007-07-01 16:00:00",7
+"2007-07-01 17:00:00",7
+"2007-07-01 18:00:00",7
+"2007-07-01 19:00:00",7
+"2007-07-01 20:00:00",7
+"2007-07-01 21:00:00",7
+"2007-07-01 22:00:00",7
+"2007-07-01 23:00:00",7
+"2007-07-02 00:00:00",7
diff --git a/pkg/man/talweg-package.Rd b/pkg/man/talweg-package.Rd
new file mode 100644 (file)
index 0000000..feb98f4
--- /dev/null
@@ -0,0 +1,33 @@
+\name{talweg-package}
+\alias{talweg-package}
+\alias{talweg}
+\docType{package}
+
+\title{
+       \packageTitle{talweg}
+}
+
+\description{
+       \packageDescription{talweg}
+}
+
+\details{
+  To start working with this package, use ?computeForecast.
+  Plotting methods are all in 'seealso' section of ?plotError.
+
+  The package R6 is used to abstract data and forecast(er)s implementation from their usage.
+
+       The package devtools could be useful in development stage, since we rely on testthat for
+       unit tests and roxygen2 for documentation. rainbow package is used for some plots:
+  \code{plotFbox()} and \code{plotFilamentsBox()}.
+}
+
+\author{
+       \packageAuthor{talweg}
+
+       Maintainer: \packageMaintainer{talweg}
+}
+
+%\references{
+%      TODO: Literature or other references for background information
+%}
diff --git a/pkg/tests/testthat.R b/pkg/tests/testthat.R
new file mode 100644 (file)
index 0000000..20e05b2
--- /dev/null
@@ -0,0 +1,6 @@
+library(testthat)
+
+#library(devtools); load_all("../talweg") #because some non-exported functions
+library(talweg)
+
+test_check("talweg")
diff --git a/pkg/tests/testthat/helper.R b/pkg/tests/testthat/helper.R
new file mode 100644 (file)
index 0000000..39c768b
--- /dev/null
@@ -0,0 +1,32 @@
+#shorthand: map 1->1, 2->2, 3->3, 4->1, ..., 149->2, 150->3
+I = function(i)
+       (i-1) %% 3 + 1
+
+#MOCK data; NOTE: could be in inst/testdata as well
+getDataTest = function(n)
+{
+       data = Data$new()
+       x = seq(0,9.5,0.1)
+       L = length(x) #96 1/4h
+       s1 = cos(x)
+       s2 = sin(x)
+       s3 = c( s1[1:(L%/%2)] , s2[(L%/%2+1):L] )
+       #sum((s1-s2)^2) == 96
+       #sum((s1-s3)^2) == 58
+       #sum((s2-s3)^2) == 38
+       s = list(s1, s2, s3)
+       series = list()
+       for (i in seq_len(n))
+       {
+               serie = s[[I(i)]] + rnorm(L,sd=0.01)
+               # 10 series with NAs for index 2
+               if (I(i) == 2 && i >= 60 && i<= 90)
+                       serie[sample(seq_len(L),1)] = NA
+               time = as.POSIXct((i-1)*60*60*24+15*60*(1:96), origin="2007-01-01", tz="GMT")
+               exo = runif(4)
+               exo_hat = runif(4)
+               data$append(time=time, value=serie, level_hat=cumsum(serie),
+                       exo=exo, exo_hat=exo_hat)
+       }
+       data
+}
diff --git a/pkg/tests/testthat/test-DateIntegerConv.R b/pkg/tests/testthat/test-DateIntegerConv.R
new file mode 100644 (file)
index 0000000..b3d12fb
--- /dev/null
@@ -0,0 +1,74 @@
+context("Date <--> integer conversions")
+
+ts_data = system.file("testdata","ts_test.csv",package="talweg")
+exo_data = system.file("testdata","exo_test.csv",package="talweg")
+data0 <<- getData(ts_data, exo_data, date_format="%Y-%m-%d %H:%M", limit=Inf)
+data7 <<- getData(ts_data, exo_data, date_format="%Y-%m-%d %H:%M", limit=Inf)
+
+test_that("dateIndexToInteger works as expected",
+{
+       expect_identical( dateIndexToInteger("2007-01-01",data0),   1 )
+       expect_identical( dateIndexToInteger("2007-01-02",data0),   2 )
+       expect_identical( dateIndexToInteger("2007-02-01",data0),  32 )
+       expect_identical( dateIndexToInteger("2007-03-01",data0),  60 )
+       expect_identical( dateIndexToInteger("2007-05-31",data0), 151 )
+
+       expect_identical( dateIndexToInteger("2007-01-01",data7),   1 )
+       expect_identical( dateIndexToInteger("2007-01-02",data7),   2 )
+       expect_identical( dateIndexToInteger("2007-02-01",data7),  32 )
+       expect_identical( dateIndexToInteger("2007-03-01",data7),  60 )
+       expect_identical( dateIndexToInteger("2007-05-31",data7), 151 )
+})
+
+test_that("integerIndexToDate works as expected",
+{
+       expect_identical( integerIndexToDate(  1,data0), as.Date("2007-01-01") )
+       expect_identical( integerIndexToDate(  2,data0), as.Date("2007-01-02") )
+       expect_identical( integerIndexToDate( 32,data0), as.Date("2007-02-01") )
+       expect_identical( integerIndexToDate( 60,data0), as.Date("2007-03-01") )
+       expect_identical( integerIndexToDate(151,data0), as.Date("2007-05-31") )
+
+       expect_identical( integerIndexToDate(  1,data7), as.Date("2007-01-01") )
+       expect_identical( integerIndexToDate(  2,data7), as.Date("2007-01-02") )
+       expect_identical( integerIndexToDate( 32,data7), as.Date("2007-02-01") )
+       expect_identical( integerIndexToDate( 60,data7), as.Date("2007-03-01") )
+       expect_identical( integerIndexToDate(151,data7), as.Date("2007-05-31") )
+})
+
+test_that("dateIndexToInteger(integerIndexToDate) == Id",
+{
+       expect_identical( dateIndexToInteger(integerIndexToDate(  1,data0),data0),   1 )
+       expect_identical( dateIndexToInteger(integerIndexToDate(  1,data7),data7),   1 )
+       expect_identical( dateIndexToInteger(integerIndexToDate(  2,data0),data0),   2 )
+       expect_identical( dateIndexToInteger(integerIndexToDate(  2,data7),data7),   2 )
+       expect_identical( dateIndexToInteger(integerIndexToDate( 32,data0),data0),  32 )
+       expect_identical( dateIndexToInteger(integerIndexToDate( 32,data7),data7),  32 )
+       expect_identical( dateIndexToInteger(integerIndexToDate( 60,data0),data0),  60 )
+       expect_identical( dateIndexToInteger(integerIndexToDate( 60,data7),data7),  60 )
+       expect_identical( dateIndexToInteger(integerIndexToDate(151,data0),data0), 151 )
+       expect_identical( dateIndexToInteger(integerIndexToDate(151,data7),data7), 151 )
+})
+
+test_that("integerIndexToDate(dateIndexToInteger) == Id",
+{
+       expect_identical(integerIndexToDate(dateIndexToInteger("2007-01-01",data0),data0),
+               as.Date("2007-01-01") )
+       expect_identical(integerIndexToDate(dateIndexToInteger("2007-01-01",data7),data7),
+               as.Date("2007-01-01") )
+       expect_identical(integerIndexToDate(dateIndexToInteger("2007-01-02",data0),data0),
+               as.Date("2007-01-02") )
+       expect_identical(integerIndexToDate(dateIndexToInteger("2007-01-02",data7),data7),
+               as.Date("2007-01-02") )
+       expect_identical(integerIndexToDate(dateIndexToInteger("2007-02-01",data0),data0),
+               as.Date("2007-02-01") )
+       expect_identical(integerIndexToDate(dateIndexToInteger("2007-02-01",data0),data0),
+               as.Date("2007-02-01") )
+       expect_identical(integerIndexToDate(dateIndexToInteger("2007-03-01",data0),data0),
+               as.Date("2007-03-01") )
+       expect_identical(integerIndexToDate(dateIndexToInteger("2007-03-01",data0),data0),
+               as.Date("2007-03-01") )
+       expect_identical(integerIndexToDate(dateIndexToInteger("2007-05-31",data0),data0),
+               as.Date("2007-05-31") )
+       expect_identical(integerIndexToDate(dateIndexToInteger("2007-05-31",data0),data0),
+               as.Date("2007-05-31") )
+})
diff --git a/pkg/tests/testthat/test-Forecaster.R b/pkg/tests/testthat/test-Forecaster.R
new file mode 100644 (file)
index 0000000..b961c68
--- /dev/null
@@ -0,0 +1,125 @@
+context("Check that forecasters behave as expected")
+
+ts_data = system.file("testdata","ts_test.csv",package="talweg")
+exo_data = system.file("testdata","exo_test.csv",package="talweg")
+data_p <<- getData(ts_data, exo_data, date_format="%Y-%m-%d %H:%M", limit=Inf)
+#Forecasts from monday to sunday (series 1 to 7)
+indices <<- seq(as.Date("2007-04-02"),as.Date("2007-04-08"),"days")
+pred_order = c(7,1:6) #will facilitate tests
+
+test_that("Average method behave as expected",
+{
+       pred00_z = computeForecast(data_p, indices, "Average", "LastValue", 1, Inf, 24, ncores=1)
+       pred00_p = computeForecast(data_p, indices, "Average", "Persistence", 1, Inf, 24)
+       for (i in 1:7)
+       {
+               #zero jump: should predict true values minus 1
+               expect_equal( pred00_z$getForecast(i), rep(pred_order[i],24) )
+               #persistence jump == 1: should predict true values
+               expect_equal( pred00_p$getForecast(i), rep(i,24) )
+       }
+
+       #NOTE: 24h-block become
+       #1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 (14h-->0h then 1h-->13h)
+       #No jump between days, thus zero and persistence are equivalent (and correct)
+       pred13_z = computeForecast(data_p, indices, "Average", "LastValue", 14, Inf, 24)
+       pred13_p = computeForecast(data_p, indices, "Average", "Persistence", 14, Inf, 24)
+       for (i in 1:7)
+       {
+               expect_equal( pred13_z$getForecast(i), rep(i,24) )
+               expect_equal( pred13_p$getForecast(i), rep(i,24) )
+       }
+
+       #A few extra checks
+       expect_equal( pred00_p$getIndexInData(2), dateIndexToInteger("2007-04-03",data_p) )
+       expect_equal( pred00_z$getIndexInData(2), dateIndexToInteger("2007-04-03",data_p) )
+       expect_equal( pred13_p$getIndexInData(5), dateIndexToInteger("2007-04-06",data_p) )
+       expect_equal( pred13_z$getIndexInData(5), dateIndexToInteger("2007-04-06",data_p) )
+})
+
+test_that("Persistence method behave as expected",
+{
+       #Situation A: +Zero; (generally) correct if jump, wrong otherwise
+       pred00_sd = computeForecast(data_p, indices, "Persistence", "LastValue", 1, Inf, 24,
+               ncores=1, same_day=TRUE)
+       pred00_dd = computeForecast(data_p, indices, "Persistence", "LastValue", 1, Inf, 24,
+               ncores=1, same_day=FALSE)
+       for (i in 1:7)
+       {
+               expect_equal(pred00_sd$getForecast(i), rep(pred_order[i],24))
+               expect_equal(pred00_dd$getForecast(i), rep(pred_order[i],24))
+       }
+
+       pred13_sd = computeForecast(data_p, indices, "Persistence", "LastValue", 14, Inf, 24,
+               ncores=1, same_day=TRUE)
+       pred13_dd = computeForecast(data_p, indices, "Persistence", "LastValue", 14, Inf, 24,
+               ncores=1, same_day=FALSE)
+       for (i in 1:7)
+       {
+               expect_equal(pred13_sd$getForecast(i), rep(i,24) )
+               expect_equal(pred13_dd$getForecast(i), rep(i,24) )
+       }
+
+       #Situation B: +Persistence, (generally) correct
+       pred00_sd = computeForecast(data_p, indices, "Persistence", "Persistence", 1, Inf, 24,
+               ncores=1, same_day=TRUE)
+       pred00_dd = computeForecast(data_p, indices, "Persistence", "Persistence", 1, Inf, 24,
+               ncores=1, same_day=FALSE)
+       for (i in 3:7)
+       {
+               expect_equal(pred00_sd$getForecast(i), rep(i,24))
+               expect_equal(pred00_dd$getForecast(i), rep(i,24))
+       }
+       #boundaries are special cases: OK if same day, quite wrong otherwise
+       expect_equal(pred00_sd$getForecast(1), rep(1,24) )
+       expect_equal(pred00_dd$getForecast(1), rep(8,24) )
+       expect_equal(pred00_sd$getForecast(2), rep(2,24) )
+       expect_equal(pred00_dd$getForecast(2), rep(-5,24) )
+
+       pred13_sd = computeForecast(data_p, indices, "Persistence", "Persistence", 14, Inf, 24,
+               ncores=1, same_day=TRUE)
+       pred13_dd = computeForecast(data_p, indices, "Persistence", "Persistence", 14, Inf, 24,
+               ncores=1, same_day=FALSE)
+       for (i in 1:7)
+       {
+               expect_equal(pred13_sd$getForecast(i), rep(i,24) )
+               expect_equal(pred13_dd$getForecast(i), rep(i,24) )
+       }
+
+       #A few extra checks
+       expect_equal( pred00_sd$getIndexInData(3), dateIndexToInteger("2007-04-04",data_p) )
+       expect_equal( pred00_dd$getIndexInData(6), dateIndexToInteger("2007-04-07",data_p) )
+       expect_equal( pred13_sd$getIndexInData(3), dateIndexToInteger("2007-04-04",data_p) )
+       expect_equal( pred13_dd$getIndexInData(6), dateIndexToInteger("2007-04-07",data_p) )
+})
+
+test_that("Neighbors method behave as expected",
+{
+       #Situation A: +Zero; correct if jump, wrong otherwise
+       pred00 = computeForecast(data_p, indices, "Neighbors", "LastValue", 1, Inf, 24,
+               simtype="mix", local=FALSE, window=c(1,1))
+       for (i in 1:7)
+               expect_equal(pred00$getForecast(i), rep(pred_order[i],24))
+
+       pred13 = computeForecast(data_p, indices, "Persistence", "LastValue", 14, Inf, 24,
+               simtype="mix", local=FALSE, window=c(1,1))
+       for (i in 1:7)
+               expect_equal(pred13$getForecast(i), rep(i,24) )
+
+       #Situation B: +Neighbors == too difficult to eval in a unit test
+#      pred00 = computeForecast(data_p, indices, "Neighbors", "Neighbors", 1, Inf, 24,
+#              simtype="endo", local=FALSE)
+#      jumps = ...
+#      for (i in 1:7)
+#              expect_equal(pred00$getForecast(i), rep(pred_order[i]+jumps[i],24))
+#      pred13 = computeForecast(data_p, indices, "Neighbors", "Neighbors", 14, Inf, 24,
+#              simtype="endo", local=FALSE)
+#      for (i in 1:7)
+#              expect_equal(pred13$getForecast(i), c( rep(i,11), rep(i%%7+1,13) ) )
+
+       #A few extra checks
+       expect_equal( pred00$getIndexInData(1), dateIndexToInteger("2007-04-02",data_p) )
+       expect_equal( pred00$getIndexInData(4), dateIndexToInteger("2007-04-05",data_p) )
+       expect_equal( pred13$getIndexInData(1), dateIndexToInteger("2007-04-02",data_p) )
+       expect_equal( pred13$getIndexInData(4), dateIndexToInteger("2007-04-05",data_p) )
+})
diff --git a/pkg/tests/testthat/test-computeFilaments.R b/pkg/tests/testthat/test-computeFilaments.R
new file mode 100644 (file)
index 0000000..71729fa
--- /dev/null
@@ -0,0 +1,56 @@
+context("computeFilaments")
+
+test_that("output is as expected on simulated series",
+{
+       data = getDataTest(150)
+
+       # index 144 : serie type 3, yersteday type 2
+       pred = computeForecast(data, 144, "Neighbors", "Zero", predict_from=1,
+               horizon=length(data$getSerie(1)), simtype="endo", local=FALSE, window=1, opera=TRUE)
+       f = computeFilaments(data, pred, 1, limit=60, plot=FALSE)
+
+       # Expected output: 50-3-10 series of type 2+1 = 3,
+       # then 23 series of type 3+1 %% 3 = 1 (3 = closest next)
+       expect_identical(length(f$neighb_indices), as.integer(60))
+       expect_identical(length(f$colors), as.integer(60))
+       expect_equal(f$index, 144)
+       expect_true(all(I(f$neighb_indices) != 2))
+       for (i in 1:37)
+       {
+               expect_equal(I(f$neighb_indices[i]), 3)
+               expect_match(f$colors[i], f$colors[1])
+       }
+       for (i in 38:60)
+       {
+               expect_equal(I(f$neighb_indices[i]), 1)
+               expect_match(f$colors[i], f$colors[38])
+       }
+       expect_match(f$colors[1], "#1*")
+       expect_match(f$colors[38], "#E*")
+
+       # index 143 : serie type 2
+       pred = computeForecast(data, 143, "Neighbors", "Zero", predict_from=1,
+               horizon=length(data$getSerie(1)), simtype="endo", local=FALSE, window=1, opera=TRUE)
+       f = computeFilaments(data, pred, 1, limit=50, plot=FALSE)
+
+       # Expected output: 50-10-3 series of type 1+1=2,
+       # then 13 series of type 3+1 %% 3 = 1 (closest next)
+       # NOTE: -10 because only past tomorrows with no-NAs yerstedays
+       #        => exclude type 2 in [60,90[
+       expect_identical(length(f$neighb_indices), as.integer(50))
+       expect_identical(length(f$colors), as.integer(50))
+       expect_equal(f$index, 143)
+       expect_true(all(I(f$neighb_indices) <= 2))
+       for (i in 1:37)
+       {
+               expect_equal(I(f$neighb_indices[i]), 2)
+               expect_match(f$colors[i], f$colors[1])
+       }
+       for (i in 38:50)
+       {
+               expect_equal(I(f$neighb_indices[i]), 1)
+               expect_match(f$colors[i], f$colors[38])
+       }
+       expect_match(f$colors[1], "#1*")
+       expect_match(f$colors[38], "#E*")
+})
diff --git a/pkg/tests/testthat/test-similarDays.R b/pkg/tests/testthat/test-similarDays.R
new file mode 100644 (file)
index 0000000..05a7b0e
--- /dev/null
@@ -0,0 +1,27 @@
+context("Get similar days")
+
+test_that("getSimilarDaysIndices works as expected",
+{
+       data = getDataTest(150)
+
+       # Index 142 is a tuesday (142 = 2 mod 7)
+       N142_1 = getSimilarDaysIndices(142, data, limit=7, same_season=FALSE, days_in=NULL)
+       expect_equal(N142_1, c(141,137,136,135,134,130,129))
+       # Index 139 = saturday
+       N139_1 = getSimilarDaysIndices(139, data, limit=7, same_season=FALSE, days_in=NULL)
+       expect_equal(N139_1, c(132,125,118,111,104,97,90))
+
+       # With 'days_in' constraint
+       N142_2 = getSimilarDaysIndices(142, data, limit=7, same_season=FALSE, days_in=2*(1:75))
+       expect_equal(N142_2, c(136,134,130,128,122,120,116))
+       N139_2 = getSimilarDaysIndices(139, data, limit=7, same_season=FALSE, days_in=2*(1:75))
+       expect_equal(N139_2, c(132,118,104,90,76,62,48))
+})
+
+test_that("getConstrainedNeighbs works as expected",
+{
+#      data = getDataTest(150)
+#      N142_1 = .getConstrainedNeighbs(142, data, fdays, min_neighbs=7, max_neighbs=7)
+#      #...maybe we need an easier test data
+})
+
diff --git a/pkg/vignettes/TODO.html b/pkg/vignettes/TODO.html
new file mode 100644 (file)
index 0000000..1333ed7
--- /dev/null
@@ -0,0 +1 @@
+TODO