diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b345daf --- /dev/null +++ b/Dockerfile @@ -0,0 +1,21 @@ +FROM rocker/shiny:3.5.1 + +RUN apt-get update && apt-get install libcurl4-openssl-dev libv8-3.14-dev libssl-dev -y &&\ +mkdir -p /var/lib/shiny-server/bookmarks/shiny + + +RUN R -e "install.packages('devtools', repos='http://cran.rstudio.com')" + +RUN R -e "install.packages(c('shiny', 'shinydashboard','DT','dplyr','ggplot2','gridExtra','shinythemes','parsedate','remotes'), repos='http://cran.rstudio.com/')" && \ + R -e "remotes::install_github('twitter/AnomalyDetection')" + +COPY taganomaly /root/app +COPY Rprofile.site /usr/local/lib/R/etc/Rprofile.site + +# make all app files readable (solves issue when dev in Windows, but building in Ubuntu) +RUN chmod -R 755 /root/app +RUN chmod -R 755 /usr/local/lib/R/etc + +EXPOSE 3838 + +CMD ["R", "-e", "shiny::runApp('/root/app')"] diff --git a/Rprofile.site b/Rprofile.site new file mode 100644 index 0000000..f01a29d --- /dev/null +++ b/Rprofile.site @@ -0,0 +1,3 @@ +local({ + options(shiny.port = 3838, shiny.host = "0.0.0.0") +}) diff --git a/taganomaly/R/anomaly_detection.R b/taganomaly/R/anomaly_detection.R new file mode 100644 index 0000000..bafa1dd --- /dev/null +++ b/taganomaly/R/anomaly_detection.R @@ -0,0 +1,67 @@ +### This function return anomalizes based on Twitter's module found in https://github.com/twitter/AnomalyDetection +find_anomalies_twitter <- function(categoryDataset,is_ts = TRUE,threshold="p95",alpha=0.05,direction="pos"){ + + library(AnomalyDetection) + library(dplyr) + + res <- tryCatch( + { + categoryDataset <- categoryDataset %>% select(date, value) + print(paste0("Performing anomaly detection... is_ts = ",is_ts)) + if(is_ts) { + res <- AnomalyDetectionTs(categoryDataset, + threshold = threshold, + direction=direction, + alpha = alpha, + plot=TRUE, + title='Anomalies found using Twitter\'s anomaly detection.') + } else{ + res <- AnomalyDetectionVec(categoryDataset$value, + threshold= threshold, + direction = direction, + alpha = alpha, + period = 1440, + plot=TRUE, + title='Anomalies found using Twitter\'s anomaly detection with a period value of 1440.') + } + + if(is.null(res$plot)){ + res$plot <- ggplot(categoryDataset, aes(date, value)) + geom_line(colour='red',size=0.5) + + scale_y_continuous(labels = scales::comma) + theme_bw() + + theme(axis.text.x = element_text(angle = 90, hjust = 1),panel.grid.major = element_blank(), panel.grid.minor = element_blank()) + + ggtitle("No anomalies found. Original dataset plot") + } + + res + }, + error=function(cond) { + message("Failed to run the Twitter Anomaly Detection model. Message:") + message(cond) + return(NULL) + }, + warning=function(cond) { + message("Warning while running the Twitter Anomaly Detection model. message:") + message(cond) + } + ) + + return(res) + + + +} + + +find_anomalies_prophet <- function(categoryDataset){ + ## Requires the prophet package. + df <- categoryDataset %>% transmute(ds = date,y = value) + m <- prophet(df) + future <- make_future_dataframe(m, periods = 1) + forecast <- predict(m, future) + results <- forecast[c('ds', 'yhat', 'yhat_lower', 'yhat_upper')] + + joined <- inner_join(df,results,by='ds') %>% mutate(is_anomaly = (y > yhat_upper) | (y < yhat_lower)) + anomalies <- joined %>% filter(is_anomaly==T) + plot(m,forecast) + geom_point(data = anomalies,colour = 'red') + ggtitle("Anomalies based on Facebook Prophet's confidence intervals") + ggplot(joined,aes(x = ds,y =y)) + geom_point(data = joined %>% filter(is_anomaly == T),aes(x = ds,y=y),colour = 'red') + geom_line() +} diff --git a/taganomaly/R/create_sample_data.R b/taganomaly/R/create_sample_data.R new file mode 100644 index 0000000..009b2a3 --- /dev/null +++ b/taganomaly/R/create_sample_data.R @@ -0,0 +1,20 @@ +raw_content <- c("Error","Warn","Debug","Attach","Limit","No clue","Check with author") + +rawdf <- data.frame( + date = rep(seq(as.POSIXct('2018-01-01 12:00:00'),as.POSIXct('2018-01-05 14:00:00'),by='20 min'),30), + category = sample(c('A','B','C'),replace = T,size = 8850), + content = sample(raw_content,replace = T,size = 8850) +) +library(dplyr) + +## create 1 h windows per category +df_1h <- rawdf %>% mutate(date = as.POSIXct(date,format = '%d-%m-%Y %H')) %>% + group_by(date,category) %>% summarize(value = n()) + +catA <- df_1h[df_1h$category=='A',] +plot(catA$date,catA$value) + + + +write.csv(df_1h,"data/sample-1H.csv") +write.csv(rawdf,"data/sample-raw.csv") diff --git a/taganomaly/data/dow_jones_index.csv b/taganomaly/data/dow_jones_index.csv new file mode 100644 index 0000000..1be6219 --- /dev/null +++ b/taganomaly/data/dow_jones_index.csv @@ -0,0 +1,751 @@ +quarter,category,date,open,high,low,close,value,percent_change_price,percent_change_volume_over_last_wk,previous_weeks_volume,next_weeks_open,next_weeks_close,percent_change_next_weeks_price,days_to_next_dividend,percent_return_next_dividend +1,AA,1/7/2011 09:00:00,$15.82,$16.72,$15.78,$16.42,239655616,3.79267,,,$16.71,$15.97,-4.42849,26,0.182704 +1,AA,1/14/2011 09:00:00,$16.71,$16.71,$15.64,$15.97,242963398,-4.42849,1.380223028,239655616,$16.19,$15.79,-2.47066,19,0.187852 +1,AA,1/21/2011 09:00:00,$16.19,$16.38,$15.60,$15.79,138428495,-2.47066,-43.02495926,242963398,$15.87,$16.13,1.63831,12,0.189994 +1,AA,1/28/2011 09:00:00 09:00:00,$15.87,$16.63,$15.82,$16.13,151379173,1.63831,9.355500109,138428495,$16.18,$17.14,5.93325,5,0.185989 +1,AA,2/4/2011 09:00:00 09:00:00,$16.18,$17.39,$16.18,$17.14,154387761,5.93325,1.987451735,151379173,$17.33,$17.37,0.230814,97,0.175029 +1,AA,2/11/2011 09:00:00,$17.33,$17.48,$16.97,$17.37,114691279,0.230814,-25.71219489,154387761,$17.39,$17.28,-0.632547,90,0.172712 +1,AA,2/18/2011 09:00:00,$17.39,$17.68,$17.28,$17.28,80023895,-0.632547,-30.22669579,114691279,$16.98,$16.68,-1.76678,83,0.173611 +1,AA,2/25/2011 09:00:00,$16.98,$17.15,$15.96,$16.68,132981863,-1.76678,66.17769355,80023895,$16.81,$16.58,-1.36823,76,0.179856 +1,AA,3/4/2011 09:00:00,$16.81,$16.94,$16.13,$16.58,109493077,-1.36823,-17.66315005,132981863,$16.58,$16.03,-3.31725,69,0.180941 +1,AA,3/11/2011 09:00:00,$16.58,$16.75,$15.42,$16.03,114332562,-3.31725,4.419900447,109493077,$15.95,$16.11,1.00313,62,0.187149 +1,AA,3/18/2011 09:00:00,$15.95,$16.33,$15.43,$16.11,130374108,1.00313,14.03060136,114332562,$16.38,$17.09,4.33455,55,0.18622 +1,AA,3/25/2011 09:00:00,$16.38,$17.24,$16.26,$17.09,95550392,4.33455,-26.71060729,130374108,$17.13,$17.47,1.98482,48,0.175541 +1,AXP,1/7/2011 09:00:00,$43.30,$45.60,$43.11,$44.36,45102042,2.44804,,,$44.20,$46.25,4.63801,89,0.405771 +1,AXP,1/14/2011 09:00:00,$44.20,$46.25,$44.01,$46.25,25913713,4.63801,-42.54425775,45102042,$46.03,$46.00,-0.0651749,82,0.389189 +1,AXP,1/21/2011 09:00:00,$46.03,$46.71,$44.71,$46.00,38824728,-0.0651749,49.82309945,25913713,$46.05,$43.86,-4.7557,75,0.391304 +1,AXP,1/28/2011 09:00:00,$46.05,$46.27,$43.42,$43.86,51427274,-4.7557,32.4601012,38824728,$44.13,$43.82,-0.70247,68,0.410397 +1,AXP,2/4/2011 09:00:00,$44.13,$44.23,$43.15,$43.82,39501680,-0.70247,-23.18924001,51427274,$43.96,$46.75,6.34668,61,0.410771 +1,AXP,2/11/2011 09:00:00,$43.96,$46.79,$43.88,$46.75,43746998,6.34668,10.74718341,39501680,$46.42,$45.53,-1.91728,54,0.385027 +1,AXP,2/18/2011 09:00:00,$46.42,$46.93,$45.53,$45.53,28564910,-1.91728,-34.70429674,43746998,$44.94,$43.53,-3.13752,47,0.395344 +1,AXP,2/25/2011 09:00:00,$44.94,$45.12,$43.01,$43.53,39654146,-3.13752,38.82118305,28564910,$43.73,$43.72,-0.0228676,40,0.413508 +1,AXP,3/4/2011 09:00:00,$43.73,$44.68,$42.75,$43.72,38985037,-0.0228676,-1.687362023,39654146,$43.86,$44.28,0.957592,33,0.411711 +1,AXP,3/11/2011 09:00:00,$43.86,$45.54,$43.53,$44.28,37613429,0.957592,-3.518293442,38985037,$43.86,$44.17,0.706794,26,0.406504 +1,AXP,3/18/2011 09:00:00,$43.86,$44.47,$42.19,$44.17,41757526,0.706794,11.01759959,37613429,$44.75,$45.59,1.87709,19,0.407516 +1,AXP,3/25/2011 09:00:00,$44.75,$45.61,$44.10,$45.59,30798332,1.87709,-26.24483548,41757526,$45.54,$45.36,-0.395257,12,0.394823 +1,BA,1/7/2011 09:00:00,$66.15,$70.10,$66.00,$69.38,36258120,4.88284,,,$69.42,$70.07,0.93633,33,0.605362 +1,BA,1/14/2011 09:00:00,$69.42,$70.50,$68.35,$70.07,18834664,0.93633,-48.05394212,36258120,$70.86,$71.68,1.15721,26,0.599401 +1,BA,1/21/2011 09:00:00,$70.86,$72.99,$70.23,$71.68,29594221,1.15721,57.1263549,18834664,$71.52,$69.23,-3.2019,19,0.585938 +1,BA,1/28/2011 09:00:00,$71.52,$72.82,$69.00,$69.23,34929673,-3.2019,18.02869553,29594221,$69.26,$71.38,3.06093,12,0.606673 +1,BA,2/4/2011 09:00:00,$69.26,$71.64,$69.12,$71.38,22770062,3.06093,-34.81169434,34929673,$71.43,$72.14,0.99398,5,0.5884 +1,BA,2/11/2011 09:00:00,$71.43,$72.99,$71.15,$72.14,21809411,0.99398,-4.218921319,22770062,$72.70,$73.04,0.467675,89,0.582201 +1,BA,2/18/2011 09:00:00,$72.70,$73.04,$71.09,$73.04,15989248,0.467675,-26.68647494,21809411,$72.35,$72.30,-0.0691085,82,0.575027 +1,BA,2/25/2011 09:00:00,$72.35,$74.29,$70.00,$72.30,26258425,-0.0691085,64.2255158,15989248,$72.47,$71.80,-0.92452,75,0.580913 +1,BA,3/4/2011 09:00:00,$72.47,$72.90,$68.60,$71.80,27527285,-0.92452,4.832201474,26258425,$71.60,$71.64,0.0558659,68,0.584958 +1,BA,3/11/2011 09:00:00,$71.60,$72.50,$69.91,$71.64,25556296,0.0558659,-7.160128578,27527285,$71.17,$69.10,-2.90853,61,0.586265 +1,BA,3/18/2011 09:00:00,$71.17,$71.23,$67.34,$69.10,29746370,-2.90853,16.3954667,25556296,$70.29,$73.34,4.33917,54,0.607815 +1,BA,3/25/2011 09:00:00,$70.29,$73.50,$70.03,$73.34,24423545,4.33917,-17.89403211,29746370,$73.50,$74.01,0.693878,47,0.572675 +1,BAC,1/7/2011 09:00:00,$13.85,$14.69,$13.80,$14.25,1453438639,2.88809,,,$14.17,$15.25,7.62174,54,0.0701754 +1,BAC,1/14/2011 09:00:00,$14.17,$15.25,$14.09,$15.25,760935694,7.62174,-47.64583288,1453438639,$15.08,$14.25,-5.50398,47,0.0655738 +1,BAC,1/21/2011 09:00:00,$15.08,$15.16,$13.94,$14.25,982445809,-5.50398,29.11022794,760935694,$14.25,$13.60,-4.5614,40,0.0701754 +1,BAC,1/28/2011 09:00:00,$14.25,$14.26,$13.40,$13.60,1054415375,-4.5614,7.325550716,982445809,$13.71,$14.29,4.23049,33,0.0735294 +1,BAC,2/4/2011 09:00:00,$13.71,$14.47,$13.64,$14.29,757192224,4.23049,-28.18843105,1054415375,$14.51,$14.77,1.79187,26,0.069979 +1,BAC,2/11/2011 09:00:00,$14.51,$14.87,$14.35,$14.77,746465458,1.79187,-1.416650312,757192224,$14.77,$14.75,-0.13541,19,0.0677048 +1,BAC,2/18/2011 09:00:00,$14.77,$14.95,$14.69,$14.75,458423511,-0.13541,-38.58744486,746465458,$14.38,$14.20,-1.25174,12,0.0677966 +1,BAC,2/25/2011 09:00:00,$14.38,$14.52,$13.79,$14.20,712456757,-1.25174,55.41453261,458423511,$14.27,$14.12,-1.05116,5,0.0704225 +1,BAC,3/4/2011 09:00:00,$14.27,$14.48,$13.81,$14.12,699671790,-1.05116,-1.794490244,712456757,$14.18,$14.38,1.41044,89,0.0708215 +1,BAC,3/11/2011 09:00:00,$14.18,$14.70,$13.92,$14.38,805210688,1.41044,15.08405791,699671790,$14.26,$14.04,-1.54278,82,0.069541 +1,BAC,3/18/2011 09:00:00,$14.26,$14.35,$13.66,$14.04,792380862,-1.54278,-1.593350187,805210688,$14.20,$13.34,-6.05634,75,0.0712251 +1,BAC,3/25/2011 09:00:00,$14.20,$14.22,$13.32,$13.34,717678994,-6.05634,-9.427520474,792380862,$13.42,$13.37,-0.372578,68,0.0749625 +1,CAT,1/7/2011 09:00:00,$94.38,$94.81,$92.30,$93.73,24135903,-0.688705,,,$93.21,$94.01,0.858277,11,0.469433 +1,CAT,1/14/2011 09:00:00,$93.21,$94.70,$92.51,$94.01,19707235,0.858277,-18.3488805,24135903,$94.16,$92.75,-1.49745,4,0.468035 +1,CAT,1/21/2011 09:00:00,$94.16,$96.80,$92.37,$92.75,28651009,-1.49745,45.38320064,19707235,$92.71,$95.68,3.20354,89,0.474394 +1,CAT,1/28/2011 09:00:00,$92.71,$97.79,$92.51,$95.68,34929068,3.20354,21.91217419,28651009,$96.13,$99.59,3.59929,82,0.459866 +1,CAT,2/4/2011 09:00:00,$96.13,$99.72,$95.85,$99.59,31169285,3.59929,-10.76405188,34929068,$99.62,$103.54,3.93495,75,0.441811 +1,CAT,2/11/2011 09:00:00,$99.62,$103.55,$98.75,$103.54,27632394,3.93495,-11.34736007,31169285,$103.56,$105.86,2.22093,68,0.424957 +1,CAT,2/18/2011 09:00:00,$103.56,$105.86,$102.01,$105.86,16331886,2.22093,-40.89587026,27632394,$104.86,$102.00,-2.72745,61,0.415643 +1,CAT,2/25/2011 09:00:00,$104.86,$105.30,$98.03,$102.00,28146727,-2.72745,72.34217163,16331886,$102.72,$103.04,0.311526,54,0.431373 +1,CAT,3/4/2011 09:00:00,$102.72,$104.43,$99.35,$103.04,29851515,0.311526,6.05678948,28146727,$103.42,$100.02,-3.28757,47,0.427019 +1,CAT,3/11/2011 09:00:00,$103.42,$104.45,$97.01,$100.02,38614049,-3.28757,29.35373297,29851515,$102.59,$105.06,2.40764,40,0.439912 +1,CAT,3/18/2011 09:00:00,$102.59,$105.64,$98.55,$105.06,54195667,2.40764,40.35219927,38614049,$106.90,$109.09,2.04864,33,0.418808 +1,CAT,3/25/2011 09:00:00,$106.90,$110.15,$105.64,$109.09,37837456,2.04864,-30.18361413,54195667,$109.54,$113.12,3.26821,26,0.403337 +1,CSCO,1/7/2011 09:00:00,$20.45,$21.00,$20.38,$20.97,303545878,2.54279,,,$20.94,$21.21,1.2894,81,0.286123 +1,CSCO,1/14/2011 09:00:00,$20.94,$21.23,$20.70,$21.21,154708263,1.2894,-49.03298835,303545878,$21.22,$20.72,-2.35627,74,0.282885 +1,CSCO,1/21/2011 09:00:00,$21.22,$21.33,$20.50,$20.72,193706863,-2.35627,25.20783263,154708263,$20.84,$20.93,0.431862,67,0.289575 +1,CSCO,1/28/2011 09:00:00,$20.84,$21.61,$20.73,$20.93,265687272,0.431862,37.15945212,193706863,$20.93,$22.05,5.35117,60,0.28667 +1,CSCO,2/4/2011 09:00:00,$20.93,$22.15,$20.71,$22.05,236334561,5.35117,-11.04784237,265687272,$22.11,$18.70,-15.4229,53,0.272109 +1,CSCO,2/11/2011 09:00:00,$22.11,$22.34,$18.61,$18.70,1000362015,-15.4229,323.2821517,236334561,$18.84,$18.85,0.0530786,46,0.320856 +1,CSCO,2/18/2011 09:00:00,$18.84,$18.95,$18.56,$18.85,390258123,0.0530786,-60.98831052,1000362015,$18.73,$18.64,-0.480513,39,0.318302 +1,CSCO,2/25/2011 09:00:00,$18.73,$18.74,$18.23,$18.64,285212201,-0.480513,-26.91703665,390258123,$18.62,$18.40,-1.18153,32,0.321888 +1,CSCO,3/4/2011 09:00:00,$18.62,$18.79,$18.31,$18.40,302059981,-1.18153,5.907103532,285212201,$18.36,$17.95,-2.23312,25,0.326087 +1,CSCO,3/11/2011 09:00:00,$18.36,$18.37,$17.76,$17.95,311209442,-2.23312,3.029021246,302059981,$17.81,$17.14,-3.76193,18,0.334262 +1,CSCO,3/18/2011 09:00:00,$17.81,$17.88,$16.97,$17.14,444161658,-3.76193,42.72113826,311209442,$17.34,$17.28,-0.346021,11,0.350058 +1,CSCO,3/25/2011 09:00:00,$17.34,$17.64,$17.20,$17.28,284574143,-0.346021,-35.93005207,444161658,$17.36,$17.04,-1.84332,4,0.347222 +1,CVX,1/7/2011 09:00:00,$91.66,$92.48,$90.27,$91.19,35556288,-0.512765,,,$90.95,$92.83,2.06707,38,0.78956 +1,CVX,1/14/2011 09:00:00,$90.95,$92.85,$90.12,$92.83,28260512,2.06707,-20.51894731,35556288,$92.94,$93.78,0.903809,31,0.775611 +1,CVX,1/21/2011 09:00:00,$92.94,$93.94,$91.58,$93.78,27752622,0.903809,-1.797171969,28260512,$93.89,$93.37,-0.55384,24,0.767754 +1,CVX,1/28/2011 09:00:00,$93.89,$94.97,$92.93,$93.37,42303108,-0.55384,52.42922993,27752622,$93.85,$97.11,3.47363,17,0.771126 +1,CVX,2/4/2011 09:00:00,$93.85,$97.44,$93.37,$97.11,48766293,3.47363,15.27827459,42303108,$97.28,$96.45,-0.853207,10,0.741427 +1,CVX,2/11/2011 09:00:00,$97.28,$98.23,$95.70,$96.45,38838595,-0.853207,-20.35770486,48766293,$95.50,$98.72,3.37173,3,0.746501 +1,CVX,2/18/2011 09:00:00,$95.50,$98.72,$95.50,$98.72,28037827,3.37173,-27.80936849,38838595,$99.23,$102.10,2.89227,89,0.739465 +1,CVX,2/25/2011 09:00:00,$99.23,$103.94,$99.23,$102.10,57897831,2.89227,106.4989951,28037827,$102.28,$103.75,1.43723,82,0.714985 +1,CVX,3/4/2011 09:00:00,$102.28,$104.99,$102.18,$103.75,48214502,1.43723,-16.72485624,57897831,$104.12,$99.93,-4.0242,75,0.703614 +1,CVX,3/11/2011 09:00:00,$104.12,$104.77,$97.60,$99.93,43673568,-4.0242,-9.418191232,48214502,$99.16,$102.80,3.67084,68,0.730511 +1,CVX,3/18/2011 09:00:00,$99.16,$103.97,$97.98,$102.80,56186791,3.67084,28.6517076,43673568,$103.86,$106.78,2.81148,61,0.710117 +1,CVX,3/25/2011 09:00:00,$103.86,$107.01,$103.20,$106.78,39606692,2.81148,-29.50889116,56186791,$106.40,$108.32,1.80451,54,0.683649 +1,DD,1/7/2011 09:00:00,$50.05,$50.54,$49.28,$49.76,27658789,-0.579421,,,$48.30,$49.80,3.10559,35,0.823955 +1,DD,1/14/2011 09:00:00,$48.30,$49.80,$47.20,$49.80,34546875,3.10559,24.90378736,27658789,$49.53,$48.35,-2.38239,28,0.823293 +1,DD,1/21/2011 09:00:00,$49.53,$50.14,$47.65,$48.35,25611091,-2.38239,-25.8656796,34546875,$48.44,$50.29,3.81916,21,0.847983 +1,DD,1/28/2011 09:00:00,$48.44,$50.66,$48.26,$50.29,45429653,3.81916,77.38273235,25611091,$50.15,$52.53,4.74576,14,0.815271 +1,DD,2/4/2011 09:00:00,$50.15,$52.63,$50.09,$52.53,31069977,4.74576,-31.60859714,45429653,$52.62,$54.58,3.72482,7,0.780506 +1,DD,2/11/2011 09:00:00,$52.62,$54.75,$52.51,$54.58,37155830,3.72482,19.58756841,31069977,$54.44,$55.98,2.8288,0,0.751191 +1,DD,2/18/2011 09:00:00,$54.44,$55.98,$53.80,$55.98,27705910,2.8288,-25.43320927,37155830,$54.95,$54.07,-1.60146,82,0.732404 +1,DD,2/25/2011 09:00:00,$54.95,$55.30,$52.36,$54.07,33190716,-1.60146,19.79651995,27705910,$54.22,$53.87,-0.645518,75,0.758276 +1,DD,3/4/2011 09:00:00,$54.22,$54.95,$52.76,$53.87,32958368,-0.645518,-0.700039131,33190716,$54.10,$52.90,-2.21811,68,0.761092 +1,DD,3/11/2011 09:00:00,$54.10,$54.49,$51.82,$52.90,27091813,-2.21811,-17.79989531,32958368,$53.18,$52.99,-0.357277,61,0.775047 +1,DD,3/18/2011 09:00:00,$53.18,$53.50,$51.10,$52.99,39779608,-0.357277,46.83258001,27091813,$53.80,$54.10,0.557621,54,0.773731 +1,DD,3/25/2011 09:00:00,$53.80,$54.64,$52.89,$54.10,24464568,0.557621,-38.49972579,39779608,$54.11,$55.19,1.99593,47,0.757856 +1,DIS,1/7/2011 09:00:00,$37.74,$40.00,$37.62,$39.45,72917621,4.531,,,$39.01,$39.29,0.717765,336,1.01394 +1,DIS,1/14/2011 09:00:00,$39.01,$39.81,$38.92,$39.29,31943413,0.717765,-56.1924641,72917621,$39.07,$39.74,1.71487,329,1.01807 +1,DIS,1/21/2011 09:00:00,$39.07,$39.94,$38.51,$39.74,36187032,1.71487,13.28480147,31943413,$39.64,$38.85,-1.99294,322,1.00654 +1,DIS,1/28/2011 09:00:00,$39.64,$39.95,$38.65,$38.85,42131642,-1.99294,16.42745943,36187032,$39.04,$40.71,4.27766,315,1.0296 +1,DIS,2/4/2011 09:00:00,$39.04,$40.77,$38.64,$40.71,53521486,4.27766,27.0339428,42131642,$40.80,$43.41,6.39706,308,0.98256 +1,DIS,2/11/2011 09:00:00,$40.80,$44.05,$40.71,$43.41,83975520,6.39706,56.90057634,53521486,$43.19,$43.56,0.85668,301,0.921447 +1,DIS,2/18/2011 09:00:00,$43.19,$43.90,$42.98,$43.56,33868302,0.85668,-59.6688392,83975520,$42.83,$42.95,0.280177,294,0.918274 +1,DIS,2/25/2011 09:00:00,$42.83,$43.28,$41.60,$42.95,56966763,0.280177,68.20082389,33868302,$43.02,$43.55,1.23199,287,0.931315 +1,DIS,3/4/2011 09:00:00,$43.02,$44.34,$42.97,$43.55,53096584,1.23199,-6.79374919,56966763,$43.53,$42.93,-1.37836,280,0.918484 +1,DIS,3/11/2011 09:00:00,$43.53,$43.61,$42.16,$42.93,41229388,-1.37836,-22.35020618,53096584,$42.64,$41.23,-3.30675,273,0.931749 +1,DIS,3/18/2011 09:00:00,$42.64,$42.67,$40.42,$41.23,65060004,-3.30675,57.80007212,41229388,$41.46,$42.97,3.64206,266,0.970167 +1,DIS,3/25/2011 09:00:00,$41.46,$43.24,$40.87,$42.97,40696371,3.64206,-37.44794267,65060004,$43.19,$42.85,-0.787219,259,0.930882 +1,GE,1/7/2011 09:00:00,$18.49,$18.72,$18.12,$18.43,280146510,-0.3245,,,$18.61,$18.82,1.12843,38,0.759631 +1,GE,1/14/2011 09:00:00,$18.61,$18.82,$18.46,$18.82,215626229,1.12843,-23.03090658,280146510,$18.98,$19.74,4.00421,31,0.74389 +1,GE,1/21/2011 09:00:00,$18.98,$19.97,$18.17,$19.74,449508777,4.00421,108.4666504,215626229,$19.93,$20.20,1.35474,24,0.70922 +1,GE,1/28/2011 09:00:00,$19.93,$20.74,$19.74,$20.20,437317986,1.35474,-2.712025131,449508777,$20.13,$20.56,2.13612,17,0.693069 +1,GE,2/4/2011 09:00:00,$20.13,$20.96,$20.10,$20.56,246591055,2.13612,-43.61287144,437317986,$20.77,$21.33,2.6962,10,0.680934 +1,GE,2/11/2011 09:00:00,$20.77,$21.44,$20.73,$21.33,252254376,2.6962,2.296644945,246591055,$21.51,$21.44,-0.32543,3,0.656353 +1,GE,2/18/2011 09:00:00,$21.51,$21.65,$21.24,$21.44,158691572,-0.32543,-37.09065646,252254376,$20.88,$20.82,-0.287356,118,0.652985 +1,GE,2/25/2011 09:00:00,$20.88,$21.21,$20.08,$20.82,268500170,-0.287356,69.1962381,158691572,$20.95,$20.37,-2.7685,111,0.67243 +1,GE,3/4/2011 09:00:00,$20.95,$21.17,$20.16,$20.37,261175412,-2.7685,-2.728027323,268500170,$20.40,$20.36,-0.196078,104,0.687285 +1,GE,3/11/2011 09:00:00,$20.40,$20.79,$19.94,$20.36,303566341,-0.196078,16.23082689,261175412,$19.96,$19.25,-3.55711,97,0.687623 +1,GE,3/18/2011 09:00:00,$19.96,$20.09,$18.60,$19.25,520516218,-3.55711,71.46703956,303566341,$19.68,$19.75,0.355691,90,0.727273 +1,GE,3/25/2011 09:00:00,$19.68,$19.93,$19.25,$19.75,227819072,0.355691,-56.23208958,520516218,$19.81,$20.34,2.67542,83,0.708861 +1,HD,1/7/2011 09:00:00,$35.20,$35.57,$34.18,$34.38,56576860,-2.32955,,,$34.16,$35.89,5.0644,60,0.727167 +1,HD,1/14/2011 09:00:00,$34.16,$35.89,$34.07,$35.89,41918450,5.0644,-25.9088433,56576860,$35.97,$36.51,1.50125,53,0.696573 +1,HD,1/21/2011 09:00:00,$35.97,$36.99,$35.48,$36.51,45249920,1.50125,7.94750283,41918450,$36.46,$36.70,0.658256,46,0.684744 +1,HD,1/28/2011 09:00:00,$36.46,$38.12,$36.30,$36.70,63397367,0.658256,40.10492615,45249920,$37.13,$36.80,-0.888769,39,0.681199 +1,HD,2/4/2011 09:00:00,$37.13,$37.18,$36.38,$36.80,41844858,-0.888769,-33.99590554,63397367,$36.80,$37.48,1.84783,32,0.679348 +1,HD,2/11/2011 09:00:00,$36.80,$37.48,$36.41,$37.48,36079400,1.84783,-13.77817556,41844858,$37.47,$38.48,2.69549,25,0.667022 +1,HD,2/18/2011 09:00:00,$37.47,$38.48,$37.27,$38.48,30619613,2.69549,-15.13269899,36079400,$39.30,$37.08,-5.64885,18,0.649688 +1,HD,2/25/2011 09:00:00,$39.30,$39.38,$36.78,$37.08,54816070,-5.64885,79.02273944,30619613,$37.15,$37.22,0.188425,11,0.674218 +1,HD,3/4/2011 09:00:00,$37.15,$37.86,$36.33,$37.22,49763519,0.188425,-9.217280626,54816070,$37.26,$37.14,-0.322061,4,0.671682 +1,HD,3/11/2011 09:00:00,$37.26,$37.78,$36.54,$37.14,49156185,-0.322061,-1.220440218,49763519,$36.92,$36.00,-2.49187,95,0.673129 +1,HD,3/18/2011 09:00:00,$36.92,$36.94,$35.43,$36.00,52758908,-2.49187,7.329134676,49156185,$36.29,$37.42,3.11381,88,0.694444 +1,HD,3/25/2011 09:00:00,$36.29,$37.82,$36.03,$37.42,40337534,3.11381,-23.54365257,52758908,$37.46,$37.56,0.266951,81,0.668092 +1,HPQ,1/7/2011 09:00:00,$42.22,$45.39,$42.22,$45.09,100020724,6.79773,,,$44.86,$46.25,3.09853,66,0.177423 +1,HPQ,1/14/2011 09:00:00,$44.86,$46.25,$44.57,$46.25,65464211,3.09853,-34.54935299,100020724,$46.14,$47.23,2.36238,59,0.172973 +1,HPQ,1/21/2011 09:00:00,$46.14,$47.64,$45.76,$47.23,82623453,2.36238,26.21163799,65464211,$46.69,$45.51,-2.52731,52,0.169384 +1,HPQ,1/28/2011 09:00:00,$46.69,$47.83,$45.36,$45.51,84066350,-2.52731,1.746352818,82623453,$45.41,$47.43,4.44836,45,0.175786 +1,HPQ,2/4/2011 09:00:00,$45.41,$47.52,$45.13,$47.43,74475624,4.44836,-11.40851958,84066350,$47.71,$48.64,1.94928,38,0.16867 +1,HPQ,2/11/2011 09:00:00,$47.71,$49.39,$47.61,$48.64,84089936,1.94928,12.90934065,74475624,$48.45,$48.67,0.454076,31,0.164474 +1,HPQ,2/18/2011 09:00:00,$48.45,$49.12,$47.54,$48.67,49401750,0.454076,-41.25129314,84089936,$47.57,$42.68,-10.2796,24,0.164372 +1,HPQ,2/25/2011 09:00:00,$47.57,$48.55,$42.08,$42.68,211147488,-10.2796,327.4089238,49401750,$43.06,$42.61,-1.04505,17,0.187441 +1,HPQ,3/4/2011 09:00:00,$43.06,$43.85,$42.06,$42.61,110702335,-1.04505,-47.57108595,211147488,$42.90,$41.73,-2.72727,10,0.187749 +1,HPQ,3/11/2011 09:00:00,$42.90,$43.05,$41.26,$41.73,85140794,-2.72727,-23.0903359,110702335,$41.31,$41.32,0.0242072,3,0.191709 +1,HPQ,3/18/2011 09:00:00,$41.31,$42.15,$40.10,$41.32,121051768,0.0242072,42.1783405,85140794,$41.85,$42.53,1.62485,87,0.314618 +1,HPQ,3/25/2011 09:00:00,$41.85,$43.28,$41.35,$42.53,78089358,1.62485,-35.49093971,121051768,$42.42,$40.98,-3.39463,80,0.305667 +1,IBM,1/7/2011 09:00:00,$147.21,$148.86,$146.64,$147.93,23492843,0.489097,,,$147.00,$150.00,2.04082,32,0.439397 +1,IBM,1/14/2011 09:00:00,$147.00,$150.00,$146.00,$150.00,15335348,2.04082,-34.72331978,23492843,$149.82,$155.50,3.79122,25,0.433333 +1,IBM,1/21/2011 09:00:00,$149.82,$156.78,$149.38,$155.50,35770931,3.79122,133.2580324,15335348,$155.42,$159.21,2.43855,18,0.418006 +1,IBM,1/28/2011 09:00:00,$155.42,$164.35,$155.33,$159.21,32510483,2.43855,-9.114797711,35770931,$159.18,$164.00,3.02802,11,0.408266 +1,IBM,2/4/2011 09:00:00,$159.18,$164.20,$158.68,$164.00,25377163,3.02802,-21.94159958,32510483,$164.08,$163.85,-0.140176,4,0.396341 +1,IBM,2/11/2011 09:00:00,$164.08,$166.25,$163.18,$163.85,26106753,-0.140176,2.874986459,25377163,$164.18,$164.84,0.401998,84,0.457736 +1,IBM,2/18/2011 09:00:00,$164.18,$164.84,$162.52,$164.84,14352613,0.401998,-45.02337001,26106753,$163.57,$162.28,-0.788653,77,0.454987 +1,IBM,2/25/2011 09:00:00,$163.57,$164.26,$159.03,$162.28,21443811,-0.788653,49.40701738,14352613,$162.36,$161.83,-0.326435,70,0.462164 +1,IBM,3/4/2011 09:00:00,$162.36,$164.31,$159.41,$161.83,21549118,-0.326435,0.491083418,21443811,$161.60,$162.43,0.513614,63,0.463449 +1,IBM,3/11/2011 09:00:00,$161.60,$167.72,$158.85,$162.43,31119857,0.513614,44.41359967,21549118,$161.16,$155.89,-3.27004,56,0.461737 +1,IBM,3/18/2011 09:00:00,$161.16,$161.98,$151.71,$155.89,41827781,-3.27004,34.40865426,31119857,$157.64,$162.18,2.87998,49,0.481108 +1,IBM,3/25/2011 09:00:00,$157.64,$162.74,$157.07,$162.18,25381792,2.87998,-39.31833965,41827781,$161.54,$164.27,1.68998,42,0.462449 +1,INTC,1/7/2011 09:00:00,$21.01,$21.21,$20.27,$20.66,386719626,-1.66587,,,$20.71,$21.08,1.78658,27,0.871249 +1,INTC,1/14/2011 09:00:00,$20.71,$21.33,$20.57,$21.08,274111012,1.78658,-29.11892917,386719626,$21.03,$20.82,-0.998573,20,0.85389 +1,INTC,1/21/2011 09:00:00,$21.03,$21.20,$20.62,$20.82,218479469,-0.998573,-20.29526016,274111012,$21.03,$21.46,2.0447,13,0.864553 +1,INTC,1/28/2011 09:00:00,$21.03,$21.94,$20.93,$21.46,325168191,2.0447,48.83237884,218479469,$21.55,$21.68,0.603248,6,0.83877 +1,INTC,2/4/2011 09:00:00,$21.55,$21.71,$21.03,$21.68,277969054,0.603248,-14.51529956,325168191,$21.74,$21.76,0.0919963,89,0.830258 +1,INTC,2/11/2011 09:00:00,$21.74,$21.86,$21.35,$21.76,236842359,0.0919963,-14.79542216,277969054,$21.63,$22.14,2.35784,82,0.827206 +1,INTC,2/18/2011 09:00:00,$21.63,$22.14,$21.28,$22.14,201181541,2.35784,-15.05677369,236842359,$21.95,$21.86,-0.410023,75,0.813008 +1,INTC,2/25/2011 09:00:00,$21.95,$22.19,$21.01,$21.86,256135777,-0.410023,27.31574464,201181541,$21.75,$21.56,-0.873563,68,0.823422 +1,INTC,3/4/2011 09:00:00,$21.75,$22.08,$21.35,$21.56,291751623,-0.873563,13.90506489,256135777,$21.69,$20.87,-3.78054,61,0.834879 +1,INTC,3/11/2011 09:00:00,$21.69,$21.74,$20.61,$20.87,289874871,-3.78054,-0.643270457,291751623,$20.66,$19.93,-3.5334,54,0.862482 +1,INTC,3/18/2011 09:00:00,$20.66,$20.88,$19.71,$19.93,347426088,-3.5334,19.85381375,289874871,$19.90,$20.37,2.36181,47,0.903161 +1,INTC,3/25/2011 09:00:00,$19.90,$20.60,$19.88,$20.37,229150771,2.36181,-34.04330333,347426088,$20.44,$19.72,-3.5225,40,0.883652 +1,JNJ,1/7/2011 09:00:00,$62.63,$63.54,$62.53,$62.60,57774737,-0.0479004,,,$62.29,$62.55,0.417402,49,0.86262 +1,JNJ,1/14/2011 09:00:00,$62.29,$62.98,$62.00,$62.55,34950419,0.417402,-39.50570645,57774737,$62.21,$62.66,0.723356,42,0.863309 +1,JNJ,1/21/2011 09:00:00,$62.21,$63.25,$62.01,$62.66,47999880,0.723356,37.33706597,34950419,$62.56,$60.01,-4.07609,35,0.861794 +1,JNJ,1/28/2011 09:00:00,$62.56,$62.72,$60.00,$60.01,86229071,-4.07609,79.64434703,47999880,$60.16,$60.84,1.13032,28,0.89985 +1,JNJ,2/4/2011 09:00:00,$60.16,$60.99,$59.69,$60.84,63641929,1.13032,-26.19434692,86229071,$60.88,$60.70,-0.295664,21,0.887574 +1,JNJ,2/11/2011 09:00:00,$60.88,$61.17,$60.42,$60.70,42897125,-0.295664,-32.596127,63641929,$60.69,$61.11,0.692042,14,0.889621 +1,JNJ,2/18/2011 09:00:00,$60.69,$61.11,$60.33,$61.11,33273371,0.692042,-22.43449648,42897125,$60.68,$59.64,-1.71391,7,0.883652 +1,JNJ,2/25/2011 09:00:00,$60.68,$61.08,$59.36,$59.64,46786798,-1.71391,40.61333912,33273371,$59.93,$61.06,1.88553,0,0.905433 +1,JNJ,3/4/2011 09:00:00,$59.93,$61.50,$59.77,$61.06,63576642,1.88553,35.88585823,46786798,$61.09,$59.69,-2.2917,83,0.933508 +1,JNJ,3/11/2011 09:00:00,$61.09,$61.10,$59.11,$59.69,53844149,-2.2917,-15.30828413,63576642,$59.49,$58.57,-1.54648,76,0.954934 +1,JNJ,3/18/2011 09:00:00,$59.49,$59.49,$57.50,$58.57,71716802,-1.54648,33.19330574,53844149,$58.67,$58.98,0.528379,69,0.973194 +1,JNJ,3/25/2011 09:00:00,$58.67,$59.16,$58.50,$58.98,47498000,0.528379,-33.77005294,71716802,$58.98,$59.49,0.8647,62,0.966429 +1,JPM,1/7/2011 09:00:00,$43.00,$44.95,$42.64,$43.64,234547885,1.48837,,,$43.27,$44.91,3.79015,87,0.572869 +1,JPM,1/14/2011 09:00:00,$43.27,$44.97,$43.00,$44.91,144662779,3.79015,-38.32271009,234547885,$45.02,$45.29,0.599733,80,0.556669 +1,JPM,1/21/2011 09:00:00,$45.02,$45.54,$43.60,$45.29,182971761,0.599733,26.48157478,144662779,$45.21,$44.54,-1.48197,73,0.551998 +1,JPM,1/28/2011 09:00:00,$45.21,$45.88,$44.26,$44.54,154832501,-1.48197,-15.37901797,182971761,$44.41,$44.59,0.405314,66,0.561293 +1,JPM,2/4/2011 09:00:00,$44.41,$46.00,$44.30,$44.59,137430065,0.405314,-11.23952393,154832501,$44.75,$46.57,4.06704,59,0.560664 +1,JPM,2/11/2011 09:00:00,$44.75,$46.89,$44.65,$46.57,162434145,4.06704,18.19403927,137430065,$46.00,$48.00,4.34783,52,0.536826 +1,JPM,2/18/2011 09:00:00,$46.00,$48.00,$46.00,$48.00,131941706,4.34783,-18.77218549,162434145,$47.20,$46.68,-1.10169,45,0.520833 +1,JPM,2/25/2011 09:00:00,$47.20,$47.27,$45.21,$46.68,139540125,-1.10169,5.758921292,131941706,$46.81,$45.52,-2.75582,38,0.535561 +1,JPM,3/4/2011 09:00:00,$46.81,$47.18,$45.07,$45.52,139051830,-2.75582,-0.349931606,139540125,$45.62,$45.74,0.263043,31,0.549209 +1,JPM,3/11/2011 09:00:00,$45.62,$47.10,$44.76,$45.74,140414285,0.263043,0.979818101,139051830,$45.42,$45.74,0.704535,24,0.546568 +1,JPM,3/18/2011 09:00:00,$45.42,$46.18,$43.40,$45.74,226413618,0.704535,61.24685462,140414285,$46.28,$45.86,-0.907519,17,0.546568 +1,JPM,3/25/2011 09:00:00,$46.28,$46.38,$44.77,$45.86,117959443,-0.907519,-47.9009063,226413618,$46.10,$46.35,0.542299,10,0.545137 +1,KRFT,1/7/2011 09:00:00,$31.76,$31.76,$31.14,$31.19,44971770,-1.79471,,,$30.91,$31.34,1.39114,81,0.929785 +1,KRFT,1/14/2011 09:00:00,$30.91,$31.72,$30.89,$31.34,24955086,1.39114,-44.50944226,44971770,$31.41,$31.35,-0.191022,74,0.925335 +1,KRFT,1/21/2011 09:00:00,$31.41,$31.52,$30.89,$31.35,41200255,-0.191022,65.09762779,24955086,$31.39,$30.53,-2.73973,67,0.92504 +1,KRFT,1/28/2011 09:00:00,$31.39,$31.77,$30.50,$30.53,55657855,-2.73973,35.09104495,41200255,$30.53,$31.19,2.16181,60,0.949885 +1,KRFT,2/4/2011 09:00:00,$30.53,$31.22,$30.21,$31.19,34764359,2.16181,-37.53916855,55657855,$31.18,$30.66,-1.66774,53,0.929785 +1,KRFT,2/11/2011 09:00:00,$31.18,$31.25,$30.24,$30.66,65912258,-1.66774,89.59721938,34764359,$30.67,$30.91,0.782524,46,0.945858 +1,KRFT,2/18/2011 09:00:00,$30.67,$30.93,$30.26,$30.91,38172345,0.782524,-42.08612152,65912258,$30.72,$31.71,3.22266,39,0.938208 +1,KRFT,2/25/2011 09:00:00,$30.72,$32.20,$30.66,$31.71,50462721,3.22266,32.19706832,38172345,$31.82,$31.58,-0.754243,32,0.914538 +1,KRFT,3/4/2011 09:00:00,$31.82,$31.88,$31.28,$31.58,55211152,-0.754243,9.409779944,50462721,$31.56,$31.70,0.443599,25,0.918303 +1,KRFT,3/11/2011 09:00:00,$31.56,$31.79,$31.18,$31.70,41766976,0.443599,-24.3504718,55211152,$31.51,$30.99,-1.65027,18,0.914827 +1,KRFT,3/18/2011 09:00:00,$31.51,$31.60,$30.45,$30.99,51736270,-1.65027,23.86884317,41766976,$30.78,$31.26,1.55945,11,0.935786 +1,KRFT,3/25/2011 09:00:00,$30.78,$31.49,$30.43,$31.26,41958399,1.55945,-18.899451,51736270,$31.35,$31.61,0.829346,4,0.927703 +1,KO,1/7/2011 09:00:00,$65.88,$65.88,$62.56,$62.92,59802189,-4.49302,,,$62.70,$63.13,0.685805,63,0.74698 +1,KO,1/14/2011 09:00:00,$62.70,$63.86,$62.56,$63.13,31297830,0.685805,-47.6644074,59802189,$63.21,$62.77,-0.696092,56,0.744496 +1,KO,1/21/2011 09:00:00,$63.21,$63.92,$62.72,$62.77,36000586,-0.696092,15.02582128,31297830,$62.87,$62.21,-1.04979,49,0.748765 +1,KO,1/28/2011 09:00:00,$62.87,$63.31,$62.14,$62.21,42141599,-1.04979,17.05809178,36000586,$62.32,$62.56,0.385109,42,0.755506 +1,KO,2/4/2011 09:00:00,$62.32,$63.48,$61.89,$62.56,34863226,0.385109,-17.27123121,42141599,$62.67,$63.57,1.43609,35,0.751279 +1,KO,2/11/2011 09:00:00,$62.67,$64.75,$62.32,$63.57,46269528,1.43609,32.71728784,34863226,$63.67,$64.55,1.38213,28,0.739342 +1,KO,2/18/2011 09:00:00,$63.67,$64.72,$62.55,$64.55,29937386,1.38213,-35.29783576,46269528,$63.36,$64.31,1.49937,21,0.728118 +1,KO,2/25/2011 09:00:00,$63.36,$64.40,$63.33,$64.31,32331825,1.49937,7.998156552,29937386,$64.17,$65.21,1.62069,14,0.730835 +1,KO,3/4/2011 09:00:00,$64.17,$65.87,$63.86,$65.21,61665987,1.62069,90.72844481,32331825,$65.32,$64.81,-0.780772,7,0.720748 +1,KO,3/11/2011 09:00:00,$65.32,$65.84,$64.47,$64.81,44560041,-0.780772,-27.73967763,61665987,$64.34,$62.70,-2.54896,0,0.725197 +1,KO,3/18/2011 09:00:00,$64.34,$64.61,$61.29,$62.70,59542953,-2.54896,33.62409833,44560041,$63.13,$65.22,3.31063,87,0.749601 +1,KO,3/25/2011 09:00:00,$63.13,$65.39,$63.05,$65.22,29853434,3.31063,-49.86235567,59542953,$65.20,$67.22,3.09816,80,0.720638 +1,MCD,1/7/2011 09:00:00,$77.10,$77.59,$73.59,$74.37,85400677,-3.54086,,,$74.25,$74.06,-0.255892,49,0.820223 +1,MCD,1/14/2011 09:00:00,$74.25,$74.49,$72.46,$74.06,44895850,-0.255892,-47.42916382,85400677,$74.65,$75.01,0.482251,42,0.823656 +1,MCD,1/21/2011 09:00:00,$74.65,$75.75,$74.31,$75.01,40056497,0.482251,-10.77906533,44895850,$74.25,$73.28,-1.3064,35,0.813225 +1,MCD,1/28/2011 09:00:00,$74.25,$75.85,$73.05,$73.28,46734907,-1.3064,16.67247638,40056497,$73.80,$74.05,0.338753,28,0.832424 +1,MCD,2/4/2011 09:00:00,$73.80,$74.50,$73.08,$74.05,41519549,0.338753,-11.15944876,46734907,$74.13,$76.14,2.71145,21,0.823768 +1,MCD,2/11/2011 09:00:00,$74.13,$76.32,$73.30,$76.14,39363816,2.71145,-5.192091561,41519549,$76.07,$76.13,0.0788747,14,0.801156 +1,MCD,2/18/2011 09:00:00,$76.07,$76.45,$75.70,$76.13,16734140,0.0788747,-57.48852195,39363816,$75.95,$74.44,-1.98815,7,0.801261 +1,MCD,2/25/2011 09:00:00,$75.95,$76.45,$74.42,$74.44,27881213,-1.98815,66.61276289,16734140,$74.51,$76.03,2.03999,0,0.819452 +1,MCD,3/4/2011 09:00:00,$74.51,$76.63,$73.64,$76.03,41047787,2.03999,47.22382057,27881213,$76.38,$76.73,0.458235,84,0.802315 +1,MCD,3/11/2011 09:00:00,$76.38,$77.25,$74.97,$76.73,34855064,0.458235,-15.08661843,41047787,$76.10,$72.99,-4.08673,77,0.794995 +1,MCD,3/18/2011 09:00:00,$76.10,$76.41,$72.89,$72.99,40853280,-4.08673,17.20902306,34855064,$73.50,$75.25,2.38095,70,0.835731 +1,MCD,3/25/2011 09:00:00,$73.50,$75.75,$73.38,$75.25,23877441,2.38095,-41.55318496,40853280,$75.55,$75.99,0.582396,63,0.810631 +1,MMM,1/7/2011 09:00:00,$86.75,$87.90,$85.63,$86.23,16166921,-0.599424,,,$85.70,$88.10,2.80047,40,0.637829 +1,MMM,1/14/2011 09:00:00,$85.70,$88.80,$85.70,$88.10,11585909,2.80047,-28.33571092,16166921,$87.84,$89.29,1.65073,33,0.624291 +1,MMM,1/21/2011 09:00:00,$87.84,$89.39,$87.25,$89.29,10705548,1.65073,-7.598549238,11585909,$89.21,$87.44,-1.98408,26,0.61597 +1,MMM,1/28/2011 09:00:00,$89.21,$90.50,$87.20,$87.44,26110543,-1.98408,143.8973045,10705548,$87.93,$88.29,0.409417,19,0.629003 +1,MMM,2/4/2011 09:00:00,$87.93,$88.45,$87.31,$88.29,14960948,0.409417,-42.70150567,26110543,$88.17,$91.80,4.11705,12,0.622947 +1,MMM,2/11/2011 09:00:00,$88.17,$91.95,$87.81,$91.80,16315175,4.11705,9.051745919,14960948,$91.72,$92.96,1.35194,5,0.599129 +1,MMM,2/18/2011 09:00:00,$91.72,$92.96,$91.00,$92.96,13431331,1.35194,-17.6758386,16315175,$92.73,$90.25,-2.67443,89,0.591652 +1,MMM,2/25/2011 09:00:00,$92.73,$93.65,$89.27,$90.25,17249356,-2.67443,28.42625947,13431331,$91.90,$92.19,0.31556,82,0.609418 +1,MMM,3/4/2011 09:00:00,$91.90,$93.40,$90.24,$92.19,17453306,0.31556,1.182362982,17249356,$92.58,$91.61,-1.04774,75,0.596594 +1,MMM,3/11/2011 09:00:00,$92.58,$94.16,$89.71,$91.61,18144593,-1.04774,3.960779694,17453306,$91.21,$88.98,-2.44491,68,0.600371 +1,MMM,3/18/2011 09:00:00,$91.21,$91.21,$86.91,$88.98,23633329,-2.44491,30.24998136,18144593,$90.27,$92.27,2.21558,61,0.618116 +1,MMM,3/25/2011 09:00:00,$90.27,$92.98,$90.17,$92.27,14970403,2.21558,-36.65554692,23633329,$92.42,$93.13,0.768232,54,0.596077 +1,MRK,1/7/2011 09:00:00,$36.29,$37.35,$35.85,$37.35,72760487,2.92091,,,$37.26,$34.23,-8.13204,63,1.0174 +1,MRK,1/14/2011 09:00:00,$37.26,$37.61,$34.23,$34.23,108158891,-8.13204,48.65058696,72760487,$34.07,$33.90,-0.498973,56,1.11014 +1,MRK,1/21/2011 09:00:00,$34.07,$34.30,$33.48,$33.90,131132702,-0.498973,21.24079749,108158891,$33.99,$33.07,-2.70668,49,1.12094 +1,MRK,1/28/2011 09:00:00,$33.99,$33.99,$33.00,$33.07,110066602,-2.70668,-16.06471893,131132702,$33.29,$32.89,-1.20156,42,1.14908 +1,MRK,2/4/2011 09:00:00,$33.29,$34.04,$32.51,$32.89,114880019,-1.20156,4.373185792,110066602,$32.94,$33.07,0.394657,35,1.15537 +1,MRK,2/11/2011 09:00:00,$32.94,$33.30,$32.74,$33.07,62039482,0.394657,-45.99628156,114880019,$32.97,$32.85,-0.363967,28,1.14908 +1,MRK,2/18/2011 09:00:00,$32.97,$33.19,$32.65,$32.85,54419625,-0.363967,-12.28227051,62039482,$32.75,$32.19,-1.70992,21,1.15677 +1,MRK,2/25/2011 09:00:00,$32.75,$32.80,$31.85,$32.19,57467917,-1.70992,5.601457195,54419625,$32.20,$33.06,2.67081,14,1.18049 +1,MRK,3/4/2011 09:00:00,$32.20,$33.36,$32.19,$33.06,128028062,2.67081,122.7818036,57467917,$33.00,$32.73,-0.818182,7,1.14943 +1,MRK,3/11/2011 09:00:00,$33.00,$33.48,$32.45,$32.73,91319466,-0.818182,-28.67230467,128028062,$32.50,$31.91,-1.81538,0,1.16101 +1,MRK,3/18/2011 09:00:00,$32.50,$32.60,$31.06,$31.91,86394177,-1.81538,-5.393471092,91319466,$32.09,$32.57,1.49579,87,1.19085 +1,MRK,3/25/2011 09:00:00,$32.09,$32.90,$32.04,$32.57,66135182,1.49579,-23.44949128,86394177,$32.54,$33.07,1.62876,80,1.16672 +1,MSFT,1/7/2011 09:00:00,$28.05,$28.85,$27.77,$28.60,328646154,1.96078,,,$28.20,$28.30,0.35461,39,0.559441 +1,MSFT,1/14/2011 09:00:00,$28.20,$28.50,$28.00,$28.30,227601331,0.35461,-30.74577985,328646154,$28.16,$28.02,-0.497159,32,0.565371 +1,MSFT,1/21/2011 09:00:00,$28.16,$28.74,$28.02,$28.02,220040646,-0.497159,-3.321898412,227601331,$28.02,$27.75,-0.963597,25,0.571021 +1,MSFT,1/28/2011 09:00:00,$28.02,$29.46,$27.45,$27.75,457318851,-0.963597,107.8338068,220040646,$27.77,$27.77,0,18,0.576577 +1,MSFT,2/4/2011 09:00:00,$27.77,$28.11,$27.42,$27.77,274432773,0,-39.99093359,457318851,$27.80,$27.25,-1.97842,11,0.576161 +1,MSFT,2/11/2011 09:00:00,$27.80,$28.34,$27.07,$27.25,317408348,-1.97842,15.65978237,274432773,$27.20,$27.06,-0.514706,4,0.587156 +1,MSFT,2/18/2011 09:00:00,$27.20,$27.37,$26.60,$27.06,228916129,-0.514706,-27.87961298,317408348,$26.78,$26.55,-0.85885,88,0.591279 +1,MSFT,2/25/2011 09:00:00,$26.78,$27.10,$26.43,$26.55,238628349,-0.85885,4.242697988,228916129,$26.69,$25.95,-2.77257,81,0.602637 +1,MSFT,3/4/2011 09:00:00,$26.69,$26.86,$25.80,$25.95,298801508,-2.77257,25.2162659,238628349,$26.13,$25.68,-1.72216,74,0.61657 +1,MSFT,3/11/2011 09:00:00,$26.13,$26.27,$25.35,$25.68,271799244,-1.72216,-9.036856668,298801508,$25.49,$24.80,-2.70694,67,0.623053 +1,MSFT,3/18/2011 09:00:00,$25.49,$25.76,$24.68,$24.80,379216242,-2.70694,39.52071257,271799244,$25.18,$25.62,1.74742,60,0.645161 +1,MSFT,3/25/2011 09:00:00,$25.18,$25.95,$25.15,$25.62,217545216,1.74742,-42.63293817,379216242,$25.66,$25.48,-0.701481,53,0.624512 +1,PFE,1/7/2011 09:00:00,$17.70,$18.38,$17.62,$18.34,386804789,3.61582,,,$18.22,$18.34,0.658617,26,1.09051 +1,PFE,1/14/2011 09:00:00,$18.22,$18.48,$18.13,$18.34,218359623,0.658617,-43.54784915,386804789,$18.35,$18.36,0.0544959,19,1.09051 +1,PFE,1/21/2011 09:00:00,$18.35,$18.49,$18.02,$18.36,159663706,0.0544959,-26.88038942,218359623,$18.33,$18.15,-0.981997,12,1.08932 +1,PFE,1/28/2011 09:00:00,$18.33,$18.76,$18.14,$18.15,277157388,-0.981997,73.58822173,159663706,$18.19,$19.30,6.10225,5,1.10193 +1,PFE,2/4/2011 09:00:00,$18.19,$19.39,$18.16,$19.30,358819619,6.10225,29.46420862,277157388,$19.27,$18.83,-2.28334,96,1.03627 +1,PFE,2/11/2011 09:00:00,$19.27,$19.30,$18.62,$18.83,180912039,-2.28334,-49.58134131,358819619,$18.82,$19.19,1.96599,89,1.06213 +1,PFE,2/18/2011 09:00:00,$18.82,$19.39,$18.72,$19.19,153153528,1.96599,-15.34365051,180912039,$18.88,$18.86,-0.105932,82,1.04221 +1,PFE,2/25/2011 09:00:00,$18.88,$19.13,$18.67,$18.86,177077740,-0.105932,15.6210649,153153528,$18.95,$19.66,3.7467,75,1.06045 +1,PFE,3/4/2011 09:00:00,$18.95,$19.90,$18.90,$19.66,257979737,3.7467,45.68727667,177077740,$19.64,$19.47,-0.86558,68,1.01729 +1,PFE,3/11/2011 09:00:00,$19.64,$19.75,$19.30,$19.47,195391037,-0.86558,-24.26109148,257979737,$19.45,$20.18,3.75321,61,1.02722 +1,PFE,3/18/2011 09:00:00,$19.45,$20.29,$19.15,$20.18,457640533,3.75321,134.2177717,195391037,$20.32,$20.35,0.147638,54,0.99108 +1,PFE,3/25/2011 09:00:00,$20.32,$20.50,$19.74,$20.35,215914627,0.147638,-52.82003856,457640533,$20.42,$20.38,-0.195886,47,0.982801 +1,PG,1/7/2011 09:00:00,$64.39,$65.08,$64.00,$64.50,52323352,0.170834,,,$64.40,$65.53,1.75466,12,0.744186 +1,PG,1/14/2011 09:00:00,$64.40,$65.53,$63.40,$65.53,41932473,1.75466,-19.85897043,52323352,$65.65,$65.91,0.39604,5,0.732489 +1,PG,1/21/2011 09:00:00,$65.65,$65.95,$65.05,$65.91,46213962,0.39604,10.21043762,41932473,$65.90,$64.20,-2.57967,96,0.804127 +1,PG,1/28/2011 09:00:00,$65.90,$66.95,$63.14,$64.20,70042160,-2.57967,51.56060413,46213962,$64.35,$63.61,-1.14996,89,0.825545 +1,PG,2/4/2011 09:00:00,$64.35,$64.36,$62.30,$63.61,57201539,-1.14996,-18.33270276,70042160,$63.95,$64.73,1.2197,82,0.833202 +1,PG,2/11/2011 09:00:00,$63.95,$64.97,$63.80,$64.73,51999812,1.2197,-9.093683651,57201539,$64.80,$64.30,-0.771605,75,0.818786 +1,PG,2/18/2011 09:00:00,$64.80,$64.80,$63.40,$64.30,36098973,-0.771605,-30.57864709,51999812,$63.73,$62.84,-1.39652,68,0.824261 +1,PG,2/25/2011 09:00:00,$63.73,$64.40,$62.53,$62.84,47748854,-1.39652,32.2720566,36098973,$62.80,$62.03,-1.22611,61,0.843412 +1,PG,3/4/2011 09:00:00,$62.80,$63.65,$61.56,$62.03,59801160,-1.22611,25.2410372,47748854,$62.00,$61.49,-0.822581,54,0.854425 +1,PG,3/11/2011 09:00:00,$62.00,$62.30,$61.12,$61.49,52731797,-0.822581,-11.82144795,59801160,$61.04,$60.60,-0.720839,47,0.861929 +1,PG,3/18/2011 09:00:00,$61.04,$61.39,$59.70,$60.60,66311521,-0.720839,25.75243927,52731797,$60.96,$60.88,-0.131234,40,0.874587 +1,PG,3/25/2011 09:00:00,$60.96,$61.52,$60.54,$60.88,41351155,-0.131234,-37.64106994,66311521,$61.08,$62.08,1.6372,33,0.870565 +1,T,1/7/2011 09:00:00,$29.68,$30.10,$28.66,$28.85,157834347,-2.7965,,,$28.54,$28.43,-0.385424,30,1.49047 +1,T,1/14/2011 09:00:00,$28.54,$28.61,$27.71,$28.43,170616350,-0.385424,8.098365941,157834347,$28.55,$28.33,-0.770578,23,1.51249 +1,T,1/21/2011 09:00:00,$28.55,$28.59,$28.15,$28.33,130584257,-0.770578,-23.46322202,170616350,$28.46,$27.49,-3.40829,16,1.51783 +1,T,1/28/2011 09:00:00,$28.46,$28.95,$27.41,$27.49,171464186,-3.40829,31.30540384,130584257,$27.42,$27.97,2.00584,9,1.56421 +1,T,2/4/2011 09:00:00,$27.42,$28.06,$27.20,$27.97,118469916,2.00584,-30.90690321,171464186,$27.97,$28.47,1.78763,2,1.53736 +1,T,2/11/2011 09:00:00,$27.97,$28.59,$27.63,$28.47,128889979,1.78763,8.795535062,118469916,$28.40,$28.57,0.598592,54,1.51036 +1,T,2/18/2011 09:00:00,$28.40,$28.57,$28.00,$28.57,88244232,0.598592,-31.53522664,128889979,$28.32,$28.13,-0.670904,47,1.50508 +1,T,2/25/2011 09:00:00,$28.32,$28.42,$27.61,$28.13,94960503,-0.670904,7.611002836,88244232,$28.25,$27.92,-1.16814,40,1.52862 +1,T,3/4/2011 09:00:00,$28.25,$28.53,$27.79,$27.92,118740085,-1.16814,25.04155017,94960503,$27.95,$28.46,1.82469,33,1.54011 +1,T,3/11/2011 09:00:00,$27.95,$28.89,$27.73,$28.46,139153253,1.82469,17.19147161,118740085,$28.32,$27.94,-1.34181,26,1.51089 +1,T,3/18/2011 09:00:00,$28.32,$28.42,$27.27,$27.94,153806769,-1.34181,10.53048756,139153253,$28.77,$28.85,0.278067,19,1.53901 +1,T,3/25/2011 09:00:00,$28.77,$29.10,$27.95,$28.85,169105318,0.278067,9.946603195,153806769,$29.02,$30.62,5.51344,12,1.49047 +1,TRV,1/7/2011 09:00:00,$56.09,$56.34,$52.88,$53.33,20010115,-4.92066,,,$53.12,$54.63,2.84262,60,0.675042 +1,TRV,1/14/2011 09:00:00,$53.12,$54.84,$52.96,$54.63,14820631,2.84262,-25.93430373,20010115,$54.62,$55.00,0.695716,53,0.658979 +1,TRV,1/21/2011 09:00:00,$54.62,$55.24,$54.07,$55.00,13631048,0.695716,-8.026534093,14820631,$55.14,$55.81,1.21509,46,0.654545 +1,TRV,1/28/2011 09:00:00,$55.14,$57.78,$54.97,$55.81,26595621,1.21509,95.11061072,13631048,$55.81,$57.41,2.86687,39,0.645046 +1,TRV,2/4/2011 09:00:00,$55.81,$57.52,$55.81,$57.41,27494461,2.86687,3.379654117,26595621,$57.32,$58.99,2.91347,32,0.627068 +1,TRV,2/11/2011 09:00:00,$57.32,$59.12,$56.97,$58.99,19539527,2.91347,-28.93286033,27494461,$58.84,$60.92,3.53501,25,0.610273 +1,TRV,2/18/2011 09:00:00,$58.84,$60.92,$58.53,$60.92,14107769,3.53501,-27.79882031,19539527,$60.60,$59.60,-1.65016,18,0.590939 +1,TRV,2/25/2011 09:00:00,$60.60,$61.15,$59.05,$59.60,20849299,-1.65016,47.78593979,14107769,$59.60,$59.18,-0.704698,11,0.604027 +1,TRV,3/4/2011 09:00:00,$59.60,$60.02,$58.53,$59.18,20284170,-0.704698,-2.710541971,20849299,$59.26,$58.88,-0.641242,4,0.608314 +1,TRV,3/11/2011 09:00:00,$59.26,$59.72,$57.88,$58.88,15980871,-0.641242,-21.21506081,20284170,$58.47,$58.06,-0.701214,89,0.696332 +1,TRV,3/18/2011 09:00:00,$58.47,$59.51,$57.51,$58.06,24832210,-0.701214,55.38708747,15980871,$58.44,$58.98,0.924025,82,0.706166 +1,TRV,3/25/2011 09:00:00,$58.44,$59.28,$57.99,$58.98,14126721,0.924025,-43.11130181,24832210,$59.09,$59.71,1.04925,75,0.695151 +1,UTX,1/7/2011 09:00:00,$79.19,$79.75,$78.40,$79.08,15797841,-0.138906,,,$78.27,$79.08,1.03488,40,0.543753 +1,UTX,1/14/2011 09:00:00,$78.27,$79.90,$77.81,$79.08,12713121,1.03488,-19.52621247,15797841,$79.28,$80.20,1.16044,33,0.543753 +1,UTX,1/21/2011 09:00:00,$79.28,$80.50,$78.98,$80.20,16471934,1.16044,29.56640623,12713121,$80.26,$81.43,1.45776,26,0.53616 +1,UTX,1/28/2011 09:00:00,$80.26,$83.08,$80.26,$81.43,23565688,1.45776,43.06570194,16471934,$81.80,$82.52,0.880196,19,0.528061 +1,UTX,2/4/2011 09:00:00,$81.80,$82.60,$80.66,$82.52,15689029,0.880196,-33.42426922,23565688,$82.85,$85.20,2.83645,12,0.521086 +1,UTX,2/11/2011 09:00:00,$82.85,$85.46,$82.73,$85.20,16641148,2.83645,6.06869297,15689029,$85.07,$85.01,-0.0705302,5,0.504695 +1,UTX,2/18/2011 09:00:00,$85.07,$85.44,$84.25,$85.01,11922670,-0.0705302,-28.35428181,16641148,$84.54,$83.37,-1.38396,89,0.564639 +1,UTX,2/25/2011 09:00:00,$84.54,$84.69,$81.81,$83.37,15551183,-1.38396,30.43372835,11922670,$83.58,$82.86,-0.86145,82,0.575747 +1,UTX,3/4/2011 09:00:00,$83.58,$84.24,$81.42,$82.86,19167224,-0.86145,23.25251397,15551183,$83.03,$81.28,-2.10767,75,0.57929 +1,UTX,3/11/2011 09:00:00,$83.03,$84.05,$80.26,$81.28,22004496,-2.10767,14.80272782,19167224,$80.74,$80.16,-0.718355,68,0.590551 +1,UTX,3/18/2011 09:00:00,$80.74,$81.23,$77.05,$80.16,26234929,-0.718355,19.22531195,22004496,$81.30,$83.52,2.73063,61,0.598802 +1,UTX,3/25/2011 09:00:00,$81.30,$83.59,$80.57,$83.52,19032729,2.73063,-27.4527139,26234929,$83.75,$85.32,1.87463,54,0.574713 +1,VZ,1/7/2011 09:00:00,$36.06,$37.70,$35.41,$35.93,141938064,-0.36051,,,$36.55,$35.46,-2.98222,89,1.36376 +1,VZ,1/14/2011 09:00:00,$36.55,$36.58,$34.98,$35.46,130610954,-2.98222,-7.980318796,141938064,$35.38,$34.95,-1.21538,82,1.38184 +1,VZ,1/21/2011 09:00:00,$35.38,$35.51,$34.35,$34.95,108296302,-1.21538,-17.08482429,130610954,$34.88,$35.63,2.15023,75,1.402 +1,VZ,1/28/2011 09:00:00,$34.88,$36.59,$34.88,$35.63,124127036,2.15023,14.61798206,108296302,$35.64,$36.31,1.87991,68,1.37525 +1,VZ,2/4/2011 09:00:00,$35.64,$36.48,$35.38,$36.31,72890565,1.87991,-41.2774466,124127036,$36.30,$36.39,0.247934,61,1.34949 +1,VZ,2/11/2011 09:00:00,$36.30,$36.77,$35.77,$36.39,78429505,0.247934,7.598980746,72890565,$36.31,$36.62,0.853759,54,1.34652 +1,VZ,2/18/2011 09:00:00,$36.31,$36.62,$35.66,$36.62,68915874,0.853759,-12.13016836,78429505,$36.24,$35.97,-0.745033,47,1.33807 +1,VZ,2/25/2011 09:00:00,$36.24,$36.32,$35.34,$35.97,57673647,-0.745033,-16.31297167,68915874,$36.06,$36.08,0.0554631,40,1.36225 +1,VZ,3/4/2011 09:00:00,$36.06,$36.94,$35.85,$36.08,80086312,0.0554631,38.86118906,57673647,$36.13,$35.85,-0.774979,33,1.35809 +1,VZ,3/11/2011 09:00:00,$36.13,$36.65,$35.65,$35.85,66137992,-0.774979,-17.41660922,80086312,$35.74,$35.84,0.279799,26,1.36681 +1,VZ,3/18/2011 09:00:00,$35.74,$35.84,$33.36,$35.84,124202175,0.279799,87.7924794,66137992,$36.66,$37.29,1.71849,19,1.36719 +1,VZ,3/25/2011 09:00:00,$36.66,$37.32,$36.37,$37.29,79604168,1.71849,-35.90758938,124202175,$37.44,$38.47,2.75107,12,1.31403 +1,WMT,1/7/2011 09:00:00,$54.23,$55.07,$53.76,$54.08,64231179,-0.2766,,,$53.65,$54.81,2.16216,61,0.684172 +1,WMT,1/14/2011 09:00:00,$53.65,$55.36,$53.54,$54.81,48929455,2.16216,-23.82289137,64231179,$55.11,$55.73,1.12502,54,0.675059 +1,WMT,1/21/2011 09:00:00,$55.11,$56.27,$54.71,$55.73,53009787,1.12502,8.339214079,48929455,$55.39,$56.70,2.36505,47,0.663915 +1,WMT,1/28/2011 09:00:00,$55.39,$57.90,$55.30,$56.70,69546259,2.36505,31.19513006,53009787,$56.45,$56.03,-0.744021,40,0.652557 +1,WMT,2/4/2011 09:00:00,$56.45,$56.58,$55.39,$56.03,60981950,-0.744021,-12.31455023,69546259,$56.07,$55.69,-0.677724,33,0.660361 +1,WMT,2/11/2011 09:00:00,$56.07,$56.73,$55.30,$55.69,49477410,-0.677724,-18.86548397,60981950,$55.26,$55.38,0.217155,26,0.664392 +1,WMT,2/18/2011 09:00:00,$55.26,$55.38,$54.35,$55.38,51556658,0.217155,4.202418841,49477410,$53.81,$51.75,-3.82828,19,0.668111 +1,WMT,2/25/2011 09:00:00,$53.81,$54.01,$51.52,$51.75,92696912,-3.82828,79.79620013,51556658,$51.75,$52.07,0.618357,12,0.714976 +1,WMT,3/4/2011 09:00:00,$51.75,$52.60,$51.68,$52.07,74964203,0.618357,-19.12977317,92696912,$52.26,$52.59,0.631458,5,0.710582 +1,WMT,3/11/2011 09:00:00,$52.26,$53.88,$51.75,$52.59,69185186,0.631458,-7.709035471,74964203,$52.35,$51.52,-1.58548,61,0.703556 +1,WMT,3/18/2011 09:00:00,$52.35,$52.52,$50.97,$51.52,63198175,-1.58548,-8.653602521,69185186,$51.73,$52.35,1.19853,54,0.718168 +1,WMT,3/25/2011 09:00:00,$51.73,$52.95,$51.38,$52.35,53385178,1.19853,-15.52734236,63198175,$52.31,$52.13,-0.344102,47,0.706781 +1,XOM,1/7/2011 09:00:00,$73.72,$75.90,$73.64,$75.59,101740933,2.53663,,,$75.13,$77.84,3.60708,52,0.582088 +1,XOM,1/14/2011 09:00:00,$75.13,$77.84,$74.58,$77.84,74376886,3.60708,-26.89580899,101740933,$77.79,$78.98,1.52976,45,0.565262 +1,XOM,1/21/2011 09:00:00,$77.79,$79.10,$76.77,$78.98,99941187,1.52976,34.37129782,74376886,$78.85,$78.99,0.177552,38,0.557103 +1,XOM,1/28/2011 09:00:00,$78.85,$79.98,$77.93,$78.99,115376817,0.177552,15.4447135,99941187,$79.92,$83.28,4.2042,31,0.557033 +1,XOM,2/4/2011 09:00:00,$79.92,$83.98,$79.01,$83.28,129743696,4.2042,12.45213672,115376817,$83.45,$82.82,-0.754943,24,0.528338 +1,XOM,2/11/2011 09:00:00,$83.45,$84.00,$81.61,$82.82,85733429,-0.754943,-33.920929,129743696,$82.00,$84.50,3.04878,17,0.531273 +1,XOM,2/18/2011 09:00:00,$82.00,$85.10,$81.80,$84.50,93325562,3.04878,8.855510725,85733429,$84.97,$85.34,0.435448,10,0.52071 +1,XOM,2/25/2011 09:00:00,$84.97,$88.23,$84.73,$85.34,122018405,0.435448,30.74489174,93325562,$85.87,$85.08,-0.919995,3,0.515585 +1,XOM,3/4/2011 09:00:00,$85.87,$86.56,$83.55,$85.08,102134160,-0.919995,-16.29610303,122018405,$85.84,$82.12,-4.33364,68,0.552421 +1,XOM,3/11/2011 09:00:00,$85.84,$86.08,$80.10,$82.12,92727886,-4.33364,-9.209723759,102134160,$81.67,$80.85,-1.00404,61,0.572333 +1,XOM,3/18/2011 09:00:00,$81.67,$82.64,$78.80,$80.85,123914255,-1.00404,33.63213629,92727886,$81.87,$83.62,2.13754,54,0.581323 +1,XOM,3/25/2011 09:00:00,$81.87,$83.93,$81.86,$83.62,83364516,2.13754,-32.72403082,123914255,$83.86,$84.68,0.97782,47,0.562066 +2,AA,4/1/2011 09:00:00,$17.13,$17.80,$17.02,$17.47,103320396,1.98482,8.131838957,95550392,$17.42,$17.92,2.87026,41,0.171723 +2,AA,4/8/2011 09:00:00,$17.42,$18.47,$17.42,$17.92,129237024,2.87026,25.08374823,103320396,$18.06,$16.52,-8.52713,34,0.167411 +2,AA,4/15/2011 09:00:00,$18.06,$18.19,$16.38,$16.52,213061090,-8.52713,64.86072134,129237024,$16.36,$16.97,3.72861,27,0.181598 +2,AA,4/21/2011 09:00:00,$16.36,$16.97,$15.88,$16.97,85235391,3.72861,-59.99485828,213061090,$16.94,$17.00,0.354191,21,0.176783 +2,AA,4/29/2011 09:00:00,$16.94,$17.24,$16.66,$17.00,90831895,0.354191,6.565939259,85235391,$17.27,$17.15,-0.694847,13,0.176471 +2,AA,5/6/2011 09:00:00,$17.27,$17.96,$16.83,$17.15,225053559,-0.694847,147.7693094,90831895,$17.16,$17.10,-0.34965,6,0.174927 +2,AA,5/13/2011 09:00:00,$17.16,$17.62,$16.75,$17.10,111630753,-0.34965,-50.39813923,225053559,$17.00,$16.26,-4.35294,82,0.175439 +2,AA,5/20/2011 09:00:00,$17.00,$17.29,$16.26,$16.26,118281015,-4.35294,5.957374488,111630753,$15.96,$16.48,3.25815,75,0.184502 +2,AA,5/27/2011 09:00:00,$15.96,$16.48,$15.83,$16.48,77236662,3.25815,-34.70071085,118281015,$16.73,$15.92,-4.8416,68,0.182039 +2,AA,6/3/2011 09:00:00,$16.73,$16.83,$15.77,$15.92,77152591,-4.8416,-0.108848567,77236662,$15.92,$15.28,-4.0201,61,0.188442 +2,AA,6/10/2011 09:00:00,$15.92,$16.03,$15.17,$15.28,94970970,-4.0201,23.09498459,77152591,$15.29,$14.72,-3.72793,54,0.196335 +2,AA,6/17/2011 09:00:00,$15.29,$15.50,$14.59,$14.72,111273573,-3.72793,17.16588027,94970970,$14.67,$15.23,3.81731,47,0.203804 +2,AA,6/24/2011 09:00:00,$14.67,$15.60,$14.56,$15.23,99423717,3.81731,-10.64929945,111273573,$15.22,$16.31,7.16163,40,0.19698 +2,AXP,4/1/2011 09:00:00,$45.54,$46.29,$45.11,$45.36,28738689,-0.395257,-6.687514765,30798332,$45.61,$46.28,1.46898,5,0.396825 +2,AXP,4/8/2011 09:00:00,$45.61,$46.49,$45.10,$46.28,31114741,1.46898,8.267781457,28738689,$46.36,$46.25,-0.237274,82,0.388937 +2,AXP,4/15/2011 09:00:00,$46.36,$46.95,$45.60,$46.25,29090940,-0.237274,-6.504315752,31114741,$45.85,$47.11,2.74809,75,0.389189 +2,AXP,4/21/2011 09:00:00,$45.85,$47.48,$45.27,$47.11,22929313,2.74809,-21.18057031,29090940,$47.19,$49.08,4.00509,69,0.382084 +2,AXP,4/29/2011 09:00:00,$47.19,$49.15,$46.77,$49.08,32470319,4.00509,41.61051838,22929313,$49.37,$50.20,1.68118,61,0.366748 +2,AXP,5/6/2011 09:00:00,$49.37,$50.47,$49.08,$50.20,43997724,1.68118,35.50136049,32470319,$50.06,$49.49,-1.13863,54,0.358566 +2,AXP,5/13/2011 09:00:00,$50.06,$50.46,$49.22,$49.49,35427164,-1.13863,-19.47955308,43997724,$49.42,$51.19,3.58155,47,0.36371 +2,AXP,5/20/2011 09:00:00,$49.42,$51.97,$49.17,$51.19,36565612,3.58155,3.213488949,35427164,$50.74,$51.13,0.768624,40,0.351631 +2,AXP,5/27/2011 09:00:00,$50.74,$51.38,$49.79,$51.13,26359875,0.768624,-27.91075123,36565612,$51.39,$49.28,-4.10586,33,0.352044 +2,AXP,6/3/2011 09:00:00,$51.39,$51.70,$49.04,$49.28,25215640,-4.10586,-4.34082104,26359875,$49.13,$47.74,-2.82923,26,0.36526 +2,AXP,6/10/2011 09:00:00,$49.13,$49.38,$47.33,$47.74,33828918,-2.82923,34.15847466,25215640,$47.96,$48.50,1.12594,19,0.377042 +2,AXP,6/17/2011 09:00:00,$47.96,$49.14,$46.92,$48.50,37705374,1.12594,11.45900085,33828918,$48.35,$48.34,-0.0206825,12,0.371134 +2,AXP,6/24/2011 09:00:00,$48.35,$50.15,$48.15,$48.34,34877916,-0.0206825,-7.498819664,37705374,$48.49,$52.34,7.93978,5,0.372362 +2,BA,4/1/2011 09:00:00,$73.50,$74.85,$73.03,$74.01,20590618,0.693878,-15.69357356,24423545,$73.38,$73.47,0.122649,40,0.567491 +2,BA,4/8/2011 09:00:00,$73.38,$74.85,$72.71,$73.47,21220138,0.122649,3.057314744,20590618,$73.65,$72.60,-1.42566,33,0.571662 +2,BA,4/15/2011 09:00:00,$73.65,$74.28,$70.88,$72.60,19492289,-1.42566,-8.142496529,21220138,$72.72,$75.44,3.74037,26,0.578512 +2,BA,4/21/2011 09:00:00,$72.72,$75.44,$71.75,$75.44,16947409,3.74037,-13.05582941,19492289,$75.51,$79.78,5.65488,20,0.556734 +2,BA,4/29/2011 09:00:00,$75.51,$80.34,$74.68,$79.78,30503034,5.65488,79.98641562,16947409,$80.35,$79.31,-1.29434,12,0.526448 +2,BA,5/6/2011 09:00:00,$80.35,$80.65,$78.09,$79.31,25394946,-1.29434,-16.74616368,30503034,$79.31,$79.03,-0.353045,5,0.529568 +2,BA,5/13/2011 09:00:00,$79.31,$80.42,$78.48,$79.03,18368201,-0.353045,-27.66985604,25394946,$78.66,$77.52,-1.44928,89,0.531444 +2,BA,5/20/2011 09:00:00,$78.66,$78.81,$75.83,$77.52,19990094,-1.44928,8.829895753,18368201,$76.55,$76.99,0.574788,82,0.541796 +2,BA,5/27/2011 09:00:00,$76.55,$76.99,$75.13,$76.99,15886795,0.574788,-20.52666186,19990094,$77.80,$74.84,-3.80463,75,0.545525 +2,BA,6/3/2011 09:00:00,$77.80,$78.35,$74.09,$74.84,17813730,-3.80463,12.12916136,15886795,$74.76,$72.69,-2.76886,68,0.561197 +2,BA,6/10/2011 09:00:00,$74.76,$75.27,$72.61,$72.69,18574466,-2.76886,4.270503707,17813730,$73.06,$74.16,1.50561,61,0.577796 +2,BA,6/17/2011 09:00:00,$73.06,$75.51,$72.69,$74.16,25381159,1.50561,36.64543035,18574466,$73.96,$71.26,-3.65062,54,0.566343 +2,BA,6/24/2011 09:00:00,$73.96,$75.02,$70.29,$71.26,30675314,-3.65062,20.85860224,25381159,$71.44,$74.27,3.96137,47,0.589391 +2,BAC,4/1/2011 09:00:00,$13.42,$13.61,$13.16,$13.37,499672763,-0.372578,-30.37656568,717678994,$13.40,$13.48,0.597015,61,0.0747943 +2,BAC,4/8/2011 09:00:00,$13.40,$13.88,$13.37,$13.48,480033181,0.597015,-3.930488803,499672763,$13.50,$12.82,-5.03704,54,0.074184 +2,BAC,4/15/2011 09:00:00,$13.50,$13.64,$12.82,$12.82,670594575,-5.03704,39.69754624,480033181,$12.59,$12.31,-2.22399,47,0.0780031 +2,BAC,4/21/2011 09:00:00,$12.59,$12.60,$12.15,$12.31,624897506,-2.22399,-6.814410779,670594575,$12.32,$12.28,-0.324675,41,0.0812348 +2,BAC,4/29/2011 09:00:00,$12.32,$12.60,$12.23,$12.28,557530217,-0.324675,-10.78053414,624897506,$12.36,$12.31,-0.404531,33,0.0814332 +2,BAC,5/6/2011 09:00:00,$12.36,$12.71,$12.20,$12.31,577232010,-0.404531,3.533762368,557530217,$12.28,$11.93,-2.85016,26,0.0812348 +2,BAC,5/13/2011 09:00:00,$12.28,$12.43,$11.91,$11.93,623724296,-2.85016,8.054349931,577232010,$11.89,$11.58,-2.60723,19,0.0838223 +2,BAC,5/20/2011 09:00:00,$11.89,$12.11,$11.53,$11.58,658968285,-2.60723,5.650571771,623724296,$11.47,$11.69,1.91805,12,0.0863558 +2,BAC,5/27/2011 09:00:00,$11.47,$11.69,$11.29,$11.69,479389107,1.91805,-27.25156614,658968285,$11.87,$11.28,-4.97051,5,0.0855432 +2,BAC,6/3/2011 09:00:00,$11.87,$11.92,$11.08,$11.28,596420503,-4.97051,24.41261061,479389107,$11.18,$10.80,-3.39893,89,0.0886525 +2,BAC,6/10/2011 09:00:00,$11.18,$11.20,$10.41,$10.80,873241317,-3.39893,46.41369849,596420503,$10.89,$10.68,-1.92837,82,0.0925926 +2,BAC,6/17/2011 09:00:00,$10.89,$11.12,$10.40,$10.68,889460755,-1.92837,1.857383255,873241317,$10.59,$10.52,-0.661001,75,0.093633 +2,BAC,6/24/2011 09:00:00,$10.59,$10.94,$10.48,$10.52,603098073,-0.661001,-32.19508903,889460755,$10.52,$11.09,5.41825,68,0.095057 +2,CAT,4/1/2011 09:00:00,$109.54,$113.59,$108.61,$113.12,28116391,3.26821,-25.69164534,37837456,$113.75,$109.82,-3.45495,19,0.388967 +2,CAT,4/8/2011 09:00:00,$113.75,$113.93,$108.88,$109.82,28772937,-3.45495,2.335100547,28116391,$110.02,$107.21,-2.55408,12,0.400656 +2,CAT,4/15/2011 09:00:00,$110.02,$110.30,$105.35,$107.21,30697889,-2.55408,6.690147759,28772937,$105.58,$109.42,3.63705,5,0.410409 +2,CAT,4/21/2011 09:00:00,$105.58,$109.42,$102.16,$109.42,23938892,3.63705,-22.01779087,30697889,$109.24,$115.41,5.64811,88,0.420398 +2,CAT,4/29/2011 09:00:00,$109.24,$116.25,$107.95,$115.41,34522949,5.64811,44.21281068,23938892,$116.24,$110.34,-5.07571,80,0.398579 +2,CAT,5/6/2011 09:00:00,$116.24,$116.55,$108.39,$110.34,39678464,-5.07571,14.93358809,34522949,$110.80,$106.33,-4.0343,73,0.416893 +2,CAT,5/13/2011 09:00:00,$110.80,$112.97,$106.02,$106.33,38211403,-4.0343,-3.697373467,39678464,$105.87,$104.33,-1.45461,66,0.432615 +2,CAT,5/20/2011 09:00:00,$105.87,$108.27,$101.47,$104.33,54274252,-1.45461,42.03679462,38211403,$101.30,$104.60,3.25765,59,0.440909 +2,CAT,5/27/2011 09:00:00,$101.30,$104.60,$100.30,$104.60,30213720,3.25765,-44.33139309,54274252,$106.41,$101.10,-4.99013,52,0.439771 +2,CAT,6/3/2011 09:00:00,$106.41,$106.60,$99.15,$101.10,35887587,-4.99013,18.77910764,30213720,$100.25,$96.79,-3.45137,45,0.454995 +2,CAT,6/10/2011 09:00:00,$100.25,$101.61,$96.42,$96.79,40431926,-3.45137,12.66270424,35887587,$96.93,$95.95,-1.01104,38,0.475256 +2,CAT,6/17/2011 09:00:00,$96.93,$98.45,$94.20,$95.95,43606429,-1.01104,7.851476084,40431926,$96.49,$100.01,3.64805,31,0.479416 +2,CAT,6/24/2011 09:00:00,$96.49,$102.50,$96.05,$100.01,43722864,3.64805,0.26701338,43606429,$99.96,$108.62,8.66347,24,0.459954 +2,CSCO,4/1/2011 09:00:00,$17.36,$17.60,$16.99,$17.04,308644641,-1.84332,8.458427651,284574143,$17.01,$17.65,3.76249,95,0.352113 +2,CSCO,4/8/2011 09:00:00,$17.01,$18.29,$17.00,$17.65,539982011,3.76249,74.95266053,308644641,$17.71,$17.03,-3.83964,88,0.339943 +2,CSCO,4/15/2011 09:00:00,$17.71,$17.76,$16.97,$17.03,324203125,-3.83964,-39.96038416,539982011,$16.88,$16.94,0.35545,81,0.352319 +2,CSCO,4/21/2011 09:00:00,$16.88,$16.96,$16.52,$16.94,249420898,0.35545,-23.06647322,324203125,$16.93,$17.52,3.48494,75,0.354191 +2,CSCO,4/29/2011 09:00:00,$16.93,$17.64,$16.90,$17.52,412492845,3.48494,65.38022608,249420898,$17.51,$17.56,0.285551,67,0.342466 +2,CSCO,5/6/2011 09:00:00,$17.51,$17.70,$17.28,$17.56,290282402,0.285551,-29.62728796,412492845,$17.53,$16.88,-3.70793,60,0.341686 +2,CSCO,5/13/2011 09:00:00,$17.53,$17.99,$16.64,$16.88,563552552,-3.70793,94.13941325,290282402,$16.82,$16.53,-1.72414,53,0.35545 +2,CSCO,5/20/2011 09:00:00,$16.82,$16.87,$16.34,$16.53,371711669,-1.72414,-34.04134758,563552552,$16.41,$16.46,0.304692,46,0.362976 +2,CSCO,5/27/2011 09:00:00,$16.41,$16.46,$16.11,$16.46,235050333,0.304692,-36.76541454,371711669,$16.59,$16.01,-3.49608,39,0.36452 +2,CSCO,6/3/2011 09:00:00,$16.59,$16.82,$15.98,$16.01,256069538,-3.49608,8.942427237,235050333,$16.04,$15.12,-5.73566,32,0.374766 +2,CSCO,6/10/2011 09:00:00,$16.04,$16.17,$15.01,$15.12,412198054,-5.73566,60.9711398,256069538,$15.14,$14.97,-1.12285,25,0.396825 +2,CSCO,6/17/2011 09:00:00,$15.14,$15.28,$14.78,$14.97,401380782,-1.12285,-2.624289924,412198054,$14.94,$14.93,-0.0669344,18,0.400802 +2,CSCO,6/24/2011 09:00:00,$14.94,$15.64,$14.92,$14.93,429730443,-0.0669344,7.063033975,401380782,$14.94,$15.86,6.15797,11,0.401875 +2,CVX,4/1/2011 09:00:00,$106.40,$109.65,$105.52,$108.32,35824123,1.80451,-9.55032801,39606692,$108.52,$109.66,1.0505,47,0.673929 +2,CVX,4/8/2011 09:00:00,$108.52,$109.94,$107.51,$109.66,31958307,1.0505,-10.79109738,35824123,$109.74,$106.24,-3.18936,40,0.665694 +2,CVX,4/15/2011 09:00:00,$109.74,$109.90,$103.13,$106.24,42617245,-3.18936,33.35263661,31958307,$104.95,$108.13,3.03001,33,0.687124 +2,CVX,4/21/2011 09:00:00,$104.95,$108.34,$103.04,$108.13,18873837,3.03001,-55.71314617,42617245,$107.37,$109.44,1.92791,27,0.675113 +2,CVX,4/29/2011 09:00:00,$107.37,$109.60,$106.68,$109.44,28004621,1.92791,48.37799542,18873837,$109.48,$102.88,-6.0285,19,0.667032 +2,CVX,5/6/2011 09:00:00,$109.48,$109.57,$101.11,$102.88,44930373,-6.0285,60.43913967,28004621,$103.25,$102.39,-0.83293,12,0.709565 +2,CVX,5/13/2011 09:00:00,$103.25,$104.95,$100.41,$102.39,43103424,-0.83293,-4.066178129,44930373,$102.03,$102.57,0.529256,5,0.71296 +2,CVX,5/20/2011 09:00:00,$102.03,$104.53,$99.61,$102.57,39951901,0.529256,-7.311537478,43103424,$101.13,$103.21,2.05676,89,0.711709 +2,CVX,5/27/2011 09:00:00,$101.13,$103.86,$100.70,$103.21,28858240,2.05676,-27.76754228,39951901,$104.61,$101.00,-3.45091,82,0.707296 +2,CVX,6/3/2011 09:00:00,$104.61,$105.21,$99.57,$101.00,32206213,-3.45091,11.60144555,28858240,$100.90,$99.67,-1.21903,75,0.722772 +2,CVX,6/10/2011 09:00:00,$100.90,$101.87,$98.98,$99.67,35612426,-1.21903,10.57626055,32206213,$100.04,$99.17,-0.869652,68,0.732417 +2,CVX,6/17/2011 09:00:00,$100.04,$101.29,$97.71,$99.17,44845243,-0.869652,25.92582993,35612426,$98.88,$97.90,-0.9911,61,0.73611 +2,CVX,6/24/2011 09:00:00,$98.88,$102.46,$97.00,$97.90,42615162,-0.9911,-4.972837364,44845243,$97.94,$104.09,6.27935,54,0.745659 +2,DD,4/1/2011 09:00:00,$54.11,$55.80,$53.70,$55.19,23341552,1.99593,-4.590377398,24464568,$55.50,$55.40,-0.18018,40,0.742888 +2,DD,4/8/2011 09:00:00,$55.50,$56.52,$55.00,$55.40,19685778,-0.18018,-15.66208622,23341552,$55.45,$54.89,-1.00992,33,0.740072 +2,DD,4/15/2011 09:00:00,$55.45,$55.81,$53.17,$54.89,24059673,-1.00992,22.21855291,19685778,$54.28,$55.91,3.00295,26,0.746948 +2,DD,4/21/2011 09:00:00,$54.28,$56.00,$53.19,$55.91,15537427,3.00295,-35.42128773,24059673,$55.69,$56.79,1.97522,20,0.733321 +2,DD,4/29/2011 09:00:00,$55.69,$56.88,$54.54,$56.79,27349183,1.97522,76.02131292,15537427,$56.42,$54.63,-3.17263,12,0.721958 +2,DD,5/6/2011 09:00:00,$56.42,$57.00,$53.59,$54.63,27498887,-3.17263,0.547380154,27349183,$54.94,$52.91,-3.69494,5,0.750503 +2,DD,5/13/2011 09:00:00,$54.94,$56.13,$52.55,$52.91,27207924,-3.69494,-1.058090097,27498887,$52.74,$52.74,0,90,0.774901 +2,DD,5/20/2011 09:00:00,$52.74,$54.00,$51.92,$52.74,27511651,0,1.116318173,27207924,$51.75,$52.56,1.56522,83,0.777399 +2,DD,5/27/2011 09:00:00,$51.75,$52.56,$50.50,$52.56,24845668,1.56522,-9.690378087,27511651,$53.18,$50.29,-5.43437,76,0.780061 +2,DD,6/3/2011 09:00:00,$53.18,$53.39,$50.11,$50.29,25203572,-5.43437,1.440508663,24845668,$50.30,$49.78,-1.0338,69,0.815271 +2,DD,6/10/2011 09:00:00,$50.30,$50.90,$49.52,$49.78,28186429,-1.0338,11.83505655,25203572,$50.03,$49.57,-0.919448,62,0.823624 +2,DD,6/17/2011 09:00:00,$50.03,$50.63,$48.64,$49.57,36027620,-0.919448,27.81902951,28186429,$49.50,$51.96,4.9697,55,0.827113 +2,DD,6/24/2011 09:00:00,$49.50,$51.98,$49.46,$51.96,34797906,4.9697,-3.413253498,36027620,$51.85,$54.47,5.05304,48,0.789069 +2,DIS,4/1/2011 09:00:00,$43.19,$43.48,$42.36,$42.85,34130223,-0.787219,-16.13448039,40696371,$42.87,$41.76,-2.58922,252,0.933489 +2,DIS,4/8/2011 09:00:00,$42.87,$43.05,$41.40,$41.76,39055258,-2.58922,14.43012839,34130223,$41.76,$41.52,-0.574713,245,0.957854 +2,DIS,4/15/2011 09:00:00,$41.76,$42.02,$40.84,$41.52,40820710,-0.574713,4.52039518,39055258,$40.97,$42.27,3.17305,238,0.963391 +2,DIS,4/21/2011 09:00:00,$40.97,$42.46,$40.45,$42.27,24312043,3.17305,-40.44189089,40820710,$42.34,$43.10,1.79499,232,0.946298 +2,DIS,4/29/2011 09:00:00,$42.34,$43.35,$41.71,$43.10,30122091,1.79499,23.89781887,24312043,$43.47,$43.06,-0.943179,224,0.928074 +2,DIS,5/6/2011 09:00:00,$43.47,$43.79,$42.30,$43.06,35369886,-0.943179,17.42174871,30122091,$43.32,$41.52,-4.15512,217,0.928936 +2,DIS,5/13/2011 09:00:00,$43.32,$44.12,$40.94,$41.52,78855110,-4.15512,122.9442017,35369886,$41.26,$41.50,0.581677,210,0.963391 +2,DIS,5/20/2011 09:00:00,$41.26,$41.84,$40.68,$41.50,50988843,0.581677,-35.33856842,78855110,$41.15,$41.52,0.899149,203,0.963855 +2,DIS,5/27/2011 09:00:00,$41.15,$41.52,$40.55,$41.52,34651349,0.899149,-32.04131147,50988843,$41.90,$39.38,-6.01432,196,0.963391 +2,DIS,6/3/2011 09:00:00,$41.90,$41.99,$39.17,$39.38,52169227,-6.01432,50.55467826,34651349,$39.18,$38.50,-1.73558,189,1.01574 +2,DIS,6/10/2011 09:00:00,$39.18,$39.88,$38.42,$38.50,49099516,-1.73558,-5.884141239,52169227,$38.63,$38.04,-1.52731,182,1.03896 +2,DIS,6/17/2011 09:00:00,$38.63,$38.86,$37.77,$38.04,54513950,-1.52731,11.02746919,49099516,$37.85,$37.58,-0.713342,175,1.05152 +2,DIS,6/24/2011 09:00:00,$37.85,$38.89,$37.19,$37.58,50409504,-0.713342,-7.529166388,54513950,$37.62,$39.72,5.58214,168,1.0644 +2,GE,4/1/2011 09:00:00,$19.81,$20.50,$19.53,$20.34,207897262,2.67542,-8.744575169,227819072,$20.73,$20.19,-2.60492,76,0.688299 +2,GE,4/8/2011 09:00:00,$20.73,$20.75,$20.07,$20.19,238618636,-2.60492,14.77719028,207897262,$20.24,$20.04,-0.988142,69,0.693413 +2,GE,4/15/2011 09:00:00,$20.24,$20.37,$19.60,$20.04,212315926,-0.988142,-11.02290686,238618636,$19.77,$19.95,0.91047,62,0.698603 +2,GE,4/21/2011 09:00:00,$19.77,$20.54,$19.51,$19.95,182835072,0.91047,-13.88537099,212315926,$20.14,$20.45,1.53923,56,0.701754 +2,GE,4/29/2011 09:00:00,$20.14,$20.85,$19.89,$20.45,280299000,1.53923,53.30701978,182835072,$20.70,$20.01,-3.33333,48,0.684597 +2,GE,5/6/2011 09:00:00,$20.70,$20.71,$19.81,$20.01,235180053,-3.33333,-16.09672064,280299000,$19.97,$19.89,-0.400601,41,0.69965 +2,GE,5/13/2011 09:00:00,$19.97,$20.42,$19.76,$19.89,195448891,-0.400601,-16.8939336,235180053,$19.85,$19.62,-1.15869,34,0.703871 +2,GE,5/20/2011 09:00:00,$19.85,$20.05,$19.41,$19.62,228297982,-1.15869,16.8069979,195448891,$19.32,$19.44,0.621118,27,0.713558 +2,GE,5/27/2011 09:00:00,$19.32,$19.52,$18.97,$19.44,169411364,0.621118,-25.79375318,228297982,$19.68,$18.82,-4.36992,20,0.720165 +2,GE,6/3/2011 09:00:00,$19.68,$19.72,$18.75,$18.82,207576381,-4.36992,22.52801471,169411364,$18.71,$18.32,-2.08445,13,0.74389 +2,GE,6/10/2011 09:00:00,$18.71,$18.80,$18.14,$18.32,260898990,-2.08445,25.68818704,207576381,$18.31,$18.49,0.983069,6,0.764192 +2,GE,6/17/2011 09:00:00,$18.31,$18.90,$18.20,$18.49,261979707,0.983069,0.414228127,260898990,$18.34,$17.97,-2.01745,90,0.811249 +2,GE,6/24/2011 09:00:00,$18.34,$18.94,$17.97,$17.97,295978977,-2.01745,12.9778258,261979707,$18.00,$19.20,6.66667,83,0.834725 +2,HD,4/1/2011 09:00:00,$37.46,$37.87,$36.62,$37.56,52881329,0.266951,31.09707946,40337534,$37.48,$37.46,-0.0533618,74,0.665602 +2,HD,4/8/2011 09:00:00,$37.48,$37.96,$37.21,$37.46,47021433,-0.0533618,-11.08121923,52881329,$37.45,$38.17,1.92256,67,0.667379 +2,HD,4/15/2011 09:00:00,$37.45,$38.40,$37.17,$38.17,42983064,1.92256,-8.588357994,47021433,$37.70,$37.80,0.265252,60,0.654965 +2,HD,4/21/2011 09:00:00,$37.70,$38.50,$37.20,$37.80,24190528,0.265252,-43.72079198,42983064,$37.61,$37.15,-1.22308,54,0.661376 +2,HD,4/29/2011 09:00:00,$37.61,$37.71,$36.94,$37.15,61019095,-1.22308,152.2437501,24190528,$37.44,$36.99,-1.20192,46,0.672948 +2,HD,5/6/2011 09:00:00,$37.44,$37.67,$36.77,$36.99,52439439,-1.20192,-14.0606084,61019095,$36.93,$37.01,0.216626,39,0.675858 +2,HD,5/13/2011 09:00:00,$36.93,$37.43,$36.70,$37.01,41391929,0.216626,-21.06717808,52439439,$36.69,$37.05,0.981194,32,0.675493 +2,HD,5/20/2011 09:00:00,$36.69,$37.94,$36.55,$37.05,53378802,0.981194,28.95944521,41391929,$36.00,$36.00,0,25,0.674764 +2,HD,5/27/2011 09:00:00,$36.00,$37.00,$36.00,$36.00,40673778,0,-23.80162822,53378802,$36.18,$34.63,-4.28413,18,0.694444 +2,HD,6/3/2011 09:00:00,$36.18,$36.28,$34.43,$34.63,39307513,-4.28413,-3.359080634,40673778,$34.53,$33.47,-3.06979,11,0.721917 +2,HD,6/10/2011 09:00:00,$34.53,$35.02,$33.42,$33.47,45606663,-3.06979,16.02530794,39307513,$33.46,$34.53,3.19785,4,0.746938 +2,HD,6/17/2011 09:00:00,$33.46,$34.93,$33.41,$34.53,76297124,3.19785,67.29380968,45606663,$34.29,$35.08,2.30388,74,0.724008 +2,HD,6/24/2011 09:00:00,$34.29,$35.69,$34.28,$35.08,65416820,2.30388,-14.26043792,76297124,$35.03,$36.73,4.85298,67,0.712657 +2,HPQ,4/1/2011 09:00:00,$42.42,$42.83,$37.60,$40.98,90069975,-3.39463,15.34218914,78089358,$40.65,$40.70,0.123001,73,0.317228 +2,HPQ,4/8/2011 09:00:00,$40.65,$41.80,$40.20,$40.70,87672936,0.123001,-2.6613075,90069975,$40.71,$40.26,-1.10538,66,0.31941 +2,HPQ,4/15/2011 09:00:00,$40.71,$41.55,$40.12,$40.26,70321527,-1.10538,-19.79106642,87672936,$39.96,$40.99,2.57758,59,0.322901 +2,HPQ,4/21/2011 09:00:00,$39.96,$41.19,$39.16,$40.99,46244533,2.57758,-34.23844024,70321527,$41.06,$40.37,-1.68047,53,0.317151 +2,HPQ,4/29/2011 09:00:00,$41.06,$41.30,$39.99,$40.37,82362537,-1.68047,78.10221373,46244533,$40.69,$40.81,0.294913,45,0.322021 +2,HPQ,5/6/2011 09:00:00,$40.69,$41.52,$39.80,$40.81,70249698,0.294913,-14.70673372,82362537,$40.79,$40.41,-0.931601,38,0.318549 +2,HPQ,5/13/2011 09:00:00,$40.79,$41.74,$40.22,$40.41,63498759,-0.931601,-9.609918892,70249698,$40.20,$35.98,-10.4975,31,0.321703 +2,HPQ,5/20/2011 09:00:00,$40.20,$40.34,$35.91,$35.98,217523955,-10.4975,242.5641043,63498759,$35.58,$36.96,3.87858,24,0.361312 +2,HPQ,5/27/2011 09:00:00,$35.58,$36.96,$35.44,$36.96,106507716,3.87858,-51.03632793,217523955,$37.28,$36.11,-3.13841,17,0.351732 +2,HPQ,6/3/2011 09:00:00,$37.28,$37.52,$36.00,$36.11,79313559,-3.13841,-25.53256987,106507716,$35.99,$35.25,-2.05613,10,0.360011 +2,HPQ,6/10/2011 09:00:00,$35.99,$36.24,$35.14,$35.25,74301015,-2.05613,-6.31990805,79313559,$35.13,$35.00,-0.370054,3,0.368794 +2,HPQ,6/17/2011 09:00:00,$35.13,$35.32,$33.95,$35.00,134346312,-0.370054,80.81356224,74301015,$34.79,$34.90,0.316183,87,0.342857 +2,HPQ,6/24/2011 09:00:00,$34.79,$35.65,$34.55,$34.90,102774442,0.316183,-23.50036226,134346312,$35.05,$37.05,5.70613,80,0.34384 +2,IBM,4/1/2011 09:00:00,$161.54,$164.42,$161.12,$164.27,19081936,1.68998,-24.82037517,25381792,$164.42,$164.05,-0.225033,35,0.456565 +2,IBM,4/8/2011 09:00:00,$164.42,$164.75,$163.16,$164.05,17615408,-0.225033,-7.68542563,19081936,$163.44,$166.21,1.69481,28,0.457178 +2,IBM,4/15/2011 09:00:00,$163.44,$166.34,$162.30,$166.21,22183383,1.69481,25.93170138,17615408,$164.64,$168.28,2.21088,21,0.451236 +2,IBM,4/21/2011 09:00:00,$164.64,$168.28,$162.19,$168.28,23662621,2.21088,6.668225491,22183383,$167.65,$170.58,1.74769,15,0.445686 +2,IBM,4/29/2011 09:00:00,$167.65,$173.00,$167.23,$170.58,26829625,1.74769,13.38399495,23662621,$172.11,$168.89,-1.8709,7,0.439676 +2,IBM,5/6/2011 09:00:00,$172.11,$173.54,$167.50,$168.89,29480567,-1.8709,9.88065245,26829625,$168.39,$169.92,0.908605,0,0.444076 +2,IBM,5/13/2011 09:00:00,$168.39,$172.77,$167.82,$169.92,23505533,0.908605,-20.26770381,29480567,$169.81,$170.16,0.206113,87,0.441384 +2,IBM,5/20/2011 09:00:00,$169.81,$171.41,$166.53,$170.16,26027660,0.206113,10.72992899,23505533,$168.50,$167.50,-0.593472,80,0.440762 +2,IBM,5/27/2011 09:00:00,$168.50,$168.60,$165.90,$167.50,19453763,-0.593472,-25.2573493,26027660,$168.44,$165.05,-2.01259,73,0.447761 +2,IBM,6/3/2011 09:00:00,$168.44,$169.89,$164.13,$165.05,23349972,-2.01259,20.02804804,19453763,$164.76,$163.18,-0.958971,66,0.454408 +2,IBM,6/10/2011 09:00:00,$164.76,$165.96,$162.87,$163.18,20646079,-0.958971,-11.57985543,23349972,$164.44,$164.44,0,59,0.459615 +2,IBM,6/17/2011 09:00:00,$164.44,$165.10,$161.52,$164.44,29390025,0,42.35160584,20646079,$163.70,$165.07,0.836897,52,0.456093 +2,IBM,6/24/2011 09:00:00,$163.70,$166.81,$163.59,$165.07,22984546,0.836897,-21.79473818,29390025,$165.74,$174.54,5.30952,45,0.454353 +2,INTC,4/1/2011 09:00:00,$20.44,$20.66,$19.56,$19.72,321390635,-3.5225,40.25291453,229150771,$19.79,$20.02,1.1622,33,0.912779 +2,INTC,4/8/2011 09:00:00,$19.79,$20.20,$19.36,$20.02,286343950,1.1622,-10.90470013,321390635,$20.07,$19.75,-1.59442,26,0.899101 +2,INTC,4/15/2011 09:00:00,$20.07,$20.20,$19.41,$19.75,231298341,-1.59442,-19.2235977,286343950,$19.53,$21.46,9.88223,19,0.911392 +2,INTC,4/21/2011 09:00:00,$19.53,$21.46,$19.45,$21.46,302470339,9.88223,30.77064785,231298341,$21.37,$23.15,8.32943,13,0.83877 +2,INTC,4/29/2011 09:00:00,$21.37,$23.19,$21.33,$23.15,466579710,8.32943,54.25635173,302470339,$23.02,$23.25,0.999131,5,0.777538 +2,INTC,5/6/2011 09:00:00,$23.02,$23.86,$22.67,$23.25,513891027,0.999131,10.14002881,466579710,$23.13,$23.41,1.21055,89,0.903226 +2,INTC,5/13/2011 09:00:00,$23.13,$23.83,$22.65,$23.41,344755154,1.21055,-32.9127897,513891027,$23.32,$23.22,-0.428816,82,0.897053 +2,INTC,5/20/2011 09:00:00,$23.32,$23.96,$23.08,$23.22,387571150,-0.428816,12.41924755,344755154,$22.92,$22.21,-3.09773,75,0.904393 +2,INTC,5/27/2011 09:00:00,$22.92,$23.03,$22.21,$22.21,210446967,-3.09773,-45.70107527,387571150,$22.45,$21.73,-3.20713,68,0.94552 +2,INTC,6/3/2011 09:00:00,$22.45,$22.64,$21.67,$21.73,222978209,-3.20713,5.954584273,210446967,$21.80,$21.38,-1.92661,61,0.966406 +2,INTC,6/10/2011 09:00:00,$21.80,$22.44,$21.26,$21.38,249719951,-1.92661,11.99298448,222978209,$21.43,$21.19,-1.11993,54,0.982226 +2,INTC,6/17/2011 09:00:00,$21.43,$26.78,$21.07,$21.19,294273143,-1.11993,17.84126251,249719951,$21.19,$21.20,0.0471921,47,0.991033 +2,INTC,6/24/2011 09:00:00,$21.19,$21.74,$21.06,$21.20,309031457,0.0471921,5.015175306,294273143,$21.17,$22.53,6.42419,40,0.990566 +2,JNJ,4/1/2011 09:00:00,$58.98,$59.73,$58.93,$59.49,48029143,0.8647,1.118242873,47498000,$59.50,$59.46,-0.0672269,55,0.958144 +2,JNJ,4/8/2011 09:00:00,$59.50,$60.18,$59.25,$59.46,47141409,-0.0672269,-1.848323631,48029143,$59.54,$60.56,1.71313,48,0.958628 +2,JNJ,4/15/2011 09:00:00,$59.54,$60.95,$59.49,$60.56,58631682,1.71313,24.37405509,47141409,$60.45,$64.07,5.98842,41,0.941215 +2,JNJ,4/21/2011 09:00:00,$60.45,$64.54,$60.10,$64.07,72888066,5.98842,24.31515439,58631682,$63.65,$65.72,3.25216,35,0.889652 +2,JNJ,4/29/2011 09:00:00,$63.65,$65.98,$63.40,$65.72,70745990,3.25216,-2.938856959,72888066,$65.92,$65.27,-0.986044,27,0.867316 +2,JNJ,5/6/2011 09:00:00,$65.92,$66.46,$64.80,$65.27,68840083,-0.986044,-2.694014177,70745990,$65.11,$66.62,2.31915,20,0.873295 +2,JNJ,5/13/2011 09:00:00,$65.11,$67.37,$65.07,$66.62,66040498,2.31915,-4.066794922,68840083,$66.41,$65.69,-1.08417,13,0.855599 +2,JNJ,5/20/2011 09:00:00,$66.41,$66.79,$65.28,$65.69,53385097,-1.08417,-19.16309141,66040498,$65.19,$66.77,2.42368,6,0.867712 +2,JNJ,5/27/2011 09:00:00,$65.19,$66.77,$65.08,$66.77,49866786,2.42368,-6.590436653,53385097,$67.31,$66.09,-1.81251,91,0.853677 +2,JNJ,6/3/2011 09:00:00,$67.31,$67.34,$65.80,$66.09,47426009,-1.81251,-4.89459457,49866786,$65.87,$66.09,0.333991,84,0.86246 +2,JNJ,6/10/2011 09:00:00,$65.87,$67.28,$65.18,$66.09,52231924,0.333991,10.1335008,47426009,$66.32,$66.29,-0.0452352,77,0.86246 +2,JNJ,6/17/2011 09:00:00,$66.32,$67.36,$65.47,$66.29,58201928,-0.0452352,11.42979914,52231924,$66.08,$65.06,-1.54358,70,0.859858 +2,JNJ,6/24/2011 09:00:00,$66.08,$66.75,$64.69,$65.06,56535090,-1.54358,-2.863887945,58201928,$65.20,$67.30,3.22086,63,0.876114 +2,JPM,4/1/2011 09:00:00,$46.10,$46.88,$45.51,$46.35,112702290,0.542299,-4.456746206,117959443,$46.12,$46.84,1.56114,3,0.539374 +2,JPM,4/8/2011 09:00:00,$46.12,$47.80,$46.05,$46.84,121937602,1.56114,8.194431542,112702290,$47.00,$44.89,-4.48936,84,0.533732 +2,JPM,4/15/2011 09:00:00,$47.00,$47.37,$44.83,$44.89,186017520,-4.48936,52.55140084,121937602,$44.27,$44.68,0.926135,77,0.556917 +2,JPM,4/21/2011 09:00:00,$44.27,$44.97,$43.53,$44.68,113261188,0.926135,-39.11262337,186017520,$44.65,$45.63,2.19485,71,0.559534 +2,JPM,4/29/2011 09:00:00,$44.65,$46.02,$44.38,$45.63,107332185,2.19485,-5.234805589,113261188,$45.94,$45.04,-1.95908,63,0.547885 +2,JPM,5/6/2011 09:00:00,$45.94,$46.07,$44.76,$45.04,131213937,-1.95908,22.25031755,107332185,$44.75,$43.15,-3.57542,56,0.555062 +2,JPM,5/13/2011 09:00:00,$44.75,$45.50,$42.98,$43.15,137013704,-3.57542,4.420084583,131213937,$42.97,$43.13,0.372353,49,0.579374 +2,JPM,5/20/2011 09:00:00,$42.97,$44.35,$42.65,$43.13,145114846,0.372353,5.912650898,137013704,$42.40,$42.79,0.919811,42,0.579643 +2,JPM,5/27/2011 09:00:00,$42.40,$42.92,$41.69,$42.79,119828886,0.919811,-17.42479195,145114846,$43.24,$41.57,-3.86216,35,0.584249 +2,JPM,6/3/2011 09:00:00,$43.24,$43.38,$40.83,$41.57,145187926,-3.86216,21.1627103,119828886,$41.10,$41.05,-0.121655,28,0.601395 +2,JPM,6/10/2011 09:00:00,$41.10,$41.50,$40.10,$41.05,194764785,-0.121655,34.14668173,145187926,$41.29,$40.80,-1.18673,21,0.609013 +2,JPM,6/17/2011 09:00:00,$41.29,$42.44,$39.70,$40.80,183560880,-1.18673,-5.752531188,194764785,$40.50,$39.49,-2.49383,14,0.612745 +2,JPM,6/24/2011 09:00:00,$40.50,$41.53,$39.44,$39.49,167589521,-2.49383,-8.700851184,183560880,$39.40,$41.58,5.53299,7,0.633072 +2,KRFT,4/1/2011 09:00:00,$31.35,$31.70,$31.06,$31.61,38759730,0.829346,-7.623429578,41958399,$31.71,$31.67,-0.126143,88,0.917431 +2,KRFT,4/8/2011 09:00:00,$31.71,$31.88,$31.35,$31.67,34314135,-0.126143,-11.46962324,38759730,$31.73,$33.36,5.13709,81,0.915693 +2,KRFT,4/15/2011 09:00:00,$31.73,$33.54,$31.69,$33.36,71530535,5.13709,108.4579285,34314135,$32.72,$33.38,2.01711,74,0.869305 +2,KRFT,4/21/2011 09:00:00,$32.72,$33.67,$32.70,$33.38,33399240,2.01711,-53.30771677,71530535,$33.45,$33.59,0.418535,68,0.868784 +2,KRFT,4/29/2011 09:00:00,$33.45,$33.90,$33.00,$33.59,42547809,0.418535,27.39154843,33399240,$33.60,$34.08,1.42857,60,0.863352 +2,KRFT,5/6/2011 09:00:00,$33.60,$34.49,$33.22,$34.08,58969733,1.42857,38.5964034,42547809,$33.81,$34.89,3.19432,53,0.850939 +2,KRFT,5/13/2011 09:00:00,$33.81,$35.10,$33.80,$34.89,47572999,3.19432,-19.32641275,58969733,$34.84,$35.23,1.1194,46,0.831184 +2,KRFT,5/20/2011 09:00:00,$34.84,$35.44,$34.48,$35.23,48017488,1.1194,0.934330417,47572999,$34.97,$34.75,-0.629111,39,0.823162 +2,KRFT,5/27/2011 09:00:00,$34.97,$35.06,$34.28,$34.75,31660711,-0.629111,-34.06420802,48017488,$34.79,$34.10,-1.98333,32,0.834532 +2,KRFT,6/3/2011 09:00:00,$34.79,$35.00,$34.05,$34.10,38915498,-1.98333,22.91416324,31660711,$34.07,$33.79,-0.821837,25,0.85044 +2,KRFT,6/10/2011 09:00:00,$34.07,$34.39,$24.30,$33.79,43535139,-0.821837,11.87095434,38915498,$33.92,$34.48,1.65094,18,0.858242 +2,KRFT,6/17/2011 09:00:00,$33.92,$34.72,$33.76,$34.48,44641104,1.65094,2.540396161,43535139,$34.39,$34.60,0.610643,11,0.841067 +2,KRFT,6/24/2011 09:00:00,$34.39,$34.98,$33.87,$34.60,39770714,0.610643,-10.91010204,44641104,$34.61,$35.47,2.48483,4,0.83815 +2,KO,4/1/2011 09:00:00,$65.20,$67.48,$65.03,$67.22,39265955,3.09816,31.5291065,29853434,$67.22,$67.27,0.0743826,73,0.699197 +2,KO,4/8/2011 09:00:00,$67.22,$67.82,$66.86,$67.27,32024467,0.0743826,-18.44215428,39265955,$67.25,$68.01,1.13011,66,0.698677 +2,KO,4/15/2011 09:00:00,$67.25,$68.47,$66.41,$68.01,40595470,1.13011,26.76392085,32024467,$67.57,$67.88,0.458783,59,0.691075 +2,KO,4/21/2011 09:00:00,$67.57,$68.05,$66.64,$67.88,19831270,0.458783,-51.14905678,40595470,$67.95,$67.46,-0.721118,53,0.692398 +2,KO,4/29/2011 09:00:00,$67.95,$67.98,$65.81,$67.46,44603365,-0.721118,124.9143146,19831270,$67.76,$66.90,-1.26919,45,0.696709 +2,KO,5/6/2011 09:00:00,$67.76,$67.93,$66.40,$66.90,33947562,-1.26919,-23.8901325,44603365,$66.86,$68.18,1.97427,38,0.702541 +2,KO,5/13/2011 09:00:00,$66.86,$68.77,$66.83,$68.18,32166394,1.97427,-5.246821554,33947562,$68.10,$68.30,0.293686,31,0.689352 +2,KO,5/20/2011 09:00:00,$68.10,$68.70,$67.50,$68.30,32520067,0.293686,1.099510875,32166394,$67.59,$66.51,-1.59787,24,0.688141 +2,KO,5/27/2011 09:00:00,$67.59,$67.90,$66.30,$66.51,26066805,-1.59787,-19.84393821,32520067,$66.94,$65.53,-2.10636,17,0.706661 +2,KO,6/3/2011 09:00:00,$66.94,$67.24,$65.21,$65.53,31192400,-2.10636,19.66330358,26066805,$65.51,$65.39,-0.183178,10,0.717229 +2,KO,6/10/2011 09:00:00,$65.51,$68.05,$65.07,$65.39,30422351,-0.183178,-2.468707121,31192400,$65.10,$65.62,0.798771,3,0.718764 +2,KO,6/17/2011 09:00:00,$65.10,$66.23,$64.64,$65.62,43194922,0.798771,41.98416815,30422351,$65.37,$64.93,-0.673092,88,0.716245 +2,KO,6/24/2011 09:00:00,$65.37,$66.82,$64.43,$64.93,49806614,-0.673092,15.30664183,43194922,$64.85,$68.09,4.99614,81,0.723856 +2,MCD,4/1/2011 09:00:00,$75.55,$76.50,$74.87,$75.99,17977737,0.582396,-24.7082759,23877441,$76.31,$76.04,-0.35382,56,0.802737 +2,MCD,4/8/2011 09:00:00,$76.31,$76.91,$75.66,$76.04,22337802,-0.35382,24.25257973,17977737,$76.15,$77.38,1.61523,49,0.802209 +2,MCD,4/15/2011 09:00:00,$76.15,$77.54,$75.83,$77.38,21670715,1.61523,-2.986359177,22337802,$76.89,$76.91,0.0260112,42,0.788317 +2,MCD,4/21/2011 09:00:00,$76.89,$78.41,$76.40,$76.91,17718174,0.0260112,-18.23908902,21670715,$77.15,$78.31,1.50356,36,0.793135 +2,MCD,4/29/2011 09:00:00,$77.15,$78.59,$76.54,$78.31,22923015,1.50356,29.37571897,17718174,$78.40,$78.70,0.382653,28,0.778955 +2,MCD,5/6/2011 09:00:00,$78.40,$79.37,$78.20,$78.70,26460318,0.382653,15.43122927,22923015,$79.46,$80.74,1.61087,21,0.775095 +2,MCD,5/13/2011 09:00:00,$79.46,$80.91,$79.08,$80.74,26573357,1.61087,0.427201971,26460318,$80.44,$82.33,2.34958,14,0.755512 +2,MCD,5/20/2011 09:00:00,$80.44,$82.85,$80.44,$82.33,27816875,2.34958,4.679566831,26573357,$81.53,$81.62,0.110389,7,0.740921 +2,MCD,5/27/2011 09:00:00,$81.53,$83.08,$81.49,$81.62,26628471,0.110389,-4.27224122,27816875,$82.13,$80.54,-1.93596,0,0.747366 +2,MCD,6/3/2011 09:00:00,$82.13,$82.25,$80.01,$80.54,23382621,-1.93596,-12.18939683,26628471,$80.60,$80.36,-0.297767,88,0.757388 +2,MCD,6/10/2011 09:00:00,$80.60,$82.23,$80.00,$80.36,31264251,-0.297767,33.70721358,23382621,$80.43,$82.52,2.59853,81,0.759084 +2,MCD,6/17/2011 09:00:00,$80.43,$82.72,$80.39,$82.52,27515629,2.59853,-11.99012252,31264251,$82.32,$81.84,-0.58309,74,0.739215 +2,MCD,6/24/2011 09:00:00,$82.32,$83.09,$81.40,$81.84,28303321,-0.58309,2.862707591,27515629,$81.51,$85.65,5.07913,67,0.745357 +2,MMM,4/1/2011 09:00:00,$92.42,$94.33,$91.90,$93.13,14958061,0.768232,-0.08244267,14970403,$92.68,$93.22,0.58265,47,0.590572 +2,MMM,4/8/2011 09:00:00,$92.68,$94.10,$92.60,$93.22,12672220,0.58265,-15.28166652,14958061,$93.59,$92.82,-0.822737,40,0.590002 +2,MMM,4/15/2011 09:00:00,$93.59,$94.64,$91.75,$92.82,15375510,-0.822737,21.33241058,12672220,$91.94,$93.92,2.15358,33,0.592545 +2,MMM,4/21/2011 09:00:00,$91.94,$94.42,$90.58,$93.92,9718851,2.15358,-36.7900577,15375510,$93.91,$97.21,3.514,27,0.585605 +2,MMM,4/29/2011 09:00:00,$93.91,$97.50,$93.27,$97.21,20655611,3.514,112.5314093,9718851,$97.58,$95.60,-2.0291,19,0.565785 +2,MMM,5/6/2011 09:00:00,$97.58,$97.95,$94.40,$95.60,17031494,-2.0291,-17.54543596,20655611,$95.30,$96.01,0.745016,12,0.575314 +2,MMM,5/13/2011 09:00:00,$95.30,$97.18,$94.44,$96.01,15657591,0.745016,-8.066837824,17031494,$95.54,$93.56,-2.07243,5,0.572857 +2,MMM,5/20/2011 09:00:00,$95.54,$96.23,$92.75,$93.56,16596686,-2.07243,5.997697858,15657591,$92.29,$93.47,1.27858,89,0.587858 +2,MMM,5/27/2011 09:00:00,$92.29,$93.47,$91.38,$93.47,11695384,1.27858,-29.53181135,16596686,$94.05,$90.70,-3.56194,82,0.588424 +2,MMM,6/3/2011 09:00:00,$94.05,$94.68,$90.19,$90.70,12491882,-3.56194,6.810362105,11695384,$90.38,$90.73,0.387254,75,0.606395 +2,MMM,6/10/2011 09:00:00,$90.38,$92.43,$90.24,$90.73,14734714,0.387254,17.95431625,12491882,$91.14,$91.78,0.702216,68,0.606194 +2,MMM,6/17/2011 09:00:00,$91.14,$92.99,$90.58,$91.78,15549946,0.702216,5.532730394,14734714,$91.42,$90.89,-0.579742,61,0.599259 +2,MMM,6/24/2011 09:00:00,$91.42,$93.92,$90.68,$90.89,15126028,-0.579742,-2.726170239,15549946,$91.08,$96.67,6.13746,54,0.605127 +2,MRK,4/1/2011 09:00:00,$32.54,$33.48,$32.39,$33.07,60348951,1.62876,-8.749096661,66135182,$33.34,$33.67,0.989802,73,1.14908 +2,MRK,4/8/2011 09:00:00,$33.34,$33.70,$33.01,$33.67,64799122,0.989802,7.37406521,60348951,$33.68,$34.51,2.46437,66,1.1286 +2,MRK,4/15/2011 09:00:00,$33.68,$34.97,$33.27,$34.51,85533686,2.46437,31.99821751,64799122,$34.20,$34.04,-0.467836,59,1.10113 +2,MRK,4/21/2011 09:00:00,$34.20,$34.29,$33.51,$34.04,47226349,-0.467836,-44.78625766,85533686,$33.70,$35.95,6.67656,53,1.11633 +2,MRK,4/29/2011 09:00:00,$33.70,$36.25,$33.63,$35.95,83960030,6.67656,77.7821741,47226349,$36.44,$36.39,-0.137212,45,1.05702 +2,MRK,5/6/2011 09:00:00,$36.44,$36.75,$35.95,$36.39,82810421,-0.137212,-1.36923367,83960030,$36.11,$37.08,2.68624,38,1.04424 +2,MRK,5/13/2011 09:00:00,$36.11,$37.30,$36.10,$37.08,59693542,2.68624,-27.91542263,82810421,$37.06,$37.06,0,31,1.02481 +2,MRK,5/20/2011 09:00:00,$37.06,$37.65,$36.69,$37.06,74833386,0,25.36261628,59693542,$36.67,$36.21,-1.25443,24,1.02536 +2,MRK,5/27/2011 09:00:00,$36.67,$37.04,$36.10,$36.21,52416661,-1.25443,-29.95551344,74833386,$36.39,$35.82,-1.56636,17,1.04943 +2,MRK,6/3/2011 09:00:00,$36.39,$36.76,$35.76,$35.82,46564832,-1.56636,-11.16406289,52416661,$35.70,$35.45,-0.70028,10,1.06086 +2,MRK,6/10/2011 09:00:00,$35.70,$36.38,$35.36,$35.45,57259558,-0.70028,22.96738878,46564832,$35.03,$35.39,1.02769,3,1.07193 +2,MRK,6/17/2011 09:00:00,$35.03,$35.88,$34.99,$35.39,57933495,1.02769,1.176986033,57259558,$35.29,$34.55,-2.09691,88,1.07375 +2,MRK,6/24/2011 09:00:00,$35.29,$35.97,$34.50,$34.55,63163236,-2.09691,9.027145695,57933495,$34.60,$35.60,2.89017,81,1.09986 +2,MSFT,4/1/2011 09:00:00,$25.66,$25.72,$25.30,$25.48,258143967,-0.701481,18.66221273,217545216,$25.45,$26.07,2.43615,46,0.627944 +2,MSFT,4/8/2011 09:00:00,$25.45,$26.31,$25.41,$26.07,260749872,2.43615,1.009477398,258143967,$26.19,$25.37,-3.13097,39,0.613732 +2,MSFT,4/15/2011 09:00:00,$26.19,$26.25,$25.09,$25.37,229693684,-3.13097,-11.91033682,260749872,$25.10,$25.52,1.67331,32,0.630666 +2,MSFT,4/21/2011 09:00:00,$25.10,$26.00,$24.72,$25.52,158547201,1.67331,-30.97450559,229693684,$25.56,$25.92,1.40845,26,0.626959 +2,MSFT,4/29/2011 09:00:00,$25.56,$26.87,$25.34,$25.92,554889924,1.40845,249.9840555,158547201,$25.94,$25.87,-0.269854,18,0.617284 +2,MSFT,5/6/2011 09:00:00,$25.94,$26.25,$25.48,$25.87,346656165,-0.269854,-37.52703915,554889924,$25.80,$25.03,-2.9845,11,0.618477 +2,MSFT,5/13/2011 09:00:00,$25.80,$25.96,$24.95,$25.03,382293426,-2.9845,10.28029056,346656165,$24.96,$24.49,-1.88301,4,0.639233 +2,MSFT,5/20/2011 09:00:00,$24.96,$25.07,$24.25,$24.49,311462943,-1.88301,-18.5277795,382293426,$24.21,$24.76,2.27179,88,0.653328 +2,MSFT,5/27/2011 09:00:00,$24.21,$25.03,$24.03,$24.76,213316051,2.27179,-31.51157921,311462943,$24.96,$23.90,-4.24679,81,0.646204 +2,MSFT,6/3/2011 09:00:00,$24.96,$25.10,$23.84,$23.90,246418070,-4.24679,15.51782852,213316051,$23.90,$23.70,-0.83682,74,0.669456 +2,MSFT,6/10/2011 09:00:00,$23.90,$24.25,$23.69,$23.70,230307366,-0.83682,-6.537955597,246418070,$23.79,$24.26,1.97562,67,0.675106 +2,MSFT,6/17/2011 09:00:00,$23.79,$29.05,$23.65,$24.26,280430166,1.97562,21.76343765,230307366,$24.17,$24.30,0.537857,60,0.659522 +2,MSFT,6/24/2011 09:00:00,$24.17,$24.86,$24.16,$24.30,309206180,0.537857,10.26138322,280430166,$24.23,$26.02,7.38754,53,0.658436 +2,PFE,4/1/2011 09:00:00,$20.42,$20.57,$20.11,$20.38,170424399,-0.195886,-21.06861801,215914627,$20.55,$20.46,-0.437956,40,0.981354 +2,PFE,4/8/2011 09:00:00,$20.55,$20.61,$20.15,$20.46,199157969,-0.437956,16.86000958,170424399,$20.55,$20.53,-0.0973236,33,0.977517 +2,PFE,4/15/2011 09:00:00,$20.55,$20.75,$20.33,$20.53,209481824,-0.0973236,5.183751899,199157969,$20.32,$19.79,-2.60827,26,0.974184 +2,PFE,4/21/2011 09:00:00,$20.32,$20.88,$19.79,$19.79,143338656,-2.60827,-31.57465728,209481824,$19.95,$20.97,5.11278,20,1.01061 +2,PFE,4/29/2011 09:00:00,$19.95,$21.06,$19.90,$20.97,205782608,5.11278,43.56393017,143338656,$21.14,$20.55,-2.79092,12,0.953743 +2,PFE,5/6/2011 09:00:00,$21.14,$21.20,$20.07,$20.55,273973053,-2.79092,33.13712741,205782608,$20.53,$20.92,1.89966,5,0.973236 +2,PFE,5/13/2011 09:00:00,$20.53,$20.99,$20.45,$20.92,180162306,1.89966,-34.24086638,273973053,$20.84,$20.69,-0.71977,82,0.956023 +2,PFE,5/20/2011 09:00:00,$20.84,$21.28,$20.68,$20.69,249113161,-0.71977,38.27152112,180162306,$20.49,$20.93,2.14739,75,0.966651 +2,PFE,5/27/2011 09:00:00,$20.49,$20.98,$20.35,$20.93,162550095,2.14739,-34.74849167,249113161,$21.00,$20.84,-0.761905,68,0.955566 +2,PFE,6/3/2011 09:00:00,$21.00,$21.45,$20.66,$20.84,169014117,-0.761905,3.976633788,162550095,$20.82,$20.11,-3.41018,61,0.959693 +2,PFE,6/10/2011 09:00:00,$20.82,$20.97,$20.04,$20.11,196181321,-3.41018,16.07392594,169014117,$20.08,$20.26,0.896414,54,0.99453 +2,PFE,6/17/2011 09:00:00,$20.08,$20.73,$20.03,$20.26,229372501,0.896414,16.91862397,196181321,$20.09,$20.08,-0.049776,47,0.987167 +2,PFE,6/24/2011 09:00:00,$20.09,$20.96,$20.08,$20.08,259247639,-0.049776,13.02472523,229372501,$20.10,$20.75,3.23383,40,0.996016 +2,PG,4/1/2011 09:00:00,$61.08,$62.30,$60.61,$62.08,43453701,1.6372,5.08461251,41351155,$62.17,$61.90,-0.434293,26,0.853737 +2,PG,4/8/2011 09:00:00,$62.17,$62.33,$61.47,$61.90,38792072,-0.434293,-10.72780659,43453701,$62.02,$64.18,3.48275,19,0.85622 +2,PG,4/15/2011 09:00:00,$62.02,$64.21,$61.90,$64.18,51918017,3.48275,33.836669,38792072,$63.67,$63.27,-0.628239,12,0.825802 +2,PG,4/21/2011 09:00:00,$63.67,$64.34,$63.27,$63.27,29487333,-0.628239,-43.2040461,51918017,$63.08,$64.90,2.88523,6,0.83768 +2,PG,4/29/2011 09:00:00,$63.08,$65.10,$62.60,$64.90,53544624,2.88523,81.58517083,29487333,$65.24,$65.27,0.0459841,82,0.816641 +2,PG,5/6/2011 09:00:00,$65.24,$66.50,$64.90,$65.27,55046479,0.0459841,2.804866087,53544624,$64.93,$66.86,2.97243,75,0.812012 +2,PG,5/13/2011 09:00:00,$64.93,$67.31,$64.86,$66.86,49677302,2.97243,-9.753897247,55046479,$66.66,$67.36,1.0501,68,0.792701 +2,PG,5/20/2011 09:00:00,$66.66,$67.72,$66.51,$67.36,47738539,1.0501,-3.90271396,49677302,$66.80,$66.20,-0.898204,61,0.786817 +2,PG,5/27/2011 09:00:00,$66.80,$67.20,$65.70,$66.20,37114265,-0.898204,-22.25513018,47738539,$66.33,$65.43,-1.35685,54,0.800604 +2,PG,6/3/2011 09:00:00,$66.33,$67.00,$56.57,$65.43,37312488,-1.35685,0.534088443,37114265,$65.36,$64.70,-1.00979,47,0.810026 +2,PG,6/10/2011 09:00:00,$65.36,$65.64,$64.65,$64.70,48599369,-1.00979,30.24960705,37312488,$64.65,$64.69,0.0618716,40,0.819165 +2,PG,6/17/2011 09:00:00,$64.65,$65.22,$63.33,$64.69,46861128,0.0618716,-3.57667401,48599369,$64.51,$62.59,-2.97628,33,0.819292 +2,PG,6/24/2011 09:00:00,$64.51,$65.29,$62.44,$62.59,53025186,-2.97628,13.15388311,46861128,$62.76,$64.27,2.40599,26,0.846781 +2,T,4/1/2011 09:00:00,$29.02,$30.97,$28.90,$30.62,384284485,5.51344,127.2456535,169105318,$30.74,$30.71,-0.0975927,5,1.40431 +2,T,4/8/2011 09:00:00,$30.74,$31.00,$29.99,$30.71,148206324,-0.0975927,-61.43317522,384284485,$30.75,$30.65,-0.325203,89,1.4002 +2,T,4/15/2011 09:00:00,$30.75,$30.84,$30.01,$30.65,108080405,-0.325203,-27.07436357,148206324,$30.42,$30.68,0.854701,82,1.40294 +2,T,4/21/2011 09:00:00,$30.42,$30.68,$29.91,$30.68,76563904,0.854701,-29.16023584,108080405,$30.67,$31.12,1.46723,76,1.40156 +2,T,4/29/2011 09:00:00,$30.67,$31.82,$30.43,$31.12,112339712,1.46723,46.72672909,76563904,$31.60,$31.26,-1.07595,68,1.38175 +2,T,5/6/2011 09:00:00,$31.60,$31.94,$31.03,$31.26,156030184,-1.07595,38.89138687,112339712,$31.20,$31.41,0.673077,61,1.37556 +2,T,5/13/2011 09:00:00,$31.20,$31.79,$31.05,$31.41,92523592,0.673077,-40.70147863,156030184,$31.32,$31.32,0,54,1.36899 +2,T,5/20/2011 09:00:00,$31.32,$31.77,$30.90,$31.32,102539987,0,10.82577404,92523592,$31.00,$31.29,0.935484,47,1.37292 +2,T,5/27/2011 09:00:00,$31.00,$31.30,$30.92,$31.29,73854767,0.935484,-27.97466709,102539987,$31.48,$30.65,-2.63659,40,1.37424 +2,T,6/3/2011 09:00:00,$31.48,$31.65,$30.52,$30.65,85085937,-2.63659,15.20710234,73854767,$30.55,$30.34,-0.687398,33,1.40294 +2,T,6/10/2011 09:00:00,$30.55,$30.61,$30.11,$30.34,95255686,-0.687398,11.9523265,85085937,$30.28,$30.77,1.61823,26,1.41727 +2,T,6/17/2011 09:00:00,$30.28,$30.95,$30.17,$30.77,114504788,1.61823,20.20782465,95255686,$30.66,$30.44,-0.717547,19,1.39747 +2,T,6/24/2011 09:00:00,$30.66,$31.33,$30.29,$30.44,116043866,-0.717547,1.344116719,114504788,$30.65,$31.68,3.36052,12,1.41261 +2,TRV,4/1/2011 09:00:00,$59.09,$60.01,$58.37,$59.71,16608737,1.04925,17.56965399,14126721,$59.83,$59.58,-0.417851,68,0.686652 +2,TRV,4/8/2011 09:00:00,$59.83,$60.00,$59.11,$59.58,12307164,-0.417851,-25.89945882,16608737,$59.85,$59.80,-0.0835422,61,0.68815 +2,TRV,4/15/2011 09:00:00,$59.85,$60.85,$59.00,$59.80,15459751,-0.0835422,25.61586894,12307164,$59.32,$61.32,3.37154,54,0.685619 +2,TRV,4/21/2011 09:00:00,$59.32,$61.32,$58.07,$61.32,10135730,3.37154,-34.43794793,15459751,$61.32,$63.28,3.19635,48,0.668624 +2,TRV,4/29/2011 09:00:00,$61.32,$63.37,$60.91,$63.28,16046782,3.19635,58.3189568,10135730,$63.56,$63.43,-0.204531,40,0.647914 +2,TRV,5/6/2011 09:00:00,$63.56,$64.17,$62.85,$63.43,14335889,-0.204531,-10.66190717,16046782,$63.23,$62.33,-1.42338,33,0.646382 +2,TRV,5/13/2011 09:00:00,$63.23,$64.09,$62.18,$62.33,14388418,-1.42338,0.366416063,14335889,$62.52,$62.25,-0.431862,26,0.657789 +2,TRV,5/20/2011 09:00:00,$62.52,$63.11,$62.13,$62.25,11795580,-0.431862,-18.02031328,14388418,$61.74,$61.52,-0.356333,19,0.658635 +2,TRV,5/27/2011 09:00:00,$61.74,$62.00,$60.36,$61.52,12344531,-0.356333,4.653870348,11795580,$61.95,$61.18,-1.24294,12,0.66645 +2,TRV,6/3/2011 09:00:00,$61.95,$62.25,$60.59,$61.18,13535632,-1.24294,9.648815334,12344531,$61.35,$59.21,-3.48818,5,0.670154 +2,TRV,6/10/2011 09:00:00,$61.35,$61.68,$58.71,$59.21,18091902,-3.48818,33.66130226,13535632,$59.12,$57.92,-2.02977,89,0.692451 +2,TRV,6/17/2011 09:00:00,$59.12,$59.32,$57.36,$57.92,20647583,-2.02977,14.1261046,18091902,$57.57,$56.68,-1.54594,82,0.707873 +2,TRV,6/24/2011 09:00:00,$57.57,$58.28,$56.12,$56.68,20959450,-1.54594,1.510428606,20647583,$56.83,$59.11,4.01197,75,0.723359 +2,UTX,4/1/2011 09:00:00,$83.75,$85.95,$83.26,$85.32,16314122,1.87463,-14.28385283,19032729,$85.66,$84.81,-0.992295,47,0.562588 +2,UTX,4/8/2011 09:00:00,$85.66,$86.00,$84.18,$84.81,11690792,-0.992295,-28.339435,16314122,$85.00,$83.45,-1.82353,40,0.565971 +2,UTX,4/15/2011 09:00:00,$85.00,$85.56,$82.70,$83.45,17017620,-1.82353,45.56430394,11690792,$82.60,$87.10,5.44794,33,0.575195 +2,UTX,4/21/2011 09:00:00,$82.60,$87.10,$81.10,$87.10,16859647,5.44794,-0.928290795,17017620,$87.00,$89.58,2.96552,27,0.551091 +2,UTX,4/29/2011 09:00:00,$87.00,$89.80,$86.29,$89.58,20800024,2.96552,23.37164592,16859647,$90.03,$89.21,-0.910807,19,0.535834 +2,UTX,5/6/2011 09:00:00,$90.03,$90.67,$85.80,$89.21,21797524,-0.910807,4.795667543,20800024,$88.88,$88.98,0.112511,12,0.538056 +2,UTX,5/13/2011 09:00:00,$88.88,$90.18,$88.35,$88.98,17420630,0.112511,-20.07977603,21797524,$88.46,$87.50,-1.08524,5,0.539447 +2,UTX,5/20/2011 09:00:00,$88.46,$89.25,$86.65,$87.50,22021867,-1.08524,26.41257521,17420630,$86.41,$86.33,-0.0925819,89,0.548571 +2,UTX,5/27/2011 09:00:00,$86.41,$86.72,$85.21,$86.33,15097865,-0.0925819,-31.44148496,22021867,$87.00,$83.24,-4.32184,82,0.556006 +2,UTX,6/3/2011 09:00:00,$87.00,$87.79,$82.43,$83.24,21179642,-4.32184,40.28236443,15097865,$82.93,$82.70,-0.277342,75,0.576646 +2,UTX,6/10/2011 09:00:00,$82.93,$84.52,$82.60,$82.70,20109892,-0.277342,-5.050840803,21179642,$82.92,$84.57,1.98987,68,0.580411 +2,UTX,6/17/2011 09:00:00,$82.92,$85.26,$82.52,$84.57,22074891,1.98987,9.771305584,20109892,$84.36,$84.33,-0.0355619,61,0.567577 +2,UTX,6/24/2011 09:00:00,$84.36,$86.21,$83.69,$84.33,20775217,-0.0355619,-5.88756701,22074891,$84.01,$90.13,7.28485,54,0.569192 +2,VZ,4/1/2011 09:00:00,$37.44,$38.95,$37.42,$38.47,96766651,2.75107,21.55977938,79604168,$38.53,$37.72,-2.10226,5,1.27372 +2,VZ,4/8/2011 09:00:00,$38.53,$38.70,$37.26,$37.72,62429599,-2.10226,-35.48438604,96766651,$37.75,$37.85,0.264901,89,1.29905 +2,VZ,4/15/2011 09:00:00,$37.75,$38.00,$37.34,$37.85,55355691,0.264901,-11.33101624,62429599,$37.60,$36.91,-1.83511,82,1.29458 +2,VZ,4/21/2011 09:00:00,$37.60,$38.00,$36.91,$36.91,37735134,-1.83511,-31.83151846,55355691,$37.07,$37.78,1.9153,76,1.32755 +2,VZ,4/29/2011 09:00:00,$37.07,$38.42,$36.82,$37.78,68330713,1.9153,81.07982073,37735134,$38.33,$37.28,-2.73937,68,1.29698 +2,VZ,5/6/2011 09:00:00,$38.33,$38.33,$36.90,$37.28,84281362,-2.73937,23.3433083,68330713,$37.28,$37.26,-0.0536481,61,1.31438 +2,VZ,5/13/2011 09:00:00,$37.28,$37.68,$36.95,$37.26,50917728,-0.0536481,-39.58601666,84281362,$37.26,$37.15,-0.295223,54,1.31508 +2,VZ,5/20/2011 09:00:00,$37.26,$37.41,$36.80,$37.15,53263954,-0.295223,4.607876455,50917728,$36.75,$36.67,-0.217687,47,1.31898 +2,VZ,5/27/2011 09:00:00,$36.75,$37.03,$36.24,$36.67,43400125,-0.217687,-18.51876975,53263954,$36.91,$35.63,-3.46789,40,1.33624 +2,VZ,6/3/2011 09:00:00,$36.91,$36.99,$35.60,$35.63,50174214,-3.46789,15.60845504,43400125,$35.57,$35.19,-1.06832,33,1.37525 +2,VZ,6/10/2011 09:00:00,$35.57,$36.14,$35.16,$35.19,72100710,-1.06832,43.70072643,50174214,$35.23,$35.51,0.794777,26,1.39244 +2,VZ,6/17/2011 09:00:00,$35.23,$35.92,$34.94,$35.51,69585912,0.794777,-3.487896305,72100710,$35.35,$36.00,1.83876,19,1.37989 +2,VZ,6/24/2011 09:00:00,$35.35,$36.17,$35.20,$36.00,82375230,1.83876,18.3791771,69585912,$36.00,$37.80,5,12,1.36111 +2,WMT,4/1/2011 09:00:00,$52.31,$52.74,$51.89,$52.13,44519431,-0.344102,-16.60713204,53385178,$52.31,$52.54,0.439686,40,0.709764 +2,WMT,4/8/2011 09:00:00,$52.31,$53.24,$52.06,$52.54,48382262,0.439686,8.676730392,44519431,$52.54,$53.55,1.92234,33,0.704225 +2,WMT,4/15/2011 09:00:00,$52.54,$53.96,$52.40,$53.55,45662991,1.92234,-5.620388315,48382262,$53.08,$53.58,0.941974,26,0.690943 +2,WMT,4/21/2011 09:00:00,$53.08,$53.95,$52.91,$53.58,23073491,0.941974,-49.47004019,45662991,$53.60,$54.98,2.57463,20,0.690556 +2,WMT,4/29/2011 09:00:00,$53.60,$55.16,$53.23,$54.98,47159044,2.57463,104.3862543,23073491,$55.08,$55.02,-0.108932,12,0.672972 +2,WMT,5/6/2011 09:00:00,$55.08,$55.79,$53.20,$55.02,46668727,-0.108932,-1.039709372,47159044,$54.97,$55.72,1.36438,5,0.672483 +2,WMT,5/13/2011 09:00:00,$54.97,$56.03,$54.70,$55.72,42649301,1.36438,-8.612675465,46668727,$55.61,$55.29,-0.575436,89,0.664034 +2,WMT,5/20/2011 09:00:00,$55.61,$56.47,$54.95,$55.29,56695842,-0.575436,32.93498527,42649301,$54.90,$54.70,-0.364299,82,0.669199 +2,WMT,5/27/2011 09:00:00,$54.90,$55.50,$54.10,$54.70,35560853,-0.364299,-37.27784658,56695842,$54.88,$53.66,-2.22303,75,0.676417 +2,WMT,6/3/2011 09:00:00,$54.88,$55.22,$53.04,$53.66,48156051,-2.22303,35.41871732,35560853,$53.86,$52.72,-2.1166,68,0.689527 +2,WMT,6/10/2011 09:00:00,$53.86,$54.30,$52.69,$52.72,58746396,-2.1166,21.99172229,48156051,$52.91,$52.82,-0.1701,61,0.701821 +2,WMT,6/17/2011 09:00:00,$52.91,$53.29,$51.79,$52.82,68996550,-0.1701,17.44814099,58746396,$52.70,$52.41,-0.550285,54,0.700492 +2,WMT,6/24/2011 09:00:00,$52.70,$53.70,$52.35,$52.41,75602550,-0.550285,9.574391763,68996550,$52.32,$53.51,2.27446,47,0.705972 +2,XOM,4/1/2011 09:00:00,$83.86,$84.94,$82.61,$84.68,77569311,0.97782,-6.95164475,83364516,$84.26,$85.95,2.0057,40,0.555031 +2,XOM,4/8/2011 09:00:00,$84.26,$86.22,$84.07,$85.95,75566590,2.0057,-2.581847092,77569311,$85.95,$84.29,-1.93136,33,0.54683 +2,XOM,4/15/2011 09:00:00,$85.95,$86.15,$82.38,$84.29,81056144,-1.93136,7.264525235,75566590,$83.11,$86.36,3.91048,26,0.557599 +2,XOM,4/21/2011 09:00:00,$83.11,$86.36,$82.44,$86.36,43378708,3.91048,-46.48313396,81056144,$86.29,$87.98,1.95851,20,0.544233 +2,XOM,4/29/2011 09:00:00,$86.29,$88.00,$85.89,$87.98,81596868,1.95851,88.10349999,43378708,$88.10,$82.69,-6.14075,12,0.534212 +2,XOM,5/6/2011 09:00:00,$88.10,$88.13,$81.59,$82.69,113805856,-6.14075,39.4733141,81596868,$83.01,$80.87,-2.578,5,0.568388 +2,XOM,5/13/2011 09:00:00,$83.01,$83.76,$79.42,$80.87,99678100,-2.578,-12.41390953,113805856,$80.22,$81.57,1.68287,89,0.58118 +2,XOM,5/20/2011 09:00:00,$80.22,$82.58,$79.60,$81.57,86758820,1.68287,-12.96100146,99678100,$80.22,$82.63,3.00424,82,0.576192 +2,XOM,5/27/2011 09:00:00,$80.22,$82.63,$80.07,$82.63,68230855,3.00424,-21.35571346,86758820,$83.28,$81.18,-2.52161,75,0.568801 +2,XOM,6/3/2011 09:00:00,$83.28,$83.75,$80.18,$81.18,78616295,-2.52161,15.2210316,68230855,$80.93,$79.78,-1.42098,68,0.57896 +2,XOM,6/10/2011 09:00:00,$80.93,$81.87,$79.72,$79.78,92380844,-1.42098,17.50851907,78616295,$80.00,$79.02,-1.225,61,0.58912 +2,XOM,6/17/2011 09:00:00,$80.00,$80.82,$78.33,$79.02,100521400,-1.225,8.8119524,92380844,$78.65,$76.78,-2.37762,54,0.594786 +2,XOM,6/24/2011 09:00:00,$78.65,$81.12,$76.78,$76.78,118679791,-2.37762,18.06420424,100521400,$76.88,$82.01,6.67274,47,0.612139 \ No newline at end of file diff --git a/taganomaly/data/sample-1H.csv b/taganomaly/data/sample-1H.csv new file mode 100644 index 0000000..885d828 --- /dev/null +++ b/taganomaly/data/sample-1H.csv @@ -0,0 +1,886 @@ +"","date","category","value" +"1",2018-01-01 12:00:00,"A",9 +"2",2018-01-01 12:00:00,"B",9 +"3",2018-01-01 12:00:00,"C",12 +"4",2018-01-01 12:20:00,"A",8 +"5",2018-01-01 12:20:00,"B",9 +"6",2018-01-01 12:20:00,"C",13 +"7",2018-01-01 12:40:00,"A",7 +"8",2018-01-01 12:40:00,"B",12 +"9",2018-01-01 12:40:00,"C",11 +"10",2018-01-01 13:00:00,"A",9 +"11",2018-01-01 13:00:00,"B",12 +"12",2018-01-01 13:00:00,"C",9 +"13",2018-01-01 13:20:00,"A",15 +"14",2018-01-01 13:20:00,"B",6 +"15",2018-01-01 13:20:00,"C",9 +"16",2018-01-01 13:40:00,"A",12 +"17",2018-01-01 13:40:00,"B",4 +"18",2018-01-01 13:40:00,"C",14 +"19",2018-01-01 14:00:00,"A",10 +"20",2018-01-01 14:00:00,"B",8 +"21",2018-01-01 14:00:00,"C",12 +"22",2018-01-01 14:20:00,"A",8 +"23",2018-01-01 14:20:00,"B",8 +"24",2018-01-01 14:20:00,"C",14 +"25",2018-01-01 14:40:00,"A",9 +"26",2018-01-01 14:40:00,"B",10 +"27",2018-01-01 14:40:00,"C",11 +"28",2018-01-01 15:00:00,"A",9 +"29",2018-01-01 15:00:00,"B",11 +"30",2018-01-01 15:00:00,"C",10 +"31",2018-01-01 15:20:00,"A",11 +"32",2018-01-01 15:20:00,"B",6 +"33",2018-01-01 15:20:00,"C",13 +"34",2018-01-01 15:40:00,"A",9 +"35",2018-01-01 15:40:00,"B",8 +"36",2018-01-01 15:40:00,"C",13 +"37",2018-01-01 16:00:00,"A",9 +"38",2018-01-01 16:00:00,"B",11 +"39",2018-01-01 16:00:00,"C",10 +"40",2018-01-01 16:20:00,"A",9 +"41",2018-01-01 16:20:00,"B",11 +"42",2018-01-01 16:20:00,"C",10 +"43",2018-01-01 16:40:00,"A",7 +"44",2018-01-01 16:40:00,"B",12 +"45",2018-01-01 16:40:00,"C",11 +"46",2018-01-01 17:00:00,"A",16 +"47",2018-01-01 17:00:00,"B",6 +"48",2018-01-01 17:00:00,"C",8 +"49",2018-01-01 17:20:00,"A",10 +"50",2018-01-01 17:20:00,"B",7 +"51",2018-01-01 17:20:00,"C",13 +"52",2018-01-01 17:40:00,"A",9 +"53",2018-01-01 17:40:00,"B",10 +"54",2018-01-01 17:40:00,"C",11 +"55",2018-01-01 18:00:00,"A",12 +"56",2018-01-01 18:00:00,"B",8 +"57",2018-01-01 18:00:00,"C",10 +"58",2018-01-01 18:20:00,"A",11 +"59",2018-01-01 18:20:00,"B",8 +"60",2018-01-01 18:20:00,"C",11 +"61",2018-01-01 18:40:00,"A",13 +"62",2018-01-01 18:40:00,"B",5 +"63",2018-01-01 18:40:00,"C",12 +"64",2018-01-01 19:00:00,"A",12 +"65",2018-01-01 19:00:00,"B",10 +"66",2018-01-01 19:00:00,"C",8 +"67",2018-01-01 19:20:00,"A",14 +"68",2018-01-01 19:20:00,"B",4 +"69",2018-01-01 19:20:00,"C",12 +"70",2018-01-01 19:40:00,"A",9 +"71",2018-01-01 19:40:00,"B",10 +"72",2018-01-01 19:40:00,"C",11 +"73",2018-01-01 20:00:00,"A",12 +"74",2018-01-01 20:00:00,"B",12 +"75",2018-01-01 20:00:00,"C",6 +"76",2018-01-01 20:20:00,"A",8 +"77",2018-01-01 20:20:00,"B",7 +"78",2018-01-01 20:20:00,"C",15 +"79",2018-01-01 20:40:00,"A",12 +"80",2018-01-01 20:40:00,"B",8 +"81",2018-01-01 20:40:00,"C",10 +"82",2018-01-01 21:00:00,"A",6 +"83",2018-01-01 21:00:00,"B",14 +"84",2018-01-01 21:00:00,"C",10 +"85",2018-01-01 21:20:00,"A",14 +"86",2018-01-01 21:20:00,"B",6 +"87",2018-01-01 21:20:00,"C",10 +"88",2018-01-01 21:40:00,"A",7 +"89",2018-01-01 21:40:00,"B",12 +"90",2018-01-01 21:40:00,"C",11 +"91",2018-01-01 22:00:00,"A",8 +"92",2018-01-01 22:00:00,"B",8 +"93",2018-01-01 22:00:00,"C",14 +"94",2018-01-01 22:20:00,"A",11 +"95",2018-01-01 22:20:00,"B",10 +"96",2018-01-01 22:20:00,"C",9 +"97",2018-01-01 22:40:00,"A",8 +"98",2018-01-01 22:40:00,"B",8 +"99",2018-01-01 22:40:00,"C",14 +"100",2018-01-01 23:00:00,"A",15 +"101",2018-01-01 23:00:00,"B",5 +"102",2018-01-01 23:00:00,"C",10 +"103",2018-01-01 23:20:00,"A",8 +"104",2018-01-01 23:20:00,"B",12 +"105",2018-01-01 23:20:00,"C",10 +"106",2018-01-01 23:40:00,"A",9 +"107",2018-01-01 23:40:00,"B",9 +"108",2018-01-01 23:40:00,"C",12 +"109",2018-01-02 00:00:00,"A",6 +"110",2018-01-02 00:00:00,"B",10 +"111",2018-01-02 00:00:00,"C",14 +"112",2018-01-02 00:20:00,"A",9 +"113",2018-01-02 00:20:00,"B",9 +"114",2018-01-02 00:20:00,"C",12 +"115",2018-01-02 00:40:00,"A",10 +"116",2018-01-02 00:40:00,"B",9 +"117",2018-01-02 00:40:00,"C",11 +"118",2018-01-02 01:00:00,"A",8 +"119",2018-01-02 01:00:00,"B",11 +"120",2018-01-02 01:00:00,"C",11 +"121",2018-01-02 01:20:00,"A",10 +"122",2018-01-02 01:20:00,"B",8 +"123",2018-01-02 01:20:00,"C",12 +"124",2018-01-02 01:40:00,"A",12 +"125",2018-01-02 01:40:00,"B",5 +"126",2018-01-02 01:40:00,"C",13 +"127",2018-01-02 02:00:00,"A",11 +"128",2018-01-02 02:00:00,"B",8 +"129",2018-01-02 02:00:00,"C",11 +"130",2018-01-02 02:20:00,"A",9 +"131",2018-01-02 02:20:00,"B",11 +"132",2018-01-02 02:20:00,"C",10 +"133",2018-01-02 02:40:00,"A",11 +"134",2018-01-02 02:40:00,"B",9 +"135",2018-01-02 02:40:00,"C",10 +"136",2018-01-02 03:00:00,"A",8 +"137",2018-01-02 03:00:00,"B",11 +"138",2018-01-02 03:00:00,"C",11 +"139",2018-01-02 03:20:00,"A",10 +"140",2018-01-02 03:20:00,"B",8 +"141",2018-01-02 03:20:00,"C",12 +"142",2018-01-02 03:40:00,"A",10 +"143",2018-01-02 03:40:00,"B",12 +"144",2018-01-02 03:40:00,"C",8 +"145",2018-01-02 04:00:00,"A",19 +"146",2018-01-02 04:00:00,"B",6 +"147",2018-01-02 04:00:00,"C",5 +"148",2018-01-02 04:20:00,"A",7 +"149",2018-01-02 04:20:00,"B",15 +"150",2018-01-02 04:20:00,"C",8 +"151",2018-01-02 04:40:00,"A",13 +"152",2018-01-02 04:40:00,"B",9 +"153",2018-01-02 04:40:00,"C",8 +"154",2018-01-02 05:00:00,"A",7 +"155",2018-01-02 05:00:00,"B",14 +"156",2018-01-02 05:00:00,"C",9 +"157",2018-01-02 05:20:00,"A",11 +"158",2018-01-02 05:20:00,"B",10 +"159",2018-01-02 05:20:00,"C",9 +"160",2018-01-02 05:40:00,"A",6 +"161",2018-01-02 05:40:00,"B",15 +"162",2018-01-02 05:40:00,"C",9 +"163",2018-01-02 06:00:00,"A",11 +"164",2018-01-02 06:00:00,"B",11 +"165",2018-01-02 06:00:00,"C",8 +"166",2018-01-02 06:20:00,"A",8 +"167",2018-01-02 06:20:00,"B",12 +"168",2018-01-02 06:20:00,"C",10 +"169",2018-01-02 06:40:00,"A",11 +"170",2018-01-02 06:40:00,"B",11 +"171",2018-01-02 06:40:00,"C",8 +"172",2018-01-02 07:00:00,"A",9 +"173",2018-01-02 07:00:00,"B",13 +"174",2018-01-02 07:00:00,"C",8 +"175",2018-01-02 07:20:00,"A",13 +"176",2018-01-02 07:20:00,"B",10 +"177",2018-01-02 07:20:00,"C",7 +"178",2018-01-02 07:40:00,"A",8 +"179",2018-01-02 07:40:00,"B",11 +"180",2018-01-02 07:40:00,"C",11 +"181",2018-01-02 08:00:00,"A",5 +"182",2018-01-02 08:00:00,"B",14 +"183",2018-01-02 08:00:00,"C",11 +"184",2018-01-02 08:20:00,"A",9 +"185",2018-01-02 08:20:00,"B",11 +"186",2018-01-02 08:20:00,"C",10 +"187",2018-01-02 08:40:00,"A",7 +"188",2018-01-02 08:40:00,"B",12 +"189",2018-01-02 08:40:00,"C",11 +"190",2018-01-02 09:00:00,"A",9 +"191",2018-01-02 09:00:00,"B",10 +"192",2018-01-02 09:00:00,"C",11 +"193",2018-01-02 09:20:00,"A",7 +"194",2018-01-02 09:20:00,"B",15 +"195",2018-01-02 09:20:00,"C",8 +"196",2018-01-02 09:40:00,"A",12 +"197",2018-01-02 09:40:00,"B",9 +"198",2018-01-02 09:40:00,"C",9 +"199",2018-01-02 10:00:00,"A",10 +"200",2018-01-02 10:00:00,"B",10 +"201",2018-01-02 10:00:00,"C",10 +"202",2018-01-02 10:20:00,"A",13 +"203",2018-01-02 10:20:00,"B",8 +"204",2018-01-02 10:20:00,"C",9 +"205",2018-01-02 10:40:00,"A",10 +"206",2018-01-02 10:40:00,"B",8 +"207",2018-01-02 10:40:00,"C",12 +"208",2018-01-02 11:00:00,"A",9 +"209",2018-01-02 11:00:00,"B",10 +"210",2018-01-02 11:00:00,"C",11 +"211",2018-01-02 11:20:00,"A",11 +"212",2018-01-02 11:20:00,"B",11 +"213",2018-01-02 11:20:00,"C",8 +"214",2018-01-02 11:40:00,"A",8 +"215",2018-01-02 11:40:00,"B",10 +"216",2018-01-02 11:40:00,"C",12 +"217",2018-01-02 12:00:00,"A",13 +"218",2018-01-02 12:00:00,"B",6 +"219",2018-01-02 12:00:00,"C",11 +"220",2018-01-02 12:20:00,"A",8 +"221",2018-01-02 12:20:00,"B",15 +"222",2018-01-02 12:20:00,"C",7 +"223",2018-01-02 12:40:00,"A",5 +"224",2018-01-02 12:40:00,"B",10 +"225",2018-01-02 12:40:00,"C",15 +"226",2018-01-02 13:00:00,"A",7 +"227",2018-01-02 13:00:00,"B",11 +"228",2018-01-02 13:00:00,"C",12 +"229",2018-01-02 13:20:00,"A",10 +"230",2018-01-02 13:20:00,"B",11 +"231",2018-01-02 13:20:00,"C",9 +"232",2018-01-02 13:40:00,"A",5 +"233",2018-01-02 13:40:00,"B",14 +"234",2018-01-02 13:40:00,"C",11 +"235",2018-01-02 14:00:00,"A",5 +"236",2018-01-02 14:00:00,"B",17 +"237",2018-01-02 14:00:00,"C",8 +"238",2018-01-02 14:20:00,"A",7 +"239",2018-01-02 14:20:00,"B",15 +"240",2018-01-02 14:20:00,"C",8 +"241",2018-01-02 14:40:00,"A",9 +"242",2018-01-02 14:40:00,"B",15 +"243",2018-01-02 14:40:00,"C",6 +"244",2018-01-02 15:00:00,"A",8 +"245",2018-01-02 15:00:00,"B",11 +"246",2018-01-02 15:00:00,"C",11 +"247",2018-01-02 15:20:00,"A",12 +"248",2018-01-02 15:20:00,"B",9 +"249",2018-01-02 15:20:00,"C",9 +"250",2018-01-02 15:40:00,"A",18 +"251",2018-01-02 15:40:00,"B",7 +"252",2018-01-02 15:40:00,"C",5 +"253",2018-01-02 16:00:00,"A",11 +"254",2018-01-02 16:00:00,"B",9 +"255",2018-01-02 16:00:00,"C",10 +"256",2018-01-02 16:20:00,"A",11 +"257",2018-01-02 16:20:00,"B",13 +"258",2018-01-02 16:20:00,"C",6 +"259",2018-01-02 16:40:00,"A",12 +"260",2018-01-02 16:40:00,"B",5 +"261",2018-01-02 16:40:00,"C",13 +"262",2018-01-02 17:00:00,"A",11 +"263",2018-01-02 17:00:00,"B",11 +"264",2018-01-02 17:00:00,"C",8 +"265",2018-01-02 17:20:00,"A",13 +"266",2018-01-02 17:20:00,"B",9 +"267",2018-01-02 17:20:00,"C",8 +"268",2018-01-02 17:40:00,"A",11 +"269",2018-01-02 17:40:00,"B",10 +"270",2018-01-02 17:40:00,"C",9 +"271",2018-01-02 18:00:00,"A",11 +"272",2018-01-02 18:00:00,"B",12 +"273",2018-01-02 18:00:00,"C",7 +"274",2018-01-02 18:20:00,"A",15 +"275",2018-01-02 18:20:00,"B",8 +"276",2018-01-02 18:20:00,"C",7 +"277",2018-01-02 18:40:00,"A",5 +"278",2018-01-02 18:40:00,"B",15 +"279",2018-01-02 18:40:00,"C",10 +"280",2018-01-02 19:00:00,"A",10 +"281",2018-01-02 19:00:00,"B",6 +"282",2018-01-02 19:00:00,"C",14 +"283",2018-01-02 19:20:00,"A",11 +"284",2018-01-02 19:20:00,"B",10 +"285",2018-01-02 19:20:00,"C",9 +"286",2018-01-02 19:40:00,"A",7 +"287",2018-01-02 19:40:00,"B",13 +"288",2018-01-02 19:40:00,"C",10 +"289",2018-01-02 20:00:00,"A",9 +"290",2018-01-02 20:00:00,"B",10 +"291",2018-01-02 20:00:00,"C",11 +"292",2018-01-02 20:20:00,"A",12 +"293",2018-01-02 20:20:00,"B",10 +"294",2018-01-02 20:20:00,"C",8 +"295",2018-01-02 20:40:00,"A",15 +"296",2018-01-02 20:40:00,"B",5 +"297",2018-01-02 20:40:00,"C",10 +"298",2018-01-02 21:00:00,"A",12 +"299",2018-01-02 21:00:00,"B",7 +"300",2018-01-02 21:00:00,"C",11 +"301",2018-01-02 21:20:00,"A",11 +"302",2018-01-02 21:20:00,"B",10 +"303",2018-01-02 21:20:00,"C",9 +"304",2018-01-02 21:40:00,"A",11 +"305",2018-01-02 21:40:00,"B",9 +"306",2018-01-02 21:40:00,"C",10 +"307",2018-01-02 22:00:00,"A",11 +"308",2018-01-02 22:00:00,"B",9 +"309",2018-01-02 22:00:00,"C",10 +"310",2018-01-02 22:20:00,"A",12 +"311",2018-01-02 22:20:00,"B",9 +"312",2018-01-02 22:20:00,"C",9 +"313",2018-01-02 22:40:00,"A",11 +"314",2018-01-02 22:40:00,"B",8 +"315",2018-01-02 22:40:00,"C",11 +"316",2018-01-02 23:00:00,"A",13 +"317",2018-01-02 23:00:00,"B",6 +"318",2018-01-02 23:00:00,"C",11 +"319",2018-01-02 23:20:00,"A",10 +"320",2018-01-02 23:20:00,"B",12 +"321",2018-01-02 23:20:00,"C",8 +"322",2018-01-02 23:40:00,"A",12 +"323",2018-01-02 23:40:00,"B",10 +"324",2018-01-02 23:40:00,"C",8 +"325",2018-01-03 00:00:00,"A",10 +"326",2018-01-03 00:00:00,"B",11 +"327",2018-01-03 00:00:00,"C",9 +"328",2018-01-03 00:20:00,"A",4 +"329",2018-01-03 00:20:00,"B",15 +"330",2018-01-03 00:20:00,"C",11 +"331",2018-01-03 00:40:00,"A",10 +"332",2018-01-03 00:40:00,"B",10 +"333",2018-01-03 00:40:00,"C",10 +"334",2018-01-03 01:00:00,"A",13 +"335",2018-01-03 01:00:00,"B",7 +"336",2018-01-03 01:00:00,"C",10 +"337",2018-01-03 01:20:00,"A",6 +"338",2018-01-03 01:20:00,"B",15 +"339",2018-01-03 01:20:00,"C",9 +"340",2018-01-03 01:40:00,"A",9 +"341",2018-01-03 01:40:00,"B",5 +"342",2018-01-03 01:40:00,"C",16 +"343",2018-01-03 02:00:00,"A",10 +"344",2018-01-03 02:00:00,"B",10 +"345",2018-01-03 02:00:00,"C",10 +"346",2018-01-03 02:20:00,"A",14 +"347",2018-01-03 02:20:00,"B",8 +"348",2018-01-03 02:20:00,"C",8 +"349",2018-01-03 02:40:00,"A",9 +"350",2018-01-03 02:40:00,"B",9 +"351",2018-01-03 02:40:00,"C",12 +"352",2018-01-03 03:00:00,"A",6 +"353",2018-01-03 03:00:00,"B",8 +"354",2018-01-03 03:00:00,"C",16 +"355",2018-01-03 03:20:00,"A",7 +"356",2018-01-03 03:20:00,"B",7 +"357",2018-01-03 03:20:00,"C",16 +"358",2018-01-03 03:40:00,"A",14 +"359",2018-01-03 03:40:00,"B",10 +"360",2018-01-03 03:40:00,"C",6 +"361",2018-01-03 04:00:00,"A",7 +"362",2018-01-03 04:00:00,"B",13 +"363",2018-01-03 04:00:00,"C",10 +"364",2018-01-03 04:20:00,"A",14 +"365",2018-01-03 04:20:00,"B",7 +"366",2018-01-03 04:20:00,"C",9 +"367",2018-01-03 04:40:00,"A",3 +"368",2018-01-03 04:40:00,"B",14 +"369",2018-01-03 04:40:00,"C",13 +"370",2018-01-03 05:00:00,"A",9 +"371",2018-01-03 05:00:00,"B",10 +"372",2018-01-03 05:00:00,"C",11 +"373",2018-01-03 05:20:00,"A",13 +"374",2018-01-03 05:20:00,"B",7 +"375",2018-01-03 05:20:00,"C",10 +"376",2018-01-03 05:40:00,"A",12 +"377",2018-01-03 05:40:00,"B",11 +"378",2018-01-03 05:40:00,"C",7 +"379",2018-01-03 06:00:00,"A",14 +"380",2018-01-03 06:00:00,"B",12 +"381",2018-01-03 06:00:00,"C",4 +"382",2018-01-03 06:20:00,"A",10 +"383",2018-01-03 06:20:00,"B",10 +"384",2018-01-03 06:20:00,"C",10 +"385",2018-01-03 06:40:00,"A",9 +"386",2018-01-03 06:40:00,"B",10 +"387",2018-01-03 06:40:00,"C",11 +"388",2018-01-03 07:00:00,"A",13 +"389",2018-01-03 07:00:00,"B",7 +"390",2018-01-03 07:00:00,"C",10 +"391",2018-01-03 07:20:00,"A",11 +"392",2018-01-03 07:20:00,"B",9 +"393",2018-01-03 07:20:00,"C",10 +"394",2018-01-03 07:40:00,"A",15 +"395",2018-01-03 07:40:00,"B",6 +"396",2018-01-03 07:40:00,"C",9 +"397",2018-01-03 08:00:00,"A",12 +"398",2018-01-03 08:00:00,"B",11 +"399",2018-01-03 08:00:00,"C",7 +"400",2018-01-03 08:20:00,"A",13 +"401",2018-01-03 08:20:00,"B",8 +"402",2018-01-03 08:20:00,"C",9 +"403",2018-01-03 08:40:00,"A",9 +"404",2018-01-03 08:40:00,"B",12 +"405",2018-01-03 08:40:00,"C",9 +"406",2018-01-03 09:00:00,"A",12 +"407",2018-01-03 09:00:00,"B",9 +"408",2018-01-03 09:00:00,"C",9 +"409",2018-01-03 09:20:00,"A",11 +"410",2018-01-03 09:20:00,"B",9 +"411",2018-01-03 09:20:00,"C",10 +"412",2018-01-03 09:40:00,"A",13 +"413",2018-01-03 09:40:00,"B",4 +"414",2018-01-03 09:40:00,"C",13 +"415",2018-01-03 10:00:00,"A",11 +"416",2018-01-03 10:00:00,"B",6 +"417",2018-01-03 10:00:00,"C",13 +"418",2018-01-03 10:20:00,"A",7 +"419",2018-01-03 10:20:00,"B",7 +"420",2018-01-03 10:20:00,"C",16 +"421",2018-01-03 10:40:00,"A",6 +"422",2018-01-03 10:40:00,"B",10 +"423",2018-01-03 10:40:00,"C",14 +"424",2018-01-03 11:00:00,"A",11 +"425",2018-01-03 11:00:00,"B",11 +"426",2018-01-03 11:00:00,"C",8 +"427",2018-01-03 11:20:00,"A",12 +"428",2018-01-03 11:20:00,"B",9 +"429",2018-01-03 11:20:00,"C",9 +"430",2018-01-03 11:40:00,"A",11 +"431",2018-01-03 11:40:00,"B",8 +"432",2018-01-03 11:40:00,"C",11 +"433",2018-01-03 12:00:00,"A",10 +"434",2018-01-03 12:00:00,"B",8 +"435",2018-01-03 12:00:00,"C",12 +"436",2018-01-03 12:20:00,"A",8 +"437",2018-01-03 12:20:00,"B",13 +"438",2018-01-03 12:20:00,"C",9 +"439",2018-01-03 12:40:00,"A",14 +"440",2018-01-03 12:40:00,"B",5 +"441",2018-01-03 12:40:00,"C",11 +"442",2018-01-03 13:00:00,"A",13 +"443",2018-01-03 13:00:00,"B",8 +"444",2018-01-03 13:00:00,"C",9 +"445",2018-01-03 13:20:00,"A",14 +"446",2018-01-03 13:20:00,"B",7 +"447",2018-01-03 13:20:00,"C",9 +"448",2018-01-03 13:40:00,"A",7 +"449",2018-01-03 13:40:00,"B",8 +"450",2018-01-03 13:40:00,"C",15 +"451",2018-01-03 14:00:00,"A",10 +"452",2018-01-03 14:00:00,"B",10 +"453",2018-01-03 14:00:00,"C",10 +"454",2018-01-03 14:20:00,"A",14 +"455",2018-01-03 14:20:00,"B",7 +"456",2018-01-03 14:20:00,"C",9 +"457",2018-01-03 14:40:00,"A",10 +"458",2018-01-03 14:40:00,"B",11 +"459",2018-01-03 14:40:00,"C",9 +"460",2018-01-03 15:00:00,"A",10 +"461",2018-01-03 15:00:00,"B",8 +"462",2018-01-03 15:00:00,"C",12 +"463",2018-01-03 15:20:00,"A",6 +"464",2018-01-03 15:20:00,"B",10 +"465",2018-01-03 15:20:00,"C",14 +"466",2018-01-03 15:40:00,"A",10 +"467",2018-01-03 15:40:00,"B",13 +"468",2018-01-03 15:40:00,"C",7 +"469",2018-01-03 16:00:00,"A",6 +"470",2018-01-03 16:00:00,"B",12 +"471",2018-01-03 16:00:00,"C",12 +"472",2018-01-03 16:20:00,"A",7 +"473",2018-01-03 16:20:00,"B",15 +"474",2018-01-03 16:20:00,"C",8 +"475",2018-01-03 16:40:00,"A",6 +"476",2018-01-03 16:40:00,"B",12 +"477",2018-01-03 16:40:00,"C",12 +"478",2018-01-03 17:00:00,"A",7 +"479",2018-01-03 17:00:00,"B",9 +"480",2018-01-03 17:00:00,"C",14 +"481",2018-01-03 17:20:00,"A",7 +"482",2018-01-03 17:20:00,"B",7 +"483",2018-01-03 17:20:00,"C",16 +"484",2018-01-03 17:40:00,"A",12 +"485",2018-01-03 17:40:00,"B",9 +"486",2018-01-03 17:40:00,"C",9 +"487",2018-01-03 18:00:00,"A",14 +"488",2018-01-03 18:00:00,"B",9 +"489",2018-01-03 18:00:00,"C",7 +"490",2018-01-03 18:20:00,"A",6 +"491",2018-01-03 18:20:00,"B",15 +"492",2018-01-03 18:20:00,"C",9 +"493",2018-01-03 18:40:00,"A",10 +"494",2018-01-03 18:40:00,"B",12 +"495",2018-01-03 18:40:00,"C",8 +"496",2018-01-03 19:00:00,"A",11 +"497",2018-01-03 19:00:00,"B",7 +"498",2018-01-03 19:00:00,"C",12 +"499",2018-01-03 19:20:00,"A",7 +"500",2018-01-03 19:20:00,"B",10 +"501",2018-01-03 19:20:00,"C",13 +"502",2018-01-03 19:40:00,"A",12 +"503",2018-01-03 19:40:00,"B",13 +"504",2018-01-03 19:40:00,"C",5 +"505",2018-01-03 20:00:00,"A",9 +"506",2018-01-03 20:00:00,"B",8 +"507",2018-01-03 20:00:00,"C",13 +"508",2018-01-03 20:20:00,"A",8 +"509",2018-01-03 20:20:00,"B",13 +"510",2018-01-03 20:20:00,"C",9 +"511",2018-01-03 20:40:00,"A",9 +"512",2018-01-03 20:40:00,"B",7 +"513",2018-01-03 20:40:00,"C",14 +"514",2018-01-03 21:00:00,"A",11 +"515",2018-01-03 21:00:00,"B",10 +"516",2018-01-03 21:00:00,"C",9 +"517",2018-01-03 21:20:00,"A",13 +"518",2018-01-03 21:20:00,"B",10 +"519",2018-01-03 21:20:00,"C",7 +"520",2018-01-03 21:40:00,"A",15 +"521",2018-01-03 21:40:00,"B",8 +"522",2018-01-03 21:40:00,"C",7 +"523",2018-01-03 22:00:00,"A",7 +"524",2018-01-03 22:00:00,"B",14 +"525",2018-01-03 22:00:00,"C",9 +"526",2018-01-03 22:20:00,"A",8 +"527",2018-01-03 22:20:00,"B",8 +"528",2018-01-03 22:20:00,"C",14 +"529",2018-01-03 22:40:00,"A",10 +"530",2018-01-03 22:40:00,"B",14 +"531",2018-01-03 22:40:00,"C",6 +"532",2018-01-03 23:00:00,"A",9 +"533",2018-01-03 23:00:00,"B",10 +"534",2018-01-03 23:00:00,"C",11 +"535",2018-01-03 23:20:00,"A",12 +"536",2018-01-03 23:20:00,"B",8 +"537",2018-01-03 23:20:00,"C",10 +"538",2018-01-03 23:40:00,"A",8 +"539",2018-01-03 23:40:00,"B",11 +"540",2018-01-03 23:40:00,"C",11 +"541",2018-01-04 00:00:00,"A",7 +"542",2018-01-04 00:00:00,"B",6 +"543",2018-01-04 00:00:00,"C",17 +"544",2018-01-04 00:20:00,"A",14 +"545",2018-01-04 00:20:00,"B",9 +"546",2018-01-04 00:20:00,"C",7 +"547",2018-01-04 00:40:00,"A",12 +"548",2018-01-04 00:40:00,"B",8 +"549",2018-01-04 00:40:00,"C",10 +"550",2018-01-04 01:00:00,"A",11 +"551",2018-01-04 01:00:00,"B",8 +"552",2018-01-04 01:00:00,"C",11 +"553",2018-01-04 01:20:00,"A",9 +"554",2018-01-04 01:20:00,"B",12 +"555",2018-01-04 01:20:00,"C",9 +"556",2018-01-04 01:40:00,"A",10 +"557",2018-01-04 01:40:00,"B",10 +"558",2018-01-04 01:40:00,"C",10 +"559",2018-01-04 02:00:00,"A",8 +"560",2018-01-04 02:00:00,"B",13 +"561",2018-01-04 02:00:00,"C",9 +"562",2018-01-04 02:20:00,"A",4 +"563",2018-01-04 02:20:00,"B",17 +"564",2018-01-04 02:20:00,"C",9 +"565",2018-01-04 02:40:00,"A",9 +"566",2018-01-04 02:40:00,"B",10 +"567",2018-01-04 02:40:00,"C",11 +"568",2018-01-04 03:00:00,"A",12 +"569",2018-01-04 03:00:00,"B",9 +"570",2018-01-04 03:00:00,"C",9 +"571",2018-01-04 03:20:00,"A",7 +"572",2018-01-04 03:20:00,"B",10 +"573",2018-01-04 03:20:00,"C",13 +"574",2018-01-04 03:40:00,"A",10 +"575",2018-01-04 03:40:00,"B",9 +"576",2018-01-04 03:40:00,"C",11 +"577",2018-01-04 04:00:00,"A",13 +"578",2018-01-04 04:00:00,"B",7 +"579",2018-01-04 04:00:00,"C",10 +"580",2018-01-04 04:20:00,"A",5 +"581",2018-01-04 04:20:00,"B",11 +"582",2018-01-04 04:20:00,"C",14 +"583",2018-01-04 04:40:00,"A",13 +"584",2018-01-04 04:40:00,"B",10 +"585",2018-01-04 04:40:00,"C",7 +"586",2018-01-04 05:00:00,"A",11 +"587",2018-01-04 05:00:00,"B",8 +"588",2018-01-04 05:00:00,"C",11 +"589",2018-01-04 05:20:00,"A",13 +"590",2018-01-04 05:20:00,"B",9 +"591",2018-01-04 05:20:00,"C",8 +"592",2018-01-04 05:40:00,"A",13 +"593",2018-01-04 05:40:00,"B",9 +"594",2018-01-04 05:40:00,"C",8 +"595",2018-01-04 06:00:00,"A",13 +"596",2018-01-04 06:00:00,"B",10 +"597",2018-01-04 06:00:00,"C",7 +"598",2018-01-04 06:20:00,"A",9 +"599",2018-01-04 06:20:00,"B",8 +"600",2018-01-04 06:20:00,"C",13 +"601",2018-01-04 06:40:00,"A",8 +"602",2018-01-04 06:40:00,"B",11 +"603",2018-01-04 06:40:00,"C",11 +"604",2018-01-04 07:00:00,"A",10 +"605",2018-01-04 07:00:00,"B",10 +"606",2018-01-04 07:00:00,"C",10 +"607",2018-01-04 07:20:00,"A",10 +"608",2018-01-04 07:20:00,"B",10 +"609",2018-01-04 07:20:00,"C",10 +"610",2018-01-04 07:40:00,"A",8 +"611",2018-01-04 07:40:00,"B",15 +"612",2018-01-04 07:40:00,"C",7 +"613",2018-01-04 08:00:00,"A",7 +"614",2018-01-04 08:00:00,"B",12 +"615",2018-01-04 08:00:00,"C",11 +"616",2018-01-04 08:20:00,"A",8 +"617",2018-01-04 08:20:00,"B",12 +"618",2018-01-04 08:20:00,"C",10 +"619",2018-01-04 08:40:00,"A",9 +"620",2018-01-04 08:40:00,"B",9 +"621",2018-01-04 08:40:00,"C",12 +"622",2018-01-04 09:00:00,"A",9 +"623",2018-01-04 09:00:00,"B",12 +"624",2018-01-04 09:00:00,"C",9 +"625",2018-01-04 09:20:00,"A",12 +"626",2018-01-04 09:20:00,"B",6 +"627",2018-01-04 09:20:00,"C",12 +"628",2018-01-04 09:40:00,"A",13 +"629",2018-01-04 09:40:00,"B",9 +"630",2018-01-04 09:40:00,"C",8 +"631",2018-01-04 10:00:00,"A",9 +"632",2018-01-04 10:00:00,"B",10 +"633",2018-01-04 10:00:00,"C",11 +"634",2018-01-04 10:20:00,"A",8 +"635",2018-01-04 10:20:00,"B",8 +"636",2018-01-04 10:20:00,"C",14 +"637",2018-01-04 10:40:00,"A",7 +"638",2018-01-04 10:40:00,"B",13 +"639",2018-01-04 10:40:00,"C",10 +"640",2018-01-04 11:00:00,"A",7 +"641",2018-01-04 11:00:00,"B",16 +"642",2018-01-04 11:00:00,"C",7 +"643",2018-01-04 11:20:00,"A",11 +"644",2018-01-04 11:20:00,"B",10 +"645",2018-01-04 11:20:00,"C",9 +"646",2018-01-04 11:40:00,"A",10 +"647",2018-01-04 11:40:00,"B",12 +"648",2018-01-04 11:40:00,"C",8 +"649",2018-01-04 12:00:00,"A",11 +"650",2018-01-04 12:00:00,"B",8 +"651",2018-01-04 12:00:00,"C",11 +"652",2018-01-04 12:20:00,"A",9 +"653",2018-01-04 12:20:00,"B",11 +"654",2018-01-04 12:20:00,"C",10 +"655",2018-01-04 12:40:00,"A",11 +"656",2018-01-04 12:40:00,"B",10 +"657",2018-01-04 12:40:00,"C",9 +"658",2018-01-04 13:00:00,"A",11 +"659",2018-01-04 13:00:00,"B",14 +"660",2018-01-04 13:00:00,"C",5 +"661",2018-01-04 13:20:00,"A",8 +"662",2018-01-04 13:20:00,"B",10 +"663",2018-01-04 13:20:00,"C",12 +"664",2018-01-04 13:40:00,"A",5 +"665",2018-01-04 13:40:00,"B",16 +"666",2018-01-04 13:40:00,"C",9 +"667",2018-01-04 14:00:00,"A",5 +"668",2018-01-04 14:00:00,"B",11 +"669",2018-01-04 14:00:00,"C",14 +"670",2018-01-04 14:20:00,"A",15 +"671",2018-01-04 14:20:00,"B",7 +"672",2018-01-04 14:20:00,"C",8 +"673",2018-01-04 14:40:00,"A",9 +"674",2018-01-04 14:40:00,"B",15 +"675",2018-01-04 14:40:00,"C",6 +"676",2018-01-04 15:00:00,"A",10 +"677",2018-01-04 15:00:00,"B",12 +"678",2018-01-04 15:00:00,"C",8 +"679",2018-01-04 15:20:00,"A",13 +"680",2018-01-04 15:20:00,"B",9 +"681",2018-01-04 15:20:00,"C",8 +"682",2018-01-04 15:40:00,"A",8 +"683",2018-01-04 15:40:00,"B",9 +"684",2018-01-04 15:40:00,"C",13 +"685",2018-01-04 16:00:00,"A",9 +"686",2018-01-04 16:00:00,"B",12 +"687",2018-01-04 16:00:00,"C",9 +"688",2018-01-04 16:20:00,"A",7 +"689",2018-01-04 16:20:00,"B",12 +"690",2018-01-04 16:20:00,"C",11 +"691",2018-01-04 16:40:00,"A",10 +"692",2018-01-04 16:40:00,"B",15 +"693",2018-01-04 16:40:00,"C",5 +"694",2018-01-04 17:00:00,"A",10 +"695",2018-01-04 17:00:00,"B",12 +"696",2018-01-04 17:00:00,"C",8 +"697",2018-01-04 17:20:00,"A",6 +"698",2018-01-04 17:20:00,"B",13 +"699",2018-01-04 17:20:00,"C",11 +"700",2018-01-04 17:40:00,"A",11 +"701",2018-01-04 17:40:00,"B",10 +"702",2018-01-04 17:40:00,"C",9 +"703",2018-01-04 18:00:00,"A",9 +"704",2018-01-04 18:00:00,"B",14 +"705",2018-01-04 18:00:00,"C",7 +"706",2018-01-04 18:20:00,"A",11 +"707",2018-01-04 18:20:00,"B",8 +"708",2018-01-04 18:20:00,"C",11 +"709",2018-01-04 18:40:00,"A",11 +"710",2018-01-04 18:40:00,"B",8 +"711",2018-01-04 18:40:00,"C",11 +"712",2018-01-04 19:00:00,"A",8 +"713",2018-01-04 19:00:00,"B",11 +"714",2018-01-04 19:00:00,"C",11 +"715",2018-01-04 19:20:00,"A",9 +"716",2018-01-04 19:20:00,"B",10 +"717",2018-01-04 19:20:00,"C",11 +"718",2018-01-04 19:40:00,"A",14 +"719",2018-01-04 19:40:00,"B",8 +"720",2018-01-04 19:40:00,"C",8 +"721",2018-01-04 20:00:00,"A",19 +"722",2018-01-04 20:00:00,"B",6 +"723",2018-01-04 20:00:00,"C",5 +"724",2018-01-04 20:20:00,"A",14 +"725",2018-01-04 20:20:00,"B",6 +"726",2018-01-04 20:20:00,"C",10 +"727",2018-01-04 20:40:00,"A",15 +"728",2018-01-04 20:40:00,"B",7 +"729",2018-01-04 20:40:00,"C",8 +"730",2018-01-04 21:00:00,"A",14 +"731",2018-01-04 21:00:00,"B",8 +"732",2018-01-04 21:00:00,"C",8 +"733",2018-01-04 21:20:00,"A",5 +"734",2018-01-04 21:20:00,"B",11 +"735",2018-01-04 21:20:00,"C",14 +"736",2018-01-04 21:40:00,"A",10 +"737",2018-01-04 21:40:00,"B",15 +"738",2018-01-04 21:40:00,"C",5 +"739",2018-01-04 22:00:00,"A",9 +"740",2018-01-04 22:00:00,"B",6 +"741",2018-01-04 22:00:00,"C",15 +"742",2018-01-04 22:20:00,"A",10 +"743",2018-01-04 22:20:00,"B",11 +"744",2018-01-04 22:20:00,"C",9 +"745",2018-01-04 22:40:00,"A",11 +"746",2018-01-04 22:40:00,"B",13 +"747",2018-01-04 22:40:00,"C",6 +"748",2018-01-04 23:00:00,"A",14 +"749",2018-01-04 23:00:00,"B",10 +"750",2018-01-04 23:00:00,"C",6 +"751",2018-01-04 23:20:00,"A",13 +"752",2018-01-04 23:20:00,"B",8 +"753",2018-01-04 23:20:00,"C",9 +"754",2018-01-04 23:40:00,"A",11 +"755",2018-01-04 23:40:00,"B",7 +"756",2018-01-04 23:40:00,"C",12 +"757",2018-01-05 00:00:00,"A",8 +"758",2018-01-05 00:00:00,"B",12 +"759",2018-01-05 00:00:00,"C",10 +"760",2018-01-05 00:20:00,"A",15 +"761",2018-01-05 00:20:00,"B",5 +"762",2018-01-05 00:20:00,"C",10 +"763",2018-01-05 00:40:00,"A",11 +"764",2018-01-05 00:40:00,"B",9 +"765",2018-01-05 00:40:00,"C",10 +"766",2018-01-05 01:00:00,"A",14 +"767",2018-01-05 01:00:00,"B",6 +"768",2018-01-05 01:00:00,"C",10 +"769",2018-01-05 01:20:00,"A",10 +"770",2018-01-05 01:20:00,"B",8 +"771",2018-01-05 01:20:00,"C",12 +"772",2018-01-05 01:40:00,"A",11 +"773",2018-01-05 01:40:00,"B",10 +"774",2018-01-05 01:40:00,"C",9 +"775",2018-01-05 02:00:00,"A",13 +"776",2018-01-05 02:00:00,"B",8 +"777",2018-01-05 02:00:00,"C",9 +"778",2018-01-05 02:20:00,"A",11 +"779",2018-01-05 02:20:00,"B",12 +"780",2018-01-05 02:20:00,"C",7 +"781",2018-01-05 02:40:00,"A",13 +"782",2018-01-05 02:40:00,"B",11 +"783",2018-01-05 02:40:00,"C",6 +"784",2018-01-05 03:00:00,"A",11 +"785",2018-01-05 03:00:00,"B",9 +"786",2018-01-05 03:00:00,"C",10 +"787",2018-01-05 03:20:00,"A",16 +"788",2018-01-05 03:20:00,"B",7 +"789",2018-01-05 03:20:00,"C",7 +"790",2018-01-05 03:40:00,"A",10 +"791",2018-01-05 03:40:00,"B",9 +"792",2018-01-05 03:40:00,"C",11 +"793",2018-01-05 04:00:00,"A",11 +"794",2018-01-05 04:00:00,"B",8 +"795",2018-01-05 04:00:00,"C",11 +"796",2018-01-05 04:20:00,"A",8 +"797",2018-01-05 04:20:00,"B",12 +"798",2018-01-05 04:20:00,"C",10 +"799",2018-01-05 04:40:00,"A",10 +"800",2018-01-05 04:40:00,"B",12 +"801",2018-01-05 04:40:00,"C",8 +"802",2018-01-05 05:00:00,"A",6 +"803",2018-01-05 05:00:00,"B",9 +"804",2018-01-05 05:00:00,"C",15 +"805",2018-01-05 05:20:00,"A",12 +"806",2018-01-05 05:20:00,"B",9 +"807",2018-01-05 05:20:00,"C",9 +"808",2018-01-05 05:40:00,"A",5 +"809",2018-01-05 05:40:00,"B",11 +"810",2018-01-05 05:40:00,"C",14 +"811",2018-01-05 06:00:00,"A",13 +"812",2018-01-05 06:00:00,"B",9 +"813",2018-01-05 06:00:00,"C",8 +"814",2018-01-05 06:20:00,"A",8 +"815",2018-01-05 06:20:00,"B",13 +"816",2018-01-05 06:20:00,"C",9 +"817",2018-01-05 06:40:00,"A",5 +"818",2018-01-05 06:40:00,"B",9 +"819",2018-01-05 06:40:00,"C",16 +"820",2018-01-05 07:00:00,"A",6 +"821",2018-01-05 07:00:00,"B",17 +"822",2018-01-05 07:00:00,"C",7 +"823",2018-01-05 07:20:00,"A",9 +"824",2018-01-05 07:20:00,"B",13 +"825",2018-01-05 07:20:00,"C",8 +"826",2018-01-05 07:40:00,"A",14 +"827",2018-01-05 07:40:00,"B",7 +"828",2018-01-05 07:40:00,"C",9 +"829",2018-01-05 08:00:00,"A",13 +"830",2018-01-05 08:00:00,"B",8 +"831",2018-01-05 08:00:00,"C",9 +"832",2018-01-05 08:20:00,"A",13 +"833",2018-01-05 08:20:00,"B",8 +"834",2018-01-05 08:20:00,"C",9 +"835",2018-01-05 08:40:00,"A",9 +"836",2018-01-05 08:40:00,"B",12 +"837",2018-01-05 08:40:00,"C",9 +"838",2018-01-05 09:00:00,"A",10 +"839",2018-01-05 09:00:00,"B",12 +"840",2018-01-05 09:00:00,"C",8 +"841",2018-01-05 09:20:00,"A",7 +"842",2018-01-05 09:20:00,"B",8 +"843",2018-01-05 09:20:00,"C",15 +"844",2018-01-05 09:40:00,"A",7 +"845",2018-01-05 09:40:00,"B",13 +"846",2018-01-05 09:40:00,"C",10 +"847",2018-01-05 10:00:00,"A",10 +"848",2018-01-05 10:00:00,"B",11 +"849",2018-01-05 10:00:00,"C",9 +"850",2018-01-05 10:20:00,"A",11 +"851",2018-01-05 10:20:00,"B",8 +"852",2018-01-05 10:20:00,"C",11 +"853",2018-01-05 10:40:00,"A",13 +"854",2018-01-05 10:40:00,"B",10 +"855",2018-01-05 10:40:00,"C",7 +"856",2018-01-05 11:00:00,"A",7 +"857",2018-01-05 11:00:00,"B",12 +"858",2018-01-05 11:00:00,"C",11 +"859",2018-01-05 11:20:00,"A",10 +"860",2018-01-05 11:20:00,"B",10 +"861",2018-01-05 11:20:00,"C",10 +"862",2018-01-05 11:40:00,"A",9 +"863",2018-01-05 11:40:00,"B",10 +"864",2018-01-05 11:40:00,"C",11 +"865",2018-01-05 12:00:00,"A",13 +"866",2018-01-05 12:00:00,"B",8 +"867",2018-01-05 12:00:00,"C",9 +"868",2018-01-05 12:20:00,"A",10 +"869",2018-01-05 12:20:00,"B",10 +"870",2018-01-05 12:20:00,"C",10 +"871",2018-01-05 12:40:00,"A",10 +"872",2018-01-05 12:40:00,"B",14 +"873",2018-01-05 12:40:00,"C",6 +"874",2018-01-05 13:00:00,"A",9 +"875",2018-01-05 13:00:00,"B",9 +"876",2018-01-05 13:00:00,"C",12 +"877",2018-01-05 13:20:00,"A",10 +"878",2018-01-05 13:20:00,"B",9 +"879",2018-01-05 13:20:00,"C",11 +"880",2018-01-05 13:40:00,"A",12 +"881",2018-01-05 13:40:00,"B",9 +"882",2018-01-05 13:40:00,"C",9 +"883",2018-01-05 14:00:00,"A",9 +"884",2018-01-05 14:00:00,"B",12 +"885",2018-01-05 14:00:00,"C",9 diff --git a/taganomaly/data/sample-raw.csv b/taganomaly/data/sample-raw.csv new file mode 100644 index 0000000..90cb1c6 --- /dev/null +++ b/taganomaly/data/sample-raw.csv @@ -0,0 +1,8851 @@ +"","date","category","content" +"1",2018-01-01 12:00:00,"A","Check with author" +"2",2018-01-01 12:20:00,"A","No clue" +"3",2018-01-01 12:40:00,"B","Attach" +"4",2018-01-01 13:00:00,"A","No clue" +"5",2018-01-01 13:20:00,"C","Warn" +"6",2018-01-01 13:40:00,"A","Attach" +"7",2018-01-01 14:00:00,"B","Limit" +"8",2018-01-01 14:20:00,"A","No clue" +"9",2018-01-01 14:40:00,"C","Check with author" +"10",2018-01-01 15:00:00,"C","Debug" +"11",2018-01-01 15:20:00,"C","Check with author" +"12",2018-01-01 15:40:00,"C","Debug" +"13",2018-01-01 16:00:00,"C","No clue" +"14",2018-01-01 16:20:00,"B","Debug" +"15",2018-01-01 16:40:00,"C","Attach" +"16",2018-01-01 17:00:00,"C","Attach" +"17",2018-01-01 17:20:00,"A","Error" +"18",2018-01-01 17:40:00,"A","No clue" +"19",2018-01-01 18:00:00,"C","No clue" +"20",2018-01-01 18:20:00,"C","Error" +"21",2018-01-01 18:40:00,"B","Warn" +"22",2018-01-01 19:00:00,"A","Attach" +"23",2018-01-01 19:20:00,"C","Check with author" +"24",2018-01-01 19:40:00,"C","Attach" +"25",2018-01-01 20:00:00,"C","No clue" +"26",2018-01-01 20:20:00,"A","Attach" +"27",2018-01-01 20:40:00,"A","Warn" +"28",2018-01-01 21:00:00,"B","Check with author" +"29",2018-01-01 21:20:00,"C","Warn" +"30",2018-01-01 21:40:00,"C","Debug" +"31",2018-01-01 22:00:00,"C","Debug" +"32",2018-01-01 22:20:00,"B","Warn" +"33",2018-01-01 22:40:00,"C","Debug" +"34",2018-01-01 23:00:00,"A","Check with author" +"35",2018-01-01 23:20:00,"A","Limit" +"36",2018-01-01 23:40:00,"A","Check with author" +"37",2018-01-02 00:00:00,"B","Warn" +"38",2018-01-02 00:20:00,"C","Limit" +"39",2018-01-02 00:40:00,"B","Attach" +"40",2018-01-02 01:00:00,"B","Attach" +"41",2018-01-02 01:20:00,"B","Warn" +"42",2018-01-02 01:40:00,"C","Error" +"43",2018-01-02 02:00:00,"B","Attach" +"44",2018-01-02 02:20:00,"B","Warn" +"45",2018-01-02 02:40:00,"C","Attach" +"46",2018-01-02 03:00:00,"C","Check with author" +"47",2018-01-02 03:20:00,"A","Error" +"48",2018-01-02 03:40:00,"B","Warn" +"49",2018-01-02 04:00:00,"A","Error" +"50",2018-01-02 04:20:00,"C","No clue" +"51",2018-01-02 04:40:00,"B","Check with author" +"52",2018-01-02 05:00:00,"A","No clue" +"53",2018-01-02 05:20:00,"B","Check with author" +"54",2018-01-02 05:40:00,"B","Limit" +"55",2018-01-02 06:00:00,"C","Debug" +"56",2018-01-02 06:20:00,"A","Warn" +"57",2018-01-02 06:40:00,"C","No clue" +"58",2018-01-02 07:00:00,"B","Attach" +"59",2018-01-02 07:20:00,"C","Check with author" +"60",2018-01-02 07:40:00,"B","Check with author" +"61",2018-01-02 08:00:00,"C","Warn" +"62",2018-01-02 08:20:00,"C","No clue" +"63",2018-01-02 08:40:00,"B","Debug" +"64",2018-01-02 09:00:00,"B","Error" +"65",2018-01-02 09:20:00,"A","Warn" +"66",2018-01-02 09:40:00,"A","Debug" +"67",2018-01-02 10:00:00,"B","Attach" +"68",2018-01-02 10:20:00,"A","Warn" +"69",2018-01-02 10:40:00,"C","No clue" +"70",2018-01-02 11:00:00,"A","No clue" +"71",2018-01-02 11:20:00,"A","Warn" +"72",2018-01-02 11:40:00,"A","Warn" +"73",2018-01-02 12:00:00,"B","Check with author" +"74",2018-01-02 12:20:00,"B","Attach" +"75",2018-01-02 12:40:00,"C","Debug" +"76",2018-01-02 13:00:00,"A","Check with author" +"77",2018-01-02 13:20:00,"B","Attach" +"78",2018-01-02 13:40:00,"A","No clue" +"79",2018-01-02 14:00:00,"C","Attach" +"80",2018-01-02 14:20:00,"B","Check with author" +"81",2018-01-02 14:40:00,"A","Warn" +"82",2018-01-02 15:00:00,"B","Check with author" +"83",2018-01-02 15:20:00,"B","Attach" +"84",2018-01-02 15:40:00,"B","Attach" +"85",2018-01-02 16:00:00,"B","Warn" +"86",2018-01-02 16:20:00,"B","Debug" +"87",2018-01-02 16:40:00,"C","Attach" +"88",2018-01-02 17:00:00,"A","Limit" +"89",2018-01-02 17:20:00,"C","Warn" +"90",2018-01-02 17:40:00,"A","Warn" +"91",2018-01-02 18:00:00,"A","Check with author" +"92",2018-01-02 18:20:00,"B","Limit" +"93",2018-01-02 18:40:00,"B","No clue" +"94",2018-01-02 19:00:00,"B","Debug" +"95",2018-01-02 19:20:00,"A","Attach" +"96",2018-01-02 19:40:00,"C","Warn" +"97",2018-01-02 20:00:00,"C","Attach" +"98",2018-01-02 20:20:00,"A","Attach" +"99",2018-01-02 20:40:00,"A","Limit" +"100",2018-01-02 21:00:00,"C","Error" +"101",2018-01-02 21:20:00,"A","Check with author" +"102",2018-01-02 21:40:00,"C","No clue" +"103",2018-01-02 22:00:00,"C","Warn" +"104",2018-01-02 22:20:00,"A","No clue" +"105",2018-01-02 22:40:00,"A","Error" +"106",2018-01-02 23:00:00,"C","Limit" +"107",2018-01-02 23:20:00,"A","Warn" +"108",2018-01-02 23:40:00,"B","Check with author" +"109",2018-01-03 00:00:00,"C","No clue" +"110",2018-01-03 00:20:00,"C","No clue" +"111",2018-01-03 00:40:00,"A","Warn" +"112",2018-01-03 01:00:00,"A","Debug" +"113",2018-01-03 01:20:00,"B","Check with author" +"114",2018-01-03 01:40:00,"B","Attach" +"115",2018-01-03 02:00:00,"A","Warn" +"116",2018-01-03 02:20:00,"C","No clue" +"117",2018-01-03 02:40:00,"B","No clue" +"118",2018-01-03 03:00:00,"B","Warn" +"119",2018-01-03 03:20:00,"B","Check with author" +"120",2018-01-03 03:40:00,"A","Limit" +"121",2018-01-03 04:00:00,"A","Error" +"122",2018-01-03 04:20:00,"A","Debug" +"123",2018-01-03 04:40:00,"B","Debug" +"124",2018-01-03 05:00:00,"A","Attach" +"125",2018-01-03 05:20:00,"A","Check with author" +"126",2018-01-03 05:40:00,"B","Check with author" +"127",2018-01-03 06:00:00,"A","Debug" +"128",2018-01-03 06:20:00,"C","No clue" +"129",2018-01-03 06:40:00,"C","Check with author" +"130",2018-01-03 07:00:00,"B","Error" +"131",2018-01-03 07:20:00,"A","Check with author" +"132",2018-01-03 07:40:00,"A","Check with author" +"133",2018-01-03 08:00:00,"B","Limit" +"134",2018-01-03 08:20:00,"A","Attach" +"135",2018-01-03 08:40:00,"C","Check with author" +"136",2018-01-03 09:00:00,"A","Check with author" +"137",2018-01-03 09:20:00,"A","Error" +"138",2018-01-03 09:40:00,"A","Warn" +"139",2018-01-03 10:00:00,"C","Attach" +"140",2018-01-03 10:20:00,"C","Limit" +"141",2018-01-03 10:40:00,"C","Error" +"142",2018-01-03 11:00:00,"B","Warn" +"143",2018-01-03 11:20:00,"B","No clue" +"144",2018-01-03 11:40:00,"C","No clue" +"145",2018-01-03 12:00:00,"C","Debug" +"146",2018-01-03 12:20:00,"B","Check with author" +"147",2018-01-03 12:40:00,"B","Check with author" +"148",2018-01-03 13:00:00,"A","Check with author" +"149",2018-01-03 13:20:00,"A","Check with author" +"150",2018-01-03 13:40:00,"A","Error" +"151",2018-01-03 14:00:00,"A","Error" +"152",2018-01-03 14:20:00,"A","No clue" +"153",2018-01-03 14:40:00,"A","No clue" +"154",2018-01-03 15:00:00,"B","Limit" +"155",2018-01-03 15:20:00,"C","Debug" +"156",2018-01-03 15:40:00,"C","Check with author" +"157",2018-01-03 16:00:00,"A","Debug" +"158",2018-01-03 16:20:00,"B","Warn" +"159",2018-01-03 16:40:00,"B","Error" +"160",2018-01-03 17:00:00,"A","Limit" +"161",2018-01-03 17:20:00,"C","Error" +"162",2018-01-03 17:40:00,"B","Attach" +"163",2018-01-03 18:00:00,"C","Limit" +"164",2018-01-03 18:20:00,"A","Warn" +"165",2018-01-03 18:40:00,"A","Check with author" +"166",2018-01-03 19:00:00,"A","No clue" +"167",2018-01-03 19:20:00,"B","Error" +"168",2018-01-03 19:40:00,"A","Warn" +"169",2018-01-03 20:00:00,"A","Warn" +"170",2018-01-03 20:20:00,"B","Debug" +"171",2018-01-03 20:40:00,"A","Attach" +"172",2018-01-03 21:00:00,"C","Debug" +"173",2018-01-03 21:20:00,"A","Warn" +"174",2018-01-03 21:40:00,"B","Error" +"175",2018-01-03 22:00:00,"C","Error" +"176",2018-01-03 22:20:00,"C","Attach" +"177",2018-01-03 22:40:00,"B","Attach" +"178",2018-01-03 23:00:00,"C","Check with author" +"179",2018-01-03 23:20:00,"B","Debug" +"180",2018-01-03 23:40:00,"C","Warn" +"181",2018-01-04 00:00:00,"A","Check with author" +"182",2018-01-04 00:20:00,"A","Error" +"183",2018-01-04 00:40:00,"A","No clue" +"184",2018-01-04 01:00:00,"A","Attach" +"185",2018-01-04 01:20:00,"B","Limit" +"186",2018-01-04 01:40:00,"A","Check with author" +"187",2018-01-04 02:00:00,"B","Debug" +"188",2018-01-04 02:20:00,"B","Warn" +"189",2018-01-04 02:40:00,"B","Warn" +"190",2018-01-04 03:00:00,"A","Error" +"191",2018-01-04 03:20:00,"C","Check with author" +"192",2018-01-04 03:40:00,"B","Attach" +"193",2018-01-04 04:00:00,"B","Debug" +"194",2018-01-04 04:20:00,"C","Debug" +"195",2018-01-04 04:40:00,"C","Debug" +"196",2018-01-04 05:00:00,"C","Debug" +"197",2018-01-04 05:20:00,"A","Warn" +"198",2018-01-04 05:40:00,"A","Attach" +"199",2018-01-04 06:00:00,"B","No clue" +"200",2018-01-04 06:20:00,"C","Error" +"201",2018-01-04 06:40:00,"B","No clue" +"202",2018-01-04 07:00:00,"A","Debug" +"203",2018-01-04 07:20:00,"C","Check with author" +"204",2018-01-04 07:40:00,"C","Limit" +"205",2018-01-04 08:00:00,"B","Debug" +"206",2018-01-04 08:20:00,"C","Error" +"207",2018-01-04 08:40:00,"C","No clue" +"208",2018-01-04 09:00:00,"A","Warn" +"209",2018-01-04 09:20:00,"C","Debug" +"210",2018-01-04 09:40:00,"A","Limit" +"211",2018-01-04 10:00:00,"C","Error" +"212",2018-01-04 10:20:00,"A","Warn" +"213",2018-01-04 10:40:00,"C","Limit" +"214",2018-01-04 11:00:00,"A","Check with author" +"215",2018-01-04 11:20:00,"A","Debug" +"216",2018-01-04 11:40:00,"B","No clue" +"217",2018-01-04 12:00:00,"B","Error" +"218",2018-01-04 12:20:00,"A","Error" +"219",2018-01-04 12:40:00,"B","Warn" +"220",2018-01-04 13:00:00,"B","Check with author" +"221",2018-01-04 13:20:00,"B","No clue" +"222",2018-01-04 13:40:00,"B","Check with author" +"223",2018-01-04 14:00:00,"B","Limit" +"224",2018-01-04 14:20:00,"C","No clue" +"225",2018-01-04 14:40:00,"B","No clue" +"226",2018-01-04 15:00:00,"A","Check with author" +"227",2018-01-04 15:20:00,"A","Attach" +"228",2018-01-04 15:40:00,"C","Attach" +"229",2018-01-04 16:00:00,"B","Check with author" +"230",2018-01-04 16:20:00,"B","Attach" +"231",2018-01-04 16:40:00,"B","Error" +"232",2018-01-04 17:00:00,"B","No clue" +"233",2018-01-04 17:20:00,"B","Limit" +"234",2018-01-04 17:40:00,"B","Error" +"235",2018-01-04 18:00:00,"B","Error" +"236",2018-01-04 18:20:00,"C","Warn" +"237",2018-01-04 18:40:00,"C","Limit" +"238",2018-01-04 19:00:00,"C","Warn" +"239",2018-01-04 19:20:00,"B","Check with author" +"240",2018-01-04 19:40:00,"B","Debug" +"241",2018-01-04 20:00:00,"A","Limit" +"242",2018-01-04 20:20:00,"A","Error" +"243",2018-01-04 20:40:00,"A","Check with author" +"244",2018-01-04 21:00:00,"A","Limit" +"245",2018-01-04 21:20:00,"B","Limit" +"246",2018-01-04 21:40:00,"C","No clue" +"247",2018-01-04 22:00:00,"A","Error" +"248",2018-01-04 22:20:00,"B","Warn" +"249",2018-01-04 22:40:00,"B","Attach" +"250",2018-01-04 23:00:00,"A","Check with author" +"251",2018-01-04 23:20:00,"A","Error" +"252",2018-01-04 23:40:00,"C","Warn" +"253",2018-01-05 00:00:00,"B","Check with author" +"254",2018-01-05 00:20:00,"C","No clue" +"255",2018-01-05 00:40:00,"C","Warn" +"256",2018-01-05 01:00:00,"C","No clue" +"257",2018-01-05 01:20:00,"A","Check with author" +"258",2018-01-05 01:40:00,"A","Check with author" +"259",2018-01-05 02:00:00,"C","Debug" +"260",2018-01-05 02:20:00,"C","Debug" +"261",2018-01-05 02:40:00,"B","Error" +"262",2018-01-05 03:00:00,"C","Error" +"263",2018-01-05 03:20:00,"C","Warn" +"264",2018-01-05 03:40:00,"C","Attach" +"265",2018-01-05 04:00:00,"B","Check with author" +"266",2018-01-05 04:20:00,"A","Check with author" +"267",2018-01-05 04:40:00,"A","Check with author" +"268",2018-01-05 05:00:00,"C","No clue" +"269",2018-01-05 05:20:00,"A","Debug" +"270",2018-01-05 05:40:00,"C","Limit" +"271",2018-01-05 06:00:00,"C","Warn" +"272",2018-01-05 06:20:00,"C","Check with author" +"273",2018-01-05 06:40:00,"B","Warn" +"274",2018-01-05 07:00:00,"C","Limit" +"275",2018-01-05 07:20:00,"A","Check with author" +"276",2018-01-05 07:40:00,"C","Limit" +"277",2018-01-05 08:00:00,"A","Check with author" +"278",2018-01-05 08:20:00,"C","No clue" +"279",2018-01-05 08:40:00,"C","Check with author" +"280",2018-01-05 09:00:00,"C","No clue" +"281",2018-01-05 09:20:00,"A","No clue" +"282",2018-01-05 09:40:00,"C","Attach" +"283",2018-01-05 10:00:00,"B","Error" +"284",2018-01-05 10:20:00,"B","Attach" +"285",2018-01-05 10:40:00,"A","Check with author" +"286",2018-01-05 11:00:00,"A","Error" +"287",2018-01-05 11:20:00,"A","Limit" +"288",2018-01-05 11:40:00,"B","Error" +"289",2018-01-05 12:00:00,"B","Error" +"290",2018-01-05 12:20:00,"B","Error" +"291",2018-01-05 12:40:00,"B","Warn" +"292",2018-01-05 13:00:00,"B","Limit" +"293",2018-01-05 13:20:00,"B","Debug" +"294",2018-01-05 13:40:00,"A","Debug" +"295",2018-01-05 14:00:00,"C","Debug" +"296",2018-01-01 12:00:00,"C","Limit" +"297",2018-01-01 12:20:00,"B","Attach" +"298",2018-01-01 12:40:00,"A","Warn" +"299",2018-01-01 13:00:00,"A","Attach" +"300",2018-01-01 13:20:00,"B","No clue" +"301",2018-01-01 13:40:00,"C","Check with author" +"302",2018-01-01 14:00:00,"A","Debug" +"303",2018-01-01 14:20:00,"B","Limit" +"304",2018-01-01 14:40:00,"A","Check with author" +"305",2018-01-01 15:00:00,"A","Limit" +"306",2018-01-01 15:20:00,"C","Debug" +"307",2018-01-01 15:40:00,"A","No clue" +"308",2018-01-01 16:00:00,"B","Warn" +"309",2018-01-01 16:20:00,"A","Limit" +"310",2018-01-01 16:40:00,"A","Check with author" +"311",2018-01-01 17:00:00,"B","Error" +"312",2018-01-01 17:20:00,"A","Warn" +"313",2018-01-01 17:40:00,"C","Attach" +"314",2018-01-01 18:00:00,"A","No clue" +"315",2018-01-01 18:20:00,"A","Limit" +"316",2018-01-01 18:40:00,"B","Attach" +"317",2018-01-01 19:00:00,"A","Limit" +"318",2018-01-01 19:20:00,"C","Debug" +"319",2018-01-01 19:40:00,"A","Warn" +"320",2018-01-01 20:00:00,"C","Check with author" +"321",2018-01-01 20:20:00,"C","Check with author" +"322",2018-01-01 20:40:00,"B","Warn" +"323",2018-01-01 21:00:00,"C","Attach" +"324",2018-01-01 21:20:00,"B","Warn" +"325",2018-01-01 21:40:00,"A","Check with author" +"326",2018-01-01 22:00:00,"C","Limit" +"327",2018-01-01 22:20:00,"B","Error" +"328",2018-01-01 22:40:00,"A","Attach" +"329",2018-01-01 23:00:00,"C","Attach" +"330",2018-01-01 23:20:00,"B","Limit" +"331",2018-01-01 23:40:00,"C","Attach" +"332",2018-01-02 00:00:00,"C","No clue" +"333",2018-01-02 00:20:00,"C","Error" +"334",2018-01-02 00:40:00,"A","Check with author" +"335",2018-01-02 01:00:00,"C","Limit" +"336",2018-01-02 01:20:00,"B","Error" +"337",2018-01-02 01:40:00,"A","No clue" +"338",2018-01-02 02:00:00,"A","Limit" +"339",2018-01-02 02:20:00,"B","Warn" +"340",2018-01-02 02:40:00,"A","Attach" +"341",2018-01-02 03:00:00,"A","Attach" +"342",2018-01-02 03:20:00,"A","Error" +"343",2018-01-02 03:40:00,"A","Attach" +"344",2018-01-02 04:00:00,"A","No clue" +"345",2018-01-02 04:20:00,"C","No clue" +"346",2018-01-02 04:40:00,"A","Debug" +"347",2018-01-02 05:00:00,"C","Debug" +"348",2018-01-02 05:20:00,"C","No clue" +"349",2018-01-02 05:40:00,"B","Limit" +"350",2018-01-02 06:00:00,"C","Attach" +"351",2018-01-02 06:20:00,"B","Check with author" +"352",2018-01-02 06:40:00,"B","Limit" +"353",2018-01-02 07:00:00,"C","Limit" +"354",2018-01-02 07:20:00,"C","Debug" +"355",2018-01-02 07:40:00,"C","Limit" +"356",2018-01-02 08:00:00,"B","Warn" +"357",2018-01-02 08:20:00,"A","Attach" +"358",2018-01-02 08:40:00,"B","Attach" +"359",2018-01-02 09:00:00,"C","Error" +"360",2018-01-02 09:20:00,"B","Attach" +"361",2018-01-02 09:40:00,"A","Attach" +"362",2018-01-02 10:00:00,"A","Warn" +"363",2018-01-02 10:20:00,"A","No clue" +"364",2018-01-02 10:40:00,"B","Check with author" +"365",2018-01-02 11:00:00,"B","Limit" +"366",2018-01-02 11:20:00,"A","Limit" +"367",2018-01-02 11:40:00,"C","Check with author" +"368",2018-01-02 12:00:00,"A","Attach" +"369",2018-01-02 12:20:00,"C","Attach" +"370",2018-01-02 12:40:00,"A","Error" +"371",2018-01-02 13:00:00,"B","Attach" +"372",2018-01-02 13:20:00,"A","Warn" +"373",2018-01-02 13:40:00,"C","Warn" +"374",2018-01-02 14:00:00,"B","Warn" +"375",2018-01-02 14:20:00,"A","Warn" +"376",2018-01-02 14:40:00,"B","Limit" +"377",2018-01-02 15:00:00,"C","Error" +"378",2018-01-02 15:20:00,"B","No clue" +"379",2018-01-02 15:40:00,"A","Limit" +"380",2018-01-02 16:00:00,"C","Check with author" +"381",2018-01-02 16:20:00,"C","Debug" +"382",2018-01-02 16:40:00,"A","Check with author" +"383",2018-01-02 17:00:00,"C","Debug" +"384",2018-01-02 17:20:00,"A","No clue" +"385",2018-01-02 17:40:00,"A","Check with author" +"386",2018-01-02 18:00:00,"A","Warn" +"387",2018-01-02 18:20:00,"A","Debug" +"388",2018-01-02 18:40:00,"B","Error" +"389",2018-01-02 19:00:00,"A","Debug" +"390",2018-01-02 19:20:00,"A","Debug" +"391",2018-01-02 19:40:00,"B","Check with author" +"392",2018-01-02 20:00:00,"C","Warn" +"393",2018-01-02 20:20:00,"B","Warn" +"394",2018-01-02 20:40:00,"A","Warn" +"395",2018-01-02 21:00:00,"C","Warn" +"396",2018-01-02 21:20:00,"B","Warn" +"397",2018-01-02 21:40:00,"A","Warn" +"398",2018-01-02 22:00:00,"A","Check with author" +"399",2018-01-02 22:20:00,"A","Limit" +"400",2018-01-02 22:40:00,"C","Limit" +"401",2018-01-02 23:00:00,"A","No clue" +"402",2018-01-02 23:20:00,"C","Check with author" +"403",2018-01-02 23:40:00,"A","Check with author" +"404",2018-01-03 00:00:00,"B","Check with author" +"405",2018-01-03 00:20:00,"C","Check with author" +"406",2018-01-03 00:40:00,"C","Check with author" +"407",2018-01-03 01:00:00,"A","No clue" +"408",2018-01-03 01:20:00,"A","Warn" +"409",2018-01-03 01:40:00,"C","No clue" +"410",2018-01-03 02:00:00,"C","Check with author" +"411",2018-01-03 02:20:00,"B","Error" +"412",2018-01-03 02:40:00,"A","Limit" +"413",2018-01-03 03:00:00,"B","Debug" +"414",2018-01-03 03:20:00,"B","Check with author" +"415",2018-01-03 03:40:00,"C","Limit" +"416",2018-01-03 04:00:00,"C","Error" +"417",2018-01-03 04:20:00,"A","Check with author" +"418",2018-01-03 04:40:00,"A","Warn" +"419",2018-01-03 05:00:00,"C","Error" +"420",2018-01-03 05:20:00,"B","No clue" +"421",2018-01-03 05:40:00,"A","Warn" +"422",2018-01-03 06:00:00,"C","Attach" +"423",2018-01-03 06:20:00,"B","Attach" +"424",2018-01-03 06:40:00,"C","No clue" +"425",2018-01-03 07:00:00,"C","Attach" +"426",2018-01-03 07:20:00,"C","Limit" +"427",2018-01-03 07:40:00,"A","Debug" +"428",2018-01-03 08:00:00,"A","Check with author" +"429",2018-01-03 08:20:00,"B","Debug" +"430",2018-01-03 08:40:00,"B","Check with author" +"431",2018-01-03 09:00:00,"C","Debug" +"432",2018-01-03 09:20:00,"B","Error" +"433",2018-01-03 09:40:00,"A","Warn" +"434",2018-01-03 10:00:00,"B","Warn" +"435",2018-01-03 10:20:00,"A","No clue" +"436",2018-01-03 10:40:00,"A","Attach" +"437",2018-01-03 11:00:00,"C","Check with author" +"438",2018-01-03 11:20:00,"B","Attach" +"439",2018-01-03 11:40:00,"A","Check with author" +"440",2018-01-03 12:00:00,"A","Limit" +"441",2018-01-03 12:20:00,"B","Limit" +"442",2018-01-03 12:40:00,"A","Debug" +"443",2018-01-03 13:00:00,"B","Error" +"444",2018-01-03 13:20:00,"B","Limit" +"445",2018-01-03 13:40:00,"C","Debug" +"446",2018-01-03 14:00:00,"B","No clue" +"447",2018-01-03 14:20:00,"A","Check with author" +"448",2018-01-03 14:40:00,"C","Warn" +"449",2018-01-03 15:00:00,"C","Attach" +"450",2018-01-03 15:20:00,"A","Attach" +"451",2018-01-03 15:40:00,"A","No clue" +"452",2018-01-03 16:00:00,"B","No clue" +"453",2018-01-03 16:20:00,"C","Limit" +"454",2018-01-03 16:40:00,"C","Warn" +"455",2018-01-03 17:00:00,"B","Debug" +"456",2018-01-03 17:20:00,"C","Warn" +"457",2018-01-03 17:40:00,"C","Attach" +"458",2018-01-03 18:00:00,"A","No clue" +"459",2018-01-03 18:20:00,"B","Error" +"460",2018-01-03 18:40:00,"C","Debug" +"461",2018-01-03 19:00:00,"C","Check with author" +"462",2018-01-03 19:20:00,"C","No clue" +"463",2018-01-03 19:40:00,"B","Attach" +"464",2018-01-03 20:00:00,"B","Debug" +"465",2018-01-03 20:20:00,"C","Attach" +"466",2018-01-03 20:40:00,"B","Warn" +"467",2018-01-03 21:00:00,"B","Debug" +"468",2018-01-03 21:20:00,"A","Warn" +"469",2018-01-03 21:40:00,"B","Debug" +"470",2018-01-03 22:00:00,"A","No clue" +"471",2018-01-03 22:20:00,"B","Debug" +"472",2018-01-03 22:40:00,"B","Warn" +"473",2018-01-03 23:00:00,"B","Attach" +"474",2018-01-03 23:20:00,"B","Check with author" +"475",2018-01-03 23:40:00,"B","Warn" +"476",2018-01-04 00:00:00,"A","Check with author" +"477",2018-01-04 00:20:00,"A","Warn" +"478",2018-01-04 00:40:00,"A","Check with author" +"479",2018-01-04 01:00:00,"A","Limit" +"480",2018-01-04 01:20:00,"C","Error" +"481",2018-01-04 01:40:00,"A","Check with author" +"482",2018-01-04 02:00:00,"A","Warn" +"483",2018-01-04 02:20:00,"C","Error" +"484",2018-01-04 02:40:00,"A","Check with author" +"485",2018-01-04 03:00:00,"B","Attach" +"486",2018-01-04 03:20:00,"C","Debug" +"487",2018-01-04 03:40:00,"A","Limit" +"488",2018-01-04 04:00:00,"C","Attach" +"489",2018-01-04 04:20:00,"A","Debug" +"490",2018-01-04 04:40:00,"A","Debug" +"491",2018-01-04 05:00:00,"A","Error" +"492",2018-01-04 05:20:00,"C","Limit" +"493",2018-01-04 05:40:00,"A","Attach" +"494",2018-01-04 06:00:00,"B","Check with author" +"495",2018-01-04 06:20:00,"C","Attach" +"496",2018-01-04 06:40:00,"C","Attach" +"497",2018-01-04 07:00:00,"B","Check with author" +"498",2018-01-04 07:20:00,"A","Check with author" +"499",2018-01-04 07:40:00,"C","Check with author" +"500",2018-01-04 08:00:00,"B","Debug" +"501",2018-01-04 08:20:00,"A","Debug" +"502",2018-01-04 08:40:00,"A","Check with author" +"503",2018-01-04 09:00:00,"C","Attach" +"504",2018-01-04 09:20:00,"A","Check with author" +"505",2018-01-04 09:40:00,"C","No clue" +"506",2018-01-04 10:00:00,"C","Warn" +"507",2018-01-04 10:20:00,"B","Check with author" +"508",2018-01-04 10:40:00,"C","Debug" +"509",2018-01-04 11:00:00,"B","Attach" +"510",2018-01-04 11:20:00,"B","Warn" +"511",2018-01-04 11:40:00,"C","Warn" +"512",2018-01-04 12:00:00,"B","Error" +"513",2018-01-04 12:20:00,"C","Warn" +"514",2018-01-04 12:40:00,"B","Error" +"515",2018-01-04 13:00:00,"A","Error" +"516",2018-01-04 13:20:00,"B","Attach" +"517",2018-01-04 13:40:00,"B","Warn" +"518",2018-01-04 14:00:00,"B","No clue" +"519",2018-01-04 14:20:00,"B","Attach" +"520",2018-01-04 14:40:00,"A","Check with author" +"521",2018-01-04 15:00:00,"B","Limit" +"522",2018-01-04 15:20:00,"B","Debug" +"523",2018-01-04 15:40:00,"A","Attach" +"524",2018-01-04 16:00:00,"B","Attach" +"525",2018-01-04 16:20:00,"B","Check with author" +"526",2018-01-04 16:40:00,"C","Check with author" +"527",2018-01-04 17:00:00,"B","Attach" +"528",2018-01-04 17:20:00,"A","Attach" +"529",2018-01-04 17:40:00,"C","Debug" +"530",2018-01-04 18:00:00,"C","Attach" +"531",2018-01-04 18:20:00,"B","Limit" +"532",2018-01-04 18:40:00,"C","Debug" +"533",2018-01-04 19:00:00,"A","Warn" +"534",2018-01-04 19:20:00,"A","No clue" +"535",2018-01-04 19:40:00,"B","No clue" +"536",2018-01-04 20:00:00,"A","Debug" +"537",2018-01-04 20:20:00,"C","Warn" +"538",2018-01-04 20:40:00,"B","Warn" +"539",2018-01-04 21:00:00,"A","Debug" +"540",2018-01-04 21:20:00,"C","Debug" +"541",2018-01-04 21:40:00,"B","Warn" +"542",2018-01-04 22:00:00,"B","No clue" +"543",2018-01-04 22:20:00,"B","Attach" +"544",2018-01-04 22:40:00,"A","Debug" +"545",2018-01-04 23:00:00,"A","Debug" +"546",2018-01-04 23:20:00,"A","Attach" +"547",2018-01-04 23:40:00,"C","Check with author" +"548",2018-01-05 00:00:00,"B","Debug" +"549",2018-01-05 00:20:00,"C","Check with author" +"550",2018-01-05 00:40:00,"B","Warn" +"551",2018-01-05 01:00:00,"A","Limit" +"552",2018-01-05 01:20:00,"C","No clue" +"553",2018-01-05 01:40:00,"C","Check with author" +"554",2018-01-05 02:00:00,"C","Error" +"555",2018-01-05 02:20:00,"A","Check with author" +"556",2018-01-05 02:40:00,"B","Debug" +"557",2018-01-05 03:00:00,"A","No clue" +"558",2018-01-05 03:20:00,"C","Warn" +"559",2018-01-05 03:40:00,"C","Warn" +"560",2018-01-05 04:00:00,"C","No clue" +"561",2018-01-05 04:20:00,"B","Check with author" +"562",2018-01-05 04:40:00,"A","Limit" +"563",2018-01-05 05:00:00,"B","Attach" +"564",2018-01-05 05:20:00,"A","Debug" +"565",2018-01-05 05:40:00,"C","No clue" +"566",2018-01-05 06:00:00,"B","Error" +"567",2018-01-05 06:20:00,"C","Attach" +"568",2018-01-05 06:40:00,"C","Debug" +"569",2018-01-05 07:00:00,"C","Debug" +"570",2018-01-05 07:20:00,"B","Debug" +"571",2018-01-05 07:40:00,"A","No clue" +"572",2018-01-05 08:00:00,"C","Warn" +"573",2018-01-05 08:20:00,"B","Debug" +"574",2018-01-05 08:40:00,"A","Debug" +"575",2018-01-05 09:00:00,"B","Error" +"576",2018-01-05 09:20:00,"C","Check with author" +"577",2018-01-05 09:40:00,"A","Check with author" +"578",2018-01-05 10:00:00,"A","Debug" +"579",2018-01-05 10:20:00,"C","Error" +"580",2018-01-05 10:40:00,"C","Debug" +"581",2018-01-05 11:00:00,"B","No clue" +"582",2018-01-05 11:20:00,"B","Error" +"583",2018-01-05 11:40:00,"A","Check with author" +"584",2018-01-05 12:00:00,"A","Debug" +"585",2018-01-05 12:20:00,"C","Check with author" +"586",2018-01-05 12:40:00,"C","No clue" +"587",2018-01-05 13:00:00,"C","Warn" +"588",2018-01-05 13:20:00,"C","Error" +"589",2018-01-05 13:40:00,"A","No clue" +"590",2018-01-05 14:00:00,"C","Check with author" +"591",2018-01-01 12:00:00,"B","Warn" +"592",2018-01-01 12:20:00,"A","Error" +"593",2018-01-01 12:40:00,"C","Check with author" +"594",2018-01-01 13:00:00,"B","Error" +"595",2018-01-01 13:20:00,"C","Limit" +"596",2018-01-01 13:40:00,"C","Check with author" +"597",2018-01-01 14:00:00,"A","Check with author" +"598",2018-01-01 14:20:00,"C","Check with author" +"599",2018-01-01 14:40:00,"A","Attach" +"600",2018-01-01 15:00:00,"A","Attach" +"601",2018-01-01 15:20:00,"B","Debug" +"602",2018-01-01 15:40:00,"B","Warn" +"603",2018-01-01 16:00:00,"A","Limit" +"604",2018-01-01 16:20:00,"C","Attach" +"605",2018-01-01 16:40:00,"C","Error" +"606",2018-01-01 17:00:00,"A","No clue" +"607",2018-01-01 17:20:00,"C","No clue" +"608",2018-01-01 17:40:00,"C","Warn" +"609",2018-01-01 18:00:00,"A","Warn" +"610",2018-01-01 18:20:00,"A","Check with author" +"611",2018-01-01 18:40:00,"C","Check with author" +"612",2018-01-01 19:00:00,"A","Error" +"613",2018-01-01 19:20:00,"A","No clue" +"614",2018-01-01 19:40:00,"C","Attach" +"615",2018-01-01 20:00:00,"A","Attach" +"616",2018-01-01 20:20:00,"B","No clue" +"617",2018-01-01 20:40:00,"B","No clue" +"618",2018-01-01 21:00:00,"B","Warn" +"619",2018-01-01 21:20:00,"A","Error" +"620",2018-01-01 21:40:00,"A","Attach" +"621",2018-01-01 22:00:00,"A","Attach" +"622",2018-01-01 22:20:00,"A","Error" +"623",2018-01-01 22:40:00,"A","No clue" +"624",2018-01-01 23:00:00,"A","Error" +"625",2018-01-01 23:20:00,"C","Warn" +"626",2018-01-01 23:40:00,"B","No clue" +"627",2018-01-02 00:00:00,"A","Limit" +"628",2018-01-02 00:20:00,"A","Attach" +"629",2018-01-02 00:40:00,"B","Warn" +"630",2018-01-02 01:00:00,"A","No clue" +"631",2018-01-02 01:20:00,"A","Debug" +"632",2018-01-02 01:40:00,"A","Error" +"633",2018-01-02 02:00:00,"C","Limit" +"634",2018-01-02 02:20:00,"C","Limit" +"635",2018-01-02 02:40:00,"C","Error" +"636",2018-01-02 03:00:00,"C","No clue" +"637",2018-01-02 03:20:00,"C","Limit" +"638",2018-01-02 03:40:00,"A","Debug" +"639",2018-01-02 04:00:00,"A","Attach" +"640",2018-01-02 04:20:00,"B","No clue" +"641",2018-01-02 04:40:00,"C","Error" +"642",2018-01-02 05:00:00,"C","Limit" +"643",2018-01-02 05:20:00,"C","Warn" +"644",2018-01-02 05:40:00,"A","No clue" +"645",2018-01-02 06:00:00,"A","Check with author" +"646",2018-01-02 06:20:00,"A","No clue" +"647",2018-01-02 06:40:00,"A","No clue" +"648",2018-01-02 07:00:00,"B","Check with author" +"649",2018-01-02 07:20:00,"A","Attach" +"650",2018-01-02 07:40:00,"B","Attach" +"651",2018-01-02 08:00:00,"C","Debug" +"652",2018-01-02 08:20:00,"A","No clue" +"653",2018-01-02 08:40:00,"C","Debug" +"654",2018-01-02 09:00:00,"A","Warn" +"655",2018-01-02 09:20:00,"C","Warn" +"656",2018-01-02 09:40:00,"C","Limit" +"657",2018-01-02 10:00:00,"A","Error" +"658",2018-01-02 10:20:00,"A","Attach" +"659",2018-01-02 10:40:00,"A","Attach" +"660",2018-01-02 11:00:00,"B","Error" +"661",2018-01-02 11:20:00,"A","Limit" +"662",2018-01-02 11:40:00,"A","No clue" +"663",2018-01-02 12:00:00,"C","Limit" +"664",2018-01-02 12:20:00,"C","No clue" +"665",2018-01-02 12:40:00,"B","Limit" +"666",2018-01-02 13:00:00,"B","Debug" +"667",2018-01-02 13:20:00,"A","No clue" +"668",2018-01-02 13:40:00,"C","No clue" +"669",2018-01-02 14:00:00,"C","Limit" +"670",2018-01-02 14:20:00,"B","No clue" +"671",2018-01-02 14:40:00,"A","Limit" +"672",2018-01-02 15:00:00,"B","Attach" +"673",2018-01-02 15:20:00,"A","Attach" +"674",2018-01-02 15:40:00,"A","Check with author" +"675",2018-01-02 16:00:00,"C","No clue" +"676",2018-01-02 16:20:00,"A","No clue" +"677",2018-01-02 16:40:00,"A","Check with author" +"678",2018-01-02 17:00:00,"A","Debug" +"679",2018-01-02 17:20:00,"C","Error" +"680",2018-01-02 17:40:00,"A","Limit" +"681",2018-01-02 18:00:00,"C","Debug" +"682",2018-01-02 18:20:00,"A","Error" +"683",2018-01-02 18:40:00,"C","Debug" +"684",2018-01-02 19:00:00,"B","No clue" +"685",2018-01-02 19:20:00,"A","Warn" +"686",2018-01-02 19:40:00,"B","Error" +"687",2018-01-02 20:00:00,"C","Attach" +"688",2018-01-02 20:20:00,"B","Error" +"689",2018-01-02 20:40:00,"A","Error" +"690",2018-01-02 21:00:00,"B","No clue" +"691",2018-01-02 21:20:00,"B","Limit" +"692",2018-01-02 21:40:00,"B","No clue" +"693",2018-01-02 22:00:00,"B","Error" +"694",2018-01-02 22:20:00,"C","Attach" +"695",2018-01-02 22:40:00,"C","Error" +"696",2018-01-02 23:00:00,"C","Debug" +"697",2018-01-02 23:20:00,"A","No clue" +"698",2018-01-02 23:40:00,"C","Warn" +"699",2018-01-03 00:00:00,"A","Debug" +"700",2018-01-03 00:20:00,"B","Attach" +"701",2018-01-03 00:40:00,"B","Error" +"702",2018-01-03 01:00:00,"B","Debug" +"703",2018-01-03 01:20:00,"B","Check with author" +"704",2018-01-03 01:40:00,"A","Check with author" +"705",2018-01-03 02:00:00,"A","No clue" +"706",2018-01-03 02:20:00,"B","Error" +"707",2018-01-03 02:40:00,"A","Error" +"708",2018-01-03 03:00:00,"C","No clue" +"709",2018-01-03 03:20:00,"C","No clue" +"710",2018-01-03 03:40:00,"B","Debug" +"711",2018-01-03 04:00:00,"C","Limit" +"712",2018-01-03 04:20:00,"A","Limit" +"713",2018-01-03 04:40:00,"C","Limit" +"714",2018-01-03 05:00:00,"C","Attach" +"715",2018-01-03 05:20:00,"A","Attach" +"716",2018-01-03 05:40:00,"B","Attach" +"717",2018-01-03 06:00:00,"B","Limit" +"718",2018-01-03 06:20:00,"B","Limit" +"719",2018-01-03 06:40:00,"B","No clue" +"720",2018-01-03 07:00:00,"B","Check with author" +"721",2018-01-03 07:20:00,"C","Error" +"722",2018-01-03 07:40:00,"C","Error" +"723",2018-01-03 08:00:00,"C","Error" +"724",2018-01-03 08:20:00,"C","Attach" +"725",2018-01-03 08:40:00,"A","No clue" +"726",2018-01-03 09:00:00,"B","Debug" +"727",2018-01-03 09:20:00,"C","Attach" +"728",2018-01-03 09:40:00,"C","Attach" +"729",2018-01-03 10:00:00,"A","Limit" +"730",2018-01-03 10:20:00,"C","Attach" +"731",2018-01-03 10:40:00,"A","Warn" +"732",2018-01-03 11:00:00,"B","Warn" +"733",2018-01-03 11:20:00,"C","Warn" +"734",2018-01-03 11:40:00,"A","Check with author" +"735",2018-01-03 12:00:00,"B","No clue" +"736",2018-01-03 12:20:00,"A","Warn" +"737",2018-01-03 12:40:00,"B","Debug" +"738",2018-01-03 13:00:00,"B","Debug" +"739",2018-01-03 13:20:00,"C","No clue" +"740",2018-01-03 13:40:00,"A","Attach" +"741",2018-01-03 14:00:00,"C","Attach" +"742",2018-01-03 14:20:00,"B","Limit" +"743",2018-01-03 14:40:00,"A","No clue" +"744",2018-01-03 15:00:00,"A","Debug" +"745",2018-01-03 15:20:00,"A","Check with author" +"746",2018-01-03 15:40:00,"B","Check with author" +"747",2018-01-03 16:00:00,"B","Error" +"748",2018-01-03 16:20:00,"B","No clue" +"749",2018-01-03 16:40:00,"C","Limit" +"750",2018-01-03 17:00:00,"C","Check with author" +"751",2018-01-03 17:20:00,"C","Warn" +"752",2018-01-03 17:40:00,"A","No clue" +"753",2018-01-03 18:00:00,"A","Error" +"754",2018-01-03 18:20:00,"C","Debug" +"755",2018-01-03 18:40:00,"B","Attach" +"756",2018-01-03 19:00:00,"B","No clue" +"757",2018-01-03 19:20:00,"B","Debug" +"758",2018-01-03 19:40:00,"B","Limit" +"759",2018-01-03 20:00:00,"C","Limit" +"760",2018-01-03 20:20:00,"B","Warn" +"761",2018-01-03 20:40:00,"C","Warn" +"762",2018-01-03 21:00:00,"B","Attach" +"763",2018-01-03 21:20:00,"A","Error" +"764",2018-01-03 21:40:00,"B","Error" +"765",2018-01-03 22:00:00,"B","Attach" +"766",2018-01-03 22:20:00,"B","Warn" +"767",2018-01-03 22:40:00,"C","Attach" +"768",2018-01-03 23:00:00,"B","Warn" +"769",2018-01-03 23:20:00,"A","No clue" +"770",2018-01-03 23:40:00,"A","Error" +"771",2018-01-04 00:00:00,"C","Error" +"772",2018-01-04 00:20:00,"C","Debug" +"773",2018-01-04 00:40:00,"A","Warn" +"774",2018-01-04 01:00:00,"C","Debug" +"775",2018-01-04 01:20:00,"B","Debug" +"776",2018-01-04 01:40:00,"A","No clue" +"777",2018-01-04 02:00:00,"B","Error" +"778",2018-01-04 02:20:00,"B","Check with author" +"779",2018-01-04 02:40:00,"C","Warn" +"780",2018-01-04 03:00:00,"A","Attach" +"781",2018-01-04 03:20:00,"A","Attach" +"782",2018-01-04 03:40:00,"A","Warn" +"783",2018-01-04 04:00:00,"A","No clue" +"784",2018-01-04 04:20:00,"C","Check with author" +"785",2018-01-04 04:40:00,"A","Error" +"786",2018-01-04 05:00:00,"B","Limit" +"787",2018-01-04 05:20:00,"B","Limit" +"788",2018-01-04 05:40:00,"B","Debug" +"789",2018-01-04 06:00:00,"C","Attach" +"790",2018-01-04 06:20:00,"A","Limit" +"791",2018-01-04 06:40:00,"C","Limit" +"792",2018-01-04 07:00:00,"B","Error" +"793",2018-01-04 07:20:00,"B","Attach" +"794",2018-01-04 07:40:00,"A","Limit" +"795",2018-01-04 08:00:00,"B","Limit" +"796",2018-01-04 08:20:00,"B","Check with author" +"797",2018-01-04 08:40:00,"A","Limit" +"798",2018-01-04 09:00:00,"A","Attach" +"799",2018-01-04 09:20:00,"A","No clue" +"800",2018-01-04 09:40:00,"B","Check with author" +"801",2018-01-04 10:00:00,"B","Check with author" +"802",2018-01-04 10:20:00,"A","Check with author" +"803",2018-01-04 10:40:00,"C","Debug" +"804",2018-01-04 11:00:00,"C","Error" +"805",2018-01-04 11:20:00,"C","Warn" +"806",2018-01-04 11:40:00,"B","Attach" +"807",2018-01-04 12:00:00,"C","Error" +"808",2018-01-04 12:20:00,"B","Error" +"809",2018-01-04 12:40:00,"C","Error" +"810",2018-01-04 13:00:00,"C","Warn" +"811",2018-01-04 13:20:00,"C","Debug" +"812",2018-01-04 13:40:00,"B","Limit" +"813",2018-01-04 14:00:00,"B","Warn" +"814",2018-01-04 14:20:00,"A","Limit" +"815",2018-01-04 14:40:00,"A","Error" +"816",2018-01-04 15:00:00,"C","Limit" +"817",2018-01-04 15:20:00,"A","Error" +"818",2018-01-04 15:40:00,"C","Limit" +"819",2018-01-04 16:00:00,"A","Limit" +"820",2018-01-04 16:20:00,"A","Warn" +"821",2018-01-04 16:40:00,"B","Warn" +"822",2018-01-04 17:00:00,"B","Debug" +"823",2018-01-04 17:20:00,"B","Limit" +"824",2018-01-04 17:40:00,"C","Debug" +"825",2018-01-04 18:00:00,"C","Attach" +"826",2018-01-04 18:20:00,"A","Limit" +"827",2018-01-04 18:40:00,"B","Debug" +"828",2018-01-04 19:00:00,"C","Warn" +"829",2018-01-04 19:20:00,"A","Debug" +"830",2018-01-04 19:40:00,"A","Warn" +"831",2018-01-04 20:00:00,"A","Limit" +"832",2018-01-04 20:20:00,"C","Limit" +"833",2018-01-04 20:40:00,"A","Debug" +"834",2018-01-04 21:00:00,"A","Debug" +"835",2018-01-04 21:20:00,"C","Warn" +"836",2018-01-04 21:40:00,"A","No clue" +"837",2018-01-04 22:00:00,"C","Debug" +"838",2018-01-04 22:20:00,"A","Attach" +"839",2018-01-04 22:40:00,"B","Error" +"840",2018-01-04 23:00:00,"A","Limit" +"841",2018-01-04 23:20:00,"B","Warn" +"842",2018-01-04 23:40:00,"C","Error" +"843",2018-01-05 00:00:00,"A","Debug" +"844",2018-01-05 00:20:00,"C","Limit" +"845",2018-01-05 00:40:00,"A","Debug" +"846",2018-01-05 01:00:00,"B","No clue" +"847",2018-01-05 01:20:00,"A","Attach" +"848",2018-01-05 01:40:00,"C","Warn" +"849",2018-01-05 02:00:00,"A","Error" +"850",2018-01-05 02:20:00,"B","Limit" +"851",2018-01-05 02:40:00,"A","Check with author" +"852",2018-01-05 03:00:00,"A","Warn" +"853",2018-01-05 03:20:00,"B","Attach" +"854",2018-01-05 03:40:00,"A","Warn" +"855",2018-01-05 04:00:00,"C","No clue" +"856",2018-01-05 04:20:00,"C","Error" +"857",2018-01-05 04:40:00,"B","Debug" +"858",2018-01-05 05:00:00,"C","No clue" +"859",2018-01-05 05:20:00,"C","Warn" +"860",2018-01-05 05:40:00,"B","Warn" +"861",2018-01-05 06:00:00,"A","Warn" +"862",2018-01-05 06:20:00,"B","Debug" +"863",2018-01-05 06:40:00,"C","Warn" +"864",2018-01-05 07:00:00,"B","Attach" +"865",2018-01-05 07:20:00,"A","Limit" +"866",2018-01-05 07:40:00,"A","Debug" +"867",2018-01-05 08:00:00,"A","Attach" +"868",2018-01-05 08:20:00,"B","Warn" +"869",2018-01-05 08:40:00,"C","Check with author" +"870",2018-01-05 09:00:00,"A","Attach" +"871",2018-01-05 09:20:00,"C","Debug" +"872",2018-01-05 09:40:00,"A","Attach" +"873",2018-01-05 10:00:00,"A","Debug" +"874",2018-01-05 10:20:00,"A","Check with author" +"875",2018-01-05 10:40:00,"B","Error" +"876",2018-01-05 11:00:00,"C","Debug" +"877",2018-01-05 11:20:00,"A","Check with author" +"878",2018-01-05 11:40:00,"C","Warn" +"879",2018-01-05 12:00:00,"A","Check with author" +"880",2018-01-05 12:20:00,"C","Warn" +"881",2018-01-05 12:40:00,"A","Limit" +"882",2018-01-05 13:00:00,"C","Check with author" +"883",2018-01-05 13:20:00,"C","Warn" +"884",2018-01-05 13:40:00,"C","Limit" +"885",2018-01-05 14:00:00,"A","Warn" +"886",2018-01-01 12:00:00,"A","Warn" +"887",2018-01-01 12:20:00,"C","No clue" +"888",2018-01-01 12:40:00,"C","Check with author" +"889",2018-01-01 13:00:00,"B","Limit" +"890",2018-01-01 13:20:00,"A","No clue" +"891",2018-01-01 13:40:00,"A","Limit" +"892",2018-01-01 14:00:00,"C","Warn" +"893",2018-01-01 14:20:00,"C","Error" +"894",2018-01-01 14:40:00,"C","Warn" +"895",2018-01-01 15:00:00,"A","Limit" +"896",2018-01-01 15:20:00,"C","Check with author" +"897",2018-01-01 15:40:00,"C","Error" +"898",2018-01-01 16:00:00,"B","Error" +"899",2018-01-01 16:20:00,"C","Attach" +"900",2018-01-01 16:40:00,"B","Limit" +"901",2018-01-01 17:00:00,"A","Check with author" +"902",2018-01-01 17:20:00,"C","Limit" +"903",2018-01-01 17:40:00,"A","Limit" +"904",2018-01-01 18:00:00,"B","Check with author" +"905",2018-01-01 18:20:00,"A","Warn" +"906",2018-01-01 18:40:00,"C","Debug" +"907",2018-01-01 19:00:00,"A","Attach" +"908",2018-01-01 19:20:00,"A","Error" +"909",2018-01-01 19:40:00,"A","Check with author" +"910",2018-01-01 20:00:00,"A","Debug" +"911",2018-01-01 20:20:00,"C","Attach" +"912",2018-01-01 20:40:00,"B","Limit" +"913",2018-01-01 21:00:00,"B","Debug" +"914",2018-01-01 21:20:00,"A","Warn" +"915",2018-01-01 21:40:00,"C","Attach" +"916",2018-01-01 22:00:00,"A","Error" +"917",2018-01-01 22:20:00,"A","Debug" +"918",2018-01-01 22:40:00,"C","Debug" +"919",2018-01-01 23:00:00,"A","Debug" +"920",2018-01-01 23:20:00,"A","Debug" +"921",2018-01-01 23:40:00,"B","No clue" +"922",2018-01-02 00:00:00,"C","Limit" +"923",2018-01-02 00:20:00,"C","Check with author" +"924",2018-01-02 00:40:00,"A","Limit" +"925",2018-01-02 01:00:00,"B","Check with author" +"926",2018-01-02 01:20:00,"A","Check with author" +"927",2018-01-02 01:40:00,"C","No clue" +"928",2018-01-02 02:00:00,"C","No clue" +"929",2018-01-02 02:20:00,"B","Warn" +"930",2018-01-02 02:40:00,"B","Limit" +"931",2018-01-02 03:00:00,"B","Attach" +"932",2018-01-02 03:20:00,"C","No clue" +"933",2018-01-02 03:40:00,"A","Debug" +"934",2018-01-02 04:00:00,"A","Warn" +"935",2018-01-02 04:20:00,"B","Error" +"936",2018-01-02 04:40:00,"A","Warn" +"937",2018-01-02 05:00:00,"B","Attach" +"938",2018-01-02 05:20:00,"A","No clue" +"939",2018-01-02 05:40:00,"A","Warn" +"940",2018-01-02 06:00:00,"C","Check with author" +"941",2018-01-02 06:20:00,"A","Limit" +"942",2018-01-02 06:40:00,"B","No clue" +"943",2018-01-02 07:00:00,"B","Debug" +"944",2018-01-02 07:20:00,"A","Limit" +"945",2018-01-02 07:40:00,"B","Warn" +"946",2018-01-02 08:00:00,"A","Check with author" +"947",2018-01-02 08:20:00,"C","Attach" +"948",2018-01-02 08:40:00,"C","Warn" +"949",2018-01-02 09:00:00,"B","No clue" +"950",2018-01-02 09:20:00,"A","Warn" +"951",2018-01-02 09:40:00,"B","Debug" +"952",2018-01-02 10:00:00,"A","Attach" +"953",2018-01-02 10:20:00,"C","Warn" +"954",2018-01-02 10:40:00,"A","Attach" +"955",2018-01-02 11:00:00,"C","Error" +"956",2018-01-02 11:20:00,"C","Warn" +"957",2018-01-02 11:40:00,"C","Error" +"958",2018-01-02 12:00:00,"A","Limit" +"959",2018-01-02 12:20:00,"A","Attach" +"960",2018-01-02 12:40:00,"C","Limit" +"961",2018-01-02 13:00:00,"B","Error" +"962",2018-01-02 13:20:00,"A","Check with author" +"963",2018-01-02 13:40:00,"C","Limit" +"964",2018-01-02 14:00:00,"C","Debug" +"965",2018-01-02 14:20:00,"B","Debug" +"966",2018-01-02 14:40:00,"B","Error" +"967",2018-01-02 15:00:00,"B","Attach" +"968",2018-01-02 15:20:00,"C","Error" +"969",2018-01-02 15:40:00,"A","Error" +"970",2018-01-02 16:00:00,"C","Limit" +"971",2018-01-02 16:20:00,"A","Attach" +"972",2018-01-02 16:40:00,"C","Error" +"973",2018-01-02 17:00:00,"B","Limit" +"974",2018-01-02 17:20:00,"C","Attach" +"975",2018-01-02 17:40:00,"B","Attach" +"976",2018-01-02 18:00:00,"A","Error" +"977",2018-01-02 18:20:00,"B","No clue" +"978",2018-01-02 18:40:00,"C","Error" +"979",2018-01-02 19:00:00,"A","Warn" +"980",2018-01-02 19:20:00,"A","Check with author" +"981",2018-01-02 19:40:00,"C","No clue" +"982",2018-01-02 20:00:00,"A","Error" +"983",2018-01-02 20:20:00,"C","Warn" +"984",2018-01-02 20:40:00,"B","Limit" +"985",2018-01-02 21:00:00,"C","Warn" +"986",2018-01-02 21:20:00,"A","Limit" +"987",2018-01-02 21:40:00,"A","No clue" +"988",2018-01-02 22:00:00,"C","Error" +"989",2018-01-02 22:20:00,"B","Error" +"990",2018-01-02 22:40:00,"A","Check with author" +"991",2018-01-02 23:00:00,"A","Check with author" +"992",2018-01-02 23:20:00,"C","No clue" +"993",2018-01-02 23:40:00,"A","Warn" +"994",2018-01-03 00:00:00,"C","No clue" +"995",2018-01-03 00:20:00,"B","Check with author" +"996",2018-01-03 00:40:00,"B","Attach" +"997",2018-01-03 01:00:00,"B","Debug" +"998",2018-01-03 01:20:00,"B","No clue" +"999",2018-01-03 01:40:00,"A","Debug" +"1000",2018-01-03 02:00:00,"A","Attach" +"1001",2018-01-03 02:20:00,"B","Check with author" +"1002",2018-01-03 02:40:00,"C","Error" +"1003",2018-01-03 03:00:00,"A","Limit" +"1004",2018-01-03 03:20:00,"C","Attach" +"1005",2018-01-03 03:40:00,"B","Limit" +"1006",2018-01-03 04:00:00,"B","No clue" +"1007",2018-01-03 04:20:00,"C","Warn" +"1008",2018-01-03 04:40:00,"C","Debug" +"1009",2018-01-03 05:00:00,"B","No clue" +"1010",2018-01-03 05:20:00,"C","Debug" +"1011",2018-01-03 05:40:00,"B","Warn" +"1012",2018-01-03 06:00:00,"A","Attach" +"1013",2018-01-03 06:20:00,"A","Error" +"1014",2018-01-03 06:40:00,"C","Warn" +"1015",2018-01-03 07:00:00,"A","Limit" +"1016",2018-01-03 07:20:00,"B","Error" +"1017",2018-01-03 07:40:00,"B","No clue" +"1018",2018-01-03 08:00:00,"A","Check with author" +"1019",2018-01-03 08:20:00,"B","Limit" +"1020",2018-01-03 08:40:00,"B","Debug" +"1021",2018-01-03 09:00:00,"B","Check with author" +"1022",2018-01-03 09:20:00,"A","No clue" +"1023",2018-01-03 09:40:00,"A","Debug" +"1024",2018-01-03 10:00:00,"B","Limit" +"1025",2018-01-03 10:20:00,"C","Debug" +"1026",2018-01-03 10:40:00,"C","Warn" +"1027",2018-01-03 11:00:00,"B","Error" +"1028",2018-01-03 11:20:00,"A","Limit" +"1029",2018-01-03 11:40:00,"B","Error" +"1030",2018-01-03 12:00:00,"A","Limit" +"1031",2018-01-03 12:20:00,"A","Check with author" +"1032",2018-01-03 12:40:00,"A","Debug" +"1033",2018-01-03 13:00:00,"A","Warn" +"1034",2018-01-03 13:20:00,"A","Limit" +"1035",2018-01-03 13:40:00,"C","No clue" +"1036",2018-01-03 14:00:00,"A","Limit" +"1037",2018-01-03 14:20:00,"A","Check with author" +"1038",2018-01-03 14:40:00,"B","Attach" +"1039",2018-01-03 15:00:00,"C","No clue" +"1040",2018-01-03 15:20:00,"B","No clue" +"1041",2018-01-03 15:40:00,"C","No clue" +"1042",2018-01-03 16:00:00,"B","Limit" +"1043",2018-01-03 16:20:00,"C","Check with author" +"1044",2018-01-03 16:40:00,"C","Error" +"1045",2018-01-03 17:00:00,"B","Debug" +"1046",2018-01-03 17:20:00,"C","Check with author" +"1047",2018-01-03 17:40:00,"A","Warn" +"1048",2018-01-03 18:00:00,"A","Attach" +"1049",2018-01-03 18:20:00,"A","Error" +"1050",2018-01-03 18:40:00,"B","No clue" +"1051",2018-01-03 19:00:00,"A","Error" +"1052",2018-01-03 19:20:00,"C","No clue" +"1053",2018-01-03 19:40:00,"B","Limit" +"1054",2018-01-03 20:00:00,"C","No clue" +"1055",2018-01-03 20:20:00,"A","Attach" +"1056",2018-01-03 20:40:00,"A","Check with author" +"1057",2018-01-03 21:00:00,"A","No clue" +"1058",2018-01-03 21:20:00,"C","Debug" +"1059",2018-01-03 21:40:00,"C","Limit" +"1060",2018-01-03 22:00:00,"C","Error" +"1061",2018-01-03 22:20:00,"C","Attach" +"1062",2018-01-03 22:40:00,"C","Attach" +"1063",2018-01-03 23:00:00,"A","Limit" +"1064",2018-01-03 23:20:00,"C","Check with author" +"1065",2018-01-03 23:40:00,"B","No clue" +"1066",2018-01-04 00:00:00,"C","Check with author" +"1067",2018-01-04 00:20:00,"A","Check with author" +"1068",2018-01-04 00:40:00,"B","Limit" +"1069",2018-01-04 01:00:00,"A","Check with author" +"1070",2018-01-04 01:20:00,"B","Limit" +"1071",2018-01-04 01:40:00,"B","No clue" +"1072",2018-01-04 02:00:00,"C","Warn" +"1073",2018-01-04 02:20:00,"B","Attach" +"1074",2018-01-04 02:40:00,"A","No clue" +"1075",2018-01-04 03:00:00,"C","Warn" +"1076",2018-01-04 03:20:00,"C","Warn" +"1077",2018-01-04 03:40:00,"B","Attach" +"1078",2018-01-04 04:00:00,"B","Warn" +"1079",2018-01-04 04:20:00,"C","Error" +"1080",2018-01-04 04:40:00,"C","Warn" +"1081",2018-01-04 05:00:00,"C","Limit" +"1082",2018-01-04 05:20:00,"B","Limit" +"1083",2018-01-04 05:40:00,"C","No clue" +"1084",2018-01-04 06:00:00,"A","Error" +"1085",2018-01-04 06:20:00,"C","Debug" +"1086",2018-01-04 06:40:00,"B","Limit" +"1087",2018-01-04 07:00:00,"A","No clue" +"1088",2018-01-04 07:20:00,"B","Limit" +"1089",2018-01-04 07:40:00,"C","Error" +"1090",2018-01-04 08:00:00,"A","Error" +"1091",2018-01-04 08:20:00,"C","Attach" +"1092",2018-01-04 08:40:00,"C","Warn" +"1093",2018-01-04 09:00:00,"B","Warn" +"1094",2018-01-04 09:20:00,"A","Limit" +"1095",2018-01-04 09:40:00,"A","Error" +"1096",2018-01-04 10:00:00,"C","Attach" +"1097",2018-01-04 10:20:00,"B","Error" +"1098",2018-01-04 10:40:00,"B","Limit" +"1099",2018-01-04 11:00:00,"A","Limit" +"1100",2018-01-04 11:20:00,"B","No clue" +"1101",2018-01-04 11:40:00,"B","Check with author" +"1102",2018-01-04 12:00:00,"C","Check with author" +"1103",2018-01-04 12:20:00,"C","No clue" +"1104",2018-01-04 12:40:00,"A","Attach" +"1105",2018-01-04 13:00:00,"A","Limit" +"1106",2018-01-04 13:20:00,"C","No clue" +"1107",2018-01-04 13:40:00,"C","Limit" +"1108",2018-01-04 14:00:00,"A","Debug" +"1109",2018-01-04 14:20:00,"A","Attach" +"1110",2018-01-04 14:40:00,"A","Attach" +"1111",2018-01-04 15:00:00,"A","Warn" +"1112",2018-01-04 15:20:00,"A","Attach" +"1113",2018-01-04 15:40:00,"B","Attach" +"1114",2018-01-04 16:00:00,"B","Limit" +"1115",2018-01-04 16:20:00,"C","Debug" +"1116",2018-01-04 16:40:00,"B","Error" +"1117",2018-01-04 17:00:00,"C","Error" +"1118",2018-01-04 17:20:00,"A","Check with author" +"1119",2018-01-04 17:40:00,"A","Check with author" +"1120",2018-01-04 18:00:00,"C","No clue" +"1121",2018-01-04 18:20:00,"A","Check with author" +"1122",2018-01-04 18:40:00,"C","Limit" +"1123",2018-01-04 19:00:00,"B","Warn" +"1124",2018-01-04 19:20:00,"A","No clue" +"1125",2018-01-04 19:40:00,"A","Limit" +"1126",2018-01-04 20:00:00,"A","Limit" +"1127",2018-01-04 20:20:00,"A","Limit" +"1128",2018-01-04 20:40:00,"C","Error" +"1129",2018-01-04 21:00:00,"A","Debug" +"1130",2018-01-04 21:20:00,"B","Check with author" +"1131",2018-01-04 21:40:00,"A","No clue" +"1132",2018-01-04 22:00:00,"A","Attach" +"1133",2018-01-04 22:20:00,"A","Error" +"1134",2018-01-04 22:40:00,"B","Warn" +"1135",2018-01-04 23:00:00,"C","No clue" +"1136",2018-01-04 23:20:00,"A","Debug" +"1137",2018-01-04 23:40:00,"C","Check with author" +"1138",2018-01-05 00:00:00,"A","Check with author" +"1139",2018-01-05 00:20:00,"B","Debug" +"1140",2018-01-05 00:40:00,"B","Error" +"1141",2018-01-05 01:00:00,"C","Attach" +"1142",2018-01-05 01:20:00,"C","Error" +"1143",2018-01-05 01:40:00,"A","Debug" +"1144",2018-01-05 02:00:00,"B","Check with author" +"1145",2018-01-05 02:20:00,"C","Attach" +"1146",2018-01-05 02:40:00,"B","Error" +"1147",2018-01-05 03:00:00,"C","Attach" +"1148",2018-01-05 03:20:00,"A","Warn" +"1149",2018-01-05 03:40:00,"C","Error" +"1150",2018-01-05 04:00:00,"C","Limit" +"1151",2018-01-05 04:20:00,"B","Limit" +"1152",2018-01-05 04:40:00,"A","Error" +"1153",2018-01-05 05:00:00,"C","Warn" +"1154",2018-01-05 05:20:00,"C","No clue" +"1155",2018-01-05 05:40:00,"B","Warn" +"1156",2018-01-05 06:00:00,"C","Limit" +"1157",2018-01-05 06:20:00,"A","Attach" +"1158",2018-01-05 06:40:00,"A","Check with author" +"1159",2018-01-05 07:00:00,"B","Attach" +"1160",2018-01-05 07:20:00,"C","Limit" +"1161",2018-01-05 07:40:00,"A","Error" +"1162",2018-01-05 08:00:00,"A","Check with author" +"1163",2018-01-05 08:20:00,"C","No clue" +"1164",2018-01-05 08:40:00,"A","Debug" +"1165",2018-01-05 09:00:00,"B","No clue" +"1166",2018-01-05 09:20:00,"C","Debug" +"1167",2018-01-05 09:40:00,"C","Limit" +"1168",2018-01-05 10:00:00,"A","Warn" +"1169",2018-01-05 10:20:00,"A","Error" +"1170",2018-01-05 10:40:00,"B","Error" +"1171",2018-01-05 11:00:00,"B","No clue" +"1172",2018-01-05 11:20:00,"B","Limit" +"1173",2018-01-05 11:40:00,"B","Warn" +"1174",2018-01-05 12:00:00,"A","No clue" +"1175",2018-01-05 12:20:00,"C","Check with author" +"1176",2018-01-05 12:40:00,"B","Error" +"1177",2018-01-05 13:00:00,"A","Limit" +"1178",2018-01-05 13:20:00,"B","Limit" +"1179",2018-01-05 13:40:00,"A","No clue" +"1180",2018-01-05 14:00:00,"B","No clue" +"1181",2018-01-01 12:00:00,"B","No clue" +"1182",2018-01-01 12:20:00,"A","No clue" +"1183",2018-01-01 12:40:00,"B","Warn" +"1184",2018-01-01 13:00:00,"A","Warn" +"1185",2018-01-01 13:20:00,"B","Debug" +"1186",2018-01-01 13:40:00,"B","Attach" +"1187",2018-01-01 14:00:00,"C","Error" +"1188",2018-01-01 14:20:00,"A","Attach" +"1189",2018-01-01 14:40:00,"B","Warn" +"1190",2018-01-01 15:00:00,"B","No clue" +"1191",2018-01-01 15:20:00,"A","Debug" +"1192",2018-01-01 15:40:00,"A","Attach" +"1193",2018-01-01 16:00:00,"B","Warn" +"1194",2018-01-01 16:20:00,"B","Attach" +"1195",2018-01-01 16:40:00,"A","No clue" +"1196",2018-01-01 17:00:00,"C","Warn" +"1197",2018-01-01 17:20:00,"A","Check with author" +"1198",2018-01-01 17:40:00,"A","Debug" +"1199",2018-01-01 18:00:00,"A","No clue" +"1200",2018-01-01 18:20:00,"B","Attach" +"1201",2018-01-01 18:40:00,"C","Debug" +"1202",2018-01-01 19:00:00,"C","Error" +"1203",2018-01-01 19:20:00,"B","Warn" +"1204",2018-01-01 19:40:00,"C","Limit" +"1205",2018-01-01 20:00:00,"C","Error" +"1206",2018-01-01 20:20:00,"C","Warn" +"1207",2018-01-01 20:40:00,"C","Warn" +"1208",2018-01-01 21:00:00,"C","No clue" +"1209",2018-01-01 21:20:00,"A","Limit" +"1210",2018-01-01 21:40:00,"B","Error" +"1211",2018-01-01 22:00:00,"A","Limit" +"1212",2018-01-01 22:20:00,"C","Error" +"1213",2018-01-01 22:40:00,"C","Limit" +"1214",2018-01-01 23:00:00,"B","Error" +"1215",2018-01-01 23:20:00,"C","Limit" +"1216",2018-01-01 23:40:00,"C","Warn" +"1217",2018-01-02 00:00:00,"B","Check with author" +"1218",2018-01-02 00:20:00,"A","Limit" +"1219",2018-01-02 00:40:00,"A","Check with author" +"1220",2018-01-02 01:00:00,"C","Attach" +"1221",2018-01-02 01:20:00,"C","Check with author" +"1222",2018-01-02 01:40:00,"C","Check with author" +"1223",2018-01-02 02:00:00,"A","Attach" +"1224",2018-01-02 02:20:00,"A","No clue" +"1225",2018-01-02 02:40:00,"C","Warn" +"1226",2018-01-02 03:00:00,"B","Warn" +"1227",2018-01-02 03:20:00,"B","No clue" +"1228",2018-01-02 03:40:00,"A","Attach" +"1229",2018-01-02 04:00:00,"A","Limit" +"1230",2018-01-02 04:20:00,"A","Debug" +"1231",2018-01-02 04:40:00,"B","Debug" +"1232",2018-01-02 05:00:00,"C","Error" +"1233",2018-01-02 05:20:00,"A","Error" +"1234",2018-01-02 05:40:00,"B","No clue" +"1235",2018-01-02 06:00:00,"B","Warn" +"1236",2018-01-02 06:20:00,"C","Warn" +"1237",2018-01-02 06:40:00,"A","Warn" +"1238",2018-01-02 07:00:00,"A","Check with author" +"1239",2018-01-02 07:20:00,"B","Error" +"1240",2018-01-02 07:40:00,"C","No clue" +"1241",2018-01-02 08:00:00,"A","Limit" +"1242",2018-01-02 08:20:00,"C","Debug" +"1243",2018-01-02 08:40:00,"A","Debug" +"1244",2018-01-02 09:00:00,"B","Debug" +"1245",2018-01-02 09:20:00,"C","Debug" +"1246",2018-01-02 09:40:00,"C","Attach" +"1247",2018-01-02 10:00:00,"C","Limit" +"1248",2018-01-02 10:20:00,"A","Limit" +"1249",2018-01-02 10:40:00,"C","Warn" +"1250",2018-01-02 11:00:00,"B","Debug" +"1251",2018-01-02 11:20:00,"C","Limit" +"1252",2018-01-02 11:40:00,"C","No clue" +"1253",2018-01-02 12:00:00,"A","Warn" +"1254",2018-01-02 12:20:00,"B","Warn" +"1255",2018-01-02 12:40:00,"A","No clue" +"1256",2018-01-02 13:00:00,"B","Debug" +"1257",2018-01-02 13:20:00,"C","Attach" +"1258",2018-01-02 13:40:00,"A","No clue" +"1259",2018-01-02 14:00:00,"C","Error" +"1260",2018-01-02 14:20:00,"C","Warn" +"1261",2018-01-02 14:40:00,"A","Warn" +"1262",2018-01-02 15:00:00,"C","Limit" +"1263",2018-01-02 15:20:00,"B","Error" +"1264",2018-01-02 15:40:00,"A","Debug" +"1265",2018-01-02 16:00:00,"A","Warn" +"1266",2018-01-02 16:20:00,"C","Attach" +"1267",2018-01-02 16:40:00,"A","Limit" +"1268",2018-01-02 17:00:00,"B","Attach" +"1269",2018-01-02 17:20:00,"C","Debug" +"1270",2018-01-02 17:40:00,"A","Limit" +"1271",2018-01-02 18:00:00,"B","Check with author" +"1272",2018-01-02 18:20:00,"A","Attach" +"1273",2018-01-02 18:40:00,"B","No clue" +"1274",2018-01-02 19:00:00,"C","Error" +"1275",2018-01-02 19:20:00,"A","Error" +"1276",2018-01-02 19:40:00,"C","Warn" +"1277",2018-01-02 20:00:00,"C","Limit" +"1278",2018-01-02 20:20:00,"A","Error" +"1279",2018-01-02 20:40:00,"C","No clue" +"1280",2018-01-02 21:00:00,"A","Error" +"1281",2018-01-02 21:20:00,"A","Error" +"1282",2018-01-02 21:40:00,"C","Warn" +"1283",2018-01-02 22:00:00,"B","No clue" +"1284",2018-01-02 22:20:00,"B","No clue" +"1285",2018-01-02 22:40:00,"A","Check with author" +"1286",2018-01-02 23:00:00,"C","Attach" +"1287",2018-01-02 23:20:00,"C","Attach" +"1288",2018-01-02 23:40:00,"C","Warn" +"1289",2018-01-03 00:00:00,"A","Debug" +"1290",2018-01-03 00:20:00,"B","Error" +"1291",2018-01-03 00:40:00,"A","Limit" +"1292",2018-01-03 01:00:00,"A","Check with author" +"1293",2018-01-03 01:20:00,"C","Limit" +"1294",2018-01-03 01:40:00,"C","Warn" +"1295",2018-01-03 02:00:00,"B","Attach" +"1296",2018-01-03 02:20:00,"B","Warn" +"1297",2018-01-03 02:40:00,"B","Debug" +"1298",2018-01-03 03:00:00,"C","Warn" +"1299",2018-01-03 03:20:00,"C","Limit" +"1300",2018-01-03 03:40:00,"B","Check with author" +"1301",2018-01-03 04:00:00,"B","No clue" +"1302",2018-01-03 04:20:00,"A","Check with author" +"1303",2018-01-03 04:40:00,"C","Limit" +"1304",2018-01-03 05:00:00,"C","Warn" +"1305",2018-01-03 05:20:00,"B","Attach" +"1306",2018-01-03 05:40:00,"A","Attach" +"1307",2018-01-03 06:00:00,"A","Limit" +"1308",2018-01-03 06:20:00,"B","Error" +"1309",2018-01-03 06:40:00,"C","Debug" +"1310",2018-01-03 07:00:00,"A","Debug" +"1311",2018-01-03 07:20:00,"C","Error" +"1312",2018-01-03 07:40:00,"A","Check with author" +"1313",2018-01-03 08:00:00,"C","Error" +"1314",2018-01-03 08:20:00,"B","Error" +"1315",2018-01-03 08:40:00,"A","No clue" +"1316",2018-01-03 09:00:00,"C","No clue" +"1317",2018-01-03 09:20:00,"C","No clue" +"1318",2018-01-03 09:40:00,"B","Limit" +"1319",2018-01-03 10:00:00,"A","Error" +"1320",2018-01-03 10:20:00,"C","No clue" +"1321",2018-01-03 10:40:00,"B","Limit" +"1322",2018-01-03 11:00:00,"A","Limit" +"1323",2018-01-03 11:20:00,"B","Attach" +"1324",2018-01-03 11:40:00,"B","Limit" +"1325",2018-01-03 12:00:00,"B","Debug" +"1326",2018-01-03 12:20:00,"C","Check with author" +"1327",2018-01-03 12:40:00,"C","No clue" +"1328",2018-01-03 13:00:00,"C","Warn" +"1329",2018-01-03 13:20:00,"C","Warn" +"1330",2018-01-03 13:40:00,"C","Check with author" +"1331",2018-01-03 14:00:00,"C","No clue" +"1332",2018-01-03 14:20:00,"A","Warn" +"1333",2018-01-03 14:40:00,"B","Debug" +"1334",2018-01-03 15:00:00,"A","No clue" +"1335",2018-01-03 15:20:00,"C","Error" +"1336",2018-01-03 15:40:00,"A","No clue" +"1337",2018-01-03 16:00:00,"B","Limit" +"1338",2018-01-03 16:20:00,"A","Debug" +"1339",2018-01-03 16:40:00,"C","Attach" +"1340",2018-01-03 17:00:00,"C","Attach" +"1341",2018-01-03 17:20:00,"C","Limit" +"1342",2018-01-03 17:40:00,"C","Warn" +"1343",2018-01-03 18:00:00,"A","Check with author" +"1344",2018-01-03 18:20:00,"B","Check with author" +"1345",2018-01-03 18:40:00,"B","Debug" +"1346",2018-01-03 19:00:00,"B","Warn" +"1347",2018-01-03 19:20:00,"A","Warn" +"1348",2018-01-03 19:40:00,"B","Check with author" +"1349",2018-01-03 20:00:00,"A","Limit" +"1350",2018-01-03 20:20:00,"A","Error" +"1351",2018-01-03 20:40:00,"B","Error" +"1352",2018-01-03 21:00:00,"C","No clue" +"1353",2018-01-03 21:20:00,"A","Attach" +"1354",2018-01-03 21:40:00,"A","Limit" +"1355",2018-01-03 22:00:00,"B","Limit" +"1356",2018-01-03 22:20:00,"C","Check with author" +"1357",2018-01-03 22:40:00,"A","Warn" +"1358",2018-01-03 23:00:00,"A","No clue" +"1359",2018-01-03 23:20:00,"C","Limit" +"1360",2018-01-03 23:40:00,"A","Warn" +"1361",2018-01-04 00:00:00,"C","Check with author" +"1362",2018-01-04 00:20:00,"B","Error" +"1363",2018-01-04 00:40:00,"A","Check with author" +"1364",2018-01-04 01:00:00,"B","Check with author" +"1365",2018-01-04 01:20:00,"A","Limit" +"1366",2018-01-04 01:40:00,"C","Check with author" +"1367",2018-01-04 02:00:00,"C","Limit" +"1368",2018-01-04 02:20:00,"C","Warn" +"1369",2018-01-04 02:40:00,"A","Attach" +"1370",2018-01-04 03:00:00,"B","Debug" +"1371",2018-01-04 03:20:00,"B","Check with author" +"1372",2018-01-04 03:40:00,"B","Limit" +"1373",2018-01-04 04:00:00,"A","Debug" +"1374",2018-01-04 04:20:00,"B","Check with author" +"1375",2018-01-04 04:40:00,"A","Limit" +"1376",2018-01-04 05:00:00,"C","Debug" +"1377",2018-01-04 05:20:00,"B","Attach" +"1378",2018-01-04 05:40:00,"C","Attach" +"1379",2018-01-04 06:00:00,"B","Error" +"1380",2018-01-04 06:20:00,"C","Check with author" +"1381",2018-01-04 06:40:00,"A","Check with author" +"1382",2018-01-04 07:00:00,"C","Warn" +"1383",2018-01-04 07:20:00,"B","Error" +"1384",2018-01-04 07:40:00,"B","Check with author" +"1385",2018-01-04 08:00:00,"B","Check with author" +"1386",2018-01-04 08:20:00,"C","Error" +"1387",2018-01-04 08:40:00,"C","No clue" +"1388",2018-01-04 09:00:00,"C","Check with author" +"1389",2018-01-04 09:20:00,"A","No clue" +"1390",2018-01-04 09:40:00,"A","No clue" +"1391",2018-01-04 10:00:00,"B","Debug" +"1392",2018-01-04 10:20:00,"C","Attach" +"1393",2018-01-04 10:40:00,"B","Limit" +"1394",2018-01-04 11:00:00,"B","Limit" +"1395",2018-01-04 11:20:00,"B","Attach" +"1396",2018-01-04 11:40:00,"C","Debug" +"1397",2018-01-04 12:00:00,"A","Error" +"1398",2018-01-04 12:20:00,"B","No clue" +"1399",2018-01-04 12:40:00,"A","Warn" +"1400",2018-01-04 13:00:00,"C","Attach" +"1401",2018-01-04 13:20:00,"C","No clue" +"1402",2018-01-04 13:40:00,"B","Debug" +"1403",2018-01-04 14:00:00,"A","Warn" +"1404",2018-01-04 14:20:00,"C","Attach" +"1405",2018-01-04 14:40:00,"B","No clue" +"1406",2018-01-04 15:00:00,"B","Attach" +"1407",2018-01-04 15:20:00,"B","Limit" +"1408",2018-01-04 15:40:00,"B","Attach" +"1409",2018-01-04 16:00:00,"B","Limit" +"1410",2018-01-04 16:20:00,"B","Debug" +"1411",2018-01-04 16:40:00,"B","Debug" +"1412",2018-01-04 17:00:00,"A","Warn" +"1413",2018-01-04 17:20:00,"A","Limit" +"1414",2018-01-04 17:40:00,"A","Error" +"1415",2018-01-04 18:00:00,"A","Error" +"1416",2018-01-04 18:20:00,"C","Attach" +"1417",2018-01-04 18:40:00,"A","Attach" +"1418",2018-01-04 19:00:00,"B","Attach" +"1419",2018-01-04 19:20:00,"B","No clue" +"1420",2018-01-04 19:40:00,"A","Debug" +"1421",2018-01-04 20:00:00,"A","Attach" +"1422",2018-01-04 20:20:00,"B","No clue" +"1423",2018-01-04 20:40:00,"A","Check with author" +"1424",2018-01-04 21:00:00,"A","Limit" +"1425",2018-01-04 21:20:00,"B","Error" +"1426",2018-01-04 21:40:00,"B","Error" +"1427",2018-01-04 22:00:00,"B","Debug" +"1428",2018-01-04 22:20:00,"C","Debug" +"1429",2018-01-04 22:40:00,"C","Error" +"1430",2018-01-04 23:00:00,"A","No clue" +"1431",2018-01-04 23:20:00,"A","No clue" +"1432",2018-01-04 23:40:00,"B","Check with author" +"1433",2018-01-05 00:00:00,"C","Error" +"1434",2018-01-05 00:20:00,"B","Attach" +"1435",2018-01-05 00:40:00,"B","Debug" +"1436",2018-01-05 01:00:00,"A","Warn" +"1437",2018-01-05 01:20:00,"C","Error" +"1438",2018-01-05 01:40:00,"B","Check with author" +"1439",2018-01-05 02:00:00,"C","Error" +"1440",2018-01-05 02:20:00,"B","Check with author" +"1441",2018-01-05 02:40:00,"A","Warn" +"1442",2018-01-05 03:00:00,"C","Check with author" +"1443",2018-01-05 03:20:00,"A","Attach" +"1444",2018-01-05 03:40:00,"B","Limit" +"1445",2018-01-05 04:00:00,"A","Error" +"1446",2018-01-05 04:20:00,"A","No clue" +"1447",2018-01-05 04:40:00,"A","Attach" +"1448",2018-01-05 05:00:00,"A","Attach" +"1449",2018-01-05 05:20:00,"B","Error" +"1450",2018-01-05 05:40:00,"A","Warn" +"1451",2018-01-05 06:00:00,"B","Warn" +"1452",2018-01-05 06:20:00,"B","Check with author" +"1453",2018-01-05 06:40:00,"B","No clue" +"1454",2018-01-05 07:00:00,"B","Debug" +"1455",2018-01-05 07:20:00,"B","Warn" +"1456",2018-01-05 07:40:00,"C","Error" +"1457",2018-01-05 08:00:00,"B","No clue" +"1458",2018-01-05 08:20:00,"A","Check with author" +"1459",2018-01-05 08:40:00,"A","Attach" +"1460",2018-01-05 09:00:00,"A","Attach" +"1461",2018-01-05 09:20:00,"A","Check with author" +"1462",2018-01-05 09:40:00,"B","Limit" +"1463",2018-01-05 10:00:00,"B","Debug" +"1464",2018-01-05 10:20:00,"C","Check with author" +"1465",2018-01-05 10:40:00,"A","Warn" +"1466",2018-01-05 11:00:00,"A","Error" +"1467",2018-01-05 11:20:00,"A","No clue" +"1468",2018-01-05 11:40:00,"B","Error" +"1469",2018-01-05 12:00:00,"B","No clue" +"1470",2018-01-05 12:20:00,"A","No clue" +"1471",2018-01-05 12:40:00,"B","Debug" +"1472",2018-01-05 13:00:00,"A","Debug" +"1473",2018-01-05 13:20:00,"C","Error" +"1474",2018-01-05 13:40:00,"C","Warn" +"1475",2018-01-05 14:00:00,"B","Debug" +"1476",2018-01-01 12:00:00,"B","Error" +"1477",2018-01-01 12:20:00,"C","Check with author" +"1478",2018-01-01 12:40:00,"B","Attach" +"1479",2018-01-01 13:00:00,"B","No clue" +"1480",2018-01-01 13:20:00,"A","Error" +"1481",2018-01-01 13:40:00,"A","Check with author" +"1482",2018-01-01 14:00:00,"A","Warn" +"1483",2018-01-01 14:20:00,"B","Warn" +"1484",2018-01-01 14:40:00,"B","Debug" +"1485",2018-01-01 15:00:00,"B","Debug" +"1486",2018-01-01 15:20:00,"B","Warn" +"1487",2018-01-01 15:40:00,"A","Debug" +"1488",2018-01-01 16:00:00,"B","Warn" +"1489",2018-01-01 16:20:00,"C","Attach" +"1490",2018-01-01 16:40:00,"C","Attach" +"1491",2018-01-01 17:00:00,"B","Debug" +"1492",2018-01-01 17:20:00,"C","Attach" +"1493",2018-01-01 17:40:00,"B","Attach" +"1494",2018-01-01 18:00:00,"C","Warn" +"1495",2018-01-01 18:20:00,"C","Warn" +"1496",2018-01-01 18:40:00,"A","Warn" +"1497",2018-01-01 19:00:00,"C","Check with author" +"1498",2018-01-01 19:20:00,"C","Attach" +"1499",2018-01-01 19:40:00,"A","Limit" +"1500",2018-01-01 20:00:00,"A","Warn" +"1501",2018-01-01 20:20:00,"A","Attach" +"1502",2018-01-01 20:40:00,"C","Limit" +"1503",2018-01-01 21:00:00,"C","Check with author" +"1504",2018-01-01 21:20:00,"B","Error" +"1505",2018-01-01 21:40:00,"A","Check with author" +"1506",2018-01-01 22:00:00,"C","No clue" +"1507",2018-01-01 22:20:00,"A","Attach" +"1508",2018-01-01 22:40:00,"A","Check with author" +"1509",2018-01-01 23:00:00,"A","Limit" +"1510",2018-01-01 23:20:00,"A","No clue" +"1511",2018-01-01 23:40:00,"C","No clue" +"1512",2018-01-02 00:00:00,"B","No clue" +"1513",2018-01-02 00:20:00,"C","Warn" +"1514",2018-01-02 00:40:00,"B","Attach" +"1515",2018-01-02 01:00:00,"C","Limit" +"1516",2018-01-02 01:20:00,"C","No clue" +"1517",2018-01-02 01:40:00,"C","Warn" +"1518",2018-01-02 02:00:00,"A","Error" +"1519",2018-01-02 02:20:00,"B","Limit" +"1520",2018-01-02 02:40:00,"B","Attach" +"1521",2018-01-02 03:00:00,"A","Debug" +"1522",2018-01-02 03:20:00,"B","Debug" +"1523",2018-01-02 03:40:00,"C","Warn" +"1524",2018-01-02 04:00:00,"C","Check with author" +"1525",2018-01-02 04:20:00,"A","Debug" +"1526",2018-01-02 04:40:00,"C","Attach" +"1527",2018-01-02 05:00:00,"A","Warn" +"1528",2018-01-02 05:20:00,"C","Attach" +"1529",2018-01-02 05:40:00,"C","Debug" +"1530",2018-01-02 06:00:00,"B","Attach" +"1531",2018-01-02 06:20:00,"A","Debug" +"1532",2018-01-02 06:40:00,"A","No clue" +"1533",2018-01-02 07:00:00,"C","Warn" +"1534",2018-01-02 07:20:00,"B","No clue" +"1535",2018-01-02 07:40:00,"C","Debug" +"1536",2018-01-02 08:00:00,"B","Debug" +"1537",2018-01-02 08:20:00,"B","Check with author" +"1538",2018-01-02 08:40:00,"B","Attach" +"1539",2018-01-02 09:00:00,"B","No clue" +"1540",2018-01-02 09:20:00,"B","Check with author" +"1541",2018-01-02 09:40:00,"B","Attach" +"1542",2018-01-02 10:00:00,"A","Error" +"1543",2018-01-02 10:20:00,"C","Debug" +"1544",2018-01-02 10:40:00,"C","Check with author" +"1545",2018-01-02 11:00:00,"C","Limit" +"1546",2018-01-02 11:20:00,"B","Limit" +"1547",2018-01-02 11:40:00,"B","Check with author" +"1548",2018-01-02 12:00:00,"C","Warn" +"1549",2018-01-02 12:20:00,"A","Limit" +"1550",2018-01-02 12:40:00,"A","Attach" +"1551",2018-01-02 13:00:00,"A","No clue" +"1552",2018-01-02 13:20:00,"B","Limit" +"1553",2018-01-02 13:40:00,"B","Attach" +"1554",2018-01-02 14:00:00,"B","Debug" +"1555",2018-01-02 14:20:00,"A","Check with author" +"1556",2018-01-02 14:40:00,"B","Warn" +"1557",2018-01-02 15:00:00,"B","Attach" +"1558",2018-01-02 15:20:00,"C","Error" +"1559",2018-01-02 15:40:00,"A","Debug" +"1560",2018-01-02 16:00:00,"B","Debug" +"1561",2018-01-02 16:20:00,"C","No clue" +"1562",2018-01-02 16:40:00,"B","Error" +"1563",2018-01-02 17:00:00,"A","Check with author" +"1564",2018-01-02 17:20:00,"C","Limit" +"1565",2018-01-02 17:40:00,"A","Warn" +"1566",2018-01-02 18:00:00,"C","Error" +"1567",2018-01-02 18:20:00,"B","Limit" +"1568",2018-01-02 18:40:00,"C","Debug" +"1569",2018-01-02 19:00:00,"C","No clue" +"1570",2018-01-02 19:20:00,"C","Error" +"1571",2018-01-02 19:40:00,"C","Error" +"1572",2018-01-02 20:00:00,"A","Warn" +"1573",2018-01-02 20:20:00,"A","Check with author" +"1574",2018-01-02 20:40:00,"A","Check with author" +"1575",2018-01-02 21:00:00,"C","Attach" +"1576",2018-01-02 21:20:00,"B","Attach" +"1577",2018-01-02 21:40:00,"C","Limit" +"1578",2018-01-02 22:00:00,"A","No clue" +"1579",2018-01-02 22:20:00,"A","Debug" +"1580",2018-01-02 22:40:00,"B","Error" +"1581",2018-01-02 23:00:00,"A","Attach" +"1582",2018-01-02 23:20:00,"C","Debug" +"1583",2018-01-02 23:40:00,"C","Error" +"1584",2018-01-03 00:00:00,"C","Attach" +"1585",2018-01-03 00:20:00,"B","Warn" +"1586",2018-01-03 00:40:00,"B","Limit" +"1587",2018-01-03 01:00:00,"A","Check with author" +"1588",2018-01-03 01:20:00,"A","Error" +"1589",2018-01-03 01:40:00,"C","Attach" +"1590",2018-01-03 02:00:00,"B","Attach" +"1591",2018-01-03 02:20:00,"C","Attach" +"1592",2018-01-03 02:40:00,"A","Error" +"1593",2018-01-03 03:00:00,"C","Error" +"1594",2018-01-03 03:20:00,"C","No clue" +"1595",2018-01-03 03:40:00,"A","No clue" +"1596",2018-01-03 04:00:00,"B","No clue" +"1597",2018-01-03 04:20:00,"A","Error" +"1598",2018-01-03 04:40:00,"B","Check with author" +"1599",2018-01-03 05:00:00,"B","Error" +"1600",2018-01-03 05:20:00,"A","Check with author" +"1601",2018-01-03 05:40:00,"B","Check with author" +"1602",2018-01-03 06:00:00,"C","Warn" +"1603",2018-01-03 06:20:00,"C","Debug" +"1604",2018-01-03 06:40:00,"C","Limit" +"1605",2018-01-03 07:00:00,"C","Limit" +"1606",2018-01-03 07:20:00,"C","Debug" +"1607",2018-01-03 07:40:00,"C","No clue" +"1608",2018-01-03 08:00:00,"A","Warn" +"1609",2018-01-03 08:20:00,"B","Limit" +"1610",2018-01-03 08:40:00,"A","Warn" +"1611",2018-01-03 09:00:00,"B","Warn" +"1612",2018-01-03 09:20:00,"C","Limit" +"1613",2018-01-03 09:40:00,"C","Check with author" +"1614",2018-01-03 10:00:00,"A","Check with author" +"1615",2018-01-03 10:20:00,"C","Limit" +"1616",2018-01-03 10:40:00,"B","Check with author" +"1617",2018-01-03 11:00:00,"A","Debug" +"1618",2018-01-03 11:20:00,"A","Limit" +"1619",2018-01-03 11:40:00,"B","Error" +"1620",2018-01-03 12:00:00,"A","Limit" +"1621",2018-01-03 12:20:00,"C","Check with author" +"1622",2018-01-03 12:40:00,"A","Check with author" +"1623",2018-01-03 13:00:00,"A","Debug" +"1624",2018-01-03 13:20:00,"A","Attach" +"1625",2018-01-03 13:40:00,"C","Warn" +"1626",2018-01-03 14:00:00,"C","Error" +"1627",2018-01-03 14:20:00,"B","Warn" +"1628",2018-01-03 14:40:00,"A","Warn" +"1629",2018-01-03 15:00:00,"A","Debug" +"1630",2018-01-03 15:20:00,"C","Limit" +"1631",2018-01-03 15:40:00,"A","Check with author" +"1632",2018-01-03 16:00:00,"C","Error" +"1633",2018-01-03 16:20:00,"A","Error" +"1634",2018-01-03 16:40:00,"A","Warn" +"1635",2018-01-03 17:00:00,"C","Check with author" +"1636",2018-01-03 17:20:00,"C","Error" +"1637",2018-01-03 17:40:00,"A","Attach" +"1638",2018-01-03 18:00:00,"A","No clue" +"1639",2018-01-03 18:20:00,"B","Attach" +"1640",2018-01-03 18:40:00,"C","Check with author" +"1641",2018-01-03 19:00:00,"B","Attach" +"1642",2018-01-03 19:20:00,"C","Attach" +"1643",2018-01-03 19:40:00,"A","Attach" +"1644",2018-01-03 20:00:00,"C","Debug" +"1645",2018-01-03 20:20:00,"A","Attach" +"1646",2018-01-03 20:40:00,"C","Debug" +"1647",2018-01-03 21:00:00,"C","No clue" +"1648",2018-01-03 21:20:00,"A","Warn" +"1649",2018-01-03 21:40:00,"C","Limit" +"1650",2018-01-03 22:00:00,"A","Attach" +"1651",2018-01-03 22:20:00,"A","No clue" +"1652",2018-01-03 22:40:00,"B","Error" +"1653",2018-01-03 23:00:00,"A","Limit" +"1654",2018-01-03 23:20:00,"C","Attach" +"1655",2018-01-03 23:40:00,"C","Limit" +"1656",2018-01-04 00:00:00,"B","Error" +"1657",2018-01-04 00:20:00,"C","Attach" +"1658",2018-01-04 00:40:00,"C","Attach" +"1659",2018-01-04 01:00:00,"C","Attach" +"1660",2018-01-04 01:20:00,"B","Debug" +"1661",2018-01-04 01:40:00,"B","Error" +"1662",2018-01-04 02:00:00,"C","Warn" +"1663",2018-01-04 02:20:00,"B","Debug" +"1664",2018-01-04 02:40:00,"C","Limit" +"1665",2018-01-04 03:00:00,"B","No clue" +"1666",2018-01-04 03:20:00,"B","Attach" +"1667",2018-01-04 03:40:00,"B","Warn" +"1668",2018-01-04 04:00:00,"C","Error" +"1669",2018-01-04 04:20:00,"A","Attach" +"1670",2018-01-04 04:40:00,"B","Check with author" +"1671",2018-01-04 05:00:00,"B","Check with author" +"1672",2018-01-04 05:20:00,"C","Debug" +"1673",2018-01-04 05:40:00,"B","Debug" +"1674",2018-01-04 06:00:00,"A","Error" +"1675",2018-01-04 06:20:00,"B","Debug" +"1676",2018-01-04 06:40:00,"C","No clue" +"1677",2018-01-04 07:00:00,"A","Limit" +"1678",2018-01-04 07:20:00,"C","Limit" +"1679",2018-01-04 07:40:00,"A","Attach" +"1680",2018-01-04 08:00:00,"A","No clue" +"1681",2018-01-04 08:20:00,"B","Warn" +"1682",2018-01-04 08:40:00,"B","Debug" +"1683",2018-01-04 09:00:00,"B","No clue" +"1684",2018-01-04 09:20:00,"A","Debug" +"1685",2018-01-04 09:40:00,"A","Attach" +"1686",2018-01-04 10:00:00,"B","No clue" +"1687",2018-01-04 10:20:00,"C","Attach" +"1688",2018-01-04 10:40:00,"C","Debug" +"1689",2018-01-04 11:00:00,"A","Error" +"1690",2018-01-04 11:20:00,"C","Debug" +"1691",2018-01-04 11:40:00,"C","Error" +"1692",2018-01-04 12:00:00,"B","Limit" +"1693",2018-01-04 12:20:00,"A","Limit" +"1694",2018-01-04 12:40:00,"A","Warn" +"1695",2018-01-04 13:00:00,"A","Error" +"1696",2018-01-04 13:20:00,"B","Check with author" +"1697",2018-01-04 13:40:00,"A","Debug" +"1698",2018-01-04 14:00:00,"C","Attach" +"1699",2018-01-04 14:20:00,"B","Warn" +"1700",2018-01-04 14:40:00,"B","No clue" +"1701",2018-01-04 15:00:00,"B","Check with author" +"1702",2018-01-04 15:20:00,"B","Warn" +"1703",2018-01-04 15:40:00,"B","Warn" +"1704",2018-01-04 16:00:00,"B","Warn" +"1705",2018-01-04 16:20:00,"B","Error" +"1706",2018-01-04 16:40:00,"A","Warn" +"1707",2018-01-04 17:00:00,"C","Warn" +"1708",2018-01-04 17:20:00,"C","Error" +"1709",2018-01-04 17:40:00,"B","Limit" +"1710",2018-01-04 18:00:00,"A","Error" +"1711",2018-01-04 18:20:00,"A","Debug" +"1712",2018-01-04 18:40:00,"C","Attach" +"1713",2018-01-04 19:00:00,"B","No clue" +"1714",2018-01-04 19:20:00,"A","Error" +"1715",2018-01-04 19:40:00,"C","No clue" +"1716",2018-01-04 20:00:00,"B","Error" +"1717",2018-01-04 20:20:00,"A","Limit" +"1718",2018-01-04 20:40:00,"A","Error" +"1719",2018-01-04 21:00:00,"A","Check with author" +"1720",2018-01-04 21:20:00,"C","Error" +"1721",2018-01-04 21:40:00,"B","No clue" +"1722",2018-01-04 22:00:00,"A","Debug" +"1723",2018-01-04 22:20:00,"A","Debug" +"1724",2018-01-04 22:40:00,"B","No clue" +"1725",2018-01-04 23:00:00,"C","Warn" +"1726",2018-01-04 23:20:00,"C","Debug" +"1727",2018-01-04 23:40:00,"A","Check with author" +"1728",2018-01-05 00:00:00,"B","Debug" +"1729",2018-01-05 00:20:00,"A","No clue" +"1730",2018-01-05 00:40:00,"B","Warn" +"1731",2018-01-05 01:00:00,"C","Limit" +"1732",2018-01-05 01:20:00,"B","Error" +"1733",2018-01-05 01:40:00,"C","Debug" +"1734",2018-01-05 02:00:00,"C","Debug" +"1735",2018-01-05 02:20:00,"B","Warn" +"1736",2018-01-05 02:40:00,"B","Debug" +"1737",2018-01-05 03:00:00,"C","Check with author" +"1738",2018-01-05 03:20:00,"A","Debug" +"1739",2018-01-05 03:40:00,"C","Check with author" +"1740",2018-01-05 04:00:00,"C","Check with author" +"1741",2018-01-05 04:20:00,"C","Warn" +"1742",2018-01-05 04:40:00,"B","Limit" +"1743",2018-01-05 05:00:00,"B","No clue" +"1744",2018-01-05 05:20:00,"B","Attach" +"1745",2018-01-05 05:40:00,"C","Check with author" +"1746",2018-01-05 06:00:00,"A","Debug" +"1747",2018-01-05 06:20:00,"B","Error" +"1748",2018-01-05 06:40:00,"C","Check with author" +"1749",2018-01-05 07:00:00,"B","Check with author" +"1750",2018-01-05 07:20:00,"C","Check with author" +"1751",2018-01-05 07:40:00,"B","Error" +"1752",2018-01-05 08:00:00,"A","Warn" +"1753",2018-01-05 08:20:00,"A","Check with author" +"1754",2018-01-05 08:40:00,"C","No clue" +"1755",2018-01-05 09:00:00,"A","Attach" +"1756",2018-01-05 09:20:00,"C","No clue" +"1757",2018-01-05 09:40:00,"C","No clue" +"1758",2018-01-05 10:00:00,"C","Warn" +"1759",2018-01-05 10:20:00,"A","Warn" +"1760",2018-01-05 10:40:00,"B","Attach" +"1761",2018-01-05 11:00:00,"B","Limit" +"1762",2018-01-05 11:20:00,"C","Warn" +"1763",2018-01-05 11:40:00,"B","Error" +"1764",2018-01-05 12:00:00,"C","Warn" +"1765",2018-01-05 12:20:00,"B","Warn" +"1766",2018-01-05 12:40:00,"C","Warn" +"1767",2018-01-05 13:00:00,"B","Limit" +"1768",2018-01-05 13:20:00,"B","Attach" +"1769",2018-01-05 13:40:00,"A","Limit" +"1770",2018-01-05 14:00:00,"C","Debug" +"1771",2018-01-01 12:00:00,"A","Check with author" +"1772",2018-01-01 12:20:00,"C","Check with author" +"1773",2018-01-01 12:40:00,"C","No clue" +"1774",2018-01-01 13:00:00,"C","Error" +"1775",2018-01-01 13:20:00,"C","Warn" +"1776",2018-01-01 13:40:00,"A","Warn" +"1777",2018-01-01 14:00:00,"B","No clue" +"1778",2018-01-01 14:20:00,"B","Debug" +"1779",2018-01-01 14:40:00,"C","Error" +"1780",2018-01-01 15:00:00,"A","Attach" +"1781",2018-01-01 15:20:00,"B","Error" +"1782",2018-01-01 15:40:00,"C","Debug" +"1783",2018-01-01 16:00:00,"A","Attach" +"1784",2018-01-01 16:20:00,"C","Debug" +"1785",2018-01-01 16:40:00,"B","Check with author" +"1786",2018-01-01 17:00:00,"A","Debug" +"1787",2018-01-01 17:20:00,"C","Limit" +"1788",2018-01-01 17:40:00,"B","Error" +"1789",2018-01-01 18:00:00,"B","Limit" +"1790",2018-01-01 18:20:00,"B","Attach" +"1791",2018-01-01 18:40:00,"A","Error" +"1792",2018-01-01 19:00:00,"C","Debug" +"1793",2018-01-01 19:20:00,"C","Limit" +"1794",2018-01-01 19:40:00,"B","Error" +"1795",2018-01-01 20:00:00,"A","Attach" +"1796",2018-01-01 20:20:00,"C","Error" +"1797",2018-01-01 20:40:00,"A","Error" +"1798",2018-01-01 21:00:00,"B","No clue" +"1799",2018-01-01 21:20:00,"C","Error" +"1800",2018-01-01 21:40:00,"B","Warn" +"1801",2018-01-01 22:00:00,"B","Error" +"1802",2018-01-01 22:20:00,"B","Error" +"1803",2018-01-01 22:40:00,"B","Warn" +"1804",2018-01-01 23:00:00,"A","Limit" +"1805",2018-01-01 23:20:00,"B","Check with author" +"1806",2018-01-01 23:40:00,"A","Error" +"1807",2018-01-02 00:00:00,"B","No clue" +"1808",2018-01-02 00:20:00,"A","Check with author" +"1809",2018-01-02 00:40:00,"C","Attach" +"1810",2018-01-02 01:00:00,"C","Warn" +"1811",2018-01-02 01:20:00,"C","No clue" +"1812",2018-01-02 01:40:00,"A","Attach" +"1813",2018-01-02 02:00:00,"B","Check with author" +"1814",2018-01-02 02:20:00,"C","Warn" +"1815",2018-01-02 02:40:00,"B","Limit" +"1816",2018-01-02 03:00:00,"C","Warn" +"1817",2018-01-02 03:20:00,"B","Attach" +"1818",2018-01-02 03:40:00,"B","Error" +"1819",2018-01-02 04:00:00,"A","Debug" +"1820",2018-01-02 04:20:00,"B","Warn" +"1821",2018-01-02 04:40:00,"A","Attach" +"1822",2018-01-02 05:00:00,"C","Check with author" +"1823",2018-01-02 05:20:00,"A","Attach" +"1824",2018-01-02 05:40:00,"B","Attach" +"1825",2018-01-02 06:00:00,"B","Limit" +"1826",2018-01-02 06:20:00,"C","Error" +"1827",2018-01-02 06:40:00,"B","No clue" +"1828",2018-01-02 07:00:00,"B","No clue" +"1829",2018-01-02 07:20:00,"A","Attach" +"1830",2018-01-02 07:40:00,"C","Limit" +"1831",2018-01-02 08:00:00,"A","Debug" +"1832",2018-01-02 08:20:00,"B","Check with author" +"1833",2018-01-02 08:40:00,"B","Error" +"1834",2018-01-02 09:00:00,"B","Error" +"1835",2018-01-02 09:20:00,"B","Debug" +"1836",2018-01-02 09:40:00,"C","No clue" +"1837",2018-01-02 10:00:00,"B","No clue" +"1838",2018-01-02 10:20:00,"C","Debug" +"1839",2018-01-02 10:40:00,"A","Check with author" +"1840",2018-01-02 11:00:00,"C","Attach" +"1841",2018-01-02 11:20:00,"C","Limit" +"1842",2018-01-02 11:40:00,"B","No clue" +"1843",2018-01-02 12:00:00,"C","Error" +"1844",2018-01-02 12:20:00,"B","Warn" +"1845",2018-01-02 12:40:00,"A","Attach" +"1846",2018-01-02 13:00:00,"B","Warn" +"1847",2018-01-02 13:20:00,"B","No clue" +"1848",2018-01-02 13:40:00,"A","Attach" +"1849",2018-01-02 14:00:00,"A","Error" +"1850",2018-01-02 14:20:00,"A","Check with author" +"1851",2018-01-02 14:40:00,"C","Warn" +"1852",2018-01-02 15:00:00,"C","Attach" +"1853",2018-01-02 15:20:00,"B","Warn" +"1854",2018-01-02 15:40:00,"A","Warn" +"1855",2018-01-02 16:00:00,"A","Debug" +"1856",2018-01-02 16:20:00,"B","Check with author" +"1857",2018-01-02 16:40:00,"A","Debug" +"1858",2018-01-02 17:00:00,"C","Check with author" +"1859",2018-01-02 17:20:00,"A","Warn" +"1860",2018-01-02 17:40:00,"B","Attach" +"1861",2018-01-02 18:00:00,"B","Limit" +"1862",2018-01-02 18:20:00,"C","Check with author" +"1863",2018-01-02 18:40:00,"B","Check with author" +"1864",2018-01-02 19:00:00,"C","Check with author" +"1865",2018-01-02 19:20:00,"B","Limit" +"1866",2018-01-02 19:40:00,"C","Check with author" +"1867",2018-01-02 20:00:00,"A","Debug" +"1868",2018-01-02 20:20:00,"A","Limit" +"1869",2018-01-02 20:40:00,"C","Error" +"1870",2018-01-02 21:00:00,"B","No clue" +"1871",2018-01-02 21:20:00,"A","Attach" +"1872",2018-01-02 21:40:00,"A","Attach" +"1873",2018-01-02 22:00:00,"C","Warn" +"1874",2018-01-02 22:20:00,"C","Error" +"1875",2018-01-02 22:40:00,"A","Debug" +"1876",2018-01-02 23:00:00,"C","Attach" +"1877",2018-01-02 23:20:00,"C","No clue" +"1878",2018-01-02 23:40:00,"B","Warn" +"1879",2018-01-03 00:00:00,"A","Limit" +"1880",2018-01-03 00:20:00,"B","Limit" +"1881",2018-01-03 00:40:00,"B","Debug" +"1882",2018-01-03 01:00:00,"A","Error" +"1883",2018-01-03 01:20:00,"B","Attach" +"1884",2018-01-03 01:40:00,"C","Check with author" +"1885",2018-01-03 02:00:00,"A","Attach" +"1886",2018-01-03 02:20:00,"A","Limit" +"1887",2018-01-03 02:40:00,"B","Warn" +"1888",2018-01-03 03:00:00,"B","Limit" +"1889",2018-01-03 03:20:00,"C","Attach" +"1890",2018-01-03 03:40:00,"B","Debug" +"1891",2018-01-03 04:00:00,"B","Debug" +"1892",2018-01-03 04:20:00,"A","Attach" +"1893",2018-01-03 04:40:00,"B","Check with author" +"1894",2018-01-03 05:00:00,"C","Error" +"1895",2018-01-03 05:20:00,"C","Debug" +"1896",2018-01-03 05:40:00,"C","Debug" +"1897",2018-01-03 06:00:00,"A","Attach" +"1898",2018-01-03 06:20:00,"A","Limit" +"1899",2018-01-03 06:40:00,"A","Attach" +"1900",2018-01-03 07:00:00,"A","Warn" +"1901",2018-01-03 07:20:00,"B","No clue" +"1902",2018-01-03 07:40:00,"C","Attach" +"1903",2018-01-03 08:00:00,"B","Debug" +"1904",2018-01-03 08:20:00,"C","Check with author" +"1905",2018-01-03 08:40:00,"B","Error" +"1906",2018-01-03 09:00:00,"C","Warn" +"1907",2018-01-03 09:20:00,"B","Error" +"1908",2018-01-03 09:40:00,"B","Attach" +"1909",2018-01-03 10:00:00,"A","Attach" +"1910",2018-01-03 10:20:00,"C","Error" +"1911",2018-01-03 10:40:00,"C","Check with author" +"1912",2018-01-03 11:00:00,"A","No clue" +"1913",2018-01-03 11:20:00,"B","Error" +"1914",2018-01-03 11:40:00,"A","Error" +"1915",2018-01-03 12:00:00,"B","Attach" +"1916",2018-01-03 12:20:00,"C","Check with author" +"1917",2018-01-03 12:40:00,"A","Debug" +"1918",2018-01-03 13:00:00,"A","No clue" +"1919",2018-01-03 13:20:00,"A","Check with author" +"1920",2018-01-03 13:40:00,"A","Warn" +"1921",2018-01-03 14:00:00,"A","Debug" +"1922",2018-01-03 14:20:00,"B","Attach" +"1923",2018-01-03 14:40:00,"C","Attach" +"1924",2018-01-03 15:00:00,"B","Attach" +"1925",2018-01-03 15:20:00,"A","No clue" +"1926",2018-01-03 15:40:00,"B","Warn" +"1927",2018-01-03 16:00:00,"C","Warn" +"1928",2018-01-03 16:20:00,"A","Error" +"1929",2018-01-03 16:40:00,"A","Debug" +"1930",2018-01-03 17:00:00,"A","No clue" +"1931",2018-01-03 17:20:00,"A","Warn" +"1932",2018-01-03 17:40:00,"B","Attach" +"1933",2018-01-03 18:00:00,"A","No clue" +"1934",2018-01-03 18:20:00,"A","Check with author" +"1935",2018-01-03 18:40:00,"A","Limit" +"1936",2018-01-03 19:00:00,"C","Attach" +"1937",2018-01-03 19:20:00,"A","Debug" +"1938",2018-01-03 19:40:00,"A","Warn" +"1939",2018-01-03 20:00:00,"C","Debug" +"1940",2018-01-03 20:20:00,"A","Debug" +"1941",2018-01-03 20:40:00,"C","Debug" +"1942",2018-01-03 21:00:00,"A","No clue" +"1943",2018-01-03 21:20:00,"B","Attach" +"1944",2018-01-03 21:40:00,"A","Debug" +"1945",2018-01-03 22:00:00,"B","Warn" +"1946",2018-01-03 22:20:00,"C","Attach" +"1947",2018-01-03 22:40:00,"C","Debug" +"1948",2018-01-03 23:00:00,"C","Warn" +"1949",2018-01-03 23:20:00,"A","Error" +"1950",2018-01-03 23:40:00,"B","Warn" +"1951",2018-01-04 00:00:00,"C","Warn" +"1952",2018-01-04 00:20:00,"B","Error" +"1953",2018-01-04 00:40:00,"C","Check with author" +"1954",2018-01-04 01:00:00,"C","Warn" +"1955",2018-01-04 01:20:00,"A","Attach" +"1956",2018-01-04 01:40:00,"C","Attach" +"1957",2018-01-04 02:00:00,"B","Warn" +"1958",2018-01-04 02:20:00,"B","Check with author" +"1959",2018-01-04 02:40:00,"A","No clue" +"1960",2018-01-04 03:00:00,"A","Debug" +"1961",2018-01-04 03:20:00,"C","Error" +"1962",2018-01-04 03:40:00,"C","Error" +"1963",2018-01-04 04:00:00,"A","Attach" +"1964",2018-01-04 04:20:00,"A","Check with author" +"1965",2018-01-04 04:40:00,"B","Debug" +"1966",2018-01-04 05:00:00,"B","Check with author" +"1967",2018-01-04 05:20:00,"C","Warn" +"1968",2018-01-04 05:40:00,"B","Debug" +"1969",2018-01-04 06:00:00,"A","Attach" +"1970",2018-01-04 06:20:00,"B","Error" +"1971",2018-01-04 06:40:00,"B","Attach" +"1972",2018-01-04 07:00:00,"A","No clue" +"1973",2018-01-04 07:20:00,"B","Limit" +"1974",2018-01-04 07:40:00,"B","Check with author" +"1975",2018-01-04 08:00:00,"A","Debug" +"1976",2018-01-04 08:20:00,"B","Warn" +"1977",2018-01-04 08:40:00,"B","Error" +"1978",2018-01-04 09:00:00,"A","No clue" +"1979",2018-01-04 09:20:00,"B","Warn" +"1980",2018-01-04 09:40:00,"C","Limit" +"1981",2018-01-04 10:00:00,"B","Error" +"1982",2018-01-04 10:20:00,"C","Attach" +"1983",2018-01-04 10:40:00,"C","Warn" +"1984",2018-01-04 11:00:00,"C","No clue" +"1985",2018-01-04 11:20:00,"A","Debug" +"1986",2018-01-04 11:40:00,"A","Error" +"1987",2018-01-04 12:00:00,"B","Check with author" +"1988",2018-01-04 12:20:00,"B","Limit" +"1989",2018-01-04 12:40:00,"B","Warn" +"1990",2018-01-04 13:00:00,"A","Warn" +"1991",2018-01-04 13:20:00,"B","Debug" +"1992",2018-01-04 13:40:00,"A","No clue" +"1993",2018-01-04 14:00:00,"B","Limit" +"1994",2018-01-04 14:20:00,"A","Check with author" +"1995",2018-01-04 14:40:00,"A","Check with author" +"1996",2018-01-04 15:00:00,"B","Warn" +"1997",2018-01-04 15:20:00,"B","Check with author" +"1998",2018-01-04 15:40:00,"B","Check with author" +"1999",2018-01-04 16:00:00,"C","Debug" +"2000",2018-01-04 16:20:00,"B","Debug" +"2001",2018-01-04 16:40:00,"A","Attach" +"2002",2018-01-04 17:00:00,"A","Debug" +"2003",2018-01-04 17:20:00,"A","No clue" +"2004",2018-01-04 17:40:00,"C","Debug" +"2005",2018-01-04 18:00:00,"A","Limit" +"2006",2018-01-04 18:20:00,"C","Check with author" +"2007",2018-01-04 18:40:00,"C","Debug" +"2008",2018-01-04 19:00:00,"B","Warn" +"2009",2018-01-04 19:20:00,"B","Check with author" +"2010",2018-01-04 19:40:00,"A","Error" +"2011",2018-01-04 20:00:00,"A","Debug" +"2012",2018-01-04 20:20:00,"C","Warn" +"2013",2018-01-04 20:40:00,"A","Warn" +"2014",2018-01-04 21:00:00,"A","No clue" +"2015",2018-01-04 21:20:00,"B","Warn" +"2016",2018-01-04 21:40:00,"B","Debug" +"2017",2018-01-04 22:00:00,"A","No clue" +"2018",2018-01-04 22:20:00,"B","Error" +"2019",2018-01-04 22:40:00,"A","Attach" +"2020",2018-01-04 23:00:00,"B","Debug" +"2021",2018-01-04 23:20:00,"B","Error" +"2022",2018-01-04 23:40:00,"C","Attach" +"2023",2018-01-05 00:00:00,"B","Warn" +"2024",2018-01-05 00:20:00,"A","Warn" +"2025",2018-01-05 00:40:00,"C","Attach" +"2026",2018-01-05 01:00:00,"C","Attach" +"2027",2018-01-05 01:20:00,"C","Limit" +"2028",2018-01-05 01:40:00,"B","No clue" +"2029",2018-01-05 02:00:00,"B","Warn" +"2030",2018-01-05 02:20:00,"A","No clue" +"2031",2018-01-05 02:40:00,"B","No clue" +"2032",2018-01-05 03:00:00,"C","Attach" +"2033",2018-01-05 03:20:00,"A","Warn" +"2034",2018-01-05 03:40:00,"A","No clue" +"2035",2018-01-05 04:00:00,"B","Debug" +"2036",2018-01-05 04:20:00,"A","No clue" +"2037",2018-01-05 04:40:00,"C","Limit" +"2038",2018-01-05 05:00:00,"B","Check with author" +"2039",2018-01-05 05:20:00,"C","Limit" +"2040",2018-01-05 05:40:00,"B","Limit" +"2041",2018-01-05 06:00:00,"A","Warn" +"2042",2018-01-05 06:20:00,"B","No clue" +"2043",2018-01-05 06:40:00,"C","Error" +"2044",2018-01-05 07:00:00,"A","Error" +"2045",2018-01-05 07:20:00,"C","Attach" +"2046",2018-01-05 07:40:00,"B","Check with author" +"2047",2018-01-05 08:00:00,"C","Debug" +"2048",2018-01-05 08:20:00,"A","Debug" +"2049",2018-01-05 08:40:00,"A","Limit" +"2050",2018-01-05 09:00:00,"B","Limit" +"2051",2018-01-05 09:20:00,"C","Warn" +"2052",2018-01-05 09:40:00,"B","Limit" +"2053",2018-01-05 10:00:00,"C","Check with author" +"2054",2018-01-05 10:20:00,"A","Warn" +"2055",2018-01-05 10:40:00,"A","Debug" +"2056",2018-01-05 11:00:00,"B","Error" +"2057",2018-01-05 11:20:00,"A","Debug" +"2058",2018-01-05 11:40:00,"C","Check with author" +"2059",2018-01-05 12:00:00,"C","Error" +"2060",2018-01-05 12:20:00,"A","Error" +"2061",2018-01-05 12:40:00,"A","No clue" +"2062",2018-01-05 13:00:00,"A","Error" +"2063",2018-01-05 13:20:00,"A","Attach" +"2064",2018-01-05 13:40:00,"B","No clue" +"2065",2018-01-05 14:00:00,"B","Check with author" +"2066",2018-01-01 12:00:00,"A","Attach" +"2067",2018-01-01 12:20:00,"A","Check with author" +"2068",2018-01-01 12:40:00,"C","Attach" +"2069",2018-01-01 13:00:00,"B","Warn" +"2070",2018-01-01 13:20:00,"A","Limit" +"2071",2018-01-01 13:40:00,"A","No clue" +"2072",2018-01-01 14:00:00,"C","Limit" +"2073",2018-01-01 14:20:00,"C","Attach" +"2074",2018-01-01 14:40:00,"A","Limit" +"2075",2018-01-01 15:00:00,"A","No clue" +"2076",2018-01-01 15:20:00,"A","Check with author" +"2077",2018-01-01 15:40:00,"B","Check with author" +"2078",2018-01-01 16:00:00,"B","Error" +"2079",2018-01-01 16:20:00,"B","Check with author" +"2080",2018-01-01 16:40:00,"A","Check with author" +"2081",2018-01-01 17:00:00,"A","Debug" +"2082",2018-01-01 17:20:00,"A","Limit" +"2083",2018-01-01 17:40:00,"C","Warn" +"2084",2018-01-01 18:00:00,"A","Debug" +"2085",2018-01-01 18:20:00,"B","Warn" +"2086",2018-01-01 18:40:00,"B","Debug" +"2087",2018-01-01 19:00:00,"B","Error" +"2088",2018-01-01 19:20:00,"A","Limit" +"2089",2018-01-01 19:40:00,"C","Warn" +"2090",2018-01-01 20:00:00,"B","Error" +"2091",2018-01-01 20:20:00,"C","Check with author" +"2092",2018-01-01 20:40:00,"B","Limit" +"2093",2018-01-01 21:00:00,"B","Check with author" +"2094",2018-01-01 21:20:00,"C","Warn" +"2095",2018-01-01 21:40:00,"B","Error" +"2096",2018-01-01 22:00:00,"C","Error" +"2097",2018-01-01 22:20:00,"A","Check with author" +"2098",2018-01-01 22:40:00,"B","Attach" +"2099",2018-01-01 23:00:00,"A","Attach" +"2100",2018-01-01 23:20:00,"B","Check with author" +"2101",2018-01-01 23:40:00,"B","No clue" +"2102",2018-01-02 00:00:00,"C","No clue" +"2103",2018-01-02 00:20:00,"C","Error" +"2104",2018-01-02 00:40:00,"C","Warn" +"2105",2018-01-02 01:00:00,"B","No clue" +"2106",2018-01-02 01:20:00,"C","Attach" +"2107",2018-01-02 01:40:00,"B","Limit" +"2108",2018-01-02 02:00:00,"C","Attach" +"2109",2018-01-02 02:20:00,"A","Warn" +"2110",2018-01-02 02:40:00,"A","Check with author" +"2111",2018-01-02 03:00:00,"C","Attach" +"2112",2018-01-02 03:20:00,"C","No clue" +"2113",2018-01-02 03:40:00,"A","Attach" +"2114",2018-01-02 04:00:00,"A","Error" +"2115",2018-01-02 04:20:00,"B","Debug" +"2116",2018-01-02 04:40:00,"B","Debug" +"2117",2018-01-02 05:00:00,"A","Warn" +"2118",2018-01-02 05:20:00,"B","Attach" +"2119",2018-01-02 05:40:00,"B","Error" +"2120",2018-01-02 06:00:00,"C","Warn" +"2121",2018-01-02 06:20:00,"B","Attach" +"2122",2018-01-02 06:40:00,"A","Attach" +"2123",2018-01-02 07:00:00,"B","Error" +"2124",2018-01-02 07:20:00,"C","No clue" +"2125",2018-01-02 07:40:00,"B","No clue" +"2126",2018-01-02 08:00:00,"A","Error" +"2127",2018-01-02 08:20:00,"B","Debug" +"2128",2018-01-02 08:40:00,"B","Check with author" +"2129",2018-01-02 09:00:00,"A","Limit" +"2130",2018-01-02 09:20:00,"C","Attach" +"2131",2018-01-02 09:40:00,"B","Debug" +"2132",2018-01-02 10:00:00,"B","Check with author" +"2133",2018-01-02 10:20:00,"A","Debug" +"2134",2018-01-02 10:40:00,"B","No clue" +"2135",2018-01-02 11:00:00,"C","Check with author" +"2136",2018-01-02 11:20:00,"A","Attach" +"2137",2018-01-02 11:40:00,"A","Debug" +"2138",2018-01-02 12:00:00,"A","Limit" +"2139",2018-01-02 12:20:00,"A","Attach" +"2140",2018-01-02 12:40:00,"C","Check with author" +"2141",2018-01-02 13:00:00,"C","Debug" +"2142",2018-01-02 13:20:00,"A","Limit" +"2143",2018-01-02 13:40:00,"C","Limit" +"2144",2018-01-02 14:00:00,"C","Check with author" +"2145",2018-01-02 14:20:00,"B","Error" +"2146",2018-01-02 14:40:00,"C","Limit" +"2147",2018-01-02 15:00:00,"A","Error" +"2148",2018-01-02 15:20:00,"B","Check with author" +"2149",2018-01-02 15:40:00,"B","No clue" +"2150",2018-01-02 16:00:00,"C","Error" +"2151",2018-01-02 16:20:00,"B","Error" +"2152",2018-01-02 16:40:00,"A","No clue" +"2153",2018-01-02 17:00:00,"C","Check with author" +"2154",2018-01-02 17:20:00,"A","Warn" +"2155",2018-01-02 17:40:00,"B","Debug" +"2156",2018-01-02 18:00:00,"B","Limit" +"2157",2018-01-02 18:20:00,"A","No clue" +"2158",2018-01-02 18:40:00,"A","Debug" +"2159",2018-01-02 19:00:00,"A","No clue" +"2160",2018-01-02 19:20:00,"C","Warn" +"2161",2018-01-02 19:40:00,"B","Debug" +"2162",2018-01-02 20:00:00,"B","Check with author" +"2163",2018-01-02 20:20:00,"C","Limit" +"2164",2018-01-02 20:40:00,"C","Debug" +"2165",2018-01-02 21:00:00,"C","No clue" +"2166",2018-01-02 21:20:00,"B","Check with author" +"2167",2018-01-02 21:40:00,"B","Attach" +"2168",2018-01-02 22:00:00,"A","Limit" +"2169",2018-01-02 22:20:00,"A","Error" +"2170",2018-01-02 22:40:00,"C","Attach" +"2171",2018-01-02 23:00:00,"C","Error" +"2172",2018-01-02 23:20:00,"C","Attach" +"2173",2018-01-02 23:40:00,"A","Limit" +"2174",2018-01-03 00:00:00,"B","Warn" +"2175",2018-01-03 00:20:00,"C","Limit" +"2176",2018-01-03 00:40:00,"B","No clue" +"2177",2018-01-03 01:00:00,"A","Debug" +"2178",2018-01-03 01:20:00,"C","No clue" +"2179",2018-01-03 01:40:00,"A","Debug" +"2180",2018-01-03 02:00:00,"B","Error" +"2181",2018-01-03 02:20:00,"A","Attach" +"2182",2018-01-03 02:40:00,"C","Limit" +"2183",2018-01-03 03:00:00,"C","Check with author" +"2184",2018-01-03 03:20:00,"A","Debug" +"2185",2018-01-03 03:40:00,"A","Check with author" +"2186",2018-01-03 04:00:00,"B","Warn" +"2187",2018-01-03 04:20:00,"A","Error" +"2188",2018-01-03 04:40:00,"A","Limit" +"2189",2018-01-03 05:00:00,"A","Debug" +"2190",2018-01-03 05:20:00,"A","Attach" +"2191",2018-01-03 05:40:00,"A","Attach" +"2192",2018-01-03 06:00:00,"B","Limit" +"2193",2018-01-03 06:20:00,"C","Limit" +"2194",2018-01-03 06:40:00,"C","Warn" +"2195",2018-01-03 07:00:00,"B","Warn" +"2196",2018-01-03 07:20:00,"C","Debug" +"2197",2018-01-03 07:40:00,"A","Error" +"2198",2018-01-03 08:00:00,"B","Limit" +"2199",2018-01-03 08:20:00,"A","Warn" +"2200",2018-01-03 08:40:00,"C","Warn" +"2201",2018-01-03 09:00:00,"A","Error" +"2202",2018-01-03 09:20:00,"B","Warn" +"2203",2018-01-03 09:40:00,"A","Error" +"2204",2018-01-03 10:00:00,"C","Debug" +"2205",2018-01-03 10:20:00,"A","Debug" +"2206",2018-01-03 10:40:00,"C","Debug" +"2207",2018-01-03 11:00:00,"C","Debug" +"2208",2018-01-03 11:20:00,"C","Warn" +"2209",2018-01-03 11:40:00,"B","No clue" +"2210",2018-01-03 12:00:00,"B","Error" +"2211",2018-01-03 12:20:00,"C","Attach" +"2212",2018-01-03 12:40:00,"B","Debug" +"2213",2018-01-03 13:00:00,"B","Attach" +"2214",2018-01-03 13:20:00,"A","Attach" +"2215",2018-01-03 13:40:00,"B","Warn" +"2216",2018-01-03 14:00:00,"C","Limit" +"2217",2018-01-03 14:20:00,"A","Limit" +"2218",2018-01-03 14:40:00,"B","Debug" +"2219",2018-01-03 15:00:00,"B","Debug" +"2220",2018-01-03 15:20:00,"C","Error" +"2221",2018-01-03 15:40:00,"C","Check with author" +"2222",2018-01-03 16:00:00,"B","Limit" +"2223",2018-01-03 16:20:00,"C","Warn" +"2224",2018-01-03 16:40:00,"A","Check with author" +"2225",2018-01-03 17:00:00,"C","Debug" +"2226",2018-01-03 17:20:00,"C","Warn" +"2227",2018-01-03 17:40:00,"B","Check with author" +"2228",2018-01-03 18:00:00,"A","Warn" +"2229",2018-01-03 18:20:00,"C","Debug" +"2230",2018-01-03 18:40:00,"B","Attach" +"2231",2018-01-03 19:00:00,"A","Limit" +"2232",2018-01-03 19:20:00,"C","Warn" +"2233",2018-01-03 19:40:00,"B","Warn" +"2234",2018-01-03 20:00:00,"B","Warn" +"2235",2018-01-03 20:20:00,"C","Warn" +"2236",2018-01-03 20:40:00,"C","No clue" +"2237",2018-01-03 21:00:00,"C","Attach" +"2238",2018-01-03 21:20:00,"A","Check with author" +"2239",2018-01-03 21:40:00,"B","Attach" +"2240",2018-01-03 22:00:00,"B","Check with author" +"2241",2018-01-03 22:20:00,"C","Attach" +"2242",2018-01-03 22:40:00,"B","Debug" +"2243",2018-01-03 23:00:00,"B","Warn" +"2244",2018-01-03 23:20:00,"C","Limit" +"2245",2018-01-03 23:40:00,"A","Limit" +"2246",2018-01-04 00:00:00,"C","Limit" +"2247",2018-01-04 00:20:00,"A","Limit" +"2248",2018-01-04 00:40:00,"C","Limit" +"2249",2018-01-04 01:00:00,"A","Limit" +"2250",2018-01-04 01:20:00,"A","Debug" +"2251",2018-01-04 01:40:00,"B","Debug" +"2252",2018-01-04 02:00:00,"B","Warn" +"2253",2018-01-04 02:20:00,"B","Debug" +"2254",2018-01-04 02:40:00,"C","Attach" +"2255",2018-01-04 03:00:00,"C","Debug" +"2256",2018-01-04 03:20:00,"A","Debug" +"2257",2018-01-04 03:40:00,"C","Attach" +"2258",2018-01-04 04:00:00,"B","No clue" +"2259",2018-01-04 04:20:00,"C","No clue" +"2260",2018-01-04 04:40:00,"A","No clue" +"2261",2018-01-04 05:00:00,"C","Warn" +"2262",2018-01-04 05:20:00,"A","No clue" +"2263",2018-01-04 05:40:00,"A","Limit" +"2264",2018-01-04 06:00:00,"C","Limit" +"2265",2018-01-04 06:20:00,"A","Warn" +"2266",2018-01-04 06:40:00,"A","Check with author" +"2267",2018-01-04 07:00:00,"A","Warn" +"2268",2018-01-04 07:20:00,"C","No clue" +"2269",2018-01-04 07:40:00,"C","Check with author" +"2270",2018-01-04 08:00:00,"C","Check with author" +"2271",2018-01-04 08:20:00,"A","Debug" +"2272",2018-01-04 08:40:00,"C","Check with author" +"2273",2018-01-04 09:00:00,"A","Check with author" +"2274",2018-01-04 09:20:00,"A","Debug" +"2275",2018-01-04 09:40:00,"A","Attach" +"2276",2018-01-04 10:00:00,"A","Warn" +"2277",2018-01-04 10:20:00,"C","Limit" +"2278",2018-01-04 10:40:00,"C","No clue" +"2279",2018-01-04 11:00:00,"C","Attach" +"2280",2018-01-04 11:20:00,"C","Debug" +"2281",2018-01-04 11:40:00,"C","Attach" +"2282",2018-01-04 12:00:00,"C","Error" +"2283",2018-01-04 12:20:00,"C","Debug" +"2284",2018-01-04 12:40:00,"C","Error" +"2285",2018-01-04 13:00:00,"B","Error" +"2286",2018-01-04 13:20:00,"C","Attach" +"2287",2018-01-04 13:40:00,"B","Debug" +"2288",2018-01-04 14:00:00,"C","Warn" +"2289",2018-01-04 14:20:00,"A","Attach" +"2290",2018-01-04 14:40:00,"B","Error" +"2291",2018-01-04 15:00:00,"A","Limit" +"2292",2018-01-04 15:20:00,"A","Attach" +"2293",2018-01-04 15:40:00,"A","Check with author" +"2294",2018-01-04 16:00:00,"B","Warn" +"2295",2018-01-04 16:20:00,"B","No clue" +"2296",2018-01-04 16:40:00,"C","Debug" +"2297",2018-01-04 17:00:00,"A","No clue" +"2298",2018-01-04 17:20:00,"C","Warn" +"2299",2018-01-04 17:40:00,"A","Debug" +"2300",2018-01-04 18:00:00,"B","Debug" +"2301",2018-01-04 18:20:00,"A","Error" +"2302",2018-01-04 18:40:00,"A","Error" +"2303",2018-01-04 19:00:00,"C","Check with author" +"2304",2018-01-04 19:20:00,"A","Limit" +"2305",2018-01-04 19:40:00,"A","Limit" +"2306",2018-01-04 20:00:00,"A","Limit" +"2307",2018-01-04 20:20:00,"A","Error" +"2308",2018-01-04 20:40:00,"A","Error" +"2309",2018-01-04 21:00:00,"C","Check with author" +"2310",2018-01-04 21:20:00,"C","Debug" +"2311",2018-01-04 21:40:00,"B","Limit" +"2312",2018-01-04 22:00:00,"A","Debug" +"2313",2018-01-04 22:20:00,"C","Check with author" +"2314",2018-01-04 22:40:00,"A","No clue" +"2315",2018-01-04 23:00:00,"A","Error" +"2316",2018-01-04 23:20:00,"C","Attach" +"2317",2018-01-04 23:40:00,"A","Debug" +"2318",2018-01-05 00:00:00,"B","Limit" +"2319",2018-01-05 00:20:00,"A","No clue" +"2320",2018-01-05 00:40:00,"B","Check with author" +"2321",2018-01-05 01:00:00,"B","Debug" +"2322",2018-01-05 01:20:00,"A","No clue" +"2323",2018-01-05 01:40:00,"B","Limit" +"2324",2018-01-05 02:00:00,"B","Error" +"2325",2018-01-05 02:20:00,"C","Limit" +"2326",2018-01-05 02:40:00,"A","Debug" +"2327",2018-01-05 03:00:00,"A","Attach" +"2328",2018-01-05 03:20:00,"A","Check with author" +"2329",2018-01-05 03:40:00,"A","Warn" +"2330",2018-01-05 04:00:00,"A","Attach" +"2331",2018-01-05 04:20:00,"B","Warn" +"2332",2018-01-05 04:40:00,"A","Error" +"2333",2018-01-05 05:00:00,"A","No clue" +"2334",2018-01-05 05:20:00,"A","Error" +"2335",2018-01-05 05:40:00,"B","No clue" +"2336",2018-01-05 06:00:00,"B","Debug" +"2337",2018-01-05 06:20:00,"B","Check with author" +"2338",2018-01-05 06:40:00,"C","Debug" +"2339",2018-01-05 07:00:00,"B","Attach" +"2340",2018-01-05 07:20:00,"B","Error" +"2341",2018-01-05 07:40:00,"C","Limit" +"2342",2018-01-05 08:00:00,"C","Limit" +"2343",2018-01-05 08:20:00,"A","Check with author" +"2344",2018-01-05 08:40:00,"A","No clue" +"2345",2018-01-05 09:00:00,"A","Limit" +"2346",2018-01-05 09:20:00,"C","Attach" +"2347",2018-01-05 09:40:00,"A","No clue" +"2348",2018-01-05 10:00:00,"A","Warn" +"2349",2018-01-05 10:20:00,"B","Check with author" +"2350",2018-01-05 10:40:00,"C","Check with author" +"2351",2018-01-05 11:00:00,"C","Check with author" +"2352",2018-01-05 11:20:00,"A","Error" +"2353",2018-01-05 11:40:00,"A","Check with author" +"2354",2018-01-05 12:00:00,"B","Debug" +"2355",2018-01-05 12:20:00,"A","Attach" +"2356",2018-01-05 12:40:00,"B","No clue" +"2357",2018-01-05 13:00:00,"C","No clue" +"2358",2018-01-05 13:20:00,"C","Warn" +"2359",2018-01-05 13:40:00,"B","Attach" +"2360",2018-01-05 14:00:00,"C","Check with author" +"2361",2018-01-01 12:00:00,"A","No clue" +"2362",2018-01-01 12:20:00,"A","Attach" +"2363",2018-01-01 12:40:00,"C","Attach" +"2364",2018-01-01 13:00:00,"A","No clue" +"2365",2018-01-01 13:20:00,"A","Check with author" +"2366",2018-01-01 13:40:00,"B","Attach" +"2367",2018-01-01 14:00:00,"C","Debug" +"2368",2018-01-01 14:20:00,"C","Attach" +"2369",2018-01-01 14:40:00,"C","No clue" +"2370",2018-01-01 15:00:00,"B","No clue" +"2371",2018-01-01 15:20:00,"A","No clue" +"2372",2018-01-01 15:40:00,"C","Error" +"2373",2018-01-01 16:00:00,"A","Warn" +"2374",2018-01-01 16:20:00,"B","Error" +"2375",2018-01-01 16:40:00,"C","Debug" +"2376",2018-01-01 17:00:00,"C","Warn" +"2377",2018-01-01 17:20:00,"A","Check with author" +"2378",2018-01-01 17:40:00,"B","Limit" +"2379",2018-01-01 18:00:00,"B","No clue" +"2380",2018-01-01 18:20:00,"B","Limit" +"2381",2018-01-01 18:40:00,"C","Warn" +"2382",2018-01-01 19:00:00,"A","Debug" +"2383",2018-01-01 19:20:00,"A","Warn" +"2384",2018-01-01 19:40:00,"B","Attach" +"2385",2018-01-01 20:00:00,"A","Check with author" +"2386",2018-01-01 20:20:00,"A","Warn" +"2387",2018-01-01 20:40:00,"A","Debug" +"2388",2018-01-01 21:00:00,"B","Error" +"2389",2018-01-01 21:20:00,"C","Attach" +"2390",2018-01-01 21:40:00,"C","No clue" +"2391",2018-01-01 22:00:00,"C","Limit" +"2392",2018-01-01 22:20:00,"C","Limit" +"2393",2018-01-01 22:40:00,"C","Check with author" +"2394",2018-01-01 23:00:00,"C","Limit" +"2395",2018-01-01 23:20:00,"B","Debug" +"2396",2018-01-01 23:40:00,"B","No clue" +"2397",2018-01-02 00:00:00,"C","Error" +"2398",2018-01-02 00:20:00,"A","Debug" +"2399",2018-01-02 00:40:00,"A","Attach" +"2400",2018-01-02 01:00:00,"A","Check with author" +"2401",2018-01-02 01:20:00,"C","Limit" +"2402",2018-01-02 01:40:00,"B","Warn" +"2403",2018-01-02 02:00:00,"B","Attach" +"2404",2018-01-02 02:20:00,"A","Warn" +"2405",2018-01-02 02:40:00,"A","Debug" +"2406",2018-01-02 03:00:00,"B","Debug" +"2407",2018-01-02 03:20:00,"C","No clue" +"2408",2018-01-02 03:40:00,"A","No clue" +"2409",2018-01-02 04:00:00,"A","Debug" +"2410",2018-01-02 04:20:00,"B","Check with author" +"2411",2018-01-02 04:40:00,"A","Error" +"2412",2018-01-02 05:00:00,"A","Limit" +"2413",2018-01-02 05:20:00,"B","Error" +"2414",2018-01-02 05:40:00,"C","Check with author" +"2415",2018-01-02 06:00:00,"A","Debug" +"2416",2018-01-02 06:20:00,"B","Limit" +"2417",2018-01-02 06:40:00,"C","Attach" +"2418",2018-01-02 07:00:00,"A","Debug" +"2419",2018-01-02 07:20:00,"A","No clue" +"2420",2018-01-02 07:40:00,"A","Limit" +"2421",2018-01-02 08:00:00,"B","Attach" +"2422",2018-01-02 08:20:00,"A","No clue" +"2423",2018-01-02 08:40:00,"C","Warn" +"2424",2018-01-02 09:00:00,"C","Check with author" +"2425",2018-01-02 09:20:00,"B","Attach" +"2426",2018-01-02 09:40:00,"C","Error" +"2427",2018-01-02 10:00:00,"C","Error" +"2428",2018-01-02 10:20:00,"C","Debug" +"2429",2018-01-02 10:40:00,"B","Limit" +"2430",2018-01-02 11:00:00,"A","Warn" +"2431",2018-01-02 11:20:00,"B","Debug" +"2432",2018-01-02 11:40:00,"C","Attach" +"2433",2018-01-02 12:00:00,"C","Debug" +"2434",2018-01-02 12:20:00,"B","Check with author" +"2435",2018-01-02 12:40:00,"B","Error" +"2436",2018-01-02 13:00:00,"C","Warn" +"2437",2018-01-02 13:20:00,"B","No clue" +"2438",2018-01-02 13:40:00,"C","Limit" +"2439",2018-01-02 14:00:00,"C","Limit" +"2440",2018-01-02 14:20:00,"C","Check with author" +"2441",2018-01-02 14:40:00,"C","Check with author" +"2442",2018-01-02 15:00:00,"B","Check with author" +"2443",2018-01-02 15:20:00,"B","Warn" +"2444",2018-01-02 15:40:00,"B","No clue" +"2445",2018-01-02 16:00:00,"A","No clue" +"2446",2018-01-02 16:20:00,"A","Attach" +"2447",2018-01-02 16:40:00,"C","Debug" +"2448",2018-01-02 17:00:00,"B","Attach" +"2449",2018-01-02 17:20:00,"A","Limit" +"2450",2018-01-02 17:40:00,"C","Limit" +"2451",2018-01-02 18:00:00,"C","Error" +"2452",2018-01-02 18:20:00,"A","Attach" +"2453",2018-01-02 18:40:00,"B","Attach" +"2454",2018-01-02 19:00:00,"C","Limit" +"2455",2018-01-02 19:20:00,"A","Error" +"2456",2018-01-02 19:40:00,"A","No clue" +"2457",2018-01-02 20:00:00,"C","Limit" +"2458",2018-01-02 20:20:00,"C","No clue" +"2459",2018-01-02 20:40:00,"A","Warn" +"2460",2018-01-02 21:00:00,"B","Check with author" +"2461",2018-01-02 21:20:00,"B","No clue" +"2462",2018-01-02 21:40:00,"C","No clue" +"2463",2018-01-02 22:00:00,"A","No clue" +"2464",2018-01-02 22:20:00,"B","Attach" +"2465",2018-01-02 22:40:00,"B","Attach" +"2466",2018-01-02 23:00:00,"A","Error" +"2467",2018-01-02 23:20:00,"B","Error" +"2468",2018-01-02 23:40:00,"A","Limit" +"2469",2018-01-03 00:00:00,"A","No clue" +"2470",2018-01-03 00:20:00,"B","Warn" +"2471",2018-01-03 00:40:00,"A","Debug" +"2472",2018-01-03 01:00:00,"C","Limit" +"2473",2018-01-03 01:20:00,"B","No clue" +"2474",2018-01-03 01:40:00,"C","Debug" +"2475",2018-01-03 02:00:00,"B","Attach" +"2476",2018-01-03 02:20:00,"A","Error" +"2477",2018-01-03 02:40:00,"A","Attach" +"2478",2018-01-03 03:00:00,"C","Debug" +"2479",2018-01-03 03:20:00,"C","Check with author" +"2480",2018-01-03 03:40:00,"A","Error" +"2481",2018-01-03 04:00:00,"B","No clue" +"2482",2018-01-03 04:20:00,"A","Check with author" +"2483",2018-01-03 04:40:00,"B","Error" +"2484",2018-01-03 05:00:00,"A","No clue" +"2485",2018-01-03 05:20:00,"C","Warn" +"2486",2018-01-03 05:40:00,"A","No clue" +"2487",2018-01-03 06:00:00,"B","Debug" +"2488",2018-01-03 06:20:00,"A","Check with author" +"2489",2018-01-03 06:40:00,"B","Attach" +"2490",2018-01-03 07:00:00,"A","No clue" +"2491",2018-01-03 07:20:00,"A","Warn" +"2492",2018-01-03 07:40:00,"A","Error" +"2493",2018-01-03 08:00:00,"C","No clue" +"2494",2018-01-03 08:20:00,"A","Debug" +"2495",2018-01-03 08:40:00,"B","Attach" +"2496",2018-01-03 09:00:00,"C","Error" +"2497",2018-01-03 09:20:00,"A","Check with author" +"2498",2018-01-03 09:40:00,"C","Check with author" +"2499",2018-01-03 10:00:00,"A","Check with author" +"2500",2018-01-03 10:20:00,"C","Limit" +"2501",2018-01-03 10:40:00,"C","Debug" +"2502",2018-01-03 11:00:00,"A","Limit" +"2503",2018-01-03 11:20:00,"C","Attach" +"2504",2018-01-03 11:40:00,"A","Error" +"2505",2018-01-03 12:00:00,"C","Attach" +"2506",2018-01-03 12:20:00,"A","Error" +"2507",2018-01-03 12:40:00,"C","Debug" +"2508",2018-01-03 13:00:00,"A","Attach" +"2509",2018-01-03 13:20:00,"A","Warn" +"2510",2018-01-03 13:40:00,"B","Error" +"2511",2018-01-03 14:00:00,"A","Check with author" +"2512",2018-01-03 14:20:00,"C","Limit" +"2513",2018-01-03 14:40:00,"B","Warn" +"2514",2018-01-03 15:00:00,"A","Check with author" +"2515",2018-01-03 15:20:00,"A","Warn" +"2516",2018-01-03 15:40:00,"A","Limit" +"2517",2018-01-03 16:00:00,"C","No clue" +"2518",2018-01-03 16:20:00,"B","Check with author" +"2519",2018-01-03 16:40:00,"B","Warn" +"2520",2018-01-03 17:00:00,"A","Attach" +"2521",2018-01-03 17:20:00,"B","Error" +"2522",2018-01-03 17:40:00,"B","Error" +"2523",2018-01-03 18:00:00,"B","Check with author" +"2524",2018-01-03 18:20:00,"C","Error" +"2525",2018-01-03 18:40:00,"C","No clue" +"2526",2018-01-03 19:00:00,"C","Warn" +"2527",2018-01-03 19:20:00,"A","Error" +"2528",2018-01-03 19:40:00,"C","Check with author" +"2529",2018-01-03 20:00:00,"C","Debug" +"2530",2018-01-03 20:20:00,"B","No clue" +"2531",2018-01-03 20:40:00,"A","No clue" +"2532",2018-01-03 21:00:00,"A","Debug" +"2533",2018-01-03 21:20:00,"B","Limit" +"2534",2018-01-03 21:40:00,"B","Attach" +"2535",2018-01-03 22:00:00,"A","Debug" +"2536",2018-01-03 22:20:00,"A","No clue" +"2537",2018-01-03 22:40:00,"B","No clue" +"2538",2018-01-03 23:00:00,"A","Error" +"2539",2018-01-03 23:20:00,"B","No clue" +"2540",2018-01-03 23:40:00,"A","Check with author" +"2541",2018-01-04 00:00:00,"B","Debug" +"2542",2018-01-04 00:20:00,"C","Attach" +"2543",2018-01-04 00:40:00,"C","Check with author" +"2544",2018-01-04 01:00:00,"A","Limit" +"2545",2018-01-04 01:20:00,"B","Warn" +"2546",2018-01-04 01:40:00,"B","No clue" +"2547",2018-01-04 02:00:00,"B","Attach" +"2548",2018-01-04 02:20:00,"C","Check with author" +"2549",2018-01-04 02:40:00,"B","No clue" +"2550",2018-01-04 03:00:00,"A","Check with author" +"2551",2018-01-04 03:20:00,"C","Attach" +"2552",2018-01-04 03:40:00,"A","Error" +"2553",2018-01-04 04:00:00,"C","Check with author" +"2554",2018-01-04 04:20:00,"B","Error" +"2555",2018-01-04 04:40:00,"A","Error" +"2556",2018-01-04 05:00:00,"C","Warn" +"2557",2018-01-04 05:20:00,"A","Limit" +"2558",2018-01-04 05:40:00,"B","Limit" +"2559",2018-01-04 06:00:00,"C","Attach" +"2560",2018-01-04 06:20:00,"A","Limit" +"2561",2018-01-04 06:40:00,"C","Debug" +"2562",2018-01-04 07:00:00,"B","Debug" +"2563",2018-01-04 07:20:00,"B","Check with author" +"2564",2018-01-04 07:40:00,"A","Check with author" +"2565",2018-01-04 08:00:00,"C","Limit" +"2566",2018-01-04 08:20:00,"A","No clue" +"2567",2018-01-04 08:40:00,"C","Error" +"2568",2018-01-04 09:00:00,"A","Error" +"2569",2018-01-04 09:20:00,"C","Warn" +"2570",2018-01-04 09:40:00,"C","Check with author" +"2571",2018-01-04 10:00:00,"C","Attach" +"2572",2018-01-04 10:20:00,"A","Warn" +"2573",2018-01-04 10:40:00,"A","Limit" +"2574",2018-01-04 11:00:00,"C","No clue" +"2575",2018-01-04 11:20:00,"C","Warn" +"2576",2018-01-04 11:40:00,"B","Debug" +"2577",2018-01-04 12:00:00,"A","Attach" +"2578",2018-01-04 12:20:00,"B","Check with author" +"2579",2018-01-04 12:40:00,"A","Check with author" +"2580",2018-01-04 13:00:00,"B","Attach" +"2581",2018-01-04 13:20:00,"B","Debug" +"2582",2018-01-04 13:40:00,"C","Error" +"2583",2018-01-04 14:00:00,"C","Warn" +"2584",2018-01-04 14:20:00,"A","Limit" +"2585",2018-01-04 14:40:00,"C","Error" +"2586",2018-01-04 15:00:00,"A","Attach" +"2587",2018-01-04 15:20:00,"B","No clue" +"2588",2018-01-04 15:40:00,"C","Debug" +"2589",2018-01-04 16:00:00,"C","Warn" +"2590",2018-01-04 16:20:00,"A","Warn" +"2591",2018-01-04 16:40:00,"B","Attach" +"2592",2018-01-04 17:00:00,"A","No clue" +"2593",2018-01-04 17:20:00,"B","Debug" +"2594",2018-01-04 17:40:00,"B","Warn" +"2595",2018-01-04 18:00:00,"B","Warn" +"2596",2018-01-04 18:20:00,"C","Error" +"2597",2018-01-04 18:40:00,"C","Check with author" +"2598",2018-01-04 19:00:00,"A","Error" +"2599",2018-01-04 19:20:00,"A","Warn" +"2600",2018-01-04 19:40:00,"C","Check with author" +"2601",2018-01-04 20:00:00,"A","No clue" +"2602",2018-01-04 20:20:00,"C","Error" +"2603",2018-01-04 20:40:00,"A","Warn" +"2604",2018-01-04 21:00:00,"A","Warn" +"2605",2018-01-04 21:20:00,"C","Warn" +"2606",2018-01-04 21:40:00,"A","Warn" +"2607",2018-01-04 22:00:00,"C","Error" +"2608",2018-01-04 22:20:00,"B","Error" +"2609",2018-01-04 22:40:00,"B","Debug" +"2610",2018-01-04 23:00:00,"B","Attach" +"2611",2018-01-04 23:20:00,"C","Limit" +"2612",2018-01-04 23:40:00,"C","Check with author" +"2613",2018-01-05 00:00:00,"B","Warn" +"2614",2018-01-05 00:20:00,"A","Attach" +"2615",2018-01-05 00:40:00,"C","Attach" +"2616",2018-01-05 01:00:00,"A","Check with author" +"2617",2018-01-05 01:20:00,"A","Limit" +"2618",2018-01-05 01:40:00,"B","Limit" +"2619",2018-01-05 02:00:00,"A","Limit" +"2620",2018-01-05 02:20:00,"A","No clue" +"2621",2018-01-05 02:40:00,"C","Error" +"2622",2018-01-05 03:00:00,"B","Debug" +"2623",2018-01-05 03:20:00,"A","Limit" +"2624",2018-01-05 03:40:00,"A","No clue" +"2625",2018-01-05 04:00:00,"A","Warn" +"2626",2018-01-05 04:20:00,"B","Warn" +"2627",2018-01-05 04:40:00,"B","Warn" +"2628",2018-01-05 05:00:00,"C","Warn" +"2629",2018-01-05 05:20:00,"B","Error" +"2630",2018-01-05 05:40:00,"C","Error" +"2631",2018-01-05 06:00:00,"A","Error" +"2632",2018-01-05 06:20:00,"C","Warn" +"2633",2018-01-05 06:40:00,"C","Limit" +"2634",2018-01-05 07:00:00,"A","Warn" +"2635",2018-01-05 07:20:00,"A","Check with author" +"2636",2018-01-05 07:40:00,"A","Error" +"2637",2018-01-05 08:00:00,"A","Error" +"2638",2018-01-05 08:20:00,"A","Limit" +"2639",2018-01-05 08:40:00,"B","Debug" +"2640",2018-01-05 09:00:00,"A","Attach" +"2641",2018-01-05 09:20:00,"C","Attach" +"2642",2018-01-05 09:40:00,"B","Warn" +"2643",2018-01-05 10:00:00,"A","Limit" +"2644",2018-01-05 10:20:00,"B","Attach" +"2645",2018-01-05 10:40:00,"B","No clue" +"2646",2018-01-05 11:00:00,"B","Check with author" +"2647",2018-01-05 11:20:00,"B","Warn" +"2648",2018-01-05 11:40:00,"B","Limit" +"2649",2018-01-05 12:00:00,"A","Check with author" +"2650",2018-01-05 12:20:00,"B","Check with author" +"2651",2018-01-05 12:40:00,"B","Error" +"2652",2018-01-05 13:00:00,"C","Debug" +"2653",2018-01-05 13:20:00,"A","No clue" +"2654",2018-01-05 13:40:00,"C","No clue" +"2655",2018-01-05 14:00:00,"B","Limit" +"2656",2018-01-01 12:00:00,"B","Debug" +"2657",2018-01-01 12:20:00,"C","Debug" +"2658",2018-01-01 12:40:00,"C","No clue" +"2659",2018-01-01 13:00:00,"A","Debug" +"2660",2018-01-01 13:20:00,"A","Limit" +"2661",2018-01-01 13:40:00,"C","Check with author" +"2662",2018-01-01 14:00:00,"C","Attach" +"2663",2018-01-01 14:20:00,"C","Check with author" +"2664",2018-01-01 14:40:00,"A","Limit" +"2665",2018-01-01 15:00:00,"B","No clue" +"2666",2018-01-01 15:20:00,"B","Attach" +"2667",2018-01-01 15:40:00,"C","Warn" +"2668",2018-01-01 16:00:00,"A","Attach" +"2669",2018-01-01 16:20:00,"C","Check with author" +"2670",2018-01-01 16:40:00,"A","Warn" +"2671",2018-01-01 17:00:00,"A","Debug" +"2672",2018-01-01 17:20:00,"C","Debug" +"2673",2018-01-01 17:40:00,"B","Limit" +"2674",2018-01-01 18:00:00,"B","Limit" +"2675",2018-01-01 18:20:00,"C","Check with author" +"2676",2018-01-01 18:40:00,"A","Check with author" +"2677",2018-01-01 19:00:00,"B","Debug" +"2678",2018-01-01 19:20:00,"A","Error" +"2679",2018-01-01 19:40:00,"B","Debug" +"2680",2018-01-01 20:00:00,"A","Error" +"2681",2018-01-01 20:20:00,"C","Error" +"2682",2018-01-01 20:40:00,"C","Attach" +"2683",2018-01-01 21:00:00,"C","No clue" +"2684",2018-01-01 21:20:00,"C","Limit" +"2685",2018-01-01 21:40:00,"C","Limit" +"2686",2018-01-01 22:00:00,"C","Error" +"2687",2018-01-01 22:20:00,"A","Debug" +"2688",2018-01-01 22:40:00,"B","Limit" +"2689",2018-01-01 23:00:00,"C","No clue" +"2690",2018-01-01 23:20:00,"A","Debug" +"2691",2018-01-01 23:40:00,"C","Error" +"2692",2018-01-02 00:00:00,"B","Warn" +"2693",2018-01-02 00:20:00,"B","Debug" +"2694",2018-01-02 00:40:00,"A","Debug" +"2695",2018-01-02 01:00:00,"A","No clue" +"2696",2018-01-02 01:20:00,"C","No clue" +"2697",2018-01-02 01:40:00,"A","Limit" +"2698",2018-01-02 02:00:00,"A","Limit" +"2699",2018-01-02 02:20:00,"B","Attach" +"2700",2018-01-02 02:40:00,"C","Limit" +"2701",2018-01-02 03:00:00,"B","Error" +"2702",2018-01-02 03:20:00,"A","Check with author" +"2703",2018-01-02 03:40:00,"A","Debug" +"2704",2018-01-02 04:00:00,"B","Debug" +"2705",2018-01-02 04:20:00,"C","Attach" +"2706",2018-01-02 04:40:00,"B","Attach" +"2707",2018-01-02 05:00:00,"B","Attach" +"2708",2018-01-02 05:20:00,"A","Debug" +"2709",2018-01-02 05:40:00,"C","Attach" +"2710",2018-01-02 06:00:00,"A","Debug" +"2711",2018-01-02 06:20:00,"B","No clue" +"2712",2018-01-02 06:40:00,"C","Limit" +"2713",2018-01-02 07:00:00,"B","No clue" +"2714",2018-01-02 07:20:00,"A","Warn" +"2715",2018-01-02 07:40:00,"A","Attach" +"2716",2018-01-02 08:00:00,"C","Debug" +"2717",2018-01-02 08:20:00,"C","No clue" +"2718",2018-01-02 08:40:00,"A","Debug" +"2719",2018-01-02 09:00:00,"C","Check with author" +"2720",2018-01-02 09:20:00,"A","Debug" +"2721",2018-01-02 09:40:00,"A","Debug" +"2722",2018-01-02 10:00:00,"B","Limit" +"2723",2018-01-02 10:20:00,"C","Attach" +"2724",2018-01-02 10:40:00,"C","No clue" +"2725",2018-01-02 11:00:00,"B","Error" +"2726",2018-01-02 11:20:00,"B","Limit" +"2727",2018-01-02 11:40:00,"C","No clue" +"2728",2018-01-02 12:00:00,"B","Attach" +"2729",2018-01-02 12:20:00,"B","Debug" +"2730",2018-01-02 12:40:00,"C","No clue" +"2731",2018-01-02 13:00:00,"C","Error" +"2732",2018-01-02 13:20:00,"A","Debug" +"2733",2018-01-02 13:40:00,"C","Attach" +"2734",2018-01-02 14:00:00,"B","Check with author" +"2735",2018-01-02 14:20:00,"C","No clue" +"2736",2018-01-02 14:40:00,"B","No clue" +"2737",2018-01-02 15:00:00,"A","Limit" +"2738",2018-01-02 15:20:00,"C","Attach" +"2739",2018-01-02 15:40:00,"A","No clue" +"2740",2018-01-02 16:00:00,"B","Warn" +"2741",2018-01-02 16:20:00,"B","No clue" +"2742",2018-01-02 16:40:00,"B","Limit" +"2743",2018-01-02 17:00:00,"B","Warn" +"2744",2018-01-02 17:20:00,"B","Limit" +"2745",2018-01-02 17:40:00,"B","Warn" +"2746",2018-01-02 18:00:00,"B","Debug" +"2747",2018-01-02 18:20:00,"A","Debug" +"2748",2018-01-02 18:40:00,"B","No clue" +"2749",2018-01-02 19:00:00,"A","Error" +"2750",2018-01-02 19:20:00,"C","Warn" +"2751",2018-01-02 19:40:00,"A","Attach" +"2752",2018-01-02 20:00:00,"B","Limit" +"2753",2018-01-02 20:20:00,"A","Warn" +"2754",2018-01-02 20:40:00,"A","Limit" +"2755",2018-01-02 21:00:00,"A","Attach" +"2756",2018-01-02 21:20:00,"A","Error" +"2757",2018-01-02 21:40:00,"A","Check with author" +"2758",2018-01-02 22:00:00,"B","Limit" +"2759",2018-01-02 22:20:00,"A","Check with author" +"2760",2018-01-02 22:40:00,"A","Debug" +"2761",2018-01-02 23:00:00,"C","Warn" +"2762",2018-01-02 23:20:00,"B","Check with author" +"2763",2018-01-02 23:40:00,"C","Error" +"2764",2018-01-03 00:00:00,"B","Attach" +"2765",2018-01-03 00:20:00,"C","Attach" +"2766",2018-01-03 00:40:00,"C","Limit" +"2767",2018-01-03 01:00:00,"C","Warn" +"2768",2018-01-03 01:20:00,"A","Attach" +"2769",2018-01-03 01:40:00,"C","Check with author" +"2770",2018-01-03 02:00:00,"C","Error" +"2771",2018-01-03 02:20:00,"C","Warn" +"2772",2018-01-03 02:40:00,"C","Error" +"2773",2018-01-03 03:00:00,"B","Warn" +"2774",2018-01-03 03:20:00,"A","Debug" +"2775",2018-01-03 03:40:00,"A","Error" +"2776",2018-01-03 04:00:00,"B","Warn" +"2777",2018-01-03 04:20:00,"C","Check with author" +"2778",2018-01-03 04:40:00,"B","Check with author" +"2779",2018-01-03 05:00:00,"C","Debug" +"2780",2018-01-03 05:20:00,"C","Error" +"2781",2018-01-03 05:40:00,"C","Warn" +"2782",2018-01-03 06:00:00,"B","Check with author" +"2783",2018-01-03 06:20:00,"A","Warn" +"2784",2018-01-03 06:40:00,"C","Debug" +"2785",2018-01-03 07:00:00,"B","No clue" +"2786",2018-01-03 07:20:00,"B","Warn" +"2787",2018-01-03 07:40:00,"B","Debug" +"2788",2018-01-03 08:00:00,"A","Check with author" +"2789",2018-01-03 08:20:00,"C","Attach" +"2790",2018-01-03 08:40:00,"C","Attach" +"2791",2018-01-03 09:00:00,"B","Debug" +"2792",2018-01-03 09:20:00,"A","Limit" +"2793",2018-01-03 09:40:00,"C","Limit" +"2794",2018-01-03 10:00:00,"A","Limit" +"2795",2018-01-03 10:20:00,"C","Attach" +"2796",2018-01-03 10:40:00,"B","Debug" +"2797",2018-01-03 11:00:00,"B","Limit" +"2798",2018-01-03 11:20:00,"A","No clue" +"2799",2018-01-03 11:40:00,"A","Error" +"2800",2018-01-03 12:00:00,"C","Error" +"2801",2018-01-03 12:20:00,"A","Check with author" +"2802",2018-01-03 12:40:00,"A","Attach" +"2803",2018-01-03 13:00:00,"B","Error" +"2804",2018-01-03 13:20:00,"A","Error" +"2805",2018-01-03 13:40:00,"A","Check with author" +"2806",2018-01-03 14:00:00,"B","Limit" +"2807",2018-01-03 14:20:00,"A","Limit" +"2808",2018-01-03 14:40:00,"B","Warn" +"2809",2018-01-03 15:00:00,"C","Debug" +"2810",2018-01-03 15:20:00,"B","Warn" +"2811",2018-01-03 15:40:00,"A","Debug" +"2812",2018-01-03 16:00:00,"C","Debug" +"2813",2018-01-03 16:20:00,"A","No clue" +"2814",2018-01-03 16:40:00,"A","Attach" +"2815",2018-01-03 17:00:00,"C","No clue" +"2816",2018-01-03 17:20:00,"A","Debug" +"2817",2018-01-03 17:40:00,"A","Check with author" +"2818",2018-01-03 18:00:00,"B","Check with author" +"2819",2018-01-03 18:20:00,"C","Attach" +"2820",2018-01-03 18:40:00,"A","No clue" +"2821",2018-01-03 19:00:00,"A","No clue" +"2822",2018-01-03 19:20:00,"C","Check with author" +"2823",2018-01-03 19:40:00,"B","Limit" +"2824",2018-01-03 20:00:00,"B","No clue" +"2825",2018-01-03 20:20:00,"B","No clue" +"2826",2018-01-03 20:40:00,"C","Attach" +"2827",2018-01-03 21:00:00,"B","Error" +"2828",2018-01-03 21:20:00,"C","Debug" +"2829",2018-01-03 21:40:00,"A","Debug" +"2830",2018-01-03 22:00:00,"C","Check with author" +"2831",2018-01-03 22:20:00,"A","Debug" +"2832",2018-01-03 22:40:00,"B","Attach" +"2833",2018-01-03 23:00:00,"C","Warn" +"2834",2018-01-03 23:20:00,"B","Debug" +"2835",2018-01-03 23:40:00,"C","Warn" +"2836",2018-01-04 00:00:00,"B","No clue" +"2837",2018-01-04 00:20:00,"A","Limit" +"2838",2018-01-04 00:40:00,"B","No clue" +"2839",2018-01-04 01:00:00,"B","Warn" +"2840",2018-01-04 01:20:00,"B","Attach" +"2841",2018-01-04 01:40:00,"A","Error" +"2842",2018-01-04 02:00:00,"B","Check with author" +"2843",2018-01-04 02:20:00,"B","Check with author" +"2844",2018-01-04 02:40:00,"B","Error" +"2845",2018-01-04 03:00:00,"A","Check with author" +"2846",2018-01-04 03:20:00,"C","Debug" +"2847",2018-01-04 03:40:00,"A","Attach" +"2848",2018-01-04 04:00:00,"A","Attach" +"2849",2018-01-04 04:20:00,"C","Debug" +"2850",2018-01-04 04:40:00,"C","Debug" +"2851",2018-01-04 05:00:00,"A","Check with author" +"2852",2018-01-04 05:20:00,"B","Attach" +"2853",2018-01-04 05:40:00,"A","Limit" +"2854",2018-01-04 06:00:00,"B","Error" +"2855",2018-01-04 06:20:00,"A","Warn" +"2856",2018-01-04 06:40:00,"C","Limit" +"2857",2018-01-04 07:00:00,"C","Limit" +"2858",2018-01-04 07:20:00,"A","Check with author" +"2859",2018-01-04 07:40:00,"B","Limit" +"2860",2018-01-04 08:00:00,"C","Warn" +"2861",2018-01-04 08:20:00,"A","Error" +"2862",2018-01-04 08:40:00,"C","Warn" +"2863",2018-01-04 09:00:00,"A","Check with author" +"2864",2018-01-04 09:20:00,"C","No clue" +"2865",2018-01-04 09:40:00,"A","Attach" +"2866",2018-01-04 10:00:00,"C","Error" +"2867",2018-01-04 10:20:00,"B","Error" +"2868",2018-01-04 10:40:00,"B","Warn" +"2869",2018-01-04 11:00:00,"B","Error" +"2870",2018-01-04 11:20:00,"A","Attach" +"2871",2018-01-04 11:40:00,"B","Debug" +"2872",2018-01-04 12:00:00,"A","Warn" +"2873",2018-01-04 12:20:00,"B","Limit" +"2874",2018-01-04 12:40:00,"C","Attach" +"2875",2018-01-04 13:00:00,"B","No clue" +"2876",2018-01-04 13:20:00,"C","No clue" +"2877",2018-01-04 13:40:00,"C","Warn" +"2878",2018-01-04 14:00:00,"B","Check with author" +"2879",2018-01-04 14:20:00,"C","Limit" +"2880",2018-01-04 14:40:00,"C","Attach" +"2881",2018-01-04 15:00:00,"B","Attach" +"2882",2018-01-04 15:20:00,"A","Debug" +"2883",2018-01-04 15:40:00,"B","Limit" +"2884",2018-01-04 16:00:00,"B","Debug" +"2885",2018-01-04 16:20:00,"C","Warn" +"2886",2018-01-04 16:40:00,"A","No clue" +"2887",2018-01-04 17:00:00,"C","Check with author" +"2888",2018-01-04 17:20:00,"B","No clue" +"2889",2018-01-04 17:40:00,"B","Check with author" +"2890",2018-01-04 18:00:00,"A","Debug" +"2891",2018-01-04 18:20:00,"C","Limit" +"2892",2018-01-04 18:40:00,"B","Attach" +"2893",2018-01-04 19:00:00,"C","Warn" +"2894",2018-01-04 19:20:00,"C","No clue" +"2895",2018-01-04 19:40:00,"B","Attach" +"2896",2018-01-04 20:00:00,"A","Error" +"2897",2018-01-04 20:20:00,"A","Check with author" +"2898",2018-01-04 20:40:00,"C","Debug" +"2899",2018-01-04 21:00:00,"A","Limit" +"2900",2018-01-04 21:20:00,"A","Warn" +"2901",2018-01-04 21:40:00,"B","Warn" +"2902",2018-01-04 22:00:00,"C","Check with author" +"2903",2018-01-04 22:20:00,"C","Limit" +"2904",2018-01-04 22:40:00,"B","Error" +"2905",2018-01-04 23:00:00,"B","Check with author" +"2906",2018-01-04 23:20:00,"B","Error" +"2907",2018-01-04 23:40:00,"C","No clue" +"2908",2018-01-05 00:00:00,"B","Attach" +"2909",2018-01-05 00:20:00,"C","Error" +"2910",2018-01-05 00:40:00,"A","Check with author" +"2911",2018-01-05 01:00:00,"C","No clue" +"2912",2018-01-05 01:20:00,"C","Check with author" +"2913",2018-01-05 01:40:00,"A","Warn" +"2914",2018-01-05 02:00:00,"B","Check with author" +"2915",2018-01-05 02:20:00,"A","Limit" +"2916",2018-01-05 02:40:00,"A","Attach" +"2917",2018-01-05 03:00:00,"B","Debug" +"2918",2018-01-05 03:20:00,"B","Warn" +"2919",2018-01-05 03:40:00,"A","No clue" +"2920",2018-01-05 04:00:00,"B","Warn" +"2921",2018-01-05 04:20:00,"B","Check with author" +"2922",2018-01-05 04:40:00,"C","Limit" +"2923",2018-01-05 05:00:00,"C","Attach" +"2924",2018-01-05 05:20:00,"C","Check with author" +"2925",2018-01-05 05:40:00,"C","Debug" +"2926",2018-01-05 06:00:00,"A","Attach" +"2927",2018-01-05 06:20:00,"A","Debug" +"2928",2018-01-05 06:40:00,"C","Limit" +"2929",2018-01-05 07:00:00,"B","Debug" +"2930",2018-01-05 07:20:00,"C","Error" +"2931",2018-01-05 07:40:00,"B","Debug" +"2932",2018-01-05 08:00:00,"A","Debug" +"2933",2018-01-05 08:20:00,"A","Check with author" +"2934",2018-01-05 08:40:00,"B","Check with author" +"2935",2018-01-05 09:00:00,"A","Debug" +"2936",2018-01-05 09:20:00,"B","Warn" +"2937",2018-01-05 09:40:00,"C","Debug" +"2938",2018-01-05 10:00:00,"B","Debug" +"2939",2018-01-05 10:20:00,"A","No clue" +"2940",2018-01-05 10:40:00,"C","Debug" +"2941",2018-01-05 11:00:00,"B","Debug" +"2942",2018-01-05 11:20:00,"A","Debug" +"2943",2018-01-05 11:40:00,"C","No clue" +"2944",2018-01-05 12:00:00,"C","Error" +"2945",2018-01-05 12:20:00,"A","No clue" +"2946",2018-01-05 12:40:00,"B","Limit" +"2947",2018-01-05 13:00:00,"B","Check with author" +"2948",2018-01-05 13:20:00,"C","Check with author" +"2949",2018-01-05 13:40:00,"B","Error" +"2950",2018-01-05 14:00:00,"B","Error" +"2951",2018-01-01 12:00:00,"C","Check with author" +"2952",2018-01-01 12:20:00,"C","No clue" +"2953",2018-01-01 12:40:00,"A","Check with author" +"2954",2018-01-01 13:00:00,"C","Limit" +"2955",2018-01-01 13:20:00,"A","Check with author" +"2956",2018-01-01 13:40:00,"C","No clue" +"2957",2018-01-01 14:00:00,"C","Debug" +"2958",2018-01-01 14:20:00,"B","Limit" +"2959",2018-01-01 14:40:00,"C","Check with author" +"2960",2018-01-01 15:00:00,"C","Check with author" +"2961",2018-01-01 15:20:00,"A","Attach" +"2962",2018-01-01 15:40:00,"C","Warn" +"2963",2018-01-01 16:00:00,"A","Attach" +"2964",2018-01-01 16:20:00,"A","No clue" +"2965",2018-01-01 16:40:00,"B","Attach" +"2966",2018-01-01 17:00:00,"A","Attach" +"2967",2018-01-01 17:20:00,"C","Attach" +"2968",2018-01-01 17:40:00,"A","Check with author" +"2969",2018-01-01 18:00:00,"B","Debug" +"2970",2018-01-01 18:20:00,"C","Limit" +"2971",2018-01-01 18:40:00,"A","Attach" +"2972",2018-01-01 19:00:00,"B","Limit" +"2973",2018-01-01 19:20:00,"A","Limit" +"2974",2018-01-01 19:40:00,"B","Check with author" +"2975",2018-01-01 20:00:00,"B","Debug" +"2976",2018-01-01 20:20:00,"C","Check with author" +"2977",2018-01-01 20:40:00,"C","Attach" +"2978",2018-01-01 21:00:00,"C","No clue" +"2979",2018-01-01 21:20:00,"B","No clue" +"2980",2018-01-01 21:40:00,"A","Error" +"2981",2018-01-01 22:00:00,"B","Check with author" +"2982",2018-01-01 22:20:00,"A","Limit" +"2983",2018-01-01 22:40:00,"C","Attach" +"2984",2018-01-01 23:00:00,"A","No clue" +"2985",2018-01-01 23:20:00,"C","Limit" +"2986",2018-01-01 23:40:00,"A","Warn" +"2987",2018-01-02 00:00:00,"B","Warn" +"2988",2018-01-02 00:20:00,"C","No clue" +"2989",2018-01-02 00:40:00,"B","Check with author" +"2990",2018-01-02 01:00:00,"A","No clue" +"2991",2018-01-02 01:20:00,"A","No clue" +"2992",2018-01-02 01:40:00,"A","No clue" +"2993",2018-01-02 02:00:00,"C","Limit" +"2994",2018-01-02 02:20:00,"B","Check with author" +"2995",2018-01-02 02:40:00,"C","Limit" +"2996",2018-01-02 03:00:00,"A","Error" +"2997",2018-01-02 03:20:00,"A","Error" +"2998",2018-01-02 03:40:00,"C","Limit" +"2999",2018-01-02 04:00:00,"C","No clue" +"3000",2018-01-02 04:20:00,"C","No clue" +"3001",2018-01-02 04:40:00,"B","Limit" +"3002",2018-01-02 05:00:00,"B","Error" +"3003",2018-01-02 05:20:00,"C","No clue" +"3004",2018-01-02 05:40:00,"A","Error" +"3005",2018-01-02 06:00:00,"A","Warn" +"3006",2018-01-02 06:20:00,"B","Attach" +"3007",2018-01-02 06:40:00,"B","Attach" +"3008",2018-01-02 07:00:00,"C","Error" +"3009",2018-01-02 07:20:00,"A","No clue" +"3010",2018-01-02 07:40:00,"C","Check with author" +"3011",2018-01-02 08:00:00,"B","Error" +"3012",2018-01-02 08:20:00,"C","Error" +"3013",2018-01-02 08:40:00,"A","No clue" +"3014",2018-01-02 09:00:00,"C","Error" +"3015",2018-01-02 09:20:00,"B","Check with author" +"3016",2018-01-02 09:40:00,"A","Limit" +"3017",2018-01-02 10:00:00,"C","Error" +"3018",2018-01-02 10:20:00,"B","Warn" +"3019",2018-01-02 10:40:00,"A","Warn" +"3020",2018-01-02 11:00:00,"B","Attach" +"3021",2018-01-02 11:20:00,"A","Warn" +"3022",2018-01-02 11:40:00,"C","Error" +"3023",2018-01-02 12:00:00,"B","No clue" +"3024",2018-01-02 12:20:00,"B","Error" +"3025",2018-01-02 12:40:00,"B","Check with author" +"3026",2018-01-02 13:00:00,"B","Warn" +"3027",2018-01-02 13:20:00,"B","Attach" +"3028",2018-01-02 13:40:00,"B","No clue" +"3029",2018-01-02 14:00:00,"B","Warn" +"3030",2018-01-02 14:20:00,"C","Debug" +"3031",2018-01-02 14:40:00,"B","Attach" +"3032",2018-01-02 15:00:00,"A","Check with author" +"3033",2018-01-02 15:20:00,"C","Warn" +"3034",2018-01-02 15:40:00,"A","Check with author" +"3035",2018-01-02 16:00:00,"A","Attach" +"3036",2018-01-02 16:20:00,"A","Warn" +"3037",2018-01-02 16:40:00,"A","Check with author" +"3038",2018-01-02 17:00:00,"A","Warn" +"3039",2018-01-02 17:20:00,"A","Debug" +"3040",2018-01-02 17:40:00,"C","Check with author" +"3041",2018-01-02 18:00:00,"A","Attach" +"3042",2018-01-02 18:20:00,"B","No clue" +"3043",2018-01-02 18:40:00,"C","Attach" +"3044",2018-01-02 19:00:00,"C","Warn" +"3045",2018-01-02 19:20:00,"B","Error" +"3046",2018-01-02 19:40:00,"B","Error" +"3047",2018-01-02 20:00:00,"B","No clue" +"3048",2018-01-02 20:20:00,"B","Warn" +"3049",2018-01-02 20:40:00,"B","Limit" +"3050",2018-01-02 21:00:00,"C","Limit" +"3051",2018-01-02 21:20:00,"C","No clue" +"3052",2018-01-02 21:40:00,"B","Limit" +"3053",2018-01-02 22:00:00,"C","Warn" +"3054",2018-01-02 22:20:00,"C","Check with author" +"3055",2018-01-02 22:40:00,"C","Warn" +"3056",2018-01-02 23:00:00,"B","No clue" +"3057",2018-01-02 23:20:00,"B","Check with author" +"3058",2018-01-02 23:40:00,"B","No clue" +"3059",2018-01-03 00:00:00,"A","Warn" +"3060",2018-01-03 00:20:00,"B","Debug" +"3061",2018-01-03 00:40:00,"B","Attach" +"3062",2018-01-03 01:00:00,"C","Limit" +"3063",2018-01-03 01:20:00,"C","Error" +"3064",2018-01-03 01:40:00,"C","Debug" +"3065",2018-01-03 02:00:00,"C","Warn" +"3066",2018-01-03 02:20:00,"A","No clue" +"3067",2018-01-03 02:40:00,"B","No clue" +"3068",2018-01-03 03:00:00,"B","No clue" +"3069",2018-01-03 03:20:00,"C","Check with author" +"3070",2018-01-03 03:40:00,"C","Attach" +"3071",2018-01-03 04:00:00,"A","Attach" +"3072",2018-01-03 04:20:00,"A","Error" +"3073",2018-01-03 04:40:00,"A","Limit" +"3074",2018-01-03 05:00:00,"C","Check with author" +"3075",2018-01-03 05:20:00,"B","Warn" +"3076",2018-01-03 05:40:00,"B","Warn" +"3077",2018-01-03 06:00:00,"A","Debug" +"3078",2018-01-03 06:20:00,"B","Limit" +"3079",2018-01-03 06:40:00,"B","Error" +"3080",2018-01-03 07:00:00,"A","Error" +"3081",2018-01-03 07:20:00,"B","Error" +"3082",2018-01-03 07:40:00,"B","Debug" +"3083",2018-01-03 08:00:00,"B","Debug" +"3084",2018-01-03 08:20:00,"A","No clue" +"3085",2018-01-03 08:40:00,"A","Error" +"3086",2018-01-03 09:00:00,"B","Warn" +"3087",2018-01-03 09:20:00,"C","Attach" +"3088",2018-01-03 09:40:00,"A","Attach" +"3089",2018-01-03 10:00:00,"B","Check with author" +"3090",2018-01-03 10:20:00,"B","Debug" +"3091",2018-01-03 10:40:00,"C","Check with author" +"3092",2018-01-03 11:00:00,"C","Attach" +"3093",2018-01-03 11:20:00,"A","Error" +"3094",2018-01-03 11:40:00,"C","Attach" +"3095",2018-01-03 12:00:00,"A","Error" +"3096",2018-01-03 12:20:00,"B","No clue" +"3097",2018-01-03 12:40:00,"C","No clue" +"3098",2018-01-03 13:00:00,"C","Limit" +"3099",2018-01-03 13:20:00,"A","Limit" +"3100",2018-01-03 13:40:00,"C","Attach" +"3101",2018-01-03 14:00:00,"B","Warn" +"3102",2018-01-03 14:20:00,"C","Debug" +"3103",2018-01-03 14:40:00,"B","Debug" +"3104",2018-01-03 15:00:00,"C","Debug" +"3105",2018-01-03 15:20:00,"C","No clue" +"3106",2018-01-03 15:40:00,"B","Debug" +"3107",2018-01-03 16:00:00,"B","Check with author" +"3108",2018-01-03 16:20:00,"B","Warn" +"3109",2018-01-03 16:40:00,"B","Limit" +"3110",2018-01-03 17:00:00,"C","Check with author" +"3111",2018-01-03 17:20:00,"A","Error" +"3112",2018-01-03 17:40:00,"B","Warn" +"3113",2018-01-03 18:00:00,"B","Debug" +"3114",2018-01-03 18:20:00,"A","Warn" +"3115",2018-01-03 18:40:00,"B","Attach" +"3116",2018-01-03 19:00:00,"C","Check with author" +"3117",2018-01-03 19:20:00,"A","Error" +"3118",2018-01-03 19:40:00,"A","Attach" +"3119",2018-01-03 20:00:00,"B","Limit" +"3120",2018-01-03 20:20:00,"C","Limit" +"3121",2018-01-03 20:40:00,"C","No clue" +"3122",2018-01-03 21:00:00,"C","Check with author" +"3123",2018-01-03 21:20:00,"A","Warn" +"3124",2018-01-03 21:40:00,"C","No clue" +"3125",2018-01-03 22:00:00,"B","Error" +"3126",2018-01-03 22:20:00,"A","Debug" +"3127",2018-01-03 22:40:00,"B","Attach" +"3128",2018-01-03 23:00:00,"A","Attach" +"3129",2018-01-03 23:20:00,"A","Check with author" +"3130",2018-01-03 23:40:00,"A","Limit" +"3131",2018-01-04 00:00:00,"C","Limit" +"3132",2018-01-04 00:20:00,"B","Warn" +"3133",2018-01-04 00:40:00,"A","No clue" +"3134",2018-01-04 01:00:00,"A","Attach" +"3135",2018-01-04 01:20:00,"B","Warn" +"3136",2018-01-04 01:40:00,"A","Attach" +"3137",2018-01-04 02:00:00,"B","Debug" +"3138",2018-01-04 02:20:00,"A","Attach" +"3139",2018-01-04 02:40:00,"B","Debug" +"3140",2018-01-04 03:00:00,"A","Check with author" +"3141",2018-01-04 03:20:00,"C","Debug" +"3142",2018-01-04 03:40:00,"C","No clue" +"3143",2018-01-04 04:00:00,"C","Limit" +"3144",2018-01-04 04:20:00,"A","Attach" +"3145",2018-01-04 04:40:00,"B","No clue" +"3146",2018-01-04 05:00:00,"A","Error" +"3147",2018-01-04 05:20:00,"A","Attach" +"3148",2018-01-04 05:40:00,"B","Warn" +"3149",2018-01-04 06:00:00,"A","Check with author" +"3150",2018-01-04 06:20:00,"B","Error" +"3151",2018-01-04 06:40:00,"A","No clue" +"3152",2018-01-04 07:00:00,"B","Limit" +"3153",2018-01-04 07:20:00,"C","Attach" +"3154",2018-01-04 07:40:00,"A","No clue" +"3155",2018-01-04 08:00:00,"C","Check with author" +"3156",2018-01-04 08:20:00,"A","Attach" +"3157",2018-01-04 08:40:00,"B","Error" +"3158",2018-01-04 09:00:00,"B","No clue" +"3159",2018-01-04 09:20:00,"C","Error" +"3160",2018-01-04 09:40:00,"C","Error" +"3161",2018-01-04 10:00:00,"B","Debug" +"3162",2018-01-04 10:20:00,"B","Error" +"3163",2018-01-04 10:40:00,"B","Attach" +"3164",2018-01-04 11:00:00,"A","Check with author" +"3165",2018-01-04 11:20:00,"B","Warn" +"3166",2018-01-04 11:40:00,"B","Warn" +"3167",2018-01-04 12:00:00,"A","Attach" +"3168",2018-01-04 12:20:00,"B","No clue" +"3169",2018-01-04 12:40:00,"A","Warn" +"3170",2018-01-04 13:00:00,"B","Error" +"3171",2018-01-04 13:20:00,"B","Attach" +"3172",2018-01-04 13:40:00,"B","Attach" +"3173",2018-01-04 14:00:00,"C","Error" +"3174",2018-01-04 14:20:00,"B","No clue" +"3175",2018-01-04 14:40:00,"C","Error" +"3176",2018-01-04 15:00:00,"A","Error" +"3177",2018-01-04 15:20:00,"C","Error" +"3178",2018-01-04 15:40:00,"C","Check with author" +"3179",2018-01-04 16:00:00,"A","Error" +"3180",2018-01-04 16:20:00,"C","Warn" +"3181",2018-01-04 16:40:00,"A","Check with author" +"3182",2018-01-04 17:00:00,"A","Debug" +"3183",2018-01-04 17:20:00,"A","Debug" +"3184",2018-01-04 17:40:00,"B","Check with author" +"3185",2018-01-04 18:00:00,"B","Warn" +"3186",2018-01-04 18:20:00,"B","Attach" +"3187",2018-01-04 18:40:00,"C","Check with author" +"3188",2018-01-04 19:00:00,"C","Error" +"3189",2018-01-04 19:20:00,"B","Error" +"3190",2018-01-04 19:40:00,"A","Attach" +"3191",2018-01-04 20:00:00,"C","Attach" +"3192",2018-01-04 20:20:00,"B","Limit" +"3193",2018-01-04 20:40:00,"C","Check with author" +"3194",2018-01-04 21:00:00,"B","Debug" +"3195",2018-01-04 21:20:00,"A","Debug" +"3196",2018-01-04 21:40:00,"B","Debug" +"3197",2018-01-04 22:00:00,"B","Check with author" +"3198",2018-01-04 22:20:00,"C","Debug" +"3199",2018-01-04 22:40:00,"B","Error" +"3200",2018-01-04 23:00:00,"B","No clue" +"3201",2018-01-04 23:20:00,"A","Limit" +"3202",2018-01-04 23:40:00,"A","Warn" +"3203",2018-01-05 00:00:00,"C","Check with author" +"3204",2018-01-05 00:20:00,"A","Attach" +"3205",2018-01-05 00:40:00,"A","Check with author" +"3206",2018-01-05 01:00:00,"A","Limit" +"3207",2018-01-05 01:20:00,"A","Attach" +"3208",2018-01-05 01:40:00,"C","Attach" +"3209",2018-01-05 02:00:00,"A","Warn" +"3210",2018-01-05 02:20:00,"A","Debug" +"3211",2018-01-05 02:40:00,"A","Debug" +"3212",2018-01-05 03:00:00,"C","Error" +"3213",2018-01-05 03:20:00,"A","Error" +"3214",2018-01-05 03:40:00,"B","Limit" +"3215",2018-01-05 04:00:00,"B","Debug" +"3216",2018-01-05 04:20:00,"C","Check with author" +"3217",2018-01-05 04:40:00,"B","No clue" +"3218",2018-01-05 05:00:00,"C","Error" +"3219",2018-01-05 05:20:00,"A","Debug" +"3220",2018-01-05 05:40:00,"B","Error" +"3221",2018-01-05 06:00:00,"B","Check with author" +"3222",2018-01-05 06:20:00,"B","Attach" +"3223",2018-01-05 06:40:00,"C","Error" +"3224",2018-01-05 07:00:00,"A","Debug" +"3225",2018-01-05 07:20:00,"B","Attach" +"3226",2018-01-05 07:40:00,"A","Error" +"3227",2018-01-05 08:00:00,"C","Warn" +"3228",2018-01-05 08:20:00,"B","Limit" +"3229",2018-01-05 08:40:00,"B","Attach" +"3230",2018-01-05 09:00:00,"C","Debug" +"3231",2018-01-05 09:20:00,"A","Debug" +"3232",2018-01-05 09:40:00,"B","No clue" +"3233",2018-01-05 10:00:00,"B","Check with author" +"3234",2018-01-05 10:20:00,"A","Warn" +"3235",2018-01-05 10:40:00,"B","Error" +"3236",2018-01-05 11:00:00,"B","Check with author" +"3237",2018-01-05 11:20:00,"A","Check with author" +"3238",2018-01-05 11:40:00,"A","No clue" +"3239",2018-01-05 12:00:00,"B","Check with author" +"3240",2018-01-05 12:20:00,"C","Limit" +"3241",2018-01-05 12:40:00,"B","Error" +"3242",2018-01-05 13:00:00,"C","Check with author" +"3243",2018-01-05 13:20:00,"A","Attach" +"3244",2018-01-05 13:40:00,"A","No clue" +"3245",2018-01-05 14:00:00,"A","Debug" +"3246",2018-01-01 12:00:00,"C","Limit" +"3247",2018-01-01 12:20:00,"C","Attach" +"3248",2018-01-01 12:40:00,"B","Limit" +"3249",2018-01-01 13:00:00,"C","Error" +"3250",2018-01-01 13:20:00,"C","Attach" +"3251",2018-01-01 13:40:00,"A","Limit" +"3252",2018-01-01 14:00:00,"A","Attach" +"3253",2018-01-01 14:20:00,"C","Warn" +"3254",2018-01-01 14:40:00,"A","Error" +"3255",2018-01-01 15:00:00,"A","Warn" +"3256",2018-01-01 15:20:00,"A","No clue" +"3257",2018-01-01 15:40:00,"A","No clue" +"3258",2018-01-01 16:00:00,"B","Attach" +"3259",2018-01-01 16:20:00,"C","Error" +"3260",2018-01-01 16:40:00,"B","No clue" +"3261",2018-01-01 17:00:00,"C","No clue" +"3262",2018-01-01 17:20:00,"B","Attach" +"3263",2018-01-01 17:40:00,"A","Attach" +"3264",2018-01-01 18:00:00,"B","Attach" +"3265",2018-01-01 18:20:00,"B","Error" +"3266",2018-01-01 18:40:00,"A","Attach" +"3267",2018-01-01 19:00:00,"B","Attach" +"3268",2018-01-01 19:20:00,"B","Limit" +"3269",2018-01-01 19:40:00,"A","No clue" +"3270",2018-01-01 20:00:00,"A","Attach" +"3271",2018-01-01 20:20:00,"A","Debug" +"3272",2018-01-01 20:40:00,"B","Attach" +"3273",2018-01-01 21:00:00,"A","No clue" +"3274",2018-01-01 21:20:00,"B","Warn" +"3275",2018-01-01 21:40:00,"B","Warn" +"3276",2018-01-01 22:00:00,"C","No clue" +"3277",2018-01-01 22:20:00,"C","Warn" +"3278",2018-01-01 22:40:00,"C","Check with author" +"3279",2018-01-01 23:00:00,"A","Warn" +"3280",2018-01-01 23:20:00,"C","Debug" +"3281",2018-01-01 23:40:00,"B","Debug" +"3282",2018-01-02 00:00:00,"C","Check with author" +"3283",2018-01-02 00:20:00,"A","Check with author" +"3284",2018-01-02 00:40:00,"C","Limit" +"3285",2018-01-02 01:00:00,"C","Check with author" +"3286",2018-01-02 01:20:00,"A","Error" +"3287",2018-01-02 01:40:00,"C","Check with author" +"3288",2018-01-02 02:00:00,"C","Warn" +"3289",2018-01-02 02:20:00,"A","Limit" +"3290",2018-01-02 02:40:00,"B","Error" +"3291",2018-01-02 03:00:00,"A","Debug" +"3292",2018-01-02 03:20:00,"B","Error" +"3293",2018-01-02 03:40:00,"B","Warn" +"3294",2018-01-02 04:00:00,"B","Error" +"3295",2018-01-02 04:20:00,"C","Debug" +"3296",2018-01-02 04:40:00,"A","Attach" +"3297",2018-01-02 05:00:00,"C","Check with author" +"3298",2018-01-02 05:20:00,"C","Error" +"3299",2018-01-02 05:40:00,"B","Debug" +"3300",2018-01-02 06:00:00,"B","Error" +"3301",2018-01-02 06:20:00,"C","Check with author" +"3302",2018-01-02 06:40:00,"B","Debug" +"3303",2018-01-02 07:00:00,"C","Limit" +"3304",2018-01-02 07:20:00,"B","Error" +"3305",2018-01-02 07:40:00,"A","Warn" +"3306",2018-01-02 08:00:00,"A","Error" +"3307",2018-01-02 08:20:00,"C","Debug" +"3308",2018-01-02 08:40:00,"A","Attach" +"3309",2018-01-02 09:00:00,"B","Attach" +"3310",2018-01-02 09:20:00,"C","Warn" +"3311",2018-01-02 09:40:00,"A","No clue" +"3312",2018-01-02 10:00:00,"A","No clue" +"3313",2018-01-02 10:20:00,"C","Attach" +"3314",2018-01-02 10:40:00,"A","Error" +"3315",2018-01-02 11:00:00,"A","Check with author" +"3316",2018-01-02 11:20:00,"B","Attach" +"3317",2018-01-02 11:40:00,"B","Debug" +"3318",2018-01-02 12:00:00,"C","Debug" +"3319",2018-01-02 12:20:00,"B","Debug" +"3320",2018-01-02 12:40:00,"C","Limit" +"3321",2018-01-02 13:00:00,"A","Check with author" +"3322",2018-01-02 13:20:00,"A","Attach" +"3323",2018-01-02 13:40:00,"B","Limit" +"3324",2018-01-02 14:00:00,"B","Debug" +"3325",2018-01-02 14:20:00,"A","Warn" +"3326",2018-01-02 14:40:00,"C","Warn" +"3327",2018-01-02 15:00:00,"C","Warn" +"3328",2018-01-02 15:20:00,"A","Debug" +"3329",2018-01-02 15:40:00,"C","No clue" +"3330",2018-01-02 16:00:00,"B","Attach" +"3331",2018-01-02 16:20:00,"C","Debug" +"3332",2018-01-02 16:40:00,"A","Check with author" +"3333",2018-01-02 17:00:00,"B","Attach" +"3334",2018-01-02 17:20:00,"B","Limit" +"3335",2018-01-02 17:40:00,"B","No clue" +"3336",2018-01-02 18:00:00,"B","Error" +"3337",2018-01-02 18:20:00,"B","Check with author" +"3338",2018-01-02 18:40:00,"A","Attach" +"3339",2018-01-02 19:00:00,"A","No clue" +"3340",2018-01-02 19:20:00,"C","Attach" +"3341",2018-01-02 19:40:00,"B","Debug" +"3342",2018-01-02 20:00:00,"C","Warn" +"3343",2018-01-02 20:20:00,"C","Limit" +"3344",2018-01-02 20:40:00,"B","Check with author" +"3345",2018-01-02 21:00:00,"A","No clue" +"3346",2018-01-02 21:20:00,"B","Attach" +"3347",2018-01-02 21:40:00,"B","No clue" +"3348",2018-01-02 22:00:00,"B","Limit" +"3349",2018-01-02 22:20:00,"C","Attach" +"3350",2018-01-02 22:40:00,"C","Warn" +"3351",2018-01-02 23:00:00,"C","No clue" +"3352",2018-01-02 23:20:00,"A","Limit" +"3353",2018-01-02 23:40:00,"B","Warn" +"3354",2018-01-03 00:00:00,"C","Warn" +"3355",2018-01-03 00:20:00,"B","Error" +"3356",2018-01-03 00:40:00,"C","Limit" +"3357",2018-01-03 01:00:00,"C","Limit" +"3358",2018-01-03 01:20:00,"C","Attach" +"3359",2018-01-03 01:40:00,"C","Limit" +"3360",2018-01-03 02:00:00,"C","No clue" +"3361",2018-01-03 02:20:00,"A","Error" +"3362",2018-01-03 02:40:00,"C","Error" +"3363",2018-01-03 03:00:00,"C","Error" +"3364",2018-01-03 03:20:00,"C","Warn" +"3365",2018-01-03 03:40:00,"A","No clue" +"3366",2018-01-03 04:00:00,"A","Check with author" +"3367",2018-01-03 04:20:00,"B","Check with author" +"3368",2018-01-03 04:40:00,"C","Warn" +"3369",2018-01-03 05:00:00,"A","Check with author" +"3370",2018-01-03 05:20:00,"A","Error" +"3371",2018-01-03 05:40:00,"A","Limit" +"3372",2018-01-03 06:00:00,"B","Limit" +"3373",2018-01-03 06:20:00,"C","Attach" +"3374",2018-01-03 06:40:00,"B","Debug" +"3375",2018-01-03 07:00:00,"A","Debug" +"3376",2018-01-03 07:20:00,"A","Debug" +"3377",2018-01-03 07:40:00,"C","Warn" +"3378",2018-01-03 08:00:00,"A","Debug" +"3379",2018-01-03 08:20:00,"A","Error" +"3380",2018-01-03 08:40:00,"C","Debug" +"3381",2018-01-03 09:00:00,"A","Debug" +"3382",2018-01-03 09:20:00,"C","Limit" +"3383",2018-01-03 09:40:00,"A","Error" +"3384",2018-01-03 10:00:00,"C","Limit" +"3385",2018-01-03 10:20:00,"C","Error" +"3386",2018-01-03 10:40:00,"B","Check with author" +"3387",2018-01-03 11:00:00,"B","Limit" +"3388",2018-01-03 11:20:00,"C","Attach" +"3389",2018-01-03 11:40:00,"A","Debug" +"3390",2018-01-03 12:00:00,"C","No clue" +"3391",2018-01-03 12:20:00,"B","No clue" +"3392",2018-01-03 12:40:00,"C","Check with author" +"3393",2018-01-03 13:00:00,"B","Warn" +"3394",2018-01-03 13:20:00,"B","No clue" +"3395",2018-01-03 13:40:00,"B","Limit" +"3396",2018-01-03 14:00:00,"B","Warn" +"3397",2018-01-03 14:20:00,"B","Attach" +"3398",2018-01-03 14:40:00,"C","Debug" +"3399",2018-01-03 15:00:00,"B","Warn" +"3400",2018-01-03 15:20:00,"B","Check with author" +"3401",2018-01-03 15:40:00,"B","Debug" +"3402",2018-01-03 16:00:00,"B","Check with author" +"3403",2018-01-03 16:20:00,"A","Warn" +"3404",2018-01-03 16:40:00,"C","Limit" +"3405",2018-01-03 17:00:00,"C","Debug" +"3406",2018-01-03 17:20:00,"B","Attach" +"3407",2018-01-03 17:40:00,"A","Attach" +"3408",2018-01-03 18:00:00,"C","Check with author" +"3409",2018-01-03 18:20:00,"C","Check with author" +"3410",2018-01-03 18:40:00,"A","Error" +"3411",2018-01-03 19:00:00,"C","Check with author" +"3412",2018-01-03 19:20:00,"C","Error" +"3413",2018-01-03 19:40:00,"B","Error" +"3414",2018-01-03 20:00:00,"C","Attach" +"3415",2018-01-03 20:20:00,"B","Debug" +"3416",2018-01-03 20:40:00,"C","Debug" +"3417",2018-01-03 21:00:00,"B","Error" +"3418",2018-01-03 21:20:00,"A","No clue" +"3419",2018-01-03 21:40:00,"B","Check with author" +"3420",2018-01-03 22:00:00,"C","Limit" +"3421",2018-01-03 22:20:00,"B","Check with author" +"3422",2018-01-03 22:40:00,"B","Debug" +"3423",2018-01-03 23:00:00,"B","No clue" +"3424",2018-01-03 23:20:00,"C","Error" +"3425",2018-01-03 23:40:00,"B","Attach" +"3426",2018-01-04 00:00:00,"B","Debug" +"3427",2018-01-04 00:20:00,"C","Attach" +"3428",2018-01-04 00:40:00,"C","Warn" +"3429",2018-01-04 01:00:00,"C","Attach" +"3430",2018-01-04 01:20:00,"A","No clue" +"3431",2018-01-04 01:40:00,"B","Limit" +"3432",2018-01-04 02:00:00,"B","Warn" +"3433",2018-01-04 02:20:00,"C","Warn" +"3434",2018-01-04 02:40:00,"B","Warn" +"3435",2018-01-04 03:00:00,"C","Debug" +"3436",2018-01-04 03:20:00,"B","Attach" +"3437",2018-01-04 03:40:00,"B","Error" +"3438",2018-01-04 04:00:00,"C","Debug" +"3439",2018-01-04 04:20:00,"B","Error" +"3440",2018-01-04 04:40:00,"B","Limit" +"3441",2018-01-04 05:00:00,"B","Attach" +"3442",2018-01-04 05:20:00,"C","No clue" +"3443",2018-01-04 05:40:00,"C","Check with author" +"3444",2018-01-04 06:00:00,"B","Check with author" +"3445",2018-01-04 06:20:00,"C","No clue" +"3446",2018-01-04 06:40:00,"B","Limit" +"3447",2018-01-04 07:00:00,"C","Debug" +"3448",2018-01-04 07:20:00,"C","Debug" +"3449",2018-01-04 07:40:00,"B","Attach" +"3450",2018-01-04 08:00:00,"C","Debug" +"3451",2018-01-04 08:20:00,"B","Attach" +"3452",2018-01-04 08:40:00,"B","Limit" +"3453",2018-01-04 09:00:00,"B","Check with author" +"3454",2018-01-04 09:20:00,"B","No clue" +"3455",2018-01-04 09:40:00,"B","No clue" +"3456",2018-01-04 10:00:00,"C","Error" +"3457",2018-01-04 10:20:00,"C","Error" +"3458",2018-01-04 10:40:00,"B","Attach" +"3459",2018-01-04 11:00:00,"C","Limit" +"3460",2018-01-04 11:20:00,"B","Check with author" +"3461",2018-01-04 11:40:00,"A","Error" +"3462",2018-01-04 12:00:00,"A","Attach" +"3463",2018-01-04 12:20:00,"B","Attach" +"3464",2018-01-04 12:40:00,"C","Warn" +"3465",2018-01-04 13:00:00,"B","Warn" +"3466",2018-01-04 13:20:00,"A","Warn" +"3467",2018-01-04 13:40:00,"B","Limit" +"3468",2018-01-04 14:00:00,"B","Debug" +"3469",2018-01-04 14:20:00,"C","Warn" +"3470",2018-01-04 14:40:00,"C","Error" +"3471",2018-01-04 15:00:00,"A","No clue" +"3472",2018-01-04 15:20:00,"B","Debug" +"3473",2018-01-04 15:40:00,"A","Error" +"3474",2018-01-04 16:00:00,"A","No clue" +"3475",2018-01-04 16:20:00,"B","Limit" +"3476",2018-01-04 16:40:00,"B","Error" +"3477",2018-01-04 17:00:00,"B","Debug" +"3478",2018-01-04 17:20:00,"B","Warn" +"3479",2018-01-04 17:40:00,"A","Warn" +"3480",2018-01-04 18:00:00,"A","Warn" +"3481",2018-01-04 18:20:00,"B","Error" +"3482",2018-01-04 18:40:00,"B","Limit" +"3483",2018-01-04 19:00:00,"A","No clue" +"3484",2018-01-04 19:20:00,"C","Debug" +"3485",2018-01-04 19:40:00,"B","No clue" +"3486",2018-01-04 20:00:00,"B","Error" +"3487",2018-01-04 20:20:00,"A","Warn" +"3488",2018-01-04 20:40:00,"B","Check with author" +"3489",2018-01-04 21:00:00,"B","No clue" +"3490",2018-01-04 21:20:00,"C","Debug" +"3491",2018-01-04 21:40:00,"A","Error" +"3492",2018-01-04 22:00:00,"C","Error" +"3493",2018-01-04 22:20:00,"B","Error" +"3494",2018-01-04 22:40:00,"C","Warn" +"3495",2018-01-04 23:00:00,"A","Limit" +"3496",2018-01-04 23:20:00,"C","Attach" +"3497",2018-01-04 23:40:00,"B","Attach" +"3498",2018-01-05 00:00:00,"B","Check with author" +"3499",2018-01-05 00:20:00,"B","Limit" +"3500",2018-01-05 00:40:00,"A","Attach" +"3501",2018-01-05 01:00:00,"A","Attach" +"3502",2018-01-05 01:20:00,"A","Limit" +"3503",2018-01-05 01:40:00,"C","Check with author" +"3504",2018-01-05 02:00:00,"A","Debug" +"3505",2018-01-05 02:20:00,"A","Debug" +"3506",2018-01-05 02:40:00,"B","Attach" +"3507",2018-01-05 03:00:00,"A","Debug" +"3508",2018-01-05 03:20:00,"B","Error" +"3509",2018-01-05 03:40:00,"C","Error" +"3510",2018-01-05 04:00:00,"C","Limit" +"3511",2018-01-05 04:20:00,"C","No clue" +"3512",2018-01-05 04:40:00,"A","Error" +"3513",2018-01-05 05:00:00,"A","Check with author" +"3514",2018-01-05 05:20:00,"B","Attach" +"3515",2018-01-05 05:40:00,"A","Attach" +"3516",2018-01-05 06:00:00,"A","Limit" +"3517",2018-01-05 06:20:00,"C","Check with author" +"3518",2018-01-05 06:40:00,"C","Debug" +"3519",2018-01-05 07:00:00,"B","No clue" +"3520",2018-01-05 07:20:00,"C","Limit" +"3521",2018-01-05 07:40:00,"A","Check with author" +"3522",2018-01-05 08:00:00,"A","Warn" +"3523",2018-01-05 08:20:00,"B","Attach" +"3524",2018-01-05 08:40:00,"B","Check with author" +"3525",2018-01-05 09:00:00,"C","Warn" +"3526",2018-01-05 09:20:00,"A","Limit" +"3527",2018-01-05 09:40:00,"A","Error" +"3528",2018-01-05 10:00:00,"B","No clue" +"3529",2018-01-05 10:20:00,"C","Warn" +"3530",2018-01-05 10:40:00,"A","Attach" +"3531",2018-01-05 11:00:00,"C","Limit" +"3532",2018-01-05 11:20:00,"B","Error" +"3533",2018-01-05 11:40:00,"C","Limit" +"3534",2018-01-05 12:00:00,"C","No clue" +"3535",2018-01-05 12:20:00,"A","Debug" +"3536",2018-01-05 12:40:00,"A","Warn" +"3537",2018-01-05 13:00:00,"C","Error" +"3538",2018-01-05 13:20:00,"A","No clue" +"3539",2018-01-05 13:40:00,"C","Check with author" +"3540",2018-01-05 14:00:00,"C","Error" +"3541",2018-01-01 12:00:00,"C","No clue" +"3542",2018-01-01 12:20:00,"C","Limit" +"3543",2018-01-01 12:40:00,"B","Debug" +"3544",2018-01-01 13:00:00,"C","No clue" +"3545",2018-01-01 13:20:00,"C","No clue" +"3546",2018-01-01 13:40:00,"C","Check with author" +"3547",2018-01-01 14:00:00,"B","No clue" +"3548",2018-01-01 14:20:00,"C","Debug" +"3549",2018-01-01 14:40:00,"A","Warn" +"3550",2018-01-01 15:00:00,"C","Limit" +"3551",2018-01-01 15:20:00,"A","Limit" +"3552",2018-01-01 15:40:00,"C","Check with author" +"3553",2018-01-01 16:00:00,"A","Limit" +"3554",2018-01-01 16:20:00,"A","Attach" +"3555",2018-01-01 16:40:00,"A","Debug" +"3556",2018-01-01 17:00:00,"B","Limit" +"3557",2018-01-01 17:20:00,"A","Error" +"3558",2018-01-01 17:40:00,"A","Attach" +"3559",2018-01-01 18:00:00,"C","Limit" +"3560",2018-01-01 18:20:00,"C","Limit" +"3561",2018-01-01 18:40:00,"A","Debug" +"3562",2018-01-01 19:00:00,"C","Attach" +"3563",2018-01-01 19:20:00,"C","Debug" +"3564",2018-01-01 19:40:00,"C","Attach" +"3565",2018-01-01 20:00:00,"B","Attach" +"3566",2018-01-01 20:20:00,"B","Debug" +"3567",2018-01-01 20:40:00,"A","Debug" +"3568",2018-01-01 21:00:00,"A","Debug" +"3569",2018-01-01 21:20:00,"B","Error" +"3570",2018-01-01 21:40:00,"B","Warn" +"3571",2018-01-01 22:00:00,"C","Limit" +"3572",2018-01-01 22:20:00,"B","Attach" +"3573",2018-01-01 22:40:00,"C","Warn" +"3574",2018-01-01 23:00:00,"C","No clue" +"3575",2018-01-01 23:20:00,"C","Attach" +"3576",2018-01-01 23:40:00,"C","Check with author" +"3577",2018-01-02 00:00:00,"A","Attach" +"3578",2018-01-02 00:20:00,"B","Limit" +"3579",2018-01-02 00:40:00,"C","No clue" +"3580",2018-01-02 01:00:00,"C","No clue" +"3581",2018-01-02 01:20:00,"B","Warn" +"3582",2018-01-02 01:40:00,"A","Attach" +"3583",2018-01-02 02:00:00,"A","Attach" +"3584",2018-01-02 02:20:00,"B","No clue" +"3585",2018-01-02 02:40:00,"B","Check with author" +"3586",2018-01-02 03:00:00,"A","Debug" +"3587",2018-01-02 03:20:00,"A","Error" +"3588",2018-01-02 03:40:00,"B","Debug" +"3589",2018-01-02 04:00:00,"A","Warn" +"3590",2018-01-02 04:20:00,"B","Check with author" +"3591",2018-01-02 04:40:00,"A","Warn" +"3592",2018-01-02 05:00:00,"B","Warn" +"3593",2018-01-02 05:20:00,"A","Warn" +"3594",2018-01-02 05:40:00,"C","Debug" +"3595",2018-01-02 06:00:00,"A","Error" +"3596",2018-01-02 06:20:00,"B","Limit" +"3597",2018-01-02 06:40:00,"A","Error" +"3598",2018-01-02 07:00:00,"A","Check with author" +"3599",2018-01-02 07:20:00,"B","Debug" +"3600",2018-01-02 07:40:00,"A","Check with author" +"3601",2018-01-02 08:00:00,"B","No clue" +"3602",2018-01-02 08:20:00,"B","No clue" +"3603",2018-01-02 08:40:00,"B","Limit" +"3604",2018-01-02 09:00:00,"A","No clue" +"3605",2018-01-02 09:20:00,"B","Check with author" +"3606",2018-01-02 09:40:00,"A","Warn" +"3607",2018-01-02 10:00:00,"A","Error" +"3608",2018-01-02 10:20:00,"B","Attach" +"3609",2018-01-02 10:40:00,"C","Debug" +"3610",2018-01-02 11:00:00,"A","Debug" +"3611",2018-01-02 11:20:00,"C","Limit" +"3612",2018-01-02 11:40:00,"C","Debug" +"3613",2018-01-02 12:00:00,"B","Attach" +"3614",2018-01-02 12:20:00,"B","No clue" +"3615",2018-01-02 12:40:00,"A","Check with author" +"3616",2018-01-02 13:00:00,"B","Warn" +"3617",2018-01-02 13:20:00,"C","No clue" +"3618",2018-01-02 13:40:00,"B","Debug" +"3619",2018-01-02 14:00:00,"B","Debug" +"3620",2018-01-02 14:20:00,"B","Error" +"3621",2018-01-02 14:40:00,"B","Limit" +"3622",2018-01-02 15:00:00,"B","Attach" +"3623",2018-01-02 15:20:00,"A","Limit" +"3624",2018-01-02 15:40:00,"A","Check with author" +"3625",2018-01-02 16:00:00,"C","Limit" +"3626",2018-01-02 16:20:00,"B","Error" +"3627",2018-01-02 16:40:00,"B","Attach" +"3628",2018-01-02 17:00:00,"C","Limit" +"3629",2018-01-02 17:20:00,"B","Warn" +"3630",2018-01-02 17:40:00,"A","Attach" +"3631",2018-01-02 18:00:00,"A","Error" +"3632",2018-01-02 18:20:00,"C","Check with author" +"3633",2018-01-02 18:40:00,"B","No clue" +"3634",2018-01-02 19:00:00,"B","Warn" +"3635",2018-01-02 19:20:00,"C","Debug" +"3636",2018-01-02 19:40:00,"A","Warn" +"3637",2018-01-02 20:00:00,"B","Warn" +"3638",2018-01-02 20:20:00,"B","Attach" +"3639",2018-01-02 20:40:00,"A","Limit" +"3640",2018-01-02 21:00:00,"A","Error" +"3641",2018-01-02 21:20:00,"C","Limit" +"3642",2018-01-02 21:40:00,"A","Error" +"3643",2018-01-02 22:00:00,"B","Attach" +"3644",2018-01-02 22:20:00,"A","Limit" +"3645",2018-01-02 22:40:00,"C","Debug" +"3646",2018-01-02 23:00:00,"A","Debug" +"3647",2018-01-02 23:20:00,"A","Limit" +"3648",2018-01-02 23:40:00,"C","Limit" +"3649",2018-01-03 00:00:00,"A","Warn" +"3650",2018-01-03 00:20:00,"C","No clue" +"3651",2018-01-03 00:40:00,"C","Limit" +"3652",2018-01-03 01:00:00,"A","Attach" +"3653",2018-01-03 01:20:00,"B","Warn" +"3654",2018-01-03 01:40:00,"B","Error" +"3655",2018-01-03 02:00:00,"C","No clue" +"3656",2018-01-03 02:20:00,"C","Attach" +"3657",2018-01-03 02:40:00,"B","Attach" +"3658",2018-01-03 03:00:00,"C","Error" +"3659",2018-01-03 03:20:00,"C","Check with author" +"3660",2018-01-03 03:40:00,"A","Check with author" +"3661",2018-01-03 04:00:00,"C","Limit" +"3662",2018-01-03 04:20:00,"A","Debug" +"3663",2018-01-03 04:40:00,"B","Limit" +"3664",2018-01-03 05:00:00,"C","Limit" +"3665",2018-01-03 05:20:00,"B","Check with author" +"3666",2018-01-03 05:40:00,"A","Error" +"3667",2018-01-03 06:00:00,"B","No clue" +"3668",2018-01-03 06:20:00,"A","Error" +"3669",2018-01-03 06:40:00,"B","Limit" +"3670",2018-01-03 07:00:00,"C","Debug" +"3671",2018-01-03 07:20:00,"C","Error" +"3672",2018-01-03 07:40:00,"C","No clue" +"3673",2018-01-03 08:00:00,"B","Debug" +"3674",2018-01-03 08:20:00,"C","Check with author" +"3675",2018-01-03 08:40:00,"B","Attach" +"3676",2018-01-03 09:00:00,"A","Attach" +"3677",2018-01-03 09:20:00,"A","No clue" +"3678",2018-01-03 09:40:00,"A","No clue" +"3679",2018-01-03 10:00:00,"C","Warn" +"3680",2018-01-03 10:20:00,"A","Attach" +"3681",2018-01-03 10:40:00,"B","Check with author" +"3682",2018-01-03 11:00:00,"A","Check with author" +"3683",2018-01-03 11:20:00,"B","Attach" +"3684",2018-01-03 11:40:00,"C","Warn" +"3685",2018-01-03 12:00:00,"A","Warn" +"3686",2018-01-03 12:20:00,"C","No clue" +"3687",2018-01-03 12:40:00,"A","Warn" +"3688",2018-01-03 13:00:00,"C","Error" +"3689",2018-01-03 13:20:00,"A","Debug" +"3690",2018-01-03 13:40:00,"C","No clue" +"3691",2018-01-03 14:00:00,"B","Error" +"3692",2018-01-03 14:20:00,"C","Check with author" +"3693",2018-01-03 14:40:00,"C","Limit" +"3694",2018-01-03 15:00:00,"C","Warn" +"3695",2018-01-03 15:20:00,"B","Attach" +"3696",2018-01-03 15:40:00,"C","Check with author" +"3697",2018-01-03 16:00:00,"C","Warn" +"3698",2018-01-03 16:20:00,"B","Limit" +"3699",2018-01-03 16:40:00,"C","Debug" +"3700",2018-01-03 17:00:00,"C","Attach" +"3701",2018-01-03 17:20:00,"C","No clue" +"3702",2018-01-03 17:40:00,"B","Limit" +"3703",2018-01-03 18:00:00,"C","Error" +"3704",2018-01-03 18:20:00,"B","Error" +"3705",2018-01-03 18:40:00,"B","Error" +"3706",2018-01-03 19:00:00,"B","No clue" +"3707",2018-01-03 19:20:00,"B","Debug" +"3708",2018-01-03 19:40:00,"B","Limit" +"3709",2018-01-03 20:00:00,"B","No clue" +"3710",2018-01-03 20:20:00,"A","Warn" +"3711",2018-01-03 20:40:00,"B","Check with author" +"3712",2018-01-03 21:00:00,"B","Warn" +"3713",2018-01-03 21:20:00,"A","Error" +"3714",2018-01-03 21:40:00,"A","Limit" +"3715",2018-01-03 22:00:00,"B","Attach" +"3716",2018-01-03 22:20:00,"B","No clue" +"3717",2018-01-03 22:40:00,"A","Error" +"3718",2018-01-03 23:00:00,"C","Check with author" +"3719",2018-01-03 23:20:00,"B","Check with author" +"3720",2018-01-03 23:40:00,"B","Limit" +"3721",2018-01-04 00:00:00,"A","Warn" +"3722",2018-01-04 00:20:00,"A","Check with author" +"3723",2018-01-04 00:40:00,"A","Debug" +"3724",2018-01-04 01:00:00,"C","No clue" +"3725",2018-01-04 01:20:00,"B","No clue" +"3726",2018-01-04 01:40:00,"C","Debug" +"3727",2018-01-04 02:00:00,"C","Warn" +"3728",2018-01-04 02:20:00,"C","Limit" +"3729",2018-01-04 02:40:00,"A","Warn" +"3730",2018-01-04 03:00:00,"C","Limit" +"3731",2018-01-04 03:20:00,"C","Check with author" +"3732",2018-01-04 03:40:00,"C","Limit" +"3733",2018-01-04 04:00:00,"B","Attach" +"3734",2018-01-04 04:20:00,"C","Warn" +"3735",2018-01-04 04:40:00,"A","No clue" +"3736",2018-01-04 05:00:00,"A","Attach" +"3737",2018-01-04 05:20:00,"A","Error" +"3738",2018-01-04 05:40:00,"A","No clue" +"3739",2018-01-04 06:00:00,"A","Check with author" +"3740",2018-01-04 06:20:00,"C","Limit" +"3741",2018-01-04 06:40:00,"A","Check with author" +"3742",2018-01-04 07:00:00,"B","Limit" +"3743",2018-01-04 07:20:00,"B","Warn" +"3744",2018-01-04 07:40:00,"C","Attach" +"3745",2018-01-04 08:00:00,"B","Attach" +"3746",2018-01-04 08:20:00,"A","Check with author" +"3747",2018-01-04 08:40:00,"C","Warn" +"3748",2018-01-04 09:00:00,"B","Debug" +"3749",2018-01-04 09:20:00,"A","Attach" +"3750",2018-01-04 09:40:00,"B","No clue" +"3751",2018-01-04 10:00:00,"C","Debug" +"3752",2018-01-04 10:20:00,"A","Debug" +"3753",2018-01-04 10:40:00,"B","Check with author" +"3754",2018-01-04 11:00:00,"B","Limit" +"3755",2018-01-04 11:20:00,"A","Limit" +"3756",2018-01-04 11:40:00,"A","Attach" +"3757",2018-01-04 12:00:00,"A","Warn" +"3758",2018-01-04 12:20:00,"B","Limit" +"3759",2018-01-04 12:40:00,"B","Attach" +"3760",2018-01-04 13:00:00,"B","Attach" +"3761",2018-01-04 13:20:00,"C","Error" +"3762",2018-01-04 13:40:00,"C","Limit" +"3763",2018-01-04 14:00:00,"B","No clue" +"3764",2018-01-04 14:20:00,"A","Attach" +"3765",2018-01-04 14:40:00,"B","Debug" +"3766",2018-01-04 15:00:00,"C","Attach" +"3767",2018-01-04 15:20:00,"C","No clue" +"3768",2018-01-04 15:40:00,"C","Limit" +"3769",2018-01-04 16:00:00,"A","Error" +"3770",2018-01-04 16:20:00,"C","Warn" +"3771",2018-01-04 16:40:00,"A","Limit" +"3772",2018-01-04 17:00:00,"B","Error" +"3773",2018-01-04 17:20:00,"B","Error" +"3774",2018-01-04 17:40:00,"A","No clue" +"3775",2018-01-04 18:00:00,"A","Error" +"3776",2018-01-04 18:20:00,"C","Debug" +"3777",2018-01-04 18:40:00,"A","Error" +"3778",2018-01-04 19:00:00,"B","Warn" +"3779",2018-01-04 19:20:00,"A","Check with author" +"3780",2018-01-04 19:40:00,"B","Attach" +"3781",2018-01-04 20:00:00,"A","No clue" +"3782",2018-01-04 20:20:00,"C","Attach" +"3783",2018-01-04 20:40:00,"A","Attach" +"3784",2018-01-04 21:00:00,"A","Check with author" +"3785",2018-01-04 21:20:00,"B","Check with author" +"3786",2018-01-04 21:40:00,"A","Check with author" +"3787",2018-01-04 22:00:00,"B","Warn" +"3788",2018-01-04 22:20:00,"A","Warn" +"3789",2018-01-04 22:40:00,"A","Limit" +"3790",2018-01-04 23:00:00,"B","Limit" +"3791",2018-01-04 23:20:00,"C","No clue" +"3792",2018-01-04 23:40:00,"C","Error" +"3793",2018-01-05 00:00:00,"C","Attach" +"3794",2018-01-05 00:20:00,"A","Error" +"3795",2018-01-05 00:40:00,"C","Limit" +"3796",2018-01-05 01:00:00,"B","Attach" +"3797",2018-01-05 01:20:00,"B","Error" +"3798",2018-01-05 01:40:00,"A","Warn" +"3799",2018-01-05 02:00:00,"C","Attach" +"3800",2018-01-05 02:20:00,"B","Error" +"3801",2018-01-05 02:40:00,"C","No clue" +"3802",2018-01-05 03:00:00,"A","No clue" +"3803",2018-01-05 03:20:00,"A","Limit" +"3804",2018-01-05 03:40:00,"A","Debug" +"3805",2018-01-05 04:00:00,"A","Debug" +"3806",2018-01-05 04:20:00,"A","Debug" +"3807",2018-01-05 04:40:00,"C","Check with author" +"3808",2018-01-05 05:00:00,"C","Check with author" +"3809",2018-01-05 05:20:00,"C","Warn" +"3810",2018-01-05 05:40:00,"B","Attach" +"3811",2018-01-05 06:00:00,"B","Warn" +"3812",2018-01-05 06:20:00,"B","Debug" +"3813",2018-01-05 06:40:00,"C","Warn" +"3814",2018-01-05 07:00:00,"A","Limit" +"3815",2018-01-05 07:20:00,"A","Limit" +"3816",2018-01-05 07:40:00,"A","Limit" +"3817",2018-01-05 08:00:00,"B","Warn" +"3818",2018-01-05 08:20:00,"A","Limit" +"3819",2018-01-05 08:40:00,"C","No clue" +"3820",2018-01-05 09:00:00,"C","No clue" +"3821",2018-01-05 09:20:00,"A","Warn" +"3822",2018-01-05 09:40:00,"B","Debug" +"3823",2018-01-05 10:00:00,"B","No clue" +"3824",2018-01-05 10:20:00,"C","Error" +"3825",2018-01-05 10:40:00,"B","Check with author" +"3826",2018-01-05 11:00:00,"B","Limit" +"3827",2018-01-05 11:20:00,"C","Debug" +"3828",2018-01-05 11:40:00,"B","Warn" +"3829",2018-01-05 12:00:00,"A","Error" +"3830",2018-01-05 12:20:00,"B","Limit" +"3831",2018-01-05 12:40:00,"B","Warn" +"3832",2018-01-05 13:00:00,"A","Limit" +"3833",2018-01-05 13:20:00,"C","Error" +"3834",2018-01-05 13:40:00,"A","No clue" +"3835",2018-01-05 14:00:00,"C","Debug" +"3836",2018-01-01 12:00:00,"C","Attach" +"3837",2018-01-01 12:20:00,"C","No clue" +"3838",2018-01-01 12:40:00,"C","Limit" +"3839",2018-01-01 13:00:00,"B","No clue" +"3840",2018-01-01 13:20:00,"A","Attach" +"3841",2018-01-01 13:40:00,"C","Error" +"3842",2018-01-01 14:00:00,"C","Attach" +"3843",2018-01-01 14:20:00,"B","Attach" +"3844",2018-01-01 14:40:00,"A","Debug" +"3845",2018-01-01 15:00:00,"C","Limit" +"3846",2018-01-01 15:20:00,"A","Check with author" +"3847",2018-01-01 15:40:00,"C","Check with author" +"3848",2018-01-01 16:00:00,"A","Attach" +"3849",2018-01-01 16:20:00,"B","Check with author" +"3850",2018-01-01 16:40:00,"C","No clue" +"3851",2018-01-01 17:00:00,"A","Limit" +"3852",2018-01-01 17:20:00,"B","Warn" +"3853",2018-01-01 17:40:00,"A","No clue" +"3854",2018-01-01 18:00:00,"A","Error" +"3855",2018-01-01 18:20:00,"A","Error" +"3856",2018-01-01 18:40:00,"A","Limit" +"3857",2018-01-01 19:00:00,"A","Limit" +"3858",2018-01-01 19:20:00,"C","Error" +"3859",2018-01-01 19:40:00,"B","Debug" +"3860",2018-01-01 20:00:00,"B","No clue" +"3861",2018-01-01 20:20:00,"A","Debug" +"3862",2018-01-01 20:40:00,"A","Check with author" +"3863",2018-01-01 21:00:00,"B","Limit" +"3864",2018-01-01 21:20:00,"A","Limit" +"3865",2018-01-01 21:40:00,"C","No clue" +"3866",2018-01-01 22:00:00,"C","Limit" +"3867",2018-01-01 22:20:00,"B","Limit" +"3868",2018-01-01 22:40:00,"C","Debug" +"3869",2018-01-01 23:00:00,"B","Debug" +"3870",2018-01-01 23:20:00,"A","Debug" +"3871",2018-01-01 23:40:00,"C","Check with author" +"3872",2018-01-02 00:00:00,"B","Attach" +"3873",2018-01-02 00:20:00,"A","No clue" +"3874",2018-01-02 00:40:00,"B","No clue" +"3875",2018-01-02 01:00:00,"B","Limit" +"3876",2018-01-02 01:20:00,"B","Limit" +"3877",2018-01-02 01:40:00,"A","Debug" +"3878",2018-01-02 02:00:00,"A","No clue" +"3879",2018-01-02 02:20:00,"A","Limit" +"3880",2018-01-02 02:40:00,"B","Attach" +"3881",2018-01-02 03:00:00,"B","Error" +"3882",2018-01-02 03:20:00,"B","Debug" +"3883",2018-01-02 03:40:00,"A","Error" +"3884",2018-01-02 04:00:00,"A","Attach" +"3885",2018-01-02 04:20:00,"B","Limit" +"3886",2018-01-02 04:40:00,"B","Error" +"3887",2018-01-02 05:00:00,"B","Attach" +"3888",2018-01-02 05:20:00,"B","Limit" +"3889",2018-01-02 05:40:00,"B","No clue" +"3890",2018-01-02 06:00:00,"B","Error" +"3891",2018-01-02 06:20:00,"C","No clue" +"3892",2018-01-02 06:40:00,"C","Debug" +"3893",2018-01-02 07:00:00,"B","Warn" +"3894",2018-01-02 07:20:00,"C","Limit" +"3895",2018-01-02 07:40:00,"B","Limit" +"3896",2018-01-02 08:00:00,"C","No clue" +"3897",2018-01-02 08:20:00,"B","Attach" +"3898",2018-01-02 08:40:00,"C","Check with author" +"3899",2018-01-02 09:00:00,"A","Limit" +"3900",2018-01-02 09:20:00,"B","Debug" +"3901",2018-01-02 09:40:00,"B","No clue" +"3902",2018-01-02 10:00:00,"C","Error" +"3903",2018-01-02 10:20:00,"A","Limit" +"3904",2018-01-02 10:40:00,"B","Warn" +"3905",2018-01-02 11:00:00,"B","Limit" +"3906",2018-01-02 11:20:00,"C","No clue" +"3907",2018-01-02 11:40:00,"B","Check with author" +"3908",2018-01-02 12:00:00,"B","Debug" +"3909",2018-01-02 12:20:00,"A","Limit" +"3910",2018-01-02 12:40:00,"C","Warn" +"3911",2018-01-02 13:00:00,"C","Limit" +"3912",2018-01-02 13:20:00,"B","No clue" +"3913",2018-01-02 13:40:00,"C","Attach" +"3914",2018-01-02 14:00:00,"B","Debug" +"3915",2018-01-02 14:20:00,"B","Debug" +"3916",2018-01-02 14:40:00,"B","Limit" +"3917",2018-01-02 15:00:00,"C","Warn" +"3918",2018-01-02 15:20:00,"A","Warn" +"3919",2018-01-02 15:40:00,"C","Warn" +"3920",2018-01-02 16:00:00,"B","Error" +"3921",2018-01-02 16:20:00,"A","Error" +"3922",2018-01-02 16:40:00,"B","Check with author" +"3923",2018-01-02 17:00:00,"A","Error" +"3924",2018-01-02 17:20:00,"A","No clue" +"3925",2018-01-02 17:40:00,"C","No clue" +"3926",2018-01-02 18:00:00,"B","Debug" +"3927",2018-01-02 18:20:00,"A","Debug" +"3928",2018-01-02 18:40:00,"B","Debug" +"3929",2018-01-02 19:00:00,"C","Error" +"3930",2018-01-02 19:20:00,"C","Error" +"3931",2018-01-02 19:40:00,"A","Attach" +"3932",2018-01-02 20:00:00,"C","Debug" +"3933",2018-01-02 20:20:00,"C","Debug" +"3934",2018-01-02 20:40:00,"C","Debug" +"3935",2018-01-02 21:00:00,"A","Check with author" +"3936",2018-01-02 21:20:00,"A","Warn" +"3937",2018-01-02 21:40:00,"B","Limit" +"3938",2018-01-02 22:00:00,"C","Error" +"3939",2018-01-02 22:20:00,"B","Error" +"3940",2018-01-02 22:40:00,"A","Limit" +"3941",2018-01-02 23:00:00,"A","Attach" +"3942",2018-01-02 23:20:00,"A","Check with author" +"3943",2018-01-02 23:40:00,"B","Limit" +"3944",2018-01-03 00:00:00,"C","Check with author" +"3945",2018-01-03 00:20:00,"C","Limit" +"3946",2018-01-03 00:40:00,"C","No clue" +"3947",2018-01-03 01:00:00,"C","Error" +"3948",2018-01-03 01:20:00,"A","No clue" +"3949",2018-01-03 01:40:00,"C","Attach" +"3950",2018-01-03 02:00:00,"A","Error" +"3951",2018-01-03 02:20:00,"A","Error" +"3952",2018-01-03 02:40:00,"A","Error" +"3953",2018-01-03 03:00:00,"B","No clue" +"3954",2018-01-03 03:20:00,"C","Attach" +"3955",2018-01-03 03:40:00,"B","Debug" +"3956",2018-01-03 04:00:00,"A","Debug" +"3957",2018-01-03 04:20:00,"B","Check with author" +"3958",2018-01-03 04:40:00,"C","Check with author" +"3959",2018-01-03 05:00:00,"A","Error" +"3960",2018-01-03 05:20:00,"B","Warn" +"3961",2018-01-03 05:40:00,"C","Debug" +"3962",2018-01-03 06:00:00,"B","Limit" +"3963",2018-01-03 06:20:00,"A","Error" +"3964",2018-01-03 06:40:00,"C","Limit" +"3965",2018-01-03 07:00:00,"C","Attach" +"3966",2018-01-03 07:20:00,"A","Warn" +"3967",2018-01-03 07:40:00,"C","Limit" +"3968",2018-01-03 08:00:00,"B","Limit" +"3969",2018-01-03 08:20:00,"C","Check with author" +"3970",2018-01-03 08:40:00,"C","Attach" +"3971",2018-01-03 09:00:00,"C","No clue" +"3972",2018-01-03 09:20:00,"C","Error" +"3973",2018-01-03 09:40:00,"A","No clue" +"3974",2018-01-03 10:00:00,"C","Warn" +"3975",2018-01-03 10:20:00,"C","Check with author" +"3976",2018-01-03 10:40:00,"A","Error" +"3977",2018-01-03 11:00:00,"B","Check with author" +"3978",2018-01-03 11:20:00,"A","Limit" +"3979",2018-01-03 11:40:00,"A","Attach" +"3980",2018-01-03 12:00:00,"A","Attach" +"3981",2018-01-03 12:20:00,"B","Warn" +"3982",2018-01-03 12:40:00,"A","Debug" +"3983",2018-01-03 13:00:00,"C","Attach" +"3984",2018-01-03 13:20:00,"C","Attach" +"3985",2018-01-03 13:40:00,"C","Limit" +"3986",2018-01-03 14:00:00,"B","Attach" +"3987",2018-01-03 14:20:00,"A","Warn" +"3988",2018-01-03 14:40:00,"A","No clue" +"3989",2018-01-03 15:00:00,"C","Error" +"3990",2018-01-03 15:20:00,"B","Limit" +"3991",2018-01-03 15:40:00,"A","No clue" +"3992",2018-01-03 16:00:00,"C","Warn" +"3993",2018-01-03 16:20:00,"C","Debug" +"3994",2018-01-03 16:40:00,"C","Check with author" +"3995",2018-01-03 17:00:00,"A","Attach" +"3996",2018-01-03 17:20:00,"B","Limit" +"3997",2018-01-03 17:40:00,"B","Attach" +"3998",2018-01-03 18:00:00,"C","Error" +"3999",2018-01-03 18:20:00,"B","No clue" +"4000",2018-01-03 18:40:00,"A","Limit" +"4001",2018-01-03 19:00:00,"A","Debug" +"4002",2018-01-03 19:20:00,"B","Debug" +"4003",2018-01-03 19:40:00,"A","Debug" +"4004",2018-01-03 20:00:00,"C","Check with author" +"4005",2018-01-03 20:20:00,"C","Attach" +"4006",2018-01-03 20:40:00,"C","No clue" +"4007",2018-01-03 21:00:00,"A","Attach" +"4008",2018-01-03 21:20:00,"B","Attach" +"4009",2018-01-03 21:40:00,"C","Warn" +"4010",2018-01-03 22:00:00,"B","Attach" +"4011",2018-01-03 22:20:00,"C","Debug" +"4012",2018-01-03 22:40:00,"B","Attach" +"4013",2018-01-03 23:00:00,"A","Attach" +"4014",2018-01-03 23:20:00,"A","Warn" +"4015",2018-01-03 23:40:00,"B","Attach" +"4016",2018-01-04 00:00:00,"B","Attach" +"4017",2018-01-04 00:20:00,"B","Attach" +"4018",2018-01-04 00:40:00,"C","Attach" +"4019",2018-01-04 01:00:00,"C","Error" +"4020",2018-01-04 01:20:00,"A","Limit" +"4021",2018-01-04 01:40:00,"B","Warn" +"4022",2018-01-04 02:00:00,"C","No clue" +"4023",2018-01-04 02:20:00,"C","No clue" +"4024",2018-01-04 02:40:00,"A","Warn" +"4025",2018-01-04 03:00:00,"B","Check with author" +"4026",2018-01-04 03:20:00,"A","Warn" +"4027",2018-01-04 03:40:00,"C","Error" +"4028",2018-01-04 04:00:00,"B","Error" +"4029",2018-01-04 04:20:00,"A","Attach" +"4030",2018-01-04 04:40:00,"A","Check with author" +"4031",2018-01-04 05:00:00,"A","Check with author" +"4032",2018-01-04 05:20:00,"A","Limit" +"4033",2018-01-04 05:40:00,"C","Error" +"4034",2018-01-04 06:00:00,"A","Debug" +"4035",2018-01-04 06:20:00,"A","Warn" +"4036",2018-01-04 06:40:00,"A","Error" +"4037",2018-01-04 07:00:00,"C","Debug" +"4038",2018-01-04 07:20:00,"C","Check with author" +"4039",2018-01-04 07:40:00,"B","Attach" +"4040",2018-01-04 08:00:00,"B","Error" +"4041",2018-01-04 08:20:00,"A","Check with author" +"4042",2018-01-04 08:40:00,"C","No clue" +"4043",2018-01-04 09:00:00,"B","Debug" +"4044",2018-01-04 09:20:00,"B","Warn" +"4045",2018-01-04 09:40:00,"B","Limit" +"4046",2018-01-04 10:00:00,"A","Attach" +"4047",2018-01-04 10:20:00,"A","Limit" +"4048",2018-01-04 10:40:00,"B","Check with author" +"4049",2018-01-04 11:00:00,"A","Debug" +"4050",2018-01-04 11:20:00,"B","Error" +"4051",2018-01-04 11:40:00,"A","Check with author" +"4052",2018-01-04 12:00:00,"B","Error" +"4053",2018-01-04 12:20:00,"A","Check with author" +"4054",2018-01-04 12:40:00,"A","Check with author" +"4055",2018-01-04 13:00:00,"A","Limit" +"4056",2018-01-04 13:20:00,"B","Debug" +"4057",2018-01-04 13:40:00,"B","Check with author" +"4058",2018-01-04 14:00:00,"A","No clue" +"4059",2018-01-04 14:20:00,"B","Debug" +"4060",2018-01-04 14:40:00,"A","No clue" +"4061",2018-01-04 15:00:00,"A","Error" +"4062",2018-01-04 15:20:00,"A","Error" +"4063",2018-01-04 15:40:00,"C","Attach" +"4064",2018-01-04 16:00:00,"B","Warn" +"4065",2018-01-04 16:20:00,"A","Warn" +"4066",2018-01-04 16:40:00,"A","Check with author" +"4067",2018-01-04 17:00:00,"B","No clue" +"4068",2018-01-04 17:20:00,"B","Limit" +"4069",2018-01-04 17:40:00,"C","Check with author" +"4070",2018-01-04 18:00:00,"C","Error" +"4071",2018-01-04 18:20:00,"C","Error" +"4072",2018-01-04 18:40:00,"B","Limit" +"4073",2018-01-04 19:00:00,"A","Warn" +"4074",2018-01-04 19:20:00,"C","Debug" +"4075",2018-01-04 19:40:00,"A","Limit" +"4076",2018-01-04 20:00:00,"B","No clue" +"4077",2018-01-04 20:20:00,"C","Attach" +"4078",2018-01-04 20:40:00,"A","Error" +"4079",2018-01-04 21:00:00,"C","No clue" +"4080",2018-01-04 21:20:00,"C","Limit" +"4081",2018-01-04 21:40:00,"B","Error" +"4082",2018-01-04 22:00:00,"A","Error" +"4083",2018-01-04 22:20:00,"C","Debug" +"4084",2018-01-04 22:40:00,"A","Limit" +"4085",2018-01-04 23:00:00,"C","Warn" +"4086",2018-01-04 23:20:00,"A","Error" +"4087",2018-01-04 23:40:00,"C","No clue" +"4088",2018-01-05 00:00:00,"A","Debug" +"4089",2018-01-05 00:20:00,"C","Check with author" +"4090",2018-01-05 00:40:00,"A","Error" +"4091",2018-01-05 01:00:00,"B","Limit" +"4092",2018-01-05 01:20:00,"A","Debug" +"4093",2018-01-05 01:40:00,"B","Warn" +"4094",2018-01-05 02:00:00,"B","No clue" +"4095",2018-01-05 02:20:00,"B","Error" +"4096",2018-01-05 02:40:00,"C","Limit" +"4097",2018-01-05 03:00:00,"A","Error" +"4098",2018-01-05 03:20:00,"C","Attach" +"4099",2018-01-05 03:40:00,"B","Limit" +"4100",2018-01-05 04:00:00,"C","Error" +"4101",2018-01-05 04:20:00,"B","Debug" +"4102",2018-01-05 04:40:00,"B","Limit" +"4103",2018-01-05 05:00:00,"C","No clue" +"4104",2018-01-05 05:20:00,"A","Warn" +"4105",2018-01-05 05:40:00,"C","Limit" +"4106",2018-01-05 06:00:00,"C","Attach" +"4107",2018-01-05 06:20:00,"A","Check with author" +"4108",2018-01-05 06:40:00,"B","Check with author" +"4109",2018-01-05 07:00:00,"B","Warn" +"4110",2018-01-05 07:20:00,"A","Attach" +"4111",2018-01-05 07:40:00,"C","Limit" +"4112",2018-01-05 08:00:00,"B","Debug" +"4113",2018-01-05 08:20:00,"A","Limit" +"4114",2018-01-05 08:40:00,"C","Debug" +"4115",2018-01-05 09:00:00,"A","Limit" +"4116",2018-01-05 09:20:00,"B","Debug" +"4117",2018-01-05 09:40:00,"C","Debug" +"4118",2018-01-05 10:00:00,"B","Error" +"4119",2018-01-05 10:20:00,"C","Debug" +"4120",2018-01-05 10:40:00,"B","Check with author" +"4121",2018-01-05 11:00:00,"A","No clue" +"4122",2018-01-05 11:20:00,"C","Error" +"4123",2018-01-05 11:40:00,"C","Warn" +"4124",2018-01-05 12:00:00,"A","Limit" +"4125",2018-01-05 12:20:00,"B","No clue" +"4126",2018-01-05 12:40:00,"C","Error" +"4127",2018-01-05 13:00:00,"C","Error" +"4128",2018-01-05 13:20:00,"A","Limit" +"4129",2018-01-05 13:40:00,"B","Debug" +"4130",2018-01-05 14:00:00,"A","Limit" +"4131",2018-01-01 12:00:00,"A","Warn" +"4132",2018-01-01 12:20:00,"B","Error" +"4133",2018-01-01 12:40:00,"B","Debug" +"4134",2018-01-01 13:00:00,"B","Warn" +"4135",2018-01-01 13:20:00,"A","No clue" +"4136",2018-01-01 13:40:00,"C","Limit" +"4137",2018-01-01 14:00:00,"B","Warn" +"4138",2018-01-01 14:20:00,"C","Limit" +"4139",2018-01-01 14:40:00,"B","Error" +"4140",2018-01-01 15:00:00,"B","Error" +"4141",2018-01-01 15:20:00,"C","Attach" +"4142",2018-01-01 15:40:00,"A","Debug" +"4143",2018-01-01 16:00:00,"C","Warn" +"4144",2018-01-01 16:20:00,"B","Limit" +"4145",2018-01-01 16:40:00,"C","Error" +"4146",2018-01-01 17:00:00,"B","No clue" +"4147",2018-01-01 17:20:00,"B","Limit" +"4148",2018-01-01 17:40:00,"A","Limit" +"4149",2018-01-01 18:00:00,"A","Limit" +"4150",2018-01-01 18:20:00,"B","Limit" +"4151",2018-01-01 18:40:00,"C","Debug" +"4152",2018-01-01 19:00:00,"C","Check with author" +"4153",2018-01-01 19:20:00,"A","Check with author" +"4154",2018-01-01 19:40:00,"C","Error" +"4155",2018-01-01 20:00:00,"B","Error" +"4156",2018-01-01 20:20:00,"A","Error" +"4157",2018-01-01 20:40:00,"C","Check with author" +"4158",2018-01-01 21:00:00,"C","Check with author" +"4159",2018-01-01 21:20:00,"A","Check with author" +"4160",2018-01-01 21:40:00,"C","Error" +"4161",2018-01-01 22:00:00,"A","Warn" +"4162",2018-01-01 22:20:00,"B","Check with author" +"4163",2018-01-01 22:40:00,"C","Attach" +"4164",2018-01-01 23:00:00,"B","Check with author" +"4165",2018-01-01 23:20:00,"B","Debug" +"4166",2018-01-01 23:40:00,"A","Debug" +"4167",2018-01-02 00:00:00,"C","No clue" +"4168",2018-01-02 00:20:00,"B","Attach" +"4169",2018-01-02 00:40:00,"C","Limit" +"4170",2018-01-02 01:00:00,"B","Limit" +"4171",2018-01-02 01:20:00,"A","Error" +"4172",2018-01-02 01:40:00,"A","Attach" +"4173",2018-01-02 02:00:00,"B","Limit" +"4174",2018-01-02 02:20:00,"C","Debug" +"4175",2018-01-02 02:40:00,"C","Debug" +"4176",2018-01-02 03:00:00,"C","Limit" +"4177",2018-01-02 03:20:00,"C","Debug" +"4178",2018-01-02 03:40:00,"C","Attach" +"4179",2018-01-02 04:00:00,"C","No clue" +"4180",2018-01-02 04:20:00,"A","Debug" +"4181",2018-01-02 04:40:00,"B","Warn" +"4182",2018-01-02 05:00:00,"B","Attach" +"4183",2018-01-02 05:20:00,"A","Error" +"4184",2018-01-02 05:40:00,"B","Limit" +"4185",2018-01-02 06:00:00,"B","Limit" +"4186",2018-01-02 06:20:00,"A","No clue" +"4187",2018-01-02 06:40:00,"A","Check with author" +"4188",2018-01-02 07:00:00,"B","Warn" +"4189",2018-01-02 07:20:00,"A","Limit" +"4190",2018-01-02 07:40:00,"B","Warn" +"4191",2018-01-02 08:00:00,"B","No clue" +"4192",2018-01-02 08:20:00,"A","Error" +"4193",2018-01-02 08:40:00,"C","Attach" +"4194",2018-01-02 09:00:00,"A","Error" +"4195",2018-01-02 09:20:00,"C","Attach" +"4196",2018-01-02 09:40:00,"A","Debug" +"4197",2018-01-02 10:00:00,"A","Error" +"4198",2018-01-02 10:20:00,"A","Error" +"4199",2018-01-02 10:40:00,"A","Warn" +"4200",2018-01-02 11:00:00,"C","Debug" +"4201",2018-01-02 11:20:00,"A","Warn" +"4202",2018-01-02 11:40:00,"A","Error" +"4203",2018-01-02 12:00:00,"C","Check with author" +"4204",2018-01-02 12:20:00,"B","Error" +"4205",2018-01-02 12:40:00,"B","No clue" +"4206",2018-01-02 13:00:00,"B","Attach" +"4207",2018-01-02 13:20:00,"C","Check with author" +"4208",2018-01-02 13:40:00,"B","Limit" +"4209",2018-01-02 14:00:00,"B","Limit" +"4210",2018-01-02 14:20:00,"A","Error" +"4211",2018-01-02 14:40:00,"A","Attach" +"4212",2018-01-02 15:00:00,"A","No clue" +"4213",2018-01-02 15:20:00,"B","Attach" +"4214",2018-01-02 15:40:00,"C","Attach" +"4215",2018-01-02 16:00:00,"A","Attach" +"4216",2018-01-02 16:20:00,"B","Error" +"4217",2018-01-02 16:40:00,"C","Attach" +"4218",2018-01-02 17:00:00,"C","Debug" +"4219",2018-01-02 17:20:00,"C","Attach" +"4220",2018-01-02 17:40:00,"B","Attach" +"4221",2018-01-02 18:00:00,"B","Limit" +"4222",2018-01-02 18:20:00,"B","Attach" +"4223",2018-01-02 18:40:00,"B","Warn" +"4224",2018-01-02 19:00:00,"C","Debug" +"4225",2018-01-02 19:20:00,"A","Error" +"4226",2018-01-02 19:40:00,"A","Error" +"4227",2018-01-02 20:00:00,"B","Error" +"4228",2018-01-02 20:20:00,"B","No clue" +"4229",2018-01-02 20:40:00,"A","Limit" +"4230",2018-01-02 21:00:00,"A","No clue" +"4231",2018-01-02 21:20:00,"B","No clue" +"4232",2018-01-02 21:40:00,"C","Debug" +"4233",2018-01-02 22:00:00,"A","Limit" +"4234",2018-01-02 22:20:00,"B","Warn" +"4235",2018-01-02 22:40:00,"C","No clue" +"4236",2018-01-02 23:00:00,"B","Limit" +"4237",2018-01-02 23:20:00,"A","Check with author" +"4238",2018-01-02 23:40:00,"C","Error" +"4239",2018-01-03 00:00:00,"C","Error" +"4240",2018-01-03 00:20:00,"C","No clue" +"4241",2018-01-03 00:40:00,"C","Error" +"4242",2018-01-03 01:00:00,"A","Limit" +"4243",2018-01-03 01:20:00,"B","Error" +"4244",2018-01-03 01:40:00,"C","Error" +"4245",2018-01-03 02:00:00,"B","No clue" +"4246",2018-01-03 02:20:00,"A","Check with author" +"4247",2018-01-03 02:40:00,"B","No clue" +"4248",2018-01-03 03:00:00,"C","Attach" +"4249",2018-01-03 03:20:00,"B","Check with author" +"4250",2018-01-03 03:40:00,"A","Check with author" +"4251",2018-01-03 04:00:00,"C","Check with author" +"4252",2018-01-03 04:20:00,"C","Debug" +"4253",2018-01-03 04:40:00,"C","Debug" +"4254",2018-01-03 05:00:00,"B","Warn" +"4255",2018-01-03 05:20:00,"A","No clue" +"4256",2018-01-03 05:40:00,"B","Check with author" +"4257",2018-01-03 06:00:00,"A","Debug" +"4258",2018-01-03 06:20:00,"B","Debug" +"4259",2018-01-03 06:40:00,"C","Debug" +"4260",2018-01-03 07:00:00,"C","Limit" +"4261",2018-01-03 07:20:00,"B","Limit" +"4262",2018-01-03 07:40:00,"B","Error" +"4263",2018-01-03 08:00:00,"A","Attach" +"4264",2018-01-03 08:20:00,"A","Limit" +"4265",2018-01-03 08:40:00,"A","Check with author" +"4266",2018-01-03 09:00:00,"B","Error" +"4267",2018-01-03 09:20:00,"C","Error" +"4268",2018-01-03 09:40:00,"C","Limit" +"4269",2018-01-03 10:00:00,"B","No clue" +"4270",2018-01-03 10:20:00,"C","No clue" +"4271",2018-01-03 10:40:00,"B","Warn" +"4272",2018-01-03 11:00:00,"A","No clue" +"4273",2018-01-03 11:20:00,"B","Check with author" +"4274",2018-01-03 11:40:00,"B","Error" +"4275",2018-01-03 12:00:00,"A","Check with author" +"4276",2018-01-03 12:20:00,"C","Attach" +"4277",2018-01-03 12:40:00,"A","Debug" +"4278",2018-01-03 13:00:00,"A","Attach" +"4279",2018-01-03 13:20:00,"C","Error" +"4280",2018-01-03 13:40:00,"C","Error" +"4281",2018-01-03 14:00:00,"A","Error" +"4282",2018-01-03 14:20:00,"C","Warn" +"4283",2018-01-03 14:40:00,"C","Debug" +"4284",2018-01-03 15:00:00,"A","Limit" +"4285",2018-01-03 15:20:00,"B","Debug" +"4286",2018-01-03 15:40:00,"A","Warn" +"4287",2018-01-03 16:00:00,"C","Attach" +"4288",2018-01-03 16:20:00,"B","No clue" +"4289",2018-01-03 16:40:00,"C","Check with author" +"4290",2018-01-03 17:00:00,"A","Error" +"4291",2018-01-03 17:20:00,"A","Check with author" +"4292",2018-01-03 17:40:00,"C","Warn" +"4293",2018-01-03 18:00:00,"A","Check with author" +"4294",2018-01-03 18:20:00,"B","Attach" +"4295",2018-01-03 18:40:00,"C","No clue" +"4296",2018-01-03 19:00:00,"C","Debug" +"4297",2018-01-03 19:20:00,"B","Debug" +"4298",2018-01-03 19:40:00,"A","Check with author" +"4299",2018-01-03 20:00:00,"B","Attach" +"4300",2018-01-03 20:20:00,"A","No clue" +"4301",2018-01-03 20:40:00,"A","Error" +"4302",2018-01-03 21:00:00,"B","Error" +"4303",2018-01-03 21:20:00,"B","Error" +"4304",2018-01-03 21:40:00,"A","Debug" +"4305",2018-01-03 22:00:00,"A","Error" +"4306",2018-01-03 22:20:00,"B","Debug" +"4307",2018-01-03 22:40:00,"C","Warn" +"4308",2018-01-03 23:00:00,"A","No clue" +"4309",2018-01-03 23:20:00,"A","No clue" +"4310",2018-01-03 23:40:00,"C","Check with author" +"4311",2018-01-04 00:00:00,"C","Warn" +"4312",2018-01-04 00:20:00,"A","Warn" +"4313",2018-01-04 00:40:00,"A","Error" +"4314",2018-01-04 01:00:00,"B","Error" +"4315",2018-01-04 01:20:00,"C","Limit" +"4316",2018-01-04 01:40:00,"A","Check with author" +"4317",2018-01-04 02:00:00,"B","Error" +"4318",2018-01-04 02:20:00,"A","Warn" +"4319",2018-01-04 02:40:00,"B","Attach" +"4320",2018-01-04 03:00:00,"B","Limit" +"4321",2018-01-04 03:20:00,"B","Attach" +"4322",2018-01-04 03:40:00,"B","No clue" +"4323",2018-01-04 04:00:00,"A","Debug" +"4324",2018-01-04 04:20:00,"B","Limit" +"4325",2018-01-04 04:40:00,"B","Limit" +"4326",2018-01-04 05:00:00,"C","No clue" +"4327",2018-01-04 05:20:00,"B","Warn" +"4328",2018-01-04 05:40:00,"C","Check with author" +"4329",2018-01-04 06:00:00,"B","Debug" +"4330",2018-01-04 06:20:00,"C","Attach" +"4331",2018-01-04 06:40:00,"B","No clue" +"4332",2018-01-04 07:00:00,"C","Error" +"4333",2018-01-04 07:20:00,"A","Warn" +"4334",2018-01-04 07:40:00,"A","Limit" +"4335",2018-01-04 08:00:00,"B","Check with author" +"4336",2018-01-04 08:20:00,"B","Debug" +"4337",2018-01-04 08:40:00,"B","Warn" +"4338",2018-01-04 09:00:00,"B","Debug" +"4339",2018-01-04 09:20:00,"A","Error" +"4340",2018-01-04 09:40:00,"A","Error" +"4341",2018-01-04 10:00:00,"C","Debug" +"4342",2018-01-04 10:20:00,"A","Limit" +"4343",2018-01-04 10:40:00,"C","Check with author" +"4344",2018-01-04 11:00:00,"B","Debug" +"4345",2018-01-04 11:20:00,"A","Attach" +"4346",2018-01-04 11:40:00,"A","Debug" +"4347",2018-01-04 12:00:00,"B","Debug" +"4348",2018-01-04 12:20:00,"A","Check with author" +"4349",2018-01-04 12:40:00,"A","Attach" +"4350",2018-01-04 13:00:00,"B","Error" +"4351",2018-01-04 13:20:00,"C","No clue" +"4352",2018-01-04 13:40:00,"B","Limit" +"4353",2018-01-04 14:00:00,"C","Debug" +"4354",2018-01-04 14:20:00,"A","Warn" +"4355",2018-01-04 14:40:00,"B","No clue" +"4356",2018-01-04 15:00:00,"C","Check with author" +"4357",2018-01-04 15:20:00,"B","Debug" +"4358",2018-01-04 15:40:00,"C","Attach" +"4359",2018-01-04 16:00:00,"C","Limit" +"4360",2018-01-04 16:20:00,"C","Error" +"4361",2018-01-04 16:40:00,"A","No clue" +"4362",2018-01-04 17:00:00,"C","Attach" +"4363",2018-01-04 17:20:00,"C","Check with author" +"4364",2018-01-04 17:40:00,"C","Warn" +"4365",2018-01-04 18:00:00,"B","No clue" +"4366",2018-01-04 18:20:00,"C","Attach" +"4367",2018-01-04 18:40:00,"B","Debug" +"4368",2018-01-04 19:00:00,"B","No clue" +"4369",2018-01-04 19:20:00,"B","Error" +"4370",2018-01-04 19:40:00,"C","Limit" +"4371",2018-01-04 20:00:00,"A","Warn" +"4372",2018-01-04 20:20:00,"A","Check with author" +"4373",2018-01-04 20:40:00,"C","Attach" +"4374",2018-01-04 21:00:00,"B","Warn" +"4375",2018-01-04 21:20:00,"A","Debug" +"4376",2018-01-04 21:40:00,"B","Warn" +"4377",2018-01-04 22:00:00,"B","No clue" +"4378",2018-01-04 22:20:00,"A","Error" +"4379",2018-01-04 22:40:00,"C","Limit" +"4380",2018-01-04 23:00:00,"A","Debug" +"4381",2018-01-04 23:20:00,"B","No clue" +"4382",2018-01-04 23:40:00,"B","Warn" +"4383",2018-01-05 00:00:00,"B","Attach" +"4384",2018-01-05 00:20:00,"A","Attach" +"4385",2018-01-05 00:40:00,"A","Debug" +"4386",2018-01-05 01:00:00,"C","No clue" +"4387",2018-01-05 01:20:00,"C","Debug" +"4388",2018-01-05 01:40:00,"A","Warn" +"4389",2018-01-05 02:00:00,"A","Error" +"4390",2018-01-05 02:20:00,"B","Error" +"4391",2018-01-05 02:40:00,"B","Warn" +"4392",2018-01-05 03:00:00,"B","Warn" +"4393",2018-01-05 03:20:00,"C","Warn" +"4394",2018-01-05 03:40:00,"C","Debug" +"4395",2018-01-05 04:00:00,"B","No clue" +"4396",2018-01-05 04:20:00,"B","Check with author" +"4397",2018-01-05 04:40:00,"B","Check with author" +"4398",2018-01-05 05:00:00,"B","Check with author" +"4399",2018-01-05 05:20:00,"A","Check with author" +"4400",2018-01-05 05:40:00,"A","Error" +"4401",2018-01-05 06:00:00,"A","Warn" +"4402",2018-01-05 06:20:00,"C","Attach" +"4403",2018-01-05 06:40:00,"C","Warn" +"4404",2018-01-05 07:00:00,"A","Error" +"4405",2018-01-05 07:20:00,"A","Attach" +"4406",2018-01-05 07:40:00,"B","No clue" +"4407",2018-01-05 08:00:00,"C","Warn" +"4408",2018-01-05 08:20:00,"C","Check with author" +"4409",2018-01-05 08:40:00,"C","Check with author" +"4410",2018-01-05 09:00:00,"A","Check with author" +"4411",2018-01-05 09:20:00,"B","Error" +"4412",2018-01-05 09:40:00,"B","Attach" +"4413",2018-01-05 10:00:00,"A","Debug" +"4414",2018-01-05 10:20:00,"B","Limit" +"4415",2018-01-05 10:40:00,"B","Limit" +"4416",2018-01-05 11:00:00,"B","Error" +"4417",2018-01-05 11:20:00,"B","Debug" +"4418",2018-01-05 11:40:00,"C","No clue" +"4419",2018-01-05 12:00:00,"A","Error" +"4420",2018-01-05 12:20:00,"A","Warn" +"4421",2018-01-05 12:40:00,"C","Warn" +"4422",2018-01-05 13:00:00,"C","No clue" +"4423",2018-01-05 13:20:00,"A","Check with author" +"4424",2018-01-05 13:40:00,"B","Limit" +"4425",2018-01-05 14:00:00,"C","Debug" +"4426",2018-01-01 12:00:00,"A","Error" +"4427",2018-01-01 12:20:00,"A","Attach" +"4428",2018-01-01 12:40:00,"B","Error" +"4429",2018-01-01 13:00:00,"C","Attach" +"4430",2018-01-01 13:20:00,"B","Warn" +"4431",2018-01-01 13:40:00,"C","Warn" +"4432",2018-01-01 14:00:00,"A","Debug" +"4433",2018-01-01 14:20:00,"A","Warn" +"4434",2018-01-01 14:40:00,"C","Warn" +"4435",2018-01-01 15:00:00,"C","Debug" +"4436",2018-01-01 15:20:00,"B","Warn" +"4437",2018-01-01 15:40:00,"C","Attach" +"4438",2018-01-01 16:00:00,"C","Debug" +"4439",2018-01-01 16:20:00,"A","Debug" +"4440",2018-01-01 16:40:00,"B","Debug" +"4441",2018-01-01 17:00:00,"C","Error" +"4442",2018-01-01 17:20:00,"A","Error" +"4443",2018-01-01 17:40:00,"B","Warn" +"4444",2018-01-01 18:00:00,"C","Limit" +"4445",2018-01-01 18:20:00,"C","Limit" +"4446",2018-01-01 18:40:00,"C","Warn" +"4447",2018-01-01 19:00:00,"B","Check with author" +"4448",2018-01-01 19:20:00,"A","Warn" +"4449",2018-01-01 19:40:00,"C","Warn" +"4450",2018-01-01 20:00:00,"A","Warn" +"4451",2018-01-01 20:20:00,"C","Error" +"4452",2018-01-01 20:40:00,"C","Attach" +"4453",2018-01-01 21:00:00,"B","Error" +"4454",2018-01-01 21:20:00,"C","Debug" +"4455",2018-01-01 21:40:00,"B","No clue" +"4456",2018-01-01 22:00:00,"C","Attach" +"4457",2018-01-01 22:20:00,"A","No clue" +"4458",2018-01-01 22:40:00,"C","Debug" +"4459",2018-01-01 23:00:00,"C","No clue" +"4460",2018-01-01 23:20:00,"B","Check with author" +"4461",2018-01-01 23:40:00,"C","Debug" +"4462",2018-01-02 00:00:00,"C","No clue" +"4463",2018-01-02 00:20:00,"B","No clue" +"4464",2018-01-02 00:40:00,"C","Error" +"4465",2018-01-02 01:00:00,"B","Limit" +"4466",2018-01-02 01:20:00,"C","Error" +"4467",2018-01-02 01:40:00,"B","Limit" +"4468",2018-01-02 02:00:00,"A","Error" +"4469",2018-01-02 02:20:00,"C","No clue" +"4470",2018-01-02 02:40:00,"B","No clue" +"4471",2018-01-02 03:00:00,"C","Warn" +"4472",2018-01-02 03:20:00,"C","Attach" +"4473",2018-01-02 03:40:00,"B","Debug" +"4474",2018-01-02 04:00:00,"B","Warn" +"4475",2018-01-02 04:20:00,"C","No clue" +"4476",2018-01-02 04:40:00,"A","No clue" +"4477",2018-01-02 05:00:00,"C","Error" +"4478",2018-01-02 05:20:00,"C","Debug" +"4479",2018-01-02 05:40:00,"B","Debug" +"4480",2018-01-02 06:00:00,"B","Check with author" +"4481",2018-01-02 06:20:00,"B","Error" +"4482",2018-01-02 06:40:00,"B","Check with author" +"4483",2018-01-02 07:00:00,"A","Limit" +"4484",2018-01-02 07:20:00,"A","Warn" +"4485",2018-01-02 07:40:00,"C","Attach" +"4486",2018-01-02 08:00:00,"C","Error" +"4487",2018-01-02 08:20:00,"C","Limit" +"4488",2018-01-02 08:40:00,"C","Debug" +"4489",2018-01-02 09:00:00,"B","Check with author" +"4490",2018-01-02 09:20:00,"A","Limit" +"4491",2018-01-02 09:40:00,"B","Error" +"4492",2018-01-02 10:00:00,"B","Check with author" +"4493",2018-01-02 10:20:00,"A","No clue" +"4494",2018-01-02 10:40:00,"C","Warn" +"4495",2018-01-02 11:00:00,"A","No clue" +"4496",2018-01-02 11:20:00,"B","Warn" +"4497",2018-01-02 11:40:00,"A","Debug" +"4498",2018-01-02 12:00:00,"A","Limit" +"4499",2018-01-02 12:20:00,"A","Attach" +"4500",2018-01-02 12:40:00,"B","No clue" +"4501",2018-01-02 13:00:00,"C","Attach" +"4502",2018-01-02 13:20:00,"C","Warn" +"4503",2018-01-02 13:40:00,"A","Debug" +"4504",2018-01-02 14:00:00,"B","Attach" +"4505",2018-01-02 14:20:00,"B","No clue" +"4506",2018-01-02 14:40:00,"B","No clue" +"4507",2018-01-02 15:00:00,"C","Limit" +"4508",2018-01-02 15:20:00,"C","Check with author" +"4509",2018-01-02 15:40:00,"B","Warn" +"4510",2018-01-02 16:00:00,"A","Warn" +"4511",2018-01-02 16:20:00,"B","Attach" +"4512",2018-01-02 16:40:00,"C","Error" +"4513",2018-01-02 17:00:00,"C","Attach" +"4514",2018-01-02 17:20:00,"B","Limit" +"4515",2018-01-02 17:40:00,"B","No clue" +"4516",2018-01-02 18:00:00,"B","Debug" +"4517",2018-01-02 18:20:00,"A","Warn" +"4518",2018-01-02 18:40:00,"B","Debug" +"4519",2018-01-02 19:00:00,"C","Check with author" +"4520",2018-01-02 19:20:00,"A","Error" +"4521",2018-01-02 19:40:00,"B","Debug" +"4522",2018-01-02 20:00:00,"B","Attach" +"4523",2018-01-02 20:20:00,"A","Debug" +"4524",2018-01-02 20:40:00,"A","Error" +"4525",2018-01-02 21:00:00,"A","Warn" +"4526",2018-01-02 21:20:00,"A","No clue" +"4527",2018-01-02 21:40:00,"B","Error" +"4528",2018-01-02 22:00:00,"C","Debug" +"4529",2018-01-02 22:20:00,"A","Check with author" +"4530",2018-01-02 22:40:00,"C","Limit" +"4531",2018-01-02 23:00:00,"A","Attach" +"4532",2018-01-02 23:20:00,"A","Debug" +"4533",2018-01-02 23:40:00,"A","Attach" +"4534",2018-01-03 00:00:00,"B","No clue" +"4535",2018-01-03 00:20:00,"A","Check with author" +"4536",2018-01-03 00:40:00,"C","Limit" +"4537",2018-01-03 01:00:00,"B","Check with author" +"4538",2018-01-03 01:20:00,"C","Check with author" +"4539",2018-01-03 01:40:00,"A","Attach" +"4540",2018-01-03 02:00:00,"A","Debug" +"4541",2018-01-03 02:20:00,"A","Check with author" +"4542",2018-01-03 02:40:00,"B","Check with author" +"4543",2018-01-03 03:00:00,"C","Limit" +"4544",2018-01-03 03:20:00,"A","Warn" +"4545",2018-01-03 03:40:00,"A","No clue" +"4546",2018-01-03 04:00:00,"C","Warn" +"4547",2018-01-03 04:20:00,"B","Check with author" +"4548",2018-01-03 04:40:00,"B","Limit" +"4549",2018-01-03 05:00:00,"B","Limit" +"4550",2018-01-03 05:20:00,"B","No clue" +"4551",2018-01-03 05:40:00,"A","Attach" +"4552",2018-01-03 06:00:00,"B","Check with author" +"4553",2018-01-03 06:20:00,"A","No clue" +"4554",2018-01-03 06:40:00,"B","Debug" +"4555",2018-01-03 07:00:00,"A","No clue" +"4556",2018-01-03 07:20:00,"A","No clue" +"4557",2018-01-03 07:40:00,"A","Check with author" +"4558",2018-01-03 08:00:00,"A","No clue" +"4559",2018-01-03 08:20:00,"C","Check with author" +"4560",2018-01-03 08:40:00,"C","Debug" +"4561",2018-01-03 09:00:00,"A","No clue" +"4562",2018-01-03 09:20:00,"C","No clue" +"4563",2018-01-03 09:40:00,"A","Check with author" +"4564",2018-01-03 10:00:00,"C","Error" +"4565",2018-01-03 10:20:00,"B","Limit" +"4566",2018-01-03 10:40:00,"A","Check with author" +"4567",2018-01-03 11:00:00,"C","Check with author" +"4568",2018-01-03 11:20:00,"C","No clue" +"4569",2018-01-03 11:40:00,"A","No clue" +"4570",2018-01-03 12:00:00,"C","No clue" +"4571",2018-01-03 12:20:00,"A","Check with author" +"4572",2018-01-03 12:40:00,"C","Warn" +"4573",2018-01-03 13:00:00,"C","Check with author" +"4574",2018-01-03 13:20:00,"A","Check with author" +"4575",2018-01-03 13:40:00,"A","Attach" +"4576",2018-01-03 14:00:00,"A","Warn" +"4577",2018-01-03 14:20:00,"C","Attach" +"4578",2018-01-03 14:40:00,"B","Attach" +"4579",2018-01-03 15:00:00,"C","Check with author" +"4580",2018-01-03 15:20:00,"C","Limit" +"4581",2018-01-03 15:40:00,"A","Warn" +"4582",2018-01-03 16:00:00,"A","Attach" +"4583",2018-01-03 16:20:00,"C","Debug" +"4584",2018-01-03 16:40:00,"B","Limit" +"4585",2018-01-03 17:00:00,"C","Attach" +"4586",2018-01-03 17:20:00,"C","Limit" +"4587",2018-01-03 17:40:00,"C","Debug" +"4588",2018-01-03 18:00:00,"B","Error" +"4589",2018-01-03 18:20:00,"B","Warn" +"4590",2018-01-03 18:40:00,"C","No clue" +"4591",2018-01-03 19:00:00,"C","Attach" +"4592",2018-01-03 19:20:00,"A","Check with author" +"4593",2018-01-03 19:40:00,"A","Debug" +"4594",2018-01-03 20:00:00,"A","Warn" +"4595",2018-01-03 20:20:00,"C","Error" +"4596",2018-01-03 20:40:00,"B","Error" +"4597",2018-01-03 21:00:00,"A","Check with author" +"4598",2018-01-03 21:20:00,"A","Error" +"4599",2018-01-03 21:40:00,"A","No clue" +"4600",2018-01-03 22:00:00,"C","Debug" +"4601",2018-01-03 22:20:00,"C","Debug" +"4602",2018-01-03 22:40:00,"B","Limit" +"4603",2018-01-03 23:00:00,"C","Check with author" +"4604",2018-01-03 23:20:00,"C","Limit" +"4605",2018-01-03 23:40:00,"C","Debug" +"4606",2018-01-04 00:00:00,"C","Debug" +"4607",2018-01-04 00:20:00,"C","Attach" +"4608",2018-01-04 00:40:00,"B","Warn" +"4609",2018-01-04 01:00:00,"B","Attach" +"4610",2018-01-04 01:20:00,"A","Error" +"4611",2018-01-04 01:40:00,"A","Attach" +"4612",2018-01-04 02:00:00,"A","Limit" +"4613",2018-01-04 02:20:00,"C","Attach" +"4614",2018-01-04 02:40:00,"A","Error" +"4615",2018-01-04 03:00:00,"C","Attach" +"4616",2018-01-04 03:20:00,"B","Warn" +"4617",2018-01-04 03:40:00,"C","Check with author" +"4618",2018-01-04 04:00:00,"A","Error" +"4619",2018-01-04 04:20:00,"B","Attach" +"4620",2018-01-04 04:40:00,"B","Limit" +"4621",2018-01-04 05:00:00,"B","Check with author" +"4622",2018-01-04 05:20:00,"B","Error" +"4623",2018-01-04 05:40:00,"C","Attach" +"4624",2018-01-04 06:00:00,"B","Limit" +"4625",2018-01-04 06:20:00,"A","Debug" +"4626",2018-01-04 06:40:00,"C","Limit" +"4627",2018-01-04 07:00:00,"A","Debug" +"4628",2018-01-04 07:20:00,"A","No clue" +"4629",2018-01-04 07:40:00,"B","Debug" +"4630",2018-01-04 08:00:00,"C","Debug" +"4631",2018-01-04 08:20:00,"B","Limit" +"4632",2018-01-04 08:40:00,"C","Error" +"4633",2018-01-04 09:00:00,"C","Attach" +"4634",2018-01-04 09:20:00,"B","Check with author" +"4635",2018-01-04 09:40:00,"B","Warn" +"4636",2018-01-04 10:00:00,"A","Error" +"4637",2018-01-04 10:20:00,"C","Warn" +"4638",2018-01-04 10:40:00,"B","Error" +"4639",2018-01-04 11:00:00,"A","Check with author" +"4640",2018-01-04 11:20:00,"B","Limit" +"4641",2018-01-04 11:40:00,"B","Warn" +"4642",2018-01-04 12:00:00,"A","Limit" +"4643",2018-01-04 12:20:00,"C","Attach" +"4644",2018-01-04 12:40:00,"C","Attach" +"4645",2018-01-04 13:00:00,"A","Debug" +"4646",2018-01-04 13:20:00,"A","Warn" +"4647",2018-01-04 13:40:00,"B","Check with author" +"4648",2018-01-04 14:00:00,"A","Attach" +"4649",2018-01-04 14:20:00,"C","Limit" +"4650",2018-01-04 14:40:00,"B","Debug" +"4651",2018-01-04 15:00:00,"B","Warn" +"4652",2018-01-04 15:20:00,"C","Limit" +"4653",2018-01-04 15:40:00,"C","Warn" +"4654",2018-01-04 16:00:00,"B","Debug" +"4655",2018-01-04 16:20:00,"C","No clue" +"4656",2018-01-04 16:40:00,"B","No clue" +"4657",2018-01-04 17:00:00,"A","Limit" +"4658",2018-01-04 17:20:00,"C","Attach" +"4659",2018-01-04 17:40:00,"C","No clue" +"4660",2018-01-04 18:00:00,"B","Check with author" +"4661",2018-01-04 18:20:00,"A","Limit" +"4662",2018-01-04 18:40:00,"A","Attach" +"4663",2018-01-04 19:00:00,"C","Check with author" +"4664",2018-01-04 19:20:00,"C","Error" +"4665",2018-01-04 19:40:00,"A","Debug" +"4666",2018-01-04 20:00:00,"B","Limit" +"4667",2018-01-04 20:20:00,"A","No clue" +"4668",2018-01-04 20:40:00,"C","Warn" +"4669",2018-01-04 21:00:00,"A","Error" +"4670",2018-01-04 21:20:00,"A","Error" +"4671",2018-01-04 21:40:00,"B","Limit" +"4672",2018-01-04 22:00:00,"C","No clue" +"4673",2018-01-04 22:20:00,"C","Error" +"4674",2018-01-04 22:40:00,"A","Check with author" +"4675",2018-01-04 23:00:00,"C","Warn" +"4676",2018-01-04 23:20:00,"A","Check with author" +"4677",2018-01-04 23:40:00,"A","Error" +"4678",2018-01-05 00:00:00,"A","Warn" +"4679",2018-01-05 00:20:00,"A","Warn" +"4680",2018-01-05 00:40:00,"C","Limit" +"4681",2018-01-05 01:00:00,"C","Check with author" +"4682",2018-01-05 01:20:00,"C","Error" +"4683",2018-01-05 01:40:00,"B","Check with author" +"4684",2018-01-05 02:00:00,"A","Warn" +"4685",2018-01-05 02:20:00,"B","Error" +"4686",2018-01-05 02:40:00,"A","Check with author" +"4687",2018-01-05 03:00:00,"C","Check with author" +"4688",2018-01-05 03:20:00,"B","Warn" +"4689",2018-01-05 03:40:00,"B","Warn" +"4690",2018-01-05 04:00:00,"B","Attach" +"4691",2018-01-05 04:20:00,"B","No clue" +"4692",2018-01-05 04:40:00,"A","Warn" +"4693",2018-01-05 05:00:00,"C","Limit" +"4694",2018-01-05 05:20:00,"C","Limit" +"4695",2018-01-05 05:40:00,"C","Debug" +"4696",2018-01-05 06:00:00,"C","Check with author" +"4697",2018-01-05 06:20:00,"A","Check with author" +"4698",2018-01-05 06:40:00,"C","Error" +"4699",2018-01-05 07:00:00,"B","Debug" +"4700",2018-01-05 07:20:00,"B","Limit" +"4701",2018-01-05 07:40:00,"A","Warn" +"4702",2018-01-05 08:00:00,"B","Attach" +"4703",2018-01-05 08:20:00,"C","Debug" +"4704",2018-01-05 08:40:00,"B","Attach" +"4705",2018-01-05 09:00:00,"B","Limit" +"4706",2018-01-05 09:20:00,"C","Error" +"4707",2018-01-05 09:40:00,"B","Warn" +"4708",2018-01-05 10:00:00,"B","Warn" +"4709",2018-01-05 10:20:00,"A","Limit" +"4710",2018-01-05 10:40:00,"C","Limit" +"4711",2018-01-05 11:00:00,"C","Debug" +"4712",2018-01-05 11:20:00,"B","Limit" +"4713",2018-01-05 11:40:00,"B","Error" +"4714",2018-01-05 12:00:00,"C","Debug" +"4715",2018-01-05 12:20:00,"C","Attach" +"4716",2018-01-05 12:40:00,"A","No clue" +"4717",2018-01-05 13:00:00,"B","Warn" +"4718",2018-01-05 13:20:00,"C","Check with author" +"4719",2018-01-05 13:40:00,"B","Error" +"4720",2018-01-05 14:00:00,"B","Debug" +"4721",2018-01-01 12:00:00,"C","Check with author" +"4722",2018-01-01 12:20:00,"B","Error" +"4723",2018-01-01 12:40:00,"A","No clue" +"4724",2018-01-01 13:00:00,"A","Attach" +"4725",2018-01-01 13:20:00,"B","No clue" +"4726",2018-01-01 13:40:00,"A","Attach" +"4727",2018-01-01 14:00:00,"A","Check with author" +"4728",2018-01-01 14:20:00,"A","Limit" +"4729",2018-01-01 14:40:00,"B","Attach" +"4730",2018-01-01 15:00:00,"B","Attach" +"4731",2018-01-01 15:20:00,"C","Check with author" +"4732",2018-01-01 15:40:00,"B","Debug" +"4733",2018-01-01 16:00:00,"B","Error" +"4734",2018-01-01 16:20:00,"B","Check with author" +"4735",2018-01-01 16:40:00,"B","Debug" +"4736",2018-01-01 17:00:00,"C","Error" +"4737",2018-01-01 17:20:00,"C","No clue" +"4738",2018-01-01 17:40:00,"C","Limit" +"4739",2018-01-01 18:00:00,"B","No clue" +"4740",2018-01-01 18:20:00,"A","Attach" +"4741",2018-01-01 18:40:00,"C","Attach" +"4742",2018-01-01 19:00:00,"A","Warn" +"4743",2018-01-01 19:20:00,"C","Limit" +"4744",2018-01-01 19:40:00,"A","Limit" +"4745",2018-01-01 20:00:00,"B","Check with author" +"4746",2018-01-01 20:20:00,"A","No clue" +"4747",2018-01-01 20:40:00,"B","No clue" +"4748",2018-01-01 21:00:00,"A","Error" +"4749",2018-01-01 21:20:00,"B","No clue" +"4750",2018-01-01 21:40:00,"B","Debug" +"4751",2018-01-01 22:00:00,"C","Warn" +"4752",2018-01-01 22:20:00,"A","Attach" +"4753",2018-01-01 22:40:00,"B","Error" +"4754",2018-01-01 23:00:00,"A","Limit" +"4755",2018-01-01 23:20:00,"A","No clue" +"4756",2018-01-01 23:40:00,"B","No clue" +"4757",2018-01-02 00:00:00,"C","Debug" +"4758",2018-01-02 00:20:00,"A","Error" +"4759",2018-01-02 00:40:00,"B","No clue" +"4760",2018-01-02 01:00:00,"A","Attach" +"4761",2018-01-02 01:20:00,"C","Debug" +"4762",2018-01-02 01:40:00,"C","Check with author" +"4763",2018-01-02 02:00:00,"B","Limit" +"4764",2018-01-02 02:20:00,"B","Attach" +"4765",2018-01-02 02:40:00,"A","Debug" +"4766",2018-01-02 03:00:00,"B","Debug" +"4767",2018-01-02 03:20:00,"C","Warn" +"4768",2018-01-02 03:40:00,"A","No clue" +"4769",2018-01-02 04:00:00,"A","Attach" +"4770",2018-01-02 04:20:00,"A","No clue" +"4771",2018-01-02 04:40:00,"A","Attach" +"4772",2018-01-02 05:00:00,"B","No clue" +"4773",2018-01-02 05:20:00,"C","Limit" +"4774",2018-01-02 05:40:00,"C","Limit" +"4775",2018-01-02 06:00:00,"A","Limit" +"4776",2018-01-02 06:20:00,"A","Error" +"4777",2018-01-02 06:40:00,"A","Debug" +"4778",2018-01-02 07:00:00,"B","Limit" +"4779",2018-01-02 07:20:00,"B","Warn" +"4780",2018-01-02 07:40:00,"B","Attach" +"4781",2018-01-02 08:00:00,"C","No clue" +"4782",2018-01-02 08:20:00,"B","No clue" +"4783",2018-01-02 08:40:00,"C","Check with author" +"4784",2018-01-02 09:00:00,"C","No clue" +"4785",2018-01-02 09:20:00,"B","No clue" +"4786",2018-01-02 09:40:00,"C","Check with author" +"4787",2018-01-02 10:00:00,"C","Debug" +"4788",2018-01-02 10:20:00,"C","Debug" +"4789",2018-01-02 10:40:00,"B","Attach" +"4790",2018-01-02 11:00:00,"B","Check with author" +"4791",2018-01-02 11:20:00,"C","Error" +"4792",2018-01-02 11:40:00,"C","Debug" +"4793",2018-01-02 12:00:00,"C","Debug" +"4794",2018-01-02 12:20:00,"B","Warn" +"4795",2018-01-02 12:40:00,"C","Warn" +"4796",2018-01-02 13:00:00,"A","No clue" +"4797",2018-01-02 13:20:00,"B","Limit" +"4798",2018-01-02 13:40:00,"B","Attach" +"4799",2018-01-02 14:00:00,"A","Warn" +"4800",2018-01-02 14:20:00,"C","Debug" +"4801",2018-01-02 14:40:00,"B","Debug" +"4802",2018-01-02 15:00:00,"B","Error" +"4803",2018-01-02 15:20:00,"A","Debug" +"4804",2018-01-02 15:40:00,"A","No clue" +"4805",2018-01-02 16:00:00,"C","Limit" +"4806",2018-01-02 16:20:00,"A","Error" +"4807",2018-01-02 16:40:00,"C","Warn" +"4808",2018-01-02 17:00:00,"B","Limit" +"4809",2018-01-02 17:20:00,"A","Check with author" +"4810",2018-01-02 17:40:00,"A","Check with author" +"4811",2018-01-02 18:00:00,"B","Attach" +"4812",2018-01-02 18:20:00,"B","Debug" +"4813",2018-01-02 18:40:00,"B","No clue" +"4814",2018-01-02 19:00:00,"C","Debug" +"4815",2018-01-02 19:20:00,"C","Check with author" +"4816",2018-01-02 19:40:00,"B","Warn" +"4817",2018-01-02 20:00:00,"C","Check with author" +"4818",2018-01-02 20:20:00,"A","Error" +"4819",2018-01-02 20:40:00,"A","Error" +"4820",2018-01-02 21:00:00,"A","Warn" +"4821",2018-01-02 21:20:00,"C","Check with author" +"4822",2018-01-02 21:40:00,"B","Error" +"4823",2018-01-02 22:00:00,"A","Check with author" +"4824",2018-01-02 22:20:00,"A","No clue" +"4825",2018-01-02 22:40:00,"A","Limit" +"4826",2018-01-02 23:00:00,"A","Limit" +"4827",2018-01-02 23:20:00,"B","Check with author" +"4828",2018-01-02 23:40:00,"A","Check with author" +"4829",2018-01-03 00:00:00,"B","Debug" +"4830",2018-01-03 00:20:00,"B","No clue" +"4831",2018-01-03 00:40:00,"C","Debug" +"4832",2018-01-03 01:00:00,"C","Error" +"4833",2018-01-03 01:20:00,"C","Attach" +"4834",2018-01-03 01:40:00,"B","Limit" +"4835",2018-01-03 02:00:00,"A","No clue" +"4836",2018-01-03 02:20:00,"A","Error" +"4837",2018-01-03 02:40:00,"A","Warn" +"4838",2018-01-03 03:00:00,"C","Error" +"4839",2018-01-03 03:20:00,"B","Error" +"4840",2018-01-03 03:40:00,"B","Debug" +"4841",2018-01-03 04:00:00,"B","Check with author" +"4842",2018-01-03 04:20:00,"A","Check with author" +"4843",2018-01-03 04:40:00,"B","Limit" +"4844",2018-01-03 05:00:00,"B","No clue" +"4845",2018-01-03 05:20:00,"A","Attach" +"4846",2018-01-03 05:40:00,"B","Warn" +"4847",2018-01-03 06:00:00,"B","Error" +"4848",2018-01-03 06:20:00,"B","Check with author" +"4849",2018-01-03 06:40:00,"A","Limit" +"4850",2018-01-03 07:00:00,"A","Check with author" +"4851",2018-01-03 07:20:00,"B","Warn" +"4852",2018-01-03 07:40:00,"C","Warn" +"4853",2018-01-03 08:00:00,"A","Limit" +"4854",2018-01-03 08:20:00,"A","Attach" +"4855",2018-01-03 08:40:00,"B","Debug" +"4856",2018-01-03 09:00:00,"C","No clue" +"4857",2018-01-03 09:20:00,"A","Attach" +"4858",2018-01-03 09:40:00,"C","Check with author" +"4859",2018-01-03 10:00:00,"C","Error" +"4860",2018-01-03 10:20:00,"C","Attach" +"4861",2018-01-03 10:40:00,"B","Attach" +"4862",2018-01-03 11:00:00,"B","Attach" +"4863",2018-01-03 11:20:00,"B","Error" +"4864",2018-01-03 11:40:00,"C","Error" +"4865",2018-01-03 12:00:00,"C","Limit" +"4866",2018-01-03 12:20:00,"B","Debug" +"4867",2018-01-03 12:40:00,"A","Debug" +"4868",2018-01-03 13:00:00,"C","Limit" +"4869",2018-01-03 13:20:00,"A","Attach" +"4870",2018-01-03 13:40:00,"B","Attach" +"4871",2018-01-03 14:00:00,"B","Attach" +"4872",2018-01-03 14:20:00,"A","Check with author" +"4873",2018-01-03 14:40:00,"C","No clue" +"4874",2018-01-03 15:00:00,"B","Error" +"4875",2018-01-03 15:20:00,"C","Check with author" +"4876",2018-01-03 15:40:00,"B","Warn" +"4877",2018-01-03 16:00:00,"C","Check with author" +"4878",2018-01-03 16:20:00,"B","Limit" +"4879",2018-01-03 16:40:00,"B","Check with author" +"4880",2018-01-03 17:00:00,"B","Error" +"4881",2018-01-03 17:20:00,"C","Attach" +"4882",2018-01-03 17:40:00,"B","No clue" +"4883",2018-01-03 18:00:00,"C","Error" +"4884",2018-01-03 18:20:00,"B","Check with author" +"4885",2018-01-03 18:40:00,"B","Error" +"4886",2018-01-03 19:00:00,"B","Warn" +"4887",2018-01-03 19:20:00,"C","Check with author" +"4888",2018-01-03 19:40:00,"B","Warn" +"4889",2018-01-03 20:00:00,"A","No clue" +"4890",2018-01-03 20:20:00,"A","Error" +"4891",2018-01-03 20:40:00,"A","Warn" +"4892",2018-01-03 21:00:00,"A","No clue" +"4893",2018-01-03 21:20:00,"C","Error" +"4894",2018-01-03 21:40:00,"A","Attach" +"4895",2018-01-03 22:00:00,"A","Attach" +"4896",2018-01-03 22:20:00,"C","Check with author" +"4897",2018-01-03 22:40:00,"A","Attach" +"4898",2018-01-03 23:00:00,"B","Attach" +"4899",2018-01-03 23:20:00,"A","Warn" +"4900",2018-01-03 23:40:00,"B","Check with author" +"4901",2018-01-04 00:00:00,"C","Attach" +"4902",2018-01-04 00:20:00,"A","No clue" +"4903",2018-01-04 00:40:00,"B","No clue" +"4904",2018-01-04 01:00:00,"B","No clue" +"4905",2018-01-04 01:20:00,"C","Error" +"4906",2018-01-04 01:40:00,"B","Limit" +"4907",2018-01-04 02:00:00,"A","Error" +"4908",2018-01-04 02:20:00,"C","No clue" +"4909",2018-01-04 02:40:00,"A","Debug" +"4910",2018-01-04 03:00:00,"C","Debug" +"4911",2018-01-04 03:20:00,"C","Limit" +"4912",2018-01-04 03:40:00,"A","Error" +"4913",2018-01-04 04:00:00,"C","Debug" +"4914",2018-01-04 04:20:00,"C","Error" +"4915",2018-01-04 04:40:00,"A","Limit" +"4916",2018-01-04 05:00:00,"B","Warn" +"4917",2018-01-04 05:20:00,"C","Limit" +"4918",2018-01-04 05:40:00,"A","Warn" +"4919",2018-01-04 06:00:00,"C","Limit" +"4920",2018-01-04 06:20:00,"C","No clue" +"4921",2018-01-04 06:40:00,"C","Error" +"4922",2018-01-04 07:00:00,"A","Check with author" +"4923",2018-01-04 07:20:00,"C","Check with author" +"4924",2018-01-04 07:40:00,"B","Check with author" +"4925",2018-01-04 08:00:00,"A","Check with author" +"4926",2018-01-04 08:20:00,"C","Debug" +"4927",2018-01-04 08:40:00,"A","No clue" +"4928",2018-01-04 09:00:00,"C","Debug" +"4929",2018-01-04 09:20:00,"B","Warn" +"4930",2018-01-04 09:40:00,"C","Warn" +"4931",2018-01-04 10:00:00,"B","Debug" +"4932",2018-01-04 10:20:00,"B","No clue" +"4933",2018-01-04 10:40:00,"C","Check with author" +"4934",2018-01-04 11:00:00,"B","Attach" +"4935",2018-01-04 11:20:00,"B","Check with author" +"4936",2018-01-04 11:40:00,"C","Check with author" +"4937",2018-01-04 12:00:00,"A","Warn" +"4938",2018-01-04 12:20:00,"B","Error" +"4939",2018-01-04 12:40:00,"A","No clue" +"4940",2018-01-04 13:00:00,"B","Check with author" +"4941",2018-01-04 13:20:00,"A","No clue" +"4942",2018-01-04 13:40:00,"B","Debug" +"4943",2018-01-04 14:00:00,"B","Attach" +"4944",2018-01-04 14:20:00,"B","Error" +"4945",2018-01-04 14:40:00,"B","Check with author" +"4946",2018-01-04 15:00:00,"B","Attach" +"4947",2018-01-04 15:20:00,"A","Debug" +"4948",2018-01-04 15:40:00,"C","Warn" +"4949",2018-01-04 16:00:00,"C","Attach" +"4950",2018-01-04 16:20:00,"A","Error" +"4951",2018-01-04 16:40:00,"B","No clue" +"4952",2018-01-04 17:00:00,"A","Warn" +"4953",2018-01-04 17:20:00,"B","Limit" +"4954",2018-01-04 17:40:00,"C","Debug" +"4955",2018-01-04 18:00:00,"B","Limit" +"4956",2018-01-04 18:20:00,"A","Limit" +"4957",2018-01-04 18:40:00,"C","Debug" +"4958",2018-01-04 19:00:00,"A","No clue" +"4959",2018-01-04 19:20:00,"B","Limit" +"4960",2018-01-04 19:40:00,"C","Error" +"4961",2018-01-04 20:00:00,"A","Attach" +"4962",2018-01-04 20:20:00,"A","No clue" +"4963",2018-01-04 20:40:00,"A","Attach" +"4964",2018-01-04 21:00:00,"A","Attach" +"4965",2018-01-04 21:20:00,"C","Warn" +"4966",2018-01-04 21:40:00,"B","Limit" +"4967",2018-01-04 22:00:00,"C","Debug" +"4968",2018-01-04 22:20:00,"B","Warn" +"4969",2018-01-04 22:40:00,"C","Check with author" +"4970",2018-01-04 23:00:00,"A","Warn" +"4971",2018-01-04 23:20:00,"A","Error" +"4972",2018-01-04 23:40:00,"B","Check with author" +"4973",2018-01-05 00:00:00,"B","Limit" +"4974",2018-01-05 00:20:00,"C","Attach" +"4975",2018-01-05 00:40:00,"C","Check with author" +"4976",2018-01-05 01:00:00,"A","Debug" +"4977",2018-01-05 01:20:00,"B","Warn" +"4978",2018-01-05 01:40:00,"B","Warn" +"4979",2018-01-05 02:00:00,"A","Check with author" +"4980",2018-01-05 02:20:00,"A","No clue" +"4981",2018-01-05 02:40:00,"A","Check with author" +"4982",2018-01-05 03:00:00,"B","No clue" +"4983",2018-01-05 03:20:00,"A","Limit" +"4984",2018-01-05 03:40:00,"B","Attach" +"4985",2018-01-05 04:00:00,"C","Check with author" +"4986",2018-01-05 04:20:00,"C","Warn" +"4987",2018-01-05 04:40:00,"B","No clue" +"4988",2018-01-05 05:00:00,"B","Attach" +"4989",2018-01-05 05:20:00,"B","Debug" +"4990",2018-01-05 05:40:00,"B","Warn" +"4991",2018-01-05 06:00:00,"B","Attach" +"4992",2018-01-05 06:20:00,"B","Check with author" +"4993",2018-01-05 06:40:00,"B","Check with author" +"4994",2018-01-05 07:00:00,"B","Debug" +"4995",2018-01-05 07:20:00,"B","Debug" +"4996",2018-01-05 07:40:00,"A","Attach" +"4997",2018-01-05 08:00:00,"C","Attach" +"4998",2018-01-05 08:20:00,"A","Warn" +"4999",2018-01-05 08:40:00,"C","No clue" +"5000",2018-01-05 09:00:00,"C","Warn" +"5001",2018-01-05 09:20:00,"C","Attach" +"5002",2018-01-05 09:40:00,"B","Attach" +"5003",2018-01-05 10:00:00,"B","Error" +"5004",2018-01-05 10:20:00,"B","Attach" +"5005",2018-01-05 10:40:00,"C","Error" +"5006",2018-01-05 11:00:00,"C","Limit" +"5007",2018-01-05 11:20:00,"A","Attach" +"5008",2018-01-05 11:40:00,"B","No clue" +"5009",2018-01-05 12:00:00,"B","Attach" +"5010",2018-01-05 12:20:00,"A","Error" +"5011",2018-01-05 12:40:00,"C","Debug" +"5012",2018-01-05 13:00:00,"C","Warn" +"5013",2018-01-05 13:20:00,"B","Attach" +"5014",2018-01-05 13:40:00,"A","Check with author" +"5015",2018-01-05 14:00:00,"A","Debug" +"5016",2018-01-01 12:00:00,"B","Error" +"5017",2018-01-01 12:20:00,"B","Check with author" +"5018",2018-01-01 12:40:00,"C","Debug" +"5019",2018-01-01 13:00:00,"B","Attach" +"5020",2018-01-01 13:20:00,"A","Warn" +"5021",2018-01-01 13:40:00,"C","No clue" +"5022",2018-01-01 14:00:00,"B","Error" +"5023",2018-01-01 14:20:00,"C","No clue" +"5024",2018-01-01 14:40:00,"B","Debug" +"5025",2018-01-01 15:00:00,"C","Debug" +"5026",2018-01-01 15:20:00,"A","Attach" +"5027",2018-01-01 15:40:00,"B","No clue" +"5028",2018-01-01 16:00:00,"C","No clue" +"5029",2018-01-01 16:20:00,"B","Debug" +"5030",2018-01-01 16:40:00,"B","Attach" +"5031",2018-01-01 17:00:00,"C","Attach" +"5032",2018-01-01 17:20:00,"C","Error" +"5033",2018-01-01 17:40:00,"B","Check with author" +"5034",2018-01-01 18:00:00,"C","No clue" +"5035",2018-01-01 18:20:00,"A","Check with author" +"5036",2018-01-01 18:40:00,"C","Check with author" +"5037",2018-01-01 19:00:00,"C","Attach" +"5038",2018-01-01 19:20:00,"C","No clue" +"5039",2018-01-01 19:40:00,"A","Warn" +"5040",2018-01-01 20:00:00,"B","Limit" +"5041",2018-01-01 20:20:00,"C","Debug" +"5042",2018-01-01 20:40:00,"C","Limit" +"5043",2018-01-01 21:00:00,"A","Limit" +"5044",2018-01-01 21:20:00,"A","Check with author" +"5045",2018-01-01 21:40:00,"C","Warn" +"5046",2018-01-01 22:00:00,"B","Error" +"5047",2018-01-01 22:20:00,"A","Check with author" +"5048",2018-01-01 22:40:00,"A","Warn" +"5049",2018-01-01 23:00:00,"C","Warn" +"5050",2018-01-01 23:20:00,"B","No clue" +"5051",2018-01-01 23:40:00,"A","Debug" +"5052",2018-01-02 00:00:00,"A","No clue" +"5053",2018-01-02 00:20:00,"B","Warn" +"5054",2018-01-02 00:40:00,"C","Attach" +"5055",2018-01-02 01:00:00,"A","Limit" +"5056",2018-01-02 01:20:00,"B","No clue" +"5057",2018-01-02 01:40:00,"A","Check with author" +"5058",2018-01-02 02:00:00,"B","Debug" +"5059",2018-01-02 02:20:00,"C","Debug" +"5060",2018-01-02 02:40:00,"C","Check with author" +"5061",2018-01-02 03:00:00,"C","Error" +"5062",2018-01-02 03:20:00,"A","No clue" +"5063",2018-01-02 03:40:00,"B","Error" +"5064",2018-01-02 04:00:00,"A","No clue" +"5065",2018-01-02 04:20:00,"B","Attach" +"5066",2018-01-02 04:40:00,"A","Attach" +"5067",2018-01-02 05:00:00,"B","Limit" +"5068",2018-01-02 05:20:00,"A","No clue" +"5069",2018-01-02 05:40:00,"C","Warn" +"5070",2018-01-02 06:00:00,"A","Warn" +"5071",2018-01-02 06:20:00,"C","Warn" +"5072",2018-01-02 06:40:00,"C","Check with author" +"5073",2018-01-02 07:00:00,"A","Debug" +"5074",2018-01-02 07:20:00,"B","Warn" +"5075",2018-01-02 07:40:00,"C","Debug" +"5076",2018-01-02 08:00:00,"B","Warn" +"5077",2018-01-02 08:20:00,"A","Check with author" +"5078",2018-01-02 08:40:00,"C","Warn" +"5079",2018-01-02 09:00:00,"C","Error" +"5080",2018-01-02 09:20:00,"A","Warn" +"5081",2018-01-02 09:40:00,"A","Debug" +"5082",2018-01-02 10:00:00,"B","Check with author" +"5083",2018-01-02 10:20:00,"B","Attach" +"5084",2018-01-02 10:40:00,"C","Debug" +"5085",2018-01-02 11:00:00,"C","No clue" +"5086",2018-01-02 11:20:00,"C","Warn" +"5087",2018-01-02 11:40:00,"B","Check with author" +"5088",2018-01-02 12:00:00,"A","Warn" +"5089",2018-01-02 12:20:00,"C","Attach" +"5090",2018-01-02 12:40:00,"B","Warn" +"5091",2018-01-02 13:00:00,"C","Debug" +"5092",2018-01-02 13:20:00,"A","Error" +"5093",2018-01-02 13:40:00,"C","Attach" +"5094",2018-01-02 14:00:00,"C","Debug" +"5095",2018-01-02 14:20:00,"B","Limit" +"5096",2018-01-02 14:40:00,"A","Debug" +"5097",2018-01-02 15:00:00,"A","Check with author" +"5098",2018-01-02 15:20:00,"A","Limit" +"5099",2018-01-02 15:40:00,"A","Attach" +"5100",2018-01-02 16:00:00,"A","Limit" +"5101",2018-01-02 16:20:00,"B","No clue" +"5102",2018-01-02 16:40:00,"A","Debug" +"5103",2018-01-02 17:00:00,"B","Attach" +"5104",2018-01-02 17:20:00,"A","Attach" +"5105",2018-01-02 17:40:00,"C","No clue" +"5106",2018-01-02 18:00:00,"B","Limit" +"5107",2018-01-02 18:20:00,"A","Warn" +"5108",2018-01-02 18:40:00,"C","Limit" +"5109",2018-01-02 19:00:00,"C","Attach" +"5110",2018-01-02 19:20:00,"B","Check with author" +"5111",2018-01-02 19:40:00,"C","Error" +"5112",2018-01-02 20:00:00,"B","Attach" +"5113",2018-01-02 20:20:00,"B","Debug" +"5114",2018-01-02 20:40:00,"A","Check with author" +"5115",2018-01-02 21:00:00,"C","Check with author" +"5116",2018-01-02 21:20:00,"C","No clue" +"5117",2018-01-02 21:40:00,"A","Limit" +"5118",2018-01-02 22:00:00,"A","No clue" +"5119",2018-01-02 22:20:00,"C","Attach" +"5120",2018-01-02 22:40:00,"B","Error" +"5121",2018-01-02 23:00:00,"C","Limit" +"5122",2018-01-02 23:20:00,"A","Check with author" +"5123",2018-01-02 23:40:00,"B","Attach" +"5124",2018-01-03 00:00:00,"A","Warn" +"5125",2018-01-03 00:20:00,"B","Warn" +"5126",2018-01-03 00:40:00,"A","Debug" +"5127",2018-01-03 01:00:00,"A","Limit" +"5128",2018-01-03 01:20:00,"C","Limit" +"5129",2018-01-03 01:40:00,"C","No clue" +"5130",2018-01-03 02:00:00,"C","Attach" +"5131",2018-01-03 02:20:00,"A","Limit" +"5132",2018-01-03 02:40:00,"C","Attach" +"5133",2018-01-03 03:00:00,"C","Debug" +"5134",2018-01-03 03:20:00,"C","Error" +"5135",2018-01-03 03:40:00,"B","Check with author" +"5136",2018-01-03 04:00:00,"B","Debug" +"5137",2018-01-03 04:20:00,"A","Debug" +"5138",2018-01-03 04:40:00,"B","Limit" +"5139",2018-01-03 05:00:00,"A","Check with author" +"5140",2018-01-03 05:20:00,"A","Warn" +"5141",2018-01-03 05:40:00,"B","Check with author" +"5142",2018-01-03 06:00:00,"A","Debug" +"5143",2018-01-03 06:20:00,"C","Check with author" +"5144",2018-01-03 06:40:00,"A","No clue" +"5145",2018-01-03 07:00:00,"C","Warn" +"5146",2018-01-03 07:20:00,"A","Error" +"5147",2018-01-03 07:40:00,"A","Error" +"5148",2018-01-03 08:00:00,"B","Attach" +"5149",2018-01-03 08:20:00,"A","Debug" +"5150",2018-01-03 08:40:00,"B","Limit" +"5151",2018-01-03 09:00:00,"A","Limit" +"5152",2018-01-03 09:20:00,"B","Attach" +"5153",2018-01-03 09:40:00,"C","Attach" +"5154",2018-01-03 10:00:00,"C","Warn" +"5155",2018-01-03 10:20:00,"C","No clue" +"5156",2018-01-03 10:40:00,"C","Check with author" +"5157",2018-01-03 11:00:00,"B","Attach" +"5158",2018-01-03 11:20:00,"A","Limit" +"5159",2018-01-03 11:40:00,"C","Attach" +"5160",2018-01-03 12:00:00,"C","Error" +"5161",2018-01-03 12:20:00,"B","Limit" +"5162",2018-01-03 12:40:00,"A","Check with author" +"5163",2018-01-03 13:00:00,"A","Debug" +"5164",2018-01-03 13:20:00,"A","Attach" +"5165",2018-01-03 13:40:00,"A","Debug" +"5166",2018-01-03 14:00:00,"B","Check with author" +"5167",2018-01-03 14:20:00,"C","Debug" +"5168",2018-01-03 14:40:00,"A","No clue" +"5169",2018-01-03 15:00:00,"A","Check with author" +"5170",2018-01-03 15:20:00,"C","Error" +"5171",2018-01-03 15:40:00,"B","Error" +"5172",2018-01-03 16:00:00,"A","Limit" +"5173",2018-01-03 16:20:00,"B","Check with author" +"5174",2018-01-03 16:40:00,"C","Limit" +"5175",2018-01-03 17:00:00,"C","Error" +"5176",2018-01-03 17:20:00,"A","Limit" +"5177",2018-01-03 17:40:00,"A","No clue" +"5178",2018-01-03 18:00:00,"A","No clue" +"5179",2018-01-03 18:20:00,"B","Warn" +"5180",2018-01-03 18:40:00,"A","Limit" +"5181",2018-01-03 19:00:00,"C","Attach" +"5182",2018-01-03 19:20:00,"C","Attach" +"5183",2018-01-03 19:40:00,"B","Check with author" +"5184",2018-01-03 20:00:00,"A","Error" +"5185",2018-01-03 20:20:00,"B","No clue" +"5186",2018-01-03 20:40:00,"B","Error" +"5187",2018-01-03 21:00:00,"C","No clue" +"5188",2018-01-03 21:20:00,"C","Check with author" +"5189",2018-01-03 21:40:00,"A","Error" +"5190",2018-01-03 22:00:00,"B","No clue" +"5191",2018-01-03 22:20:00,"C","No clue" +"5192",2018-01-03 22:40:00,"A","Debug" +"5193",2018-01-03 23:00:00,"A","Debug" +"5194",2018-01-03 23:20:00,"A","Error" +"5195",2018-01-03 23:40:00,"B","Check with author" +"5196",2018-01-04 00:00:00,"C","Attach" +"5197",2018-01-04 00:20:00,"A","Check with author" +"5198",2018-01-04 00:40:00,"A","Debug" +"5199",2018-01-04 01:00:00,"B","Attach" +"5200",2018-01-04 01:20:00,"C","Check with author" +"5201",2018-01-04 01:40:00,"C","Attach" +"5202",2018-01-04 02:00:00,"C","Limit" +"5203",2018-01-04 02:20:00,"C","Error" +"5204",2018-01-04 02:40:00,"C","Error" +"5205",2018-01-04 03:00:00,"C","Limit" +"5206",2018-01-04 03:20:00,"C","Debug" +"5207",2018-01-04 03:40:00,"B","Attach" +"5208",2018-01-04 04:00:00,"B","Limit" +"5209",2018-01-04 04:20:00,"C","Check with author" +"5210",2018-01-04 04:40:00,"A","No clue" +"5211",2018-01-04 05:00:00,"A","Limit" +"5212",2018-01-04 05:20:00,"A","Warn" +"5213",2018-01-04 05:40:00,"A","Attach" +"5214",2018-01-04 06:00:00,"C","Limit" +"5215",2018-01-04 06:20:00,"B","Check with author" +"5216",2018-01-04 06:40:00,"B","Debug" +"5217",2018-01-04 07:00:00,"B","No clue" +"5218",2018-01-04 07:20:00,"C","No clue" +"5219",2018-01-04 07:40:00,"B","No clue" +"5220",2018-01-04 08:00:00,"A","No clue" +"5221",2018-01-04 08:20:00,"A","Limit" +"5222",2018-01-04 08:40:00,"A","Debug" +"5223",2018-01-04 09:00:00,"C","Debug" +"5224",2018-01-04 09:20:00,"A","Warn" +"5225",2018-01-04 09:40:00,"A","Limit" +"5226",2018-01-04 10:00:00,"A","Check with author" +"5227",2018-01-04 10:20:00,"C","Warn" +"5228",2018-01-04 10:40:00,"A","Warn" +"5229",2018-01-04 11:00:00,"B","Limit" +"5230",2018-01-04 11:20:00,"C","Debug" +"5231",2018-01-04 11:40:00,"B","Debug" +"5232",2018-01-04 12:00:00,"C","Check with author" +"5233",2018-01-04 12:20:00,"A","Debug" +"5234",2018-01-04 12:40:00,"C","No clue" +"5235",2018-01-04 13:00:00,"A","Debug" +"5236",2018-01-04 13:20:00,"C","Error" +"5237",2018-01-04 13:40:00,"B","No clue" +"5238",2018-01-04 14:00:00,"A","No clue" +"5239",2018-01-04 14:20:00,"A","Limit" +"5240",2018-01-04 14:40:00,"C","Check with author" +"5241",2018-01-04 15:00:00,"A","Error" +"5242",2018-01-04 15:20:00,"A","Attach" +"5243",2018-01-04 15:40:00,"B","Error" +"5244",2018-01-04 16:00:00,"C","Limit" +"5245",2018-01-04 16:20:00,"B","Check with author" +"5246",2018-01-04 16:40:00,"B","Warn" +"5247",2018-01-04 17:00:00,"B","No clue" +"5248",2018-01-04 17:20:00,"C","Attach" +"5249",2018-01-04 17:40:00,"A","Error" +"5250",2018-01-04 18:00:00,"B","Debug" +"5251",2018-01-04 18:20:00,"C","Debug" +"5252",2018-01-04 18:40:00,"A","Check with author" +"5253",2018-01-04 19:00:00,"A","Error" +"5254",2018-01-04 19:20:00,"C","Debug" +"5255",2018-01-04 19:40:00,"A","Debug" +"5256",2018-01-04 20:00:00,"C","Limit" +"5257",2018-01-04 20:20:00,"B","No clue" +"5258",2018-01-04 20:40:00,"C","No clue" +"5259",2018-01-04 21:00:00,"C","Debug" +"5260",2018-01-04 21:20:00,"B","Attach" +"5261",2018-01-04 21:40:00,"B","No clue" +"5262",2018-01-04 22:00:00,"A","Debug" +"5263",2018-01-04 22:20:00,"A","No clue" +"5264",2018-01-04 22:40:00,"B","Error" +"5265",2018-01-04 23:00:00,"C","Debug" +"5266",2018-01-04 23:20:00,"A","Debug" +"5267",2018-01-04 23:40:00,"A","Error" +"5268",2018-01-05 00:00:00,"B","Error" +"5269",2018-01-05 00:20:00,"A","Error" +"5270",2018-01-05 00:40:00,"A","Limit" +"5271",2018-01-05 01:00:00,"A","Error" +"5272",2018-01-05 01:20:00,"A","Limit" +"5273",2018-01-05 01:40:00,"B","Check with author" +"5274",2018-01-05 02:00:00,"C","Check with author" +"5275",2018-01-05 02:20:00,"A","Warn" +"5276",2018-01-05 02:40:00,"B","Check with author" +"5277",2018-01-05 03:00:00,"A","Debug" +"5278",2018-01-05 03:20:00,"A","Attach" +"5279",2018-01-05 03:40:00,"A","Attach" +"5280",2018-01-05 04:00:00,"C","Warn" +"5281",2018-01-05 04:20:00,"B","No clue" +"5282",2018-01-05 04:40:00,"A","No clue" +"5283",2018-01-05 05:00:00,"B","Debug" +"5284",2018-01-05 05:20:00,"A","Limit" +"5285",2018-01-05 05:40:00,"C","Debug" +"5286",2018-01-05 06:00:00,"A","Check with author" +"5287",2018-01-05 06:20:00,"A","No clue" +"5288",2018-01-05 06:40:00,"B","No clue" +"5289",2018-01-05 07:00:00,"C","Limit" +"5290",2018-01-05 07:20:00,"C","No clue" +"5291",2018-01-05 07:40:00,"A","Warn" +"5292",2018-01-05 08:00:00,"A","Warn" +"5293",2018-01-05 08:20:00,"A","Attach" +"5294",2018-01-05 08:40:00,"B","Warn" +"5295",2018-01-05 09:00:00,"A","Error" +"5296",2018-01-05 09:20:00,"C","Check with author" +"5297",2018-01-05 09:40:00,"B","Attach" +"5298",2018-01-05 10:00:00,"A","Debug" +"5299",2018-01-05 10:20:00,"C","Error" +"5300",2018-01-05 10:40:00,"A","Check with author" +"5301",2018-01-05 11:00:00,"B","Warn" +"5302",2018-01-05 11:20:00,"B","Debug" +"5303",2018-01-05 11:40:00,"A","Error" +"5304",2018-01-05 12:00:00,"C","No clue" +"5305",2018-01-05 12:20:00,"B","Debug" +"5306",2018-01-05 12:40:00,"A","Attach" +"5307",2018-01-05 13:00:00,"A","Error" +"5308",2018-01-05 13:20:00,"B","No clue" +"5309",2018-01-05 13:40:00,"B","Warn" +"5310",2018-01-05 14:00:00,"B","Warn" +"5311",2018-01-01 12:00:00,"A","Limit" +"5312",2018-01-01 12:20:00,"C","Warn" +"5313",2018-01-01 12:40:00,"A","Warn" +"5314",2018-01-01 13:00:00,"C","Check with author" +"5315",2018-01-01 13:20:00,"A","Limit" +"5316",2018-01-01 13:40:00,"A","Attach" +"5317",2018-01-01 14:00:00,"B","Error" +"5318",2018-01-01 14:20:00,"C","Debug" +"5319",2018-01-01 14:40:00,"C","Check with author" +"5320",2018-01-01 15:00:00,"B","Debug" +"5321",2018-01-01 15:20:00,"C","Warn" +"5322",2018-01-01 15:40:00,"C","No clue" +"5323",2018-01-01 16:00:00,"C","Attach" +"5324",2018-01-01 16:20:00,"B","No clue" +"5325",2018-01-01 16:40:00,"C","Attach" +"5326",2018-01-01 17:00:00,"A","Limit" +"5327",2018-01-01 17:20:00,"C","Warn" +"5328",2018-01-01 17:40:00,"C","Attach" +"5329",2018-01-01 18:00:00,"A","Warn" +"5330",2018-01-01 18:20:00,"B","No clue" +"5331",2018-01-01 18:40:00,"A","No clue" +"5332",2018-01-01 19:00:00,"B","Debug" +"5333",2018-01-01 19:20:00,"A","Check with author" +"5334",2018-01-01 19:40:00,"B","Limit" +"5335",2018-01-01 20:00:00,"B","Attach" +"5336",2018-01-01 20:20:00,"C","Debug" +"5337",2018-01-01 20:40:00,"B","Error" +"5338",2018-01-01 21:00:00,"B","Warn" +"5339",2018-01-01 21:20:00,"A","Debug" +"5340",2018-01-01 21:40:00,"C","Limit" +"5341",2018-01-01 22:00:00,"A","Error" +"5342",2018-01-01 22:20:00,"B","Attach" +"5343",2018-01-01 22:40:00,"C","Warn" +"5344",2018-01-01 23:00:00,"B","Debug" +"5345",2018-01-01 23:20:00,"B","Error" +"5346",2018-01-01 23:40:00,"C","Debug" +"5347",2018-01-02 00:00:00,"C","Check with author" +"5348",2018-01-02 00:20:00,"C","No clue" +"5349",2018-01-02 00:40:00,"A","Limit" +"5350",2018-01-02 01:00:00,"A","Debug" +"5351",2018-01-02 01:20:00,"A","Check with author" +"5352",2018-01-02 01:40:00,"B","Error" +"5353",2018-01-02 02:00:00,"C","Limit" +"5354",2018-01-02 02:20:00,"A","Limit" +"5355",2018-01-02 02:40:00,"C","Warn" +"5356",2018-01-02 03:00:00,"A","Limit" +"5357",2018-01-02 03:20:00,"A","Limit" +"5358",2018-01-02 03:40:00,"B","Error" +"5359",2018-01-02 04:00:00,"A","Check with author" +"5360",2018-01-02 04:20:00,"C","Limit" +"5361",2018-01-02 04:40:00,"C","Warn" +"5362",2018-01-02 05:00:00,"B","Limit" +"5363",2018-01-02 05:20:00,"B","Limit" +"5364",2018-01-02 05:40:00,"C","Attach" +"5365",2018-01-02 06:00:00,"A","Check with author" +"5366",2018-01-02 06:20:00,"B","Error" +"5367",2018-01-02 06:40:00,"B","No clue" +"5368",2018-01-02 07:00:00,"C","Attach" +"5369",2018-01-02 07:20:00,"A","Attach" +"5370",2018-01-02 07:40:00,"B","No clue" +"5371",2018-01-02 08:00:00,"B","Check with author" +"5372",2018-01-02 08:20:00,"A","Check with author" +"5373",2018-01-02 08:40:00,"B","No clue" +"5374",2018-01-02 09:00:00,"A","Error" +"5375",2018-01-02 09:20:00,"C","Error" +"5376",2018-01-02 09:40:00,"A","Check with author" +"5377",2018-01-02 10:00:00,"C","No clue" +"5378",2018-01-02 10:20:00,"B","Check with author" +"5379",2018-01-02 10:40:00,"C","Debug" +"5380",2018-01-02 11:00:00,"B","Check with author" +"5381",2018-01-02 11:20:00,"B","Debug" +"5382",2018-01-02 11:40:00,"B","Debug" +"5383",2018-01-02 12:00:00,"A","Check with author" +"5384",2018-01-02 12:20:00,"C","Debug" +"5385",2018-01-02 12:40:00,"C","Attach" +"5386",2018-01-02 13:00:00,"B","Error" +"5387",2018-01-02 13:20:00,"C","Error" +"5388",2018-01-02 13:40:00,"B","Warn" +"5389",2018-01-02 14:00:00,"A","No clue" +"5390",2018-01-02 14:20:00,"A","Debug" +"5391",2018-01-02 14:40:00,"C","Warn" +"5392",2018-01-02 15:00:00,"B","No clue" +"5393",2018-01-02 15:20:00,"C","Error" +"5394",2018-01-02 15:40:00,"B","Warn" +"5395",2018-01-02 16:00:00,"B","Check with author" +"5396",2018-01-02 16:20:00,"A","Attach" +"5397",2018-01-02 16:40:00,"A","Limit" +"5398",2018-01-02 17:00:00,"C","No clue" +"5399",2018-01-02 17:20:00,"A","Limit" +"5400",2018-01-02 17:40:00,"C","Check with author" +"5401",2018-01-02 18:00:00,"A","Error" +"5402",2018-01-02 18:20:00,"A","Error" +"5403",2018-01-02 18:40:00,"C","No clue" +"5404",2018-01-02 19:00:00,"C","Warn" +"5405",2018-01-02 19:20:00,"B","Debug" +"5406",2018-01-02 19:40:00,"B","Warn" +"5407",2018-01-02 20:00:00,"A","Check with author" +"5408",2018-01-02 20:20:00,"B","Warn" +"5409",2018-01-02 20:40:00,"A","Debug" +"5410",2018-01-02 21:00:00,"B","Check with author" +"5411",2018-01-02 21:20:00,"A","Check with author" +"5412",2018-01-02 21:40:00,"A","Debug" +"5413",2018-01-02 22:00:00,"A","No clue" +"5414",2018-01-02 22:20:00,"B","Debug" +"5415",2018-01-02 22:40:00,"B","Limit" +"5416",2018-01-02 23:00:00,"B","Check with author" +"5417",2018-01-02 23:20:00,"B","Warn" +"5418",2018-01-02 23:40:00,"A","Debug" +"5419",2018-01-03 00:00:00,"A","Debug" +"5420",2018-01-03 00:20:00,"C","Attach" +"5421",2018-01-03 00:40:00,"C","Limit" +"5422",2018-01-03 01:00:00,"C","Debug" +"5423",2018-01-03 01:20:00,"A","Check with author" +"5424",2018-01-03 01:40:00,"B","Error" +"5425",2018-01-03 02:00:00,"C","Warn" +"5426",2018-01-03 02:20:00,"C","Limit" +"5427",2018-01-03 02:40:00,"C","No clue" +"5428",2018-01-03 03:00:00,"A","Check with author" +"5429",2018-01-03 03:20:00,"C","Warn" +"5430",2018-01-03 03:40:00,"A","Attach" +"5431",2018-01-03 04:00:00,"A","Debug" +"5432",2018-01-03 04:20:00,"C","No clue" +"5433",2018-01-03 04:40:00,"B","Attach" +"5434",2018-01-03 05:00:00,"B","Error" +"5435",2018-01-03 05:20:00,"A","Check with author" +"5436",2018-01-03 05:40:00,"B","No clue" +"5437",2018-01-03 06:00:00,"A","Limit" +"5438",2018-01-03 06:20:00,"C","Check with author" +"5439",2018-01-03 06:40:00,"B","Limit" +"5440",2018-01-03 07:00:00,"C","Debug" +"5441",2018-01-03 07:20:00,"A","Limit" +"5442",2018-01-03 07:40:00,"A","Attach" +"5443",2018-01-03 08:00:00,"A","Debug" +"5444",2018-01-03 08:20:00,"A","No clue" +"5445",2018-01-03 08:40:00,"A","Limit" +"5446",2018-01-03 09:00:00,"A","Limit" +"5447",2018-01-03 09:20:00,"B","No clue" +"5448",2018-01-03 09:40:00,"B","Warn" +"5449",2018-01-03 10:00:00,"A","Attach" +"5450",2018-01-03 10:20:00,"A","Check with author" +"5451",2018-01-03 10:40:00,"C","Limit" +"5452",2018-01-03 11:00:00,"B","No clue" +"5453",2018-01-03 11:20:00,"C","Attach" +"5454",2018-01-03 11:40:00,"C","Debug" +"5455",2018-01-03 12:00:00,"C","Limit" +"5456",2018-01-03 12:20:00,"A","No clue" +"5457",2018-01-03 12:40:00,"C","Warn" +"5458",2018-01-03 13:00:00,"A","No clue" +"5459",2018-01-03 13:20:00,"C","Error" +"5460",2018-01-03 13:40:00,"A","Warn" +"5461",2018-01-03 14:00:00,"C","Check with author" +"5462",2018-01-03 14:20:00,"A","Check with author" +"5463",2018-01-03 14:40:00,"B","No clue" +"5464",2018-01-03 15:00:00,"B","Error" +"5465",2018-01-03 15:20:00,"C","Warn" +"5466",2018-01-03 15:40:00,"B","No clue" +"5467",2018-01-03 16:00:00,"C","Attach" +"5468",2018-01-03 16:20:00,"B","Error" +"5469",2018-01-03 16:40:00,"B","Limit" +"5470",2018-01-03 17:00:00,"C","Debug" +"5471",2018-01-03 17:20:00,"C","Check with author" +"5472",2018-01-03 17:40:00,"C","Error" +"5473",2018-01-03 18:00:00,"A","Warn" +"5474",2018-01-03 18:20:00,"C","Warn" +"5475",2018-01-03 18:40:00,"A","No clue" +"5476",2018-01-03 19:00:00,"A","Warn" +"5477",2018-01-03 19:20:00,"B","Error" +"5478",2018-01-03 19:40:00,"B","Check with author" +"5479",2018-01-03 20:00:00,"A","Check with author" +"5480",2018-01-03 20:20:00,"B","No clue" +"5481",2018-01-03 20:40:00,"B","Check with author" +"5482",2018-01-03 21:00:00,"B","Error" +"5483",2018-01-03 21:20:00,"C","Limit" +"5484",2018-01-03 21:40:00,"C","Limit" +"5485",2018-01-03 22:00:00,"B","Debug" +"5486",2018-01-03 22:20:00,"B","Check with author" +"5487",2018-01-03 22:40:00,"A","No clue" +"5488",2018-01-03 23:00:00,"B","Warn" +"5489",2018-01-03 23:20:00,"C","Debug" +"5490",2018-01-03 23:40:00,"A","Check with author" +"5491",2018-01-04 00:00:00,"C","Check with author" +"5492",2018-01-04 00:20:00,"B","Limit" +"5493",2018-01-04 00:40:00,"A","Debug" +"5494",2018-01-04 01:00:00,"A","Limit" +"5495",2018-01-04 01:20:00,"B","Limit" +"5496",2018-01-04 01:40:00,"C","Attach" +"5497",2018-01-04 02:00:00,"B","Error" +"5498",2018-01-04 02:20:00,"B","Attach" +"5499",2018-01-04 02:40:00,"C","Error" +"5500",2018-01-04 03:00:00,"B","Limit" +"5501",2018-01-04 03:20:00,"A","Debug" +"5502",2018-01-04 03:40:00,"C","Warn" +"5503",2018-01-04 04:00:00,"C","Check with author" +"5504",2018-01-04 04:20:00,"B","No clue" +"5505",2018-01-04 04:40:00,"C","Attach" +"5506",2018-01-04 05:00:00,"A","Debug" +"5507",2018-01-04 05:20:00,"A","Attach" +"5508",2018-01-04 05:40:00,"B","Debug" +"5509",2018-01-04 06:00:00,"C","Attach" +"5510",2018-01-04 06:20:00,"B","Limit" +"5511",2018-01-04 06:40:00,"C","Attach" +"5512",2018-01-04 07:00:00,"A","Warn" +"5513",2018-01-04 07:20:00,"B","Warn" +"5514",2018-01-04 07:40:00,"A","Check with author" +"5515",2018-01-04 08:00:00,"A","No clue" +"5516",2018-01-04 08:20:00,"C","No clue" +"5517",2018-01-04 08:40:00,"B","Check with author" +"5518",2018-01-04 09:00:00,"A","Error" +"5519",2018-01-04 09:20:00,"C","Attach" +"5520",2018-01-04 09:40:00,"A","Error" +"5521",2018-01-04 10:00:00,"A","Check with author" +"5522",2018-01-04 10:20:00,"C","Limit" +"5523",2018-01-04 10:40:00,"B","Check with author" +"5524",2018-01-04 11:00:00,"C","No clue" +"5525",2018-01-04 11:20:00,"A","Check with author" +"5526",2018-01-04 11:40:00,"A","Debug" +"5527",2018-01-04 12:00:00,"A","No clue" +"5528",2018-01-04 12:20:00,"C","Attach" +"5529",2018-01-04 12:40:00,"B","Warn" +"5530",2018-01-04 13:00:00,"B","Error" +"5531",2018-01-04 13:20:00,"C","Debug" +"5532",2018-01-04 13:40:00,"C","Attach" +"5533",2018-01-04 14:00:00,"C","Warn" +"5534",2018-01-04 14:20:00,"B","Check with author" +"5535",2018-01-04 14:40:00,"B","Attach" +"5536",2018-01-04 15:00:00,"A","Check with author" +"5537",2018-01-04 15:20:00,"C","Warn" +"5538",2018-01-04 15:40:00,"B","Check with author" +"5539",2018-01-04 16:00:00,"A","Attach" +"5540",2018-01-04 16:20:00,"B","Check with author" +"5541",2018-01-04 16:40:00,"B","Error" +"5542",2018-01-04 17:00:00,"B","Check with author" +"5543",2018-01-04 17:20:00,"A","Limit" +"5544",2018-01-04 17:40:00,"B","Error" +"5545",2018-01-04 18:00:00,"A","Warn" +"5546",2018-01-04 18:20:00,"C","Limit" +"5547",2018-01-04 18:40:00,"A","Warn" +"5548",2018-01-04 19:00:00,"A","Check with author" +"5549",2018-01-04 19:20:00,"C","Debug" +"5550",2018-01-04 19:40:00,"A","No clue" +"5551",2018-01-04 20:00:00,"A","Debug" +"5552",2018-01-04 20:20:00,"B","Debug" +"5553",2018-01-04 20:40:00,"A","Limit" +"5554",2018-01-04 21:00:00,"A","Limit" +"5555",2018-01-04 21:20:00,"B","Debug" +"5556",2018-01-04 21:40:00,"C","Debug" +"5557",2018-01-04 22:00:00,"C","Attach" +"5558",2018-01-04 22:20:00,"A","Check with author" +"5559",2018-01-04 22:40:00,"C","Warn" +"5560",2018-01-04 23:00:00,"A","Debug" +"5561",2018-01-04 23:20:00,"C","Debug" +"5562",2018-01-04 23:40:00,"A","Attach" +"5563",2018-01-05 00:00:00,"A","Error" +"5564",2018-01-05 00:20:00,"C","No clue" +"5565",2018-01-05 00:40:00,"A","No clue" +"5566",2018-01-05 01:00:00,"B","Limit" +"5567",2018-01-05 01:20:00,"A","Limit" +"5568",2018-01-05 01:40:00,"A","Error" +"5569",2018-01-05 02:00:00,"C","Check with author" +"5570",2018-01-05 02:20:00,"A","Check with author" +"5571",2018-01-05 02:40:00,"B","No clue" +"5572",2018-01-05 03:00:00,"B","Debug" +"5573",2018-01-05 03:20:00,"C","Debug" +"5574",2018-01-05 03:40:00,"B","Limit" +"5575",2018-01-05 04:00:00,"A","Error" +"5576",2018-01-05 04:20:00,"A","Error" +"5577",2018-01-05 04:40:00,"C","Limit" +"5578",2018-01-05 05:00:00,"B","Check with author" +"5579",2018-01-05 05:20:00,"A","Attach" +"5580",2018-01-05 05:40:00,"A","Debug" +"5581",2018-01-05 06:00:00,"C","No clue" +"5582",2018-01-05 06:20:00,"C","Error" +"5583",2018-01-05 06:40:00,"B","Error" +"5584",2018-01-05 07:00:00,"C","Attach" +"5585",2018-01-05 07:20:00,"A","Check with author" +"5586",2018-01-05 07:40:00,"A","Warn" +"5587",2018-01-05 08:00:00,"A","Attach" +"5588",2018-01-05 08:20:00,"B","Limit" +"5589",2018-01-05 08:40:00,"B","Debug" +"5590",2018-01-05 09:00:00,"B","Warn" +"5591",2018-01-05 09:20:00,"C","Check with author" +"5592",2018-01-05 09:40:00,"C","Error" +"5593",2018-01-05 10:00:00,"A","Attach" +"5594",2018-01-05 10:20:00,"C","Error" +"5595",2018-01-05 10:40:00,"C","Warn" +"5596",2018-01-05 11:00:00,"B","Check with author" +"5597",2018-01-05 11:20:00,"A","Warn" +"5598",2018-01-05 11:40:00,"A","No clue" +"5599",2018-01-05 12:00:00,"B","Limit" +"5600",2018-01-05 12:20:00,"B","No clue" +"5601",2018-01-05 12:40:00,"A","Attach" +"5602",2018-01-05 13:00:00,"B","Warn" +"5603",2018-01-05 13:20:00,"C","Warn" +"5604",2018-01-05 13:40:00,"B","Attach" +"5605",2018-01-05 14:00:00,"A","No clue" +"5606",2018-01-01 12:00:00,"B","Warn" +"5607",2018-01-01 12:20:00,"C","Check with author" +"5608",2018-01-01 12:40:00,"C","Error" +"5609",2018-01-01 13:00:00,"C","Warn" +"5610",2018-01-01 13:20:00,"A","Error" +"5611",2018-01-01 13:40:00,"A","Limit" +"5612",2018-01-01 14:00:00,"C","Error" +"5613",2018-01-01 14:20:00,"B","Error" +"5614",2018-01-01 14:40:00,"C","Check with author" +"5615",2018-01-01 15:00:00,"A","Debug" +"5616",2018-01-01 15:20:00,"A","Debug" +"5617",2018-01-01 15:40:00,"A","Debug" +"5618",2018-01-01 16:00:00,"C","Attach" +"5619",2018-01-01 16:20:00,"A","Debug" +"5620",2018-01-01 16:40:00,"C","Debug" +"5621",2018-01-01 17:00:00,"A","Attach" +"5622",2018-01-01 17:20:00,"B","Attach" +"5623",2018-01-01 17:40:00,"C","Attach" +"5624",2018-01-01 18:00:00,"C","Attach" +"5625",2018-01-01 18:20:00,"B","Warn" +"5626",2018-01-01 18:40:00,"C","Warn" +"5627",2018-01-01 19:00:00,"A","Check with author" +"5628",2018-01-01 19:20:00,"C","Debug" +"5629",2018-01-01 19:40:00,"C","No clue" +"5630",2018-01-01 20:00:00,"B","Error" +"5631",2018-01-01 20:20:00,"C","Attach" +"5632",2018-01-01 20:40:00,"A","Warn" +"5633",2018-01-01 21:00:00,"A","Check with author" +"5634",2018-01-01 21:20:00,"A","Limit" +"5635",2018-01-01 21:40:00,"A","Limit" +"5636",2018-01-01 22:00:00,"A","Error" +"5637",2018-01-01 22:20:00,"B","Warn" +"5638",2018-01-01 22:40:00,"C","Limit" +"5639",2018-01-01 23:00:00,"C","Debug" +"5640",2018-01-01 23:20:00,"C","Limit" +"5641",2018-01-01 23:40:00,"C","Warn" +"5642",2018-01-02 00:00:00,"C","Error" +"5643",2018-01-02 00:20:00,"B","Warn" +"5644",2018-01-02 00:40:00,"B","Check with author" +"5645",2018-01-02 01:00:00,"C","Error" +"5646",2018-01-02 01:20:00,"C","Limit" +"5647",2018-01-02 01:40:00,"A","Debug" +"5648",2018-01-02 02:00:00,"C","No clue" +"5649",2018-01-02 02:20:00,"B","Debug" +"5650",2018-01-02 02:40:00,"B","Debug" +"5651",2018-01-02 03:00:00,"B","Debug" +"5652",2018-01-02 03:20:00,"C","Attach" +"5653",2018-01-02 03:40:00,"C","Limit" +"5654",2018-01-02 04:00:00,"B","Check with author" +"5655",2018-01-02 04:20:00,"A","Warn" +"5656",2018-01-02 04:40:00,"B","Error" +"5657",2018-01-02 05:00:00,"B","Check with author" +"5658",2018-01-02 05:20:00,"A","Attach" +"5659",2018-01-02 05:40:00,"B","Warn" +"5660",2018-01-02 06:00:00,"C","Check with author" +"5661",2018-01-02 06:20:00,"C","Warn" +"5662",2018-01-02 06:40:00,"B","Limit" +"5663",2018-01-02 07:00:00,"C","Error" +"5664",2018-01-02 07:20:00,"B","Warn" +"5665",2018-01-02 07:40:00,"A","No clue" +"5666",2018-01-02 08:00:00,"B","Attach" +"5667",2018-01-02 08:20:00,"A","Check with author" +"5668",2018-01-02 08:40:00,"A","Warn" +"5669",2018-01-02 09:00:00,"A","Error" +"5670",2018-01-02 09:20:00,"B","Limit" +"5671",2018-01-02 09:40:00,"A","Error" +"5672",2018-01-02 10:00:00,"B","Check with author" +"5673",2018-01-02 10:20:00,"B","Warn" +"5674",2018-01-02 10:40:00,"C","Attach" +"5675",2018-01-02 11:00:00,"A","No clue" +"5676",2018-01-02 11:20:00,"B","Attach" +"5677",2018-01-02 11:40:00,"A","Attach" +"5678",2018-01-02 12:00:00,"A","Attach" +"5679",2018-01-02 12:20:00,"C","Attach" +"5680",2018-01-02 12:40:00,"C","Attach" +"5681",2018-01-02 13:00:00,"A","Limit" +"5682",2018-01-02 13:20:00,"B","Limit" +"5683",2018-01-02 13:40:00,"B","Debug" +"5684",2018-01-02 14:00:00,"C","Limit" +"5685",2018-01-02 14:20:00,"B","Debug" +"5686",2018-01-02 14:40:00,"B","Error" +"5687",2018-01-02 15:00:00,"C","Attach" +"5688",2018-01-02 15:20:00,"B","Check with author" +"5689",2018-01-02 15:40:00,"C","No clue" +"5690",2018-01-02 16:00:00,"C","No clue" +"5691",2018-01-02 16:20:00,"C","Attach" +"5692",2018-01-02 16:40:00,"C","Error" +"5693",2018-01-02 17:00:00,"A","Warn" +"5694",2018-01-02 17:20:00,"B","Check with author" +"5695",2018-01-02 17:40:00,"A","Error" +"5696",2018-01-02 18:00:00,"A","No clue" +"5697",2018-01-02 18:20:00,"C","Error" +"5698",2018-01-02 18:40:00,"B","Limit" +"5699",2018-01-02 19:00:00,"B","Check with author" +"5700",2018-01-02 19:20:00,"B","Warn" +"5701",2018-01-02 19:40:00,"C","Error" +"5702",2018-01-02 20:00:00,"A","Check with author" +"5703",2018-01-02 20:20:00,"C","Limit" +"5704",2018-01-02 20:40:00,"C","Warn" +"5705",2018-01-02 21:00:00,"B","Check with author" +"5706",2018-01-02 21:20:00,"C","Attach" +"5707",2018-01-02 21:40:00,"C","Attach" +"5708",2018-01-02 22:00:00,"B","Error" +"5709",2018-01-02 22:20:00,"B","No clue" +"5710",2018-01-02 22:40:00,"B","Limit" +"5711",2018-01-02 23:00:00,"C","Error" +"5712",2018-01-02 23:20:00,"A","Limit" +"5713",2018-01-02 23:40:00,"A","Error" +"5714",2018-01-03 00:00:00,"B","Warn" +"5715",2018-01-03 00:20:00,"B","Debug" +"5716",2018-01-03 00:40:00,"A","Check with author" +"5717",2018-01-03 01:00:00,"B","Warn" +"5718",2018-01-03 01:20:00,"B","Error" +"5719",2018-01-03 01:40:00,"C","Debug" +"5720",2018-01-03 02:00:00,"B","Error" +"5721",2018-01-03 02:20:00,"A","Debug" +"5722",2018-01-03 02:40:00,"B","Limit" +"5723",2018-01-03 03:00:00,"B","Error" +"5724",2018-01-03 03:20:00,"C","Debug" +"5725",2018-01-03 03:40:00,"C","Limit" +"5726",2018-01-03 04:00:00,"B","Check with author" +"5727",2018-01-03 04:20:00,"B","Error" +"5728",2018-01-03 04:40:00,"C","No clue" +"5729",2018-01-03 05:00:00,"B","Warn" +"5730",2018-01-03 05:20:00,"C","Limit" +"5731",2018-01-03 05:40:00,"C","Attach" +"5732",2018-01-03 06:00:00,"A","No clue" +"5733",2018-01-03 06:20:00,"B","No clue" +"5734",2018-01-03 06:40:00,"C","Warn" +"5735",2018-01-03 07:00:00,"A","Error" +"5736",2018-01-03 07:20:00,"C","Attach" +"5737",2018-01-03 07:40:00,"A","Attach" +"5738",2018-01-03 08:00:00,"B","Warn" +"5739",2018-01-03 08:20:00,"C","Attach" +"5740",2018-01-03 08:40:00,"B","Warn" +"5741",2018-01-03 09:00:00,"B","Warn" +"5742",2018-01-03 09:20:00,"B","Check with author" +"5743",2018-01-03 09:40:00,"C","Check with author" +"5744",2018-01-03 10:00:00,"B","Check with author" +"5745",2018-01-03 10:20:00,"B","No clue" +"5746",2018-01-03 10:40:00,"B","Limit" +"5747",2018-01-03 11:00:00,"C","Warn" +"5748",2018-01-03 11:20:00,"C","Attach" +"5749",2018-01-03 11:40:00,"C","Debug" +"5750",2018-01-03 12:00:00,"B","Debug" +"5751",2018-01-03 12:20:00,"A","No clue" +"5752",2018-01-03 12:40:00,"B","Warn" +"5753",2018-01-03 13:00:00,"A","Attach" +"5754",2018-01-03 13:20:00,"C","No clue" +"5755",2018-01-03 13:40:00,"B","Limit" +"5756",2018-01-03 14:00:00,"C","Limit" +"5757",2018-01-03 14:20:00,"A","Error" +"5758",2018-01-03 14:40:00,"A","Debug" +"5759",2018-01-03 15:00:00,"C","Error" +"5760",2018-01-03 15:20:00,"C","No clue" +"5761",2018-01-03 15:40:00,"C","Limit" +"5762",2018-01-03 16:00:00,"A","Attach" +"5763",2018-01-03 16:20:00,"A","Check with author" +"5764",2018-01-03 16:40:00,"A","Debug" +"5765",2018-01-03 17:00:00,"A","Attach" +"5766",2018-01-03 17:20:00,"C","No clue" +"5767",2018-01-03 17:40:00,"C","Limit" +"5768",2018-01-03 18:00:00,"B","Error" +"5769",2018-01-03 18:20:00,"C","Warn" +"5770",2018-01-03 18:40:00,"C","Check with author" +"5771",2018-01-03 19:00:00,"C","Warn" +"5772",2018-01-03 19:20:00,"B","Check with author" +"5773",2018-01-03 19:40:00,"C","Warn" +"5774",2018-01-03 20:00:00,"B","Limit" +"5775",2018-01-03 20:20:00,"C","Error" +"5776",2018-01-03 20:40:00,"A","Debug" +"5777",2018-01-03 21:00:00,"B","Warn" +"5778",2018-01-03 21:20:00,"A","Error" +"5779",2018-01-03 21:40:00,"A","Attach" +"5780",2018-01-03 22:00:00,"B","Debug" +"5781",2018-01-03 22:20:00,"A","No clue" +"5782",2018-01-03 22:40:00,"C","Check with author" +"5783",2018-01-03 23:00:00,"C","Debug" +"5784",2018-01-03 23:20:00,"A","Limit" +"5785",2018-01-03 23:40:00,"A","Attach" +"5786",2018-01-04 00:00:00,"C","Limit" +"5787",2018-01-04 00:20:00,"B","Error" +"5788",2018-01-04 00:40:00,"A","Debug" +"5789",2018-01-04 01:00:00,"A","Attach" +"5790",2018-01-04 01:20:00,"A","Attach" +"5791",2018-01-04 01:40:00,"B","Limit" +"5792",2018-01-04 02:00:00,"C","Attach" +"5793",2018-01-04 02:20:00,"B","Debug" +"5794",2018-01-04 02:40:00,"C","Debug" +"5795",2018-01-04 03:00:00,"C","Error" +"5796",2018-01-04 03:20:00,"B","Limit" +"5797",2018-01-04 03:40:00,"A","Warn" +"5798",2018-01-04 04:00:00,"A","No clue" +"5799",2018-01-04 04:20:00,"C","Error" +"5800",2018-01-04 04:40:00,"A","Limit" +"5801",2018-01-04 05:00:00,"A","Attach" +"5802",2018-01-04 05:20:00,"C","Check with author" +"5803",2018-01-04 05:40:00,"A","Warn" +"5804",2018-01-04 06:00:00,"B","Attach" +"5805",2018-01-04 06:20:00,"C","Error" +"5806",2018-01-04 06:40:00,"B","Limit" +"5807",2018-01-04 07:00:00,"B","Limit" +"5808",2018-01-04 07:20:00,"B","Warn" +"5809",2018-01-04 07:40:00,"A","Check with author" +"5810",2018-01-04 08:00:00,"B","Error" +"5811",2018-01-04 08:20:00,"C","Limit" +"5812",2018-01-04 08:40:00,"A","Limit" +"5813",2018-01-04 09:00:00,"A","Attach" +"5814",2018-01-04 09:20:00,"A","No clue" +"5815",2018-01-04 09:40:00,"B","Attach" +"5816",2018-01-04 10:00:00,"B","Error" +"5817",2018-01-04 10:20:00,"B","Error" +"5818",2018-01-04 10:40:00,"B","Warn" +"5819",2018-01-04 11:00:00,"B","Check with author" +"5820",2018-01-04 11:20:00,"A","Check with author" +"5821",2018-01-04 11:40:00,"A","Attach" +"5822",2018-01-04 12:00:00,"C","Limit" +"5823",2018-01-04 12:20:00,"C","Debug" +"5824",2018-01-04 12:40:00,"B","Check with author" +"5825",2018-01-04 13:00:00,"B","Attach" +"5826",2018-01-04 13:20:00,"A","Warn" +"5827",2018-01-04 13:40:00,"C","Debug" +"5828",2018-01-04 14:00:00,"B","Warn" +"5829",2018-01-04 14:20:00,"A","Check with author" +"5830",2018-01-04 14:40:00,"A","Check with author" +"5831",2018-01-04 15:00:00,"B","Check with author" +"5832",2018-01-04 15:20:00,"A","Attach" +"5833",2018-01-04 15:40:00,"C","Warn" +"5834",2018-01-04 16:00:00,"C","Attach" +"5835",2018-01-04 16:20:00,"B","Limit" +"5836",2018-01-04 16:40:00,"B","Check with author" +"5837",2018-01-04 17:00:00,"C","No clue" +"5838",2018-01-04 17:20:00,"B","No clue" +"5839",2018-01-04 17:40:00,"B","Attach" +"5840",2018-01-04 18:00:00,"A","Debug" +"5841",2018-01-04 18:20:00,"C","Attach" +"5842",2018-01-04 18:40:00,"C","Check with author" +"5843",2018-01-04 19:00:00,"C","Debug" +"5844",2018-01-04 19:20:00,"C","Attach" +"5845",2018-01-04 19:40:00,"B","Error" +"5846",2018-01-04 20:00:00,"A","Limit" +"5847",2018-01-04 20:20:00,"A","Check with author" +"5848",2018-01-04 20:40:00,"A","Error" +"5849",2018-01-04 21:00:00,"B","Error" +"5850",2018-01-04 21:20:00,"C","Attach" +"5851",2018-01-04 21:40:00,"A","No clue" +"5852",2018-01-04 22:00:00,"A","Check with author" +"5853",2018-01-04 22:20:00,"C","Limit" +"5854",2018-01-04 22:40:00,"A","No clue" +"5855",2018-01-04 23:00:00,"B","Debug" +"5856",2018-01-04 23:20:00,"A","Limit" +"5857",2018-01-04 23:40:00,"A","Error" +"5858",2018-01-05 00:00:00,"C","Warn" +"5859",2018-01-05 00:20:00,"A","Limit" +"5860",2018-01-05 00:40:00,"A","Check with author" +"5861",2018-01-05 01:00:00,"A","Limit" +"5862",2018-01-05 01:20:00,"B","Error" +"5863",2018-01-05 01:40:00,"A","Warn" +"5864",2018-01-05 02:00:00,"B","Check with author" +"5865",2018-01-05 02:20:00,"B","No clue" +"5866",2018-01-05 02:40:00,"A","No clue" +"5867",2018-01-05 03:00:00,"C","Limit" +"5868",2018-01-05 03:20:00,"B","Warn" +"5869",2018-01-05 03:40:00,"B","Error" +"5870",2018-01-05 04:00:00,"A","Debug" +"5871",2018-01-05 04:20:00,"B","Check with author" +"5872",2018-01-05 04:40:00,"B","Error" +"5873",2018-01-05 05:00:00,"C","No clue" +"5874",2018-01-05 05:20:00,"A","Error" +"5875",2018-01-05 05:40:00,"B","No clue" +"5876",2018-01-05 06:00:00,"C","Warn" +"5877",2018-01-05 06:20:00,"B","Warn" +"5878",2018-01-05 06:40:00,"A","Error" +"5879",2018-01-05 07:00:00,"C","Debug" +"5880",2018-01-05 07:20:00,"B","Error" +"5881",2018-01-05 07:40:00,"A","No clue" +"5882",2018-01-05 08:00:00,"A","Attach" +"5883",2018-01-05 08:20:00,"B","Error" +"5884",2018-01-05 08:40:00,"B","No clue" +"5885",2018-01-05 09:00:00,"B","Attach" +"5886",2018-01-05 09:20:00,"B","Limit" +"5887",2018-01-05 09:40:00,"B","Debug" +"5888",2018-01-05 10:00:00,"B","No clue" +"5889",2018-01-05 10:20:00,"A","Error" +"5890",2018-01-05 10:40:00,"A","Attach" +"5891",2018-01-05 11:00:00,"B","Error" +"5892",2018-01-05 11:20:00,"C","Warn" +"5893",2018-01-05 11:40:00,"A","Error" +"5894",2018-01-05 12:00:00,"A","Warn" +"5895",2018-01-05 12:20:00,"B","Warn" +"5896",2018-01-05 12:40:00,"A","No clue" +"5897",2018-01-05 13:00:00,"B","Error" +"5898",2018-01-05 13:20:00,"A","No clue" +"5899",2018-01-05 13:40:00,"B","Debug" +"5900",2018-01-05 14:00:00,"A","Debug" +"5901",2018-01-01 12:00:00,"B","Warn" +"5902",2018-01-01 12:20:00,"B","Check with author" +"5903",2018-01-01 12:40:00,"A","Error" +"5904",2018-01-01 13:00:00,"C","Debug" +"5905",2018-01-01 13:20:00,"C","No clue" +"5906",2018-01-01 13:40:00,"C","No clue" +"5907",2018-01-01 14:00:00,"A","Attach" +"5908",2018-01-01 14:20:00,"C","Limit" +"5909",2018-01-01 14:40:00,"A","Warn" +"5910",2018-01-01 15:00:00,"C","Check with author" +"5911",2018-01-01 15:20:00,"C","No clue" +"5912",2018-01-01 15:40:00,"C","Attach" +"5913",2018-01-01 16:00:00,"C","Error" +"5914",2018-01-01 16:20:00,"C","Warn" +"5915",2018-01-01 16:40:00,"A","Limit" +"5916",2018-01-01 17:00:00,"B","Debug" +"5917",2018-01-01 17:20:00,"C","Check with author" +"5918",2018-01-01 17:40:00,"C","No clue" +"5919",2018-01-01 18:00:00,"A","No clue" +"5920",2018-01-01 18:20:00,"A","No clue" +"5921",2018-01-01 18:40:00,"B","Attach" +"5922",2018-01-01 19:00:00,"B","Limit" +"5923",2018-01-01 19:20:00,"A","Attach" +"5924",2018-01-01 19:40:00,"C","Warn" +"5925",2018-01-01 20:00:00,"B","Check with author" +"5926",2018-01-01 20:20:00,"A","Debug" +"5927",2018-01-01 20:40:00,"A","Limit" +"5928",2018-01-01 21:00:00,"C","Check with author" +"5929",2018-01-01 21:20:00,"A","Attach" +"5930",2018-01-01 21:40:00,"C","Limit" +"5931",2018-01-01 22:00:00,"B","Debug" +"5932",2018-01-01 22:20:00,"C","No clue" +"5933",2018-01-01 22:40:00,"A","Warn" +"5934",2018-01-01 23:00:00,"A","Limit" +"5935",2018-01-01 23:20:00,"A","Limit" +"5936",2018-01-01 23:40:00,"C","Attach" +"5937",2018-01-02 00:00:00,"C","Limit" +"5938",2018-01-02 00:20:00,"C","Debug" +"5939",2018-01-02 00:40:00,"C","Error" +"5940",2018-01-02 01:00:00,"B","Warn" +"5941",2018-01-02 01:20:00,"A","Attach" +"5942",2018-01-02 01:40:00,"C","Attach" +"5943",2018-01-02 02:00:00,"C","Debug" +"5944",2018-01-02 02:20:00,"A","Error" +"5945",2018-01-02 02:40:00,"A","Limit" +"5946",2018-01-02 03:00:00,"B","Check with author" +"5947",2018-01-02 03:20:00,"A","Limit" +"5948",2018-01-02 03:40:00,"B","Attach" +"5949",2018-01-02 04:00:00,"B","Error" +"5950",2018-01-02 04:20:00,"C","Check with author" +"5951",2018-01-02 04:40:00,"C","Attach" +"5952",2018-01-02 05:00:00,"A","Check with author" +"5953",2018-01-02 05:20:00,"B","Limit" +"5954",2018-01-02 05:40:00,"A","Limit" +"5955",2018-01-02 06:00:00,"B","Limit" +"5956",2018-01-02 06:20:00,"C","Debug" +"5957",2018-01-02 06:40:00,"C","Warn" +"5958",2018-01-02 07:00:00,"C","Warn" +"5959",2018-01-02 07:20:00,"A","Limit" +"5960",2018-01-02 07:40:00,"C","Limit" +"5961",2018-01-02 08:00:00,"C","Error" +"5962",2018-01-02 08:20:00,"B","Limit" +"5963",2018-01-02 08:40:00,"A","Debug" +"5964",2018-01-02 09:00:00,"A","Debug" +"5965",2018-01-02 09:20:00,"A","Check with author" +"5966",2018-01-02 09:40:00,"A","Limit" +"5967",2018-01-02 10:00:00,"C","Error" +"5968",2018-01-02 10:20:00,"A","Error" +"5969",2018-01-02 10:40:00,"A","Check with author" +"5970",2018-01-02 11:00:00,"C","No clue" +"5971",2018-01-02 11:20:00,"A","Warn" +"5972",2018-01-02 11:40:00,"A","No clue" +"5973",2018-01-02 12:00:00,"C","Check with author" +"5974",2018-01-02 12:20:00,"C","Warn" +"5975",2018-01-02 12:40:00,"C","No clue" +"5976",2018-01-02 13:00:00,"C","Error" +"5977",2018-01-02 13:20:00,"B","Debug" +"5978",2018-01-02 13:40:00,"B","Limit" +"5979",2018-01-02 14:00:00,"B","Attach" +"5980",2018-01-02 14:20:00,"C","Debug" +"5981",2018-01-02 14:40:00,"A","Error" +"5982",2018-01-02 15:00:00,"B","Attach" +"5983",2018-01-02 15:20:00,"A","Warn" +"5984",2018-01-02 15:40:00,"C","Check with author" +"5985",2018-01-02 16:00:00,"A","Check with author" +"5986",2018-01-02 16:20:00,"C","No clue" +"5987",2018-01-02 16:40:00,"C","No clue" +"5988",2018-01-02 17:00:00,"A","Attach" +"5989",2018-01-02 17:20:00,"A","Error" +"5990",2018-01-02 17:40:00,"C","Error" +"5991",2018-01-02 18:00:00,"A","Debug" +"5992",2018-01-02 18:20:00,"A","Limit" +"5993",2018-01-02 18:40:00,"C","Error" +"5994",2018-01-02 19:00:00,"C","Error" +"5995",2018-01-02 19:20:00,"A","Warn" +"5996",2018-01-02 19:40:00,"B","Attach" +"5997",2018-01-02 20:00:00,"C","Limit" +"5998",2018-01-02 20:20:00,"B","Error" +"5999",2018-01-02 20:40:00,"C","Check with author" +"6000",2018-01-02 21:00:00,"C","Warn" +"6001",2018-01-02 21:20:00,"B","Check with author" +"6002",2018-01-02 21:40:00,"C","No clue" +"6003",2018-01-02 22:00:00,"C","Check with author" +"6004",2018-01-02 22:20:00,"C","Limit" +"6005",2018-01-02 22:40:00,"A","Debug" +"6006",2018-01-02 23:00:00,"C","No clue" +"6007",2018-01-02 23:20:00,"A","Error" +"6008",2018-01-02 23:40:00,"B","Check with author" +"6009",2018-01-03 00:00:00,"B","Warn" +"6010",2018-01-03 00:20:00,"B","Attach" +"6011",2018-01-03 00:40:00,"B","Debug" +"6012",2018-01-03 01:00:00,"B","Limit" +"6013",2018-01-03 01:20:00,"B","No clue" +"6014",2018-01-03 01:40:00,"A","Debug" +"6015",2018-01-03 02:00:00,"A","Warn" +"6016",2018-01-03 02:20:00,"A","Warn" +"6017",2018-01-03 02:40:00,"C","Warn" +"6018",2018-01-03 03:00:00,"A","No clue" +"6019",2018-01-03 03:20:00,"B","Check with author" +"6020",2018-01-03 03:40:00,"A","No clue" +"6021",2018-01-03 04:00:00,"C","Check with author" +"6022",2018-01-03 04:20:00,"C","Debug" +"6023",2018-01-03 04:40:00,"B","Debug" +"6024",2018-01-03 05:00:00,"A","No clue" +"6025",2018-01-03 05:20:00,"C","Warn" +"6026",2018-01-03 05:40:00,"C","Debug" +"6027",2018-01-03 06:00:00,"A","Check with author" +"6028",2018-01-03 06:20:00,"B","Check with author" +"6029",2018-01-03 06:40:00,"A","Warn" +"6030",2018-01-03 07:00:00,"A","Warn" +"6031",2018-01-03 07:20:00,"B","Debug" +"6032",2018-01-03 07:40:00,"A","Error" +"6033",2018-01-03 08:00:00,"B","Check with author" +"6034",2018-01-03 08:20:00,"B","Debug" +"6035",2018-01-03 08:40:00,"A","Debug" +"6036",2018-01-03 09:00:00,"C","Limit" +"6037",2018-01-03 09:20:00,"B","Debug" +"6038",2018-01-03 09:40:00,"C","Error" +"6039",2018-01-03 10:00:00,"C","Error" +"6040",2018-01-03 10:20:00,"A","Limit" +"6041",2018-01-03 10:40:00,"A","Error" +"6042",2018-01-03 11:00:00,"C","Limit" +"6043",2018-01-03 11:20:00,"B","Warn" +"6044",2018-01-03 11:40:00,"B","Check with author" +"6045",2018-01-03 12:00:00,"A","Debug" +"6046",2018-01-03 12:20:00,"B","Attach" +"6047",2018-01-03 12:40:00,"A","Limit" +"6048",2018-01-03 13:00:00,"C","No clue" +"6049",2018-01-03 13:20:00,"B","Debug" +"6050",2018-01-03 13:40:00,"C","Debug" +"6051",2018-01-03 14:00:00,"A","Limit" +"6052",2018-01-03 14:20:00,"A","No clue" +"6053",2018-01-03 14:40:00,"B","Limit" +"6054",2018-01-03 15:00:00,"A","Warn" +"6055",2018-01-03 15:20:00,"B","Limit" +"6056",2018-01-03 15:40:00,"B","Warn" +"6057",2018-01-03 16:00:00,"C","Limit" +"6058",2018-01-03 16:20:00,"C","Debug" +"6059",2018-01-03 16:40:00,"B","Warn" +"6060",2018-01-03 17:00:00,"B","Warn" +"6061",2018-01-03 17:20:00,"A","No clue" +"6062",2018-01-03 17:40:00,"C","Check with author" +"6063",2018-01-03 18:00:00,"C","Attach" +"6064",2018-01-03 18:20:00,"C","Error" +"6065",2018-01-03 18:40:00,"B","No clue" +"6066",2018-01-03 19:00:00,"A","Debug" +"6067",2018-01-03 19:20:00,"A","Limit" +"6068",2018-01-03 19:40:00,"A","Check with author" +"6069",2018-01-03 20:00:00,"C","Check with author" +"6070",2018-01-03 20:20:00,"C","Debug" +"6071",2018-01-03 20:40:00,"A","Limit" +"6072",2018-01-03 21:00:00,"C","Check with author" +"6073",2018-01-03 21:20:00,"C","Warn" +"6074",2018-01-03 21:40:00,"C","Debug" +"6075",2018-01-03 22:00:00,"C","Limit" +"6076",2018-01-03 22:20:00,"C","No clue" +"6077",2018-01-03 22:40:00,"A","Attach" +"6078",2018-01-03 23:00:00,"C","Error" +"6079",2018-01-03 23:20:00,"C","No clue" +"6080",2018-01-03 23:40:00,"C","No clue" +"6081",2018-01-04 00:00:00,"A","Error" +"6082",2018-01-04 00:20:00,"A","Check with author" +"6083",2018-01-04 00:40:00,"B","Warn" +"6084",2018-01-04 01:00:00,"A","No clue" +"6085",2018-01-04 01:20:00,"C","Warn" +"6086",2018-01-04 01:40:00,"C","Debug" +"6087",2018-01-04 02:00:00,"B","Check with author" +"6088",2018-01-04 02:20:00,"B","Limit" +"6089",2018-01-04 02:40:00,"C","Attach" +"6090",2018-01-04 03:00:00,"A","Limit" +"6091",2018-01-04 03:20:00,"B","Error" +"6092",2018-01-04 03:40:00,"A","Check with author" +"6093",2018-01-04 04:00:00,"A","Debug" +"6094",2018-01-04 04:20:00,"B","Error" +"6095",2018-01-04 04:40:00,"C","Warn" +"6096",2018-01-04 05:00:00,"A","Check with author" +"6097",2018-01-04 05:20:00,"B","Error" +"6098",2018-01-04 05:40:00,"A","No clue" +"6099",2018-01-04 06:00:00,"A","Warn" +"6100",2018-01-04 06:20:00,"A","Warn" +"6101",2018-01-04 06:40:00,"B","Warn" +"6102",2018-01-04 07:00:00,"C","Warn" +"6103",2018-01-04 07:20:00,"A","Error" +"6104",2018-01-04 07:40:00,"B","Limit" +"6105",2018-01-04 08:00:00,"A","Limit" +"6106",2018-01-04 08:20:00,"C","Check with author" +"6107",2018-01-04 08:40:00,"A","No clue" +"6108",2018-01-04 09:00:00,"C","Limit" +"6109",2018-01-04 09:20:00,"C","No clue" +"6110",2018-01-04 09:40:00,"C","Warn" +"6111",2018-01-04 10:00:00,"C","Warn" +"6112",2018-01-04 10:20:00,"B","Attach" +"6113",2018-01-04 10:40:00,"A","Debug" +"6114",2018-01-04 11:00:00,"C","Error" +"6115",2018-01-04 11:20:00,"B","No clue" +"6116",2018-01-04 11:40:00,"B","No clue" +"6117",2018-01-04 12:00:00,"C","Attach" +"6118",2018-01-04 12:20:00,"C","Warn" +"6119",2018-01-04 12:40:00,"B","Attach" +"6120",2018-01-04 13:00:00,"C","Error" +"6121",2018-01-04 13:20:00,"A","Error" +"6122",2018-01-04 13:40:00,"C","No clue" +"6123",2018-01-04 14:00:00,"C","Attach" +"6124",2018-01-04 14:20:00,"C","Debug" +"6125",2018-01-04 14:40:00,"A","Error" +"6126",2018-01-04 15:00:00,"B","Warn" +"6127",2018-01-04 15:20:00,"C","Attach" +"6128",2018-01-04 15:40:00,"B","Attach" +"6129",2018-01-04 16:00:00,"A","Attach" +"6130",2018-01-04 16:20:00,"C","Limit" +"6131",2018-01-04 16:40:00,"B","Debug" +"6132",2018-01-04 17:00:00,"B","Limit" +"6133",2018-01-04 17:20:00,"C","Limit" +"6134",2018-01-04 17:40:00,"B","Debug" +"6135",2018-01-04 18:00:00,"C","Debug" +"6136",2018-01-04 18:20:00,"B","Warn" +"6137",2018-01-04 18:40:00,"A","Check with author" +"6138",2018-01-04 19:00:00,"C","Check with author" +"6139",2018-01-04 19:20:00,"B","No clue" +"6140",2018-01-04 19:40:00,"B","Limit" +"6141",2018-01-04 20:00:00,"C","Error" +"6142",2018-01-04 20:20:00,"B","Limit" +"6143",2018-01-04 20:40:00,"A","Debug" +"6144",2018-01-04 21:00:00,"C","No clue" +"6145",2018-01-04 21:20:00,"A","Debug" +"6146",2018-01-04 21:40:00,"A","No clue" +"6147",2018-01-04 22:00:00,"C","Warn" +"6148",2018-01-04 22:20:00,"B","Attach" +"6149",2018-01-04 22:40:00,"B","Warn" +"6150",2018-01-04 23:00:00,"C","Check with author" +"6151",2018-01-04 23:20:00,"C","Debug" +"6152",2018-01-04 23:40:00,"C","Attach" +"6153",2018-01-05 00:00:00,"A","Check with author" +"6154",2018-01-05 00:20:00,"C","Check with author" +"6155",2018-01-05 00:40:00,"C","No clue" +"6156",2018-01-05 01:00:00,"C","Error" +"6157",2018-01-05 01:20:00,"C","Check with author" +"6158",2018-01-05 01:40:00,"B","No clue" +"6159",2018-01-05 02:00:00,"A","Check with author" +"6160",2018-01-05 02:20:00,"B","Check with author" +"6161",2018-01-05 02:40:00,"C","No clue" +"6162",2018-01-05 03:00:00,"B","Warn" +"6163",2018-01-05 03:20:00,"B","Check with author" +"6164",2018-01-05 03:40:00,"C","Warn" +"6165",2018-01-05 04:00:00,"A","Error" +"6166",2018-01-05 04:20:00,"A","Attach" +"6167",2018-01-05 04:40:00,"C","No clue" +"6168",2018-01-05 05:00:00,"B","Debug" +"6169",2018-01-05 05:20:00,"C","Limit" +"6170",2018-01-05 05:40:00,"C","Debug" +"6171",2018-01-05 06:00:00,"A","No clue" +"6172",2018-01-05 06:20:00,"C","No clue" +"6173",2018-01-05 06:40:00,"C","Limit" +"6174",2018-01-05 07:00:00,"A","Error" +"6175",2018-01-05 07:20:00,"B","Limit" +"6176",2018-01-05 07:40:00,"C","Limit" +"6177",2018-01-05 08:00:00,"B","Error" +"6178",2018-01-05 08:20:00,"C","Error" +"6179",2018-01-05 08:40:00,"C","Error" +"6180",2018-01-05 09:00:00,"B","Warn" +"6181",2018-01-05 09:20:00,"A","Error" +"6182",2018-01-05 09:40:00,"A","Debug" +"6183",2018-01-05 10:00:00,"C","Debug" +"6184",2018-01-05 10:20:00,"C","Warn" +"6185",2018-01-05 10:40:00,"B","Debug" +"6186",2018-01-05 11:00:00,"A","No clue" +"6187",2018-01-05 11:20:00,"C","Attach" +"6188",2018-01-05 11:40:00,"A","Debug" +"6189",2018-01-05 12:00:00,"A","Limit" +"6190",2018-01-05 12:20:00,"B","Warn" +"6191",2018-01-05 12:40:00,"A","Check with author" +"6192",2018-01-05 13:00:00,"B","Warn" +"6193",2018-01-05 13:20:00,"B","Check with author" +"6194",2018-01-05 13:40:00,"A","No clue" +"6195",2018-01-05 14:00:00,"A","Check with author" +"6196",2018-01-01 12:00:00,"C","Debug" +"6197",2018-01-01 12:20:00,"C","Check with author" +"6198",2018-01-01 12:40:00,"A","Debug" +"6199",2018-01-01 13:00:00,"B","Debug" +"6200",2018-01-01 13:20:00,"B","Warn" +"6201",2018-01-01 13:40:00,"B","No clue" +"6202",2018-01-01 14:00:00,"B","Check with author" +"6203",2018-01-01 14:20:00,"A","Limit" +"6204",2018-01-01 14:40:00,"A","Check with author" +"6205",2018-01-01 15:00:00,"C","Error" +"6206",2018-01-01 15:20:00,"C","Warn" +"6207",2018-01-01 15:40:00,"A","Warn" +"6208",2018-01-01 16:00:00,"C","Debug" +"6209",2018-01-01 16:20:00,"C","Error" +"6210",2018-01-01 16:40:00,"B","Attach" +"6211",2018-01-01 17:00:00,"A","Debug" +"6212",2018-01-01 17:20:00,"B","Debug" +"6213",2018-01-01 17:40:00,"C","Check with author" +"6214",2018-01-01 18:00:00,"C","Error" +"6215",2018-01-01 18:20:00,"A","Check with author" +"6216",2018-01-01 18:40:00,"A","Check with author" +"6217",2018-01-01 19:00:00,"A","Debug" +"6218",2018-01-01 19:20:00,"C","Error" +"6219",2018-01-01 19:40:00,"C","Attach" +"6220",2018-01-01 20:00:00,"C","Error" +"6221",2018-01-01 20:20:00,"C","Attach" +"6222",2018-01-01 20:40:00,"A","No clue" +"6223",2018-01-01 21:00:00,"C","Attach" +"6224",2018-01-01 21:20:00,"C","Attach" +"6225",2018-01-01 21:40:00,"A","Check with author" +"6226",2018-01-01 22:00:00,"B","Debug" +"6227",2018-01-01 22:20:00,"B","Attach" +"6228",2018-01-01 22:40:00,"B","Limit" +"6229",2018-01-01 23:00:00,"C","Attach" +"6230",2018-01-01 23:20:00,"B","Attach" +"6231",2018-01-01 23:40:00,"A","Error" +"6232",2018-01-02 00:00:00,"B","Debug" +"6233",2018-01-02 00:20:00,"B","Error" +"6234",2018-01-02 00:40:00,"A","Debug" +"6235",2018-01-02 01:00:00,"B","Check with author" +"6236",2018-01-02 01:20:00,"A","No clue" +"6237",2018-01-02 01:40:00,"C","Debug" +"6238",2018-01-02 02:00:00,"A","No clue" +"6239",2018-01-02 02:20:00,"B","Attach" +"6240",2018-01-02 02:40:00,"A","Debug" +"6241",2018-01-02 03:00:00,"C","Check with author" +"6242",2018-01-02 03:20:00,"C","No clue" +"6243",2018-01-02 03:40:00,"C","Check with author" +"6244",2018-01-02 04:00:00,"A","Limit" +"6245",2018-01-02 04:20:00,"B","Limit" +"6246",2018-01-02 04:40:00,"B","Check with author" +"6247",2018-01-02 05:00:00,"C","Attach" +"6248",2018-01-02 05:20:00,"B","Check with author" +"6249",2018-01-02 05:40:00,"A","Error" +"6250",2018-01-02 06:00:00,"A","Warn" +"6251",2018-01-02 06:20:00,"B","Debug" +"6252",2018-01-02 06:40:00,"C","Debug" +"6253",2018-01-02 07:00:00,"A","Attach" +"6254",2018-01-02 07:20:00,"C","Attach" +"6255",2018-01-02 07:40:00,"C","Debug" +"6256",2018-01-02 08:00:00,"C","Check with author" +"6257",2018-01-02 08:20:00,"C","Warn" +"6258",2018-01-02 08:40:00,"B","No clue" +"6259",2018-01-02 09:00:00,"B","Attach" +"6260",2018-01-02 09:20:00,"B","Warn" +"6261",2018-01-02 09:40:00,"B","No clue" +"6262",2018-01-02 10:00:00,"A","Limit" +"6263",2018-01-02 10:20:00,"A","Debug" +"6264",2018-01-02 10:40:00,"C","Error" +"6265",2018-01-02 11:00:00,"B","Check with author" +"6266",2018-01-02 11:20:00,"A","Check with author" +"6267",2018-01-02 11:40:00,"C","Attach" +"6268",2018-01-02 12:00:00,"A","Warn" +"6269",2018-01-02 12:20:00,"C","Attach" +"6270",2018-01-02 12:40:00,"B","No clue" +"6271",2018-01-02 13:00:00,"C","No clue" +"6272",2018-01-02 13:20:00,"C","Attach" +"6273",2018-01-02 13:40:00,"A","Warn" +"6274",2018-01-02 14:00:00,"B","Check with author" +"6275",2018-01-02 14:20:00,"B","Limit" +"6276",2018-01-02 14:40:00,"A","Debug" +"6277",2018-01-02 15:00:00,"A","Error" +"6278",2018-01-02 15:20:00,"A","Error" +"6279",2018-01-02 15:40:00,"B","Limit" +"6280",2018-01-02 16:00:00,"A","No clue" +"6281",2018-01-02 16:20:00,"B","Attach" +"6282",2018-01-02 16:40:00,"A","Error" +"6283",2018-01-02 17:00:00,"B","Debug" +"6284",2018-01-02 17:20:00,"B","Check with author" +"6285",2018-01-02 17:40:00,"C","Attach" +"6286",2018-01-02 18:00:00,"C","Debug" +"6287",2018-01-02 18:20:00,"B","Attach" +"6288",2018-01-02 18:40:00,"C","Debug" +"6289",2018-01-02 19:00:00,"A","Attach" +"6290",2018-01-02 19:20:00,"B","Attach" +"6291",2018-01-02 19:40:00,"C","Error" +"6292",2018-01-02 20:00:00,"B","Limit" +"6293",2018-01-02 20:20:00,"A","Error" +"6294",2018-01-02 20:40:00,"C","Warn" +"6295",2018-01-02 21:00:00,"C","Warn" +"6296",2018-01-02 21:20:00,"C","Check with author" +"6297",2018-01-02 21:40:00,"A","Limit" +"6298",2018-01-02 22:00:00,"C","Debug" +"6299",2018-01-02 22:20:00,"C","Attach" +"6300",2018-01-02 22:40:00,"A","Check with author" +"6301",2018-01-02 23:00:00,"A","Debug" +"6302",2018-01-02 23:20:00,"C","Limit" +"6303",2018-01-02 23:40:00,"C","Check with author" +"6304",2018-01-03 00:00:00,"B","Attach" +"6305",2018-01-03 00:20:00,"B","No clue" +"6306",2018-01-03 00:40:00,"A","Warn" +"6307",2018-01-03 01:00:00,"C","Limit" +"6308",2018-01-03 01:20:00,"B","No clue" +"6309",2018-01-03 01:40:00,"A","Limit" +"6310",2018-01-03 02:00:00,"C","No clue" +"6311",2018-01-03 02:20:00,"B","No clue" +"6312",2018-01-03 02:40:00,"C","Debug" +"6313",2018-01-03 03:00:00,"C","Attach" +"6314",2018-01-03 03:20:00,"A","No clue" +"6315",2018-01-03 03:40:00,"C","Check with author" +"6316",2018-01-03 04:00:00,"C","Error" +"6317",2018-01-03 04:20:00,"C","Limit" +"6318",2018-01-03 04:40:00,"B","Debug" +"6319",2018-01-03 05:00:00,"A","Warn" +"6320",2018-01-03 05:20:00,"A","Warn" +"6321",2018-01-03 05:40:00,"A","Limit" +"6322",2018-01-03 06:00:00,"A","Warn" +"6323",2018-01-03 06:20:00,"C","Debug" +"6324",2018-01-03 06:40:00,"A","Limit" +"6325",2018-01-03 07:00:00,"A","Check with author" +"6326",2018-01-03 07:20:00,"B","Debug" +"6327",2018-01-03 07:40:00,"A","Error" +"6328",2018-01-03 08:00:00,"A","Attach" +"6329",2018-01-03 08:20:00,"B","Warn" +"6330",2018-01-03 08:40:00,"C","No clue" +"6331",2018-01-03 09:00:00,"C","Attach" +"6332",2018-01-03 09:20:00,"C","Debug" +"6333",2018-01-03 09:40:00,"A","Limit" +"6334",2018-01-03 10:00:00,"C","Check with author" +"6335",2018-01-03 10:20:00,"C","Error" +"6336",2018-01-03 10:40:00,"B","Limit" +"6337",2018-01-03 11:00:00,"B","Check with author" +"6338",2018-01-03 11:20:00,"A","Limit" +"6339",2018-01-03 11:40:00,"C","Debug" +"6340",2018-01-03 12:00:00,"C","Check with author" +"6341",2018-01-03 12:20:00,"C","Check with author" +"6342",2018-01-03 12:40:00,"B","Attach" +"6343",2018-01-03 13:00:00,"A","No clue" +"6344",2018-01-03 13:20:00,"C","Error" +"6345",2018-01-03 13:40:00,"C","Limit" +"6346",2018-01-03 14:00:00,"C","Debug" +"6347",2018-01-03 14:20:00,"B","Attach" +"6348",2018-01-03 14:40:00,"B","Error" +"6349",2018-01-03 15:00:00,"A","Attach" +"6350",2018-01-03 15:20:00,"C","No clue" +"6351",2018-01-03 15:40:00,"B","Warn" +"6352",2018-01-03 16:00:00,"B","Warn" +"6353",2018-01-03 16:20:00,"C","Attach" +"6354",2018-01-03 16:40:00,"C","Check with author" +"6355",2018-01-03 17:00:00,"C","Debug" +"6356",2018-01-03 17:20:00,"C","Limit" +"6357",2018-01-03 17:40:00,"C","No clue" +"6358",2018-01-03 18:00:00,"B","Limit" +"6359",2018-01-03 18:20:00,"B","Attach" +"6360",2018-01-03 18:40:00,"B","No clue" +"6361",2018-01-03 19:00:00,"A","No clue" +"6362",2018-01-03 19:20:00,"A","Attach" +"6363",2018-01-03 19:40:00,"C","Attach" +"6364",2018-01-03 20:00:00,"A","Check with author" +"6365",2018-01-03 20:20:00,"B","Attach" +"6366",2018-01-03 20:40:00,"C","Check with author" +"6367",2018-01-03 21:00:00,"C","Error" +"6368",2018-01-03 21:20:00,"B","Check with author" +"6369",2018-01-03 21:40:00,"A","Limit" +"6370",2018-01-03 22:00:00,"B","Debug" +"6371",2018-01-03 22:20:00,"B","Error" +"6372",2018-01-03 22:40:00,"A","Warn" +"6373",2018-01-03 23:00:00,"B","Debug" +"6374",2018-01-03 23:20:00,"B","Error" +"6375",2018-01-03 23:40:00,"B","Check with author" +"6376",2018-01-04 00:00:00,"C","No clue" +"6377",2018-01-04 00:20:00,"A","Error" +"6378",2018-01-04 00:40:00,"C","Check with author" +"6379",2018-01-04 01:00:00,"A","Warn" +"6380",2018-01-04 01:20:00,"A","Debug" +"6381",2018-01-04 01:40:00,"A","Debug" +"6382",2018-01-04 02:00:00,"C","Error" +"6383",2018-01-04 02:20:00,"B","Limit" +"6384",2018-01-04 02:40:00,"C","Debug" +"6385",2018-01-04 03:00:00,"A","Limit" +"6386",2018-01-04 03:20:00,"B","No clue" +"6387",2018-01-04 03:40:00,"C","Attach" +"6388",2018-01-04 04:00:00,"A","No clue" +"6389",2018-01-04 04:20:00,"C","Limit" +"6390",2018-01-04 04:40:00,"A","Error" +"6391",2018-01-04 05:00:00,"B","Check with author" +"6392",2018-01-04 05:20:00,"A","No clue" +"6393",2018-01-04 05:40:00,"C","Check with author" +"6394",2018-01-04 06:00:00,"A","Attach" +"6395",2018-01-04 06:20:00,"C","No clue" +"6396",2018-01-04 06:40:00,"B","Debug" +"6397",2018-01-04 07:00:00,"B","Attach" +"6398",2018-01-04 07:20:00,"C","Warn" +"6399",2018-01-04 07:40:00,"B","No clue" +"6400",2018-01-04 08:00:00,"B","Error" +"6401",2018-01-04 08:20:00,"B","Attach" +"6402",2018-01-04 08:40:00,"C","Error" +"6403",2018-01-04 09:00:00,"C","Debug" +"6404",2018-01-04 09:20:00,"A","Check with author" +"6405",2018-01-04 09:40:00,"A","Limit" +"6406",2018-01-04 10:00:00,"A","Attach" +"6407",2018-01-04 10:20:00,"C","Limit" +"6408",2018-01-04 10:40:00,"A","Attach" +"6409",2018-01-04 11:00:00,"B","Warn" +"6410",2018-01-04 11:20:00,"A","Warn" +"6411",2018-01-04 11:40:00,"C","Error" +"6412",2018-01-04 12:00:00,"C","Error" +"6413",2018-01-04 12:20:00,"C","Attach" +"6414",2018-01-04 12:40:00,"C","Debug" +"6415",2018-01-04 13:00:00,"C","No clue" +"6416",2018-01-04 13:20:00,"A","No clue" +"6417",2018-01-04 13:40:00,"A","No clue" +"6418",2018-01-04 14:00:00,"B","Limit" +"6419",2018-01-04 14:20:00,"A","Error" +"6420",2018-01-04 14:40:00,"B","Error" +"6421",2018-01-04 15:00:00,"B","Limit" +"6422",2018-01-04 15:20:00,"C","Attach" +"6423",2018-01-04 15:40:00,"A","Attach" +"6424",2018-01-04 16:00:00,"B","No clue" +"6425",2018-01-04 16:20:00,"B","Check with author" +"6426",2018-01-04 16:40:00,"C","Attach" +"6427",2018-01-04 17:00:00,"B","Warn" +"6428",2018-01-04 17:20:00,"C","Check with author" +"6429",2018-01-04 17:40:00,"A","Warn" +"6430",2018-01-04 18:00:00,"B","Debug" +"6431",2018-01-04 18:20:00,"A","Check with author" +"6432",2018-01-04 18:40:00,"A","Debug" +"6433",2018-01-04 19:00:00,"C","No clue" +"6434",2018-01-04 19:20:00,"A","Debug" +"6435",2018-01-04 19:40:00,"C","Check with author" +"6436",2018-01-04 20:00:00,"B","Debug" +"6437",2018-01-04 20:20:00,"A","Warn" +"6438",2018-01-04 20:40:00,"B","Warn" +"6439",2018-01-04 21:00:00,"B","Attach" +"6440",2018-01-04 21:20:00,"B","Debug" +"6441",2018-01-04 21:40:00,"B","Error" +"6442",2018-01-04 22:00:00,"C","Warn" +"6443",2018-01-04 22:20:00,"A","Attach" +"6444",2018-01-04 22:40:00,"A","Limit" +"6445",2018-01-04 23:00:00,"B","Limit" +"6446",2018-01-04 23:20:00,"B","Debug" +"6447",2018-01-04 23:40:00,"C","Debug" +"6448",2018-01-05 00:00:00,"C","No clue" +"6449",2018-01-05 00:20:00,"A","Error" +"6450",2018-01-05 00:40:00,"B","Warn" +"6451",2018-01-05 01:00:00,"A","No clue" +"6452",2018-01-05 01:20:00,"B","Limit" +"6453",2018-01-05 01:40:00,"C","Attach" +"6454",2018-01-05 02:00:00,"B","Error" +"6455",2018-01-05 02:20:00,"A","Warn" +"6456",2018-01-05 02:40:00,"A","Warn" +"6457",2018-01-05 03:00:00,"C","Check with author" +"6458",2018-01-05 03:20:00,"B","Error" +"6459",2018-01-05 03:40:00,"C","Check with author" +"6460",2018-01-05 04:00:00,"A","Limit" +"6461",2018-01-05 04:20:00,"A","Attach" +"6462",2018-01-05 04:40:00,"C","No clue" +"6463",2018-01-05 05:00:00,"C","Check with author" +"6464",2018-01-05 05:20:00,"A","Debug" +"6465",2018-01-05 05:40:00,"C","Limit" +"6466",2018-01-05 06:00:00,"B","Limit" +"6467",2018-01-05 06:20:00,"A","Check with author" +"6468",2018-01-05 06:40:00,"A","Check with author" +"6469",2018-01-05 07:00:00,"B","Check with author" +"6470",2018-01-05 07:20:00,"C","Limit" +"6471",2018-01-05 07:40:00,"A","Attach" +"6472",2018-01-05 08:00:00,"B","Check with author" +"6473",2018-01-05 08:20:00,"A","Limit" +"6474",2018-01-05 08:40:00,"A","Error" +"6475",2018-01-05 09:00:00,"B","Debug" +"6476",2018-01-05 09:20:00,"C","Check with author" +"6477",2018-01-05 09:40:00,"B","Debug" +"6478",2018-01-05 10:00:00,"A","Error" +"6479",2018-01-05 10:20:00,"A","Warn" +"6480",2018-01-05 10:40:00,"A","Check with author" +"6481",2018-01-05 11:00:00,"C","Debug" +"6482",2018-01-05 11:20:00,"B","No clue" +"6483",2018-01-05 11:40:00,"A","Limit" +"6484",2018-01-05 12:00:00,"C","No clue" +"6485",2018-01-05 12:20:00,"A","Check with author" +"6486",2018-01-05 12:40:00,"A","Attach" +"6487",2018-01-05 13:00:00,"A","Check with author" +"6488",2018-01-05 13:20:00,"A","Debug" +"6489",2018-01-05 13:40:00,"A","Error" +"6490",2018-01-05 14:00:00,"B","Debug" +"6491",2018-01-01 12:00:00,"C","Warn" +"6492",2018-01-01 12:20:00,"B","Debug" +"6493",2018-01-01 12:40:00,"B","Attach" +"6494",2018-01-01 13:00:00,"A","Warn" +"6495",2018-01-01 13:20:00,"A","Debug" +"6496",2018-01-01 13:40:00,"C","Attach" +"6497",2018-01-01 14:00:00,"C","Limit" +"6498",2018-01-01 14:20:00,"B","Debug" +"6499",2018-01-01 14:40:00,"B","Limit" +"6500",2018-01-01 15:00:00,"A","Check with author" +"6501",2018-01-01 15:20:00,"C","Attach" +"6502",2018-01-01 15:40:00,"B","Error" +"6503",2018-01-01 16:00:00,"B","Debug" +"6504",2018-01-01 16:20:00,"A","Error" +"6505",2018-01-01 16:40:00,"B","Attach" +"6506",2018-01-01 17:00:00,"A","Check with author" +"6507",2018-01-01 17:20:00,"B","Attach" +"6508",2018-01-01 17:40:00,"C","Warn" +"6509",2018-01-01 18:00:00,"A","Check with author" +"6510",2018-01-01 18:20:00,"A","Limit" +"6511",2018-01-01 18:40:00,"C","Attach" +"6512",2018-01-01 19:00:00,"A","No clue" +"6513",2018-01-01 19:20:00,"B","Debug" +"6514",2018-01-01 19:40:00,"B","Check with author" +"6515",2018-01-01 20:00:00,"C","Warn" +"6516",2018-01-01 20:20:00,"B","No clue" +"6517",2018-01-01 20:40:00,"A","Limit" +"6518",2018-01-01 21:00:00,"B","Check with author" +"6519",2018-01-01 21:20:00,"C","Warn" +"6520",2018-01-01 21:40:00,"B","Limit" +"6521",2018-01-01 22:00:00,"B","No clue" +"6522",2018-01-01 22:20:00,"C","Attach" +"6523",2018-01-01 22:40:00,"A","Attach" +"6524",2018-01-01 23:00:00,"A","Warn" +"6525",2018-01-01 23:20:00,"B","No clue" +"6526",2018-01-01 23:40:00,"C","Limit" +"6527",2018-01-02 00:00:00,"B","No clue" +"6528",2018-01-02 00:20:00,"C","Debug" +"6529",2018-01-02 00:40:00,"C","Debug" +"6530",2018-01-02 01:00:00,"C","Warn" +"6531",2018-01-02 01:20:00,"B","Warn" +"6532",2018-01-02 01:40:00,"A","Error" +"6533",2018-01-02 02:00:00,"A","No clue" +"6534",2018-01-02 02:20:00,"C","No clue" +"6535",2018-01-02 02:40:00,"A","Debug" +"6536",2018-01-02 03:00:00,"C","Check with author" +"6537",2018-01-02 03:20:00,"B","Check with author" +"6538",2018-01-02 03:40:00,"C","Attach" +"6539",2018-01-02 04:00:00,"A","Limit" +"6540",2018-01-02 04:20:00,"B","Check with author" +"6541",2018-01-02 04:40:00,"C","Warn" +"6542",2018-01-02 05:00:00,"B","Attach" +"6543",2018-01-02 05:20:00,"A","Limit" +"6544",2018-01-02 05:40:00,"C","Error" +"6545",2018-01-02 06:00:00,"A","Check with author" +"6546",2018-01-02 06:20:00,"B","Check with author" +"6547",2018-01-02 06:40:00,"C","No clue" +"6548",2018-01-02 07:00:00,"A","Attach" +"6549",2018-01-02 07:20:00,"A","Error" +"6550",2018-01-02 07:40:00,"A","Error" +"6551",2018-01-02 08:00:00,"B","Check with author" +"6552",2018-01-02 08:20:00,"B","No clue" +"6553",2018-01-02 08:40:00,"B","Debug" +"6554",2018-01-02 09:00:00,"C","Limit" +"6555",2018-01-02 09:20:00,"C","Debug" +"6556",2018-01-02 09:40:00,"B","No clue" +"6557",2018-01-02 10:00:00,"B","No clue" +"6558",2018-01-02 10:20:00,"C","Attach" +"6559",2018-01-02 10:40:00,"A","Debug" +"6560",2018-01-02 11:00:00,"C","Attach" +"6561",2018-01-02 11:20:00,"A","Debug" +"6562",2018-01-02 11:40:00,"B","Check with author" +"6563",2018-01-02 12:00:00,"A","No clue" +"6564",2018-01-02 12:20:00,"B","Debug" +"6565",2018-01-02 12:40:00,"C","Error" +"6566",2018-01-02 13:00:00,"A","Limit" +"6567",2018-01-02 13:20:00,"C","Warn" +"6568",2018-01-02 13:40:00,"B","Limit" +"6569",2018-01-02 14:00:00,"B","Error" +"6570",2018-01-02 14:20:00,"A","Error" +"6571",2018-01-02 14:40:00,"B","Debug" +"6572",2018-01-02 15:00:00,"C","No clue" +"6573",2018-01-02 15:20:00,"B","Check with author" +"6574",2018-01-02 15:40:00,"A","Debug" +"6575",2018-01-02 16:00:00,"B","Warn" +"6576",2018-01-02 16:20:00,"A","Debug" +"6577",2018-01-02 16:40:00,"C","No clue" +"6578",2018-01-02 17:00:00,"B","Error" +"6579",2018-01-02 17:20:00,"C","No clue" +"6580",2018-01-02 17:40:00,"A","Check with author" +"6581",2018-01-02 18:00:00,"B","Debug" +"6582",2018-01-02 18:20:00,"C","Error" +"6583",2018-01-02 18:40:00,"B","Attach" +"6584",2018-01-02 19:00:00,"C","Limit" +"6585",2018-01-02 19:20:00,"A","Attach" +"6586",2018-01-02 19:40:00,"B","Attach" +"6587",2018-01-02 20:00:00,"A","Limit" +"6588",2018-01-02 20:20:00,"A","Attach" +"6589",2018-01-02 20:40:00,"A","Warn" +"6590",2018-01-02 21:00:00,"A","Error" +"6591",2018-01-02 21:20:00,"A","Debug" +"6592",2018-01-02 21:40:00,"A","Limit" +"6593",2018-01-02 22:00:00,"B","Limit" +"6594",2018-01-02 22:20:00,"A","Attach" +"6595",2018-01-02 22:40:00,"B","Limit" +"6596",2018-01-02 23:00:00,"B","Error" +"6597",2018-01-02 23:20:00,"B","Debug" +"6598",2018-01-02 23:40:00,"A","Check with author" +"6599",2018-01-03 00:00:00,"B","Limit" +"6600",2018-01-03 00:20:00,"B","Attach" +"6601",2018-01-03 00:40:00,"A","Warn" +"6602",2018-01-03 01:00:00,"B","Check with author" +"6603",2018-01-03 01:20:00,"B","Error" +"6604",2018-01-03 01:40:00,"A","Error" +"6605",2018-01-03 02:00:00,"B","Limit" +"6606",2018-01-03 02:20:00,"B","Warn" +"6607",2018-01-03 02:40:00,"B","Attach" +"6608",2018-01-03 03:00:00,"A","No clue" +"6609",2018-01-03 03:20:00,"C","Debug" +"6610",2018-01-03 03:40:00,"A","Debug" +"6611",2018-01-03 04:00:00,"A","Debug" +"6612",2018-01-03 04:20:00,"C","Check with author" +"6613",2018-01-03 04:40:00,"B","No clue" +"6614",2018-01-03 05:00:00,"C","Debug" +"6615",2018-01-03 05:20:00,"C","No clue" +"6616",2018-01-03 05:40:00,"C","Attach" +"6617",2018-01-03 06:00:00,"B","No clue" +"6618",2018-01-03 06:20:00,"C","Error" +"6619",2018-01-03 06:40:00,"A","Debug" +"6620",2018-01-03 07:00:00,"A","No clue" +"6621",2018-01-03 07:20:00,"A","No clue" +"6622",2018-01-03 07:40:00,"A","Attach" +"6623",2018-01-03 08:00:00,"A","Check with author" +"6624",2018-01-03 08:20:00,"C","Debug" +"6625",2018-01-03 08:40:00,"B","Error" +"6626",2018-01-03 09:00:00,"B","Warn" +"6627",2018-01-03 09:20:00,"A","Warn" +"6628",2018-01-03 09:40:00,"C","Limit" +"6629",2018-01-03 10:00:00,"C","Attach" +"6630",2018-01-03 10:20:00,"B","Limit" +"6631",2018-01-03 10:40:00,"C","Check with author" +"6632",2018-01-03 11:00:00,"A","Error" +"6633",2018-01-03 11:20:00,"A","Debug" +"6634",2018-01-03 11:40:00,"A","Error" +"6635",2018-01-03 12:00:00,"C","Attach" +"6636",2018-01-03 12:20:00,"C","Check with author" +"6637",2018-01-03 12:40:00,"C","Warn" +"6638",2018-01-03 13:00:00,"A","Check with author" +"6639",2018-01-03 13:20:00,"C","Error" +"6640",2018-01-03 13:40:00,"C","Check with author" +"6641",2018-01-03 14:00:00,"C","Warn" +"6642",2018-01-03 14:20:00,"B","No clue" +"6643",2018-01-03 14:40:00,"C","Check with author" +"6644",2018-01-03 15:00:00,"C","Error" +"6645",2018-01-03 15:20:00,"C","Check with author" +"6646",2018-01-03 15:40:00,"B","Check with author" +"6647",2018-01-03 16:00:00,"C","Check with author" +"6648",2018-01-03 16:20:00,"B","Check with author" +"6649",2018-01-03 16:40:00,"C","Check with author" +"6650",2018-01-03 17:00:00,"C","Check with author" +"6651",2018-01-03 17:20:00,"B","Warn" +"6652",2018-01-03 17:40:00,"A","Debug" +"6653",2018-01-03 18:00:00,"A","Debug" +"6654",2018-01-03 18:20:00,"A","Check with author" +"6655",2018-01-03 18:40:00,"B","Debug" +"6656",2018-01-03 19:00:00,"A","Limit" +"6657",2018-01-03 19:20:00,"C","Warn" +"6658",2018-01-03 19:40:00,"C","Attach" +"6659",2018-01-03 20:00:00,"C","Check with author" +"6660",2018-01-03 20:20:00,"C","Limit" +"6661",2018-01-03 20:40:00,"B","Check with author" +"6662",2018-01-03 21:00:00,"A","Error" +"6663",2018-01-03 21:20:00,"B","No clue" +"6664",2018-01-03 21:40:00,"B","Check with author" +"6665",2018-01-03 22:00:00,"C","Attach" +"6666",2018-01-03 22:20:00,"C","No clue" +"6667",2018-01-03 22:40:00,"A","Check with author" +"6668",2018-01-03 23:00:00,"C","Attach" +"6669",2018-01-03 23:20:00,"C","Error" +"6670",2018-01-03 23:40:00,"C","Error" +"6671",2018-01-04 00:00:00,"C","Error" +"6672",2018-01-04 00:20:00,"B","Debug" +"6673",2018-01-04 00:40:00,"A","Debug" +"6674",2018-01-04 01:00:00,"C","Debug" +"6675",2018-01-04 01:20:00,"C","Debug" +"6676",2018-01-04 01:40:00,"C","Warn" +"6677",2018-01-04 02:00:00,"A","Debug" +"6678",2018-01-04 02:20:00,"A","Check with author" +"6679",2018-01-04 02:40:00,"C","Error" +"6680",2018-01-04 03:00:00,"A","Attach" +"6681",2018-01-04 03:20:00,"A","Check with author" +"6682",2018-01-04 03:40:00,"A","Limit" +"6683",2018-01-04 04:00:00,"C","Attach" +"6684",2018-01-04 04:20:00,"B","Error" +"6685",2018-01-04 04:40:00,"C","Check with author" +"6686",2018-01-04 05:00:00,"B","Limit" +"6687",2018-01-04 05:20:00,"A","Error" +"6688",2018-01-04 05:40:00,"C","Error" +"6689",2018-01-04 06:00:00,"A","Check with author" +"6690",2018-01-04 06:20:00,"B","Check with author" +"6691",2018-01-04 06:40:00,"C","No clue" +"6692",2018-01-04 07:00:00,"C","Error" +"6693",2018-01-04 07:20:00,"B","Check with author" +"6694",2018-01-04 07:40:00,"B","Debug" +"6695",2018-01-04 08:00:00,"C","No clue" +"6696",2018-01-04 08:20:00,"C","No clue" +"6697",2018-01-04 08:40:00,"A","Warn" +"6698",2018-01-04 09:00:00,"B","Check with author" +"6699",2018-01-04 09:20:00,"C","Attach" +"6700",2018-01-04 09:40:00,"A","Limit" +"6701",2018-01-04 10:00:00,"C","No clue" +"6702",2018-01-04 10:20:00,"C","Attach" +"6703",2018-01-04 10:40:00,"A","No clue" +"6704",2018-01-04 11:00:00,"A","Debug" +"6705",2018-01-04 11:20:00,"C","Attach" +"6706",2018-01-04 11:40:00,"B","Limit" +"6707",2018-01-04 12:00:00,"A","Limit" +"6708",2018-01-04 12:20:00,"C","Debug" +"6709",2018-01-04 12:40:00,"B","Debug" +"6710",2018-01-04 13:00:00,"C","Error" +"6711",2018-01-04 13:20:00,"C","Error" +"6712",2018-01-04 13:40:00,"A","Attach" +"6713",2018-01-04 14:00:00,"B","Attach" +"6714",2018-01-04 14:20:00,"A","No clue" +"6715",2018-01-04 14:40:00,"B","Debug" +"6716",2018-01-04 15:00:00,"A","Debug" +"6717",2018-01-04 15:20:00,"A","Attach" +"6718",2018-01-04 15:40:00,"A","Check with author" +"6719",2018-01-04 16:00:00,"A","Debug" +"6720",2018-01-04 16:20:00,"A","Warn" +"6721",2018-01-04 16:40:00,"C","Warn" +"6722",2018-01-04 17:00:00,"C","Error" +"6723",2018-01-04 17:20:00,"B","Check with author" +"6724",2018-01-04 17:40:00,"B","Debug" +"6725",2018-01-04 18:00:00,"C","Debug" +"6726",2018-01-04 18:20:00,"A","Debug" +"6727",2018-01-04 18:40:00,"A","Attach" +"6728",2018-01-04 19:00:00,"B","No clue" +"6729",2018-01-04 19:20:00,"C","Limit" +"6730",2018-01-04 19:40:00,"C","Limit" +"6731",2018-01-04 20:00:00,"C","Attach" +"6732",2018-01-04 20:20:00,"C","Debug" +"6733",2018-01-04 20:40:00,"A","No clue" +"6734",2018-01-04 21:00:00,"A","Error" +"6735",2018-01-04 21:20:00,"C","No clue" +"6736",2018-01-04 21:40:00,"A","Error" +"6737",2018-01-04 22:00:00,"C","Debug" +"6738",2018-01-04 22:20:00,"B","Warn" +"6739",2018-01-04 22:40:00,"A","Attach" +"6740",2018-01-04 23:00:00,"A","Debug" +"6741",2018-01-04 23:20:00,"B","Warn" +"6742",2018-01-04 23:40:00,"B","Debug" +"6743",2018-01-05 00:00:00,"C","Warn" +"6744",2018-01-05 00:20:00,"A","Debug" +"6745",2018-01-05 00:40:00,"A","Attach" +"6746",2018-01-05 01:00:00,"A","Error" +"6747",2018-01-05 01:20:00,"B","No clue" +"6748",2018-01-05 01:40:00,"B","Limit" +"6749",2018-01-05 02:00:00,"A","Limit" +"6750",2018-01-05 02:20:00,"C","Attach" +"6751",2018-01-05 02:40:00,"C","Error" +"6752",2018-01-05 03:00:00,"B","Limit" +"6753",2018-01-05 03:20:00,"C","Attach" +"6754",2018-01-05 03:40:00,"A","Error" +"6755",2018-01-05 04:00:00,"A","No clue" +"6756",2018-01-05 04:20:00,"A","No clue" +"6757",2018-01-05 04:40:00,"B","Attach" +"6758",2018-01-05 05:00:00,"C","Limit" +"6759",2018-01-05 05:20:00,"A","Debug" +"6760",2018-01-05 05:40:00,"C","Check with author" +"6761",2018-01-05 06:00:00,"B","Attach" +"6762",2018-01-05 06:20:00,"A","Check with author" +"6763",2018-01-05 06:40:00,"C","Check with author" +"6764",2018-01-05 07:00:00,"B","Check with author" +"6765",2018-01-05 07:20:00,"B","Check with author" +"6766",2018-01-05 07:40:00,"B","Warn" +"6767",2018-01-05 08:00:00,"B","Error" +"6768",2018-01-05 08:20:00,"B","Warn" +"6769",2018-01-05 08:40:00,"A","Error" +"6770",2018-01-05 09:00:00,"B","Attach" +"6771",2018-01-05 09:20:00,"B","Warn" +"6772",2018-01-05 09:40:00,"B","Debug" +"6773",2018-01-05 10:00:00,"B","Error" +"6774",2018-01-05 10:20:00,"C","Limit" +"6775",2018-01-05 10:40:00,"B","Check with author" +"6776",2018-01-05 11:00:00,"C","Check with author" +"6777",2018-01-05 11:20:00,"C","Debug" +"6778",2018-01-05 11:40:00,"C","Limit" +"6779",2018-01-05 12:00:00,"A","Attach" +"6780",2018-01-05 12:20:00,"A","Check with author" +"6781",2018-01-05 12:40:00,"A","No clue" +"6782",2018-01-05 13:00:00,"C","Debug" +"6783",2018-01-05 13:20:00,"B","No clue" +"6784",2018-01-05 13:40:00,"A","Check with author" +"6785",2018-01-05 14:00:00,"B","Debug" +"6786",2018-01-01 12:00:00,"C","Error" +"6787",2018-01-01 12:20:00,"C","Warn" +"6788",2018-01-01 12:40:00,"B","Debug" +"6789",2018-01-01 13:00:00,"A","No clue" +"6790",2018-01-01 13:20:00,"A","Error" +"6791",2018-01-01 13:40:00,"C","Debug" +"6792",2018-01-01 14:00:00,"C","No clue" +"6793",2018-01-01 14:20:00,"C","Error" +"6794",2018-01-01 14:40:00,"B","Limit" +"6795",2018-01-01 15:00:00,"A","No clue" +"6796",2018-01-01 15:20:00,"C","Error" +"6797",2018-01-01 15:40:00,"C","Check with author" +"6798",2018-01-01 16:00:00,"B","No clue" +"6799",2018-01-01 16:20:00,"B","Attach" +"6800",2018-01-01 16:40:00,"B","Warn" +"6801",2018-01-01 17:00:00,"A","Limit" +"6802",2018-01-01 17:20:00,"A","Limit" +"6803",2018-01-01 17:40:00,"B","Error" +"6804",2018-01-01 18:00:00,"C","Warn" +"6805",2018-01-01 18:20:00,"C","Check with author" +"6806",2018-01-01 18:40:00,"A","Attach" +"6807",2018-01-01 19:00:00,"A","Debug" +"6808",2018-01-01 19:20:00,"A","Attach" +"6809",2018-01-01 19:40:00,"A","Check with author" +"6810",2018-01-01 20:00:00,"A","Warn" +"6811",2018-01-01 20:20:00,"C","Limit" +"6812",2018-01-01 20:40:00,"C","Limit" +"6813",2018-01-01 21:00:00,"B","Warn" +"6814",2018-01-01 21:20:00,"C","Error" +"6815",2018-01-01 21:40:00,"C","Check with author" +"6816",2018-01-01 22:00:00,"A","Check with author" +"6817",2018-01-01 22:20:00,"C","Check with author" +"6818",2018-01-01 22:40:00,"A","Warn" +"6819",2018-01-01 23:00:00,"A","Warn" +"6820",2018-01-01 23:20:00,"C","Check with author" +"6821",2018-01-01 23:40:00,"B","Limit" +"6822",2018-01-02 00:00:00,"B","Error" +"6823",2018-01-02 00:20:00,"B","Error" +"6824",2018-01-02 00:40:00,"C","Debug" +"6825",2018-01-02 01:00:00,"C","Attach" +"6826",2018-01-02 01:20:00,"A","Debug" +"6827",2018-01-02 01:40:00,"C","Check with author" +"6828",2018-01-02 02:00:00,"A","Debug" +"6829",2018-01-02 02:20:00,"A","Check with author" +"6830",2018-01-02 02:40:00,"A","Warn" +"6831",2018-01-02 03:00:00,"B","Limit" +"6832",2018-01-02 03:20:00,"B","Limit" +"6833",2018-01-02 03:40:00,"B","No clue" +"6834",2018-01-02 04:00:00,"A","Attach" +"6835",2018-01-02 04:20:00,"B","Error" +"6836",2018-01-02 04:40:00,"C","Warn" +"6837",2018-01-02 05:00:00,"C","Check with author" +"6838",2018-01-02 05:20:00,"B","Debug" +"6839",2018-01-02 05:40:00,"C","No clue" +"6840",2018-01-02 06:00:00,"B","No clue" +"6841",2018-01-02 06:20:00,"A","Check with author" +"6842",2018-01-02 06:40:00,"A","Limit" +"6843",2018-01-02 07:00:00,"A","Attach" +"6844",2018-01-02 07:20:00,"B","Attach" +"6845",2018-01-02 07:40:00,"C","Warn" +"6846",2018-01-02 08:00:00,"C","Check with author" +"6847",2018-01-02 08:20:00,"B","Check with author" +"6848",2018-01-02 08:40:00,"C","No clue" +"6849",2018-01-02 09:00:00,"C","Error" +"6850",2018-01-02 09:20:00,"B","Error" +"6851",2018-01-02 09:40:00,"B","Attach" +"6852",2018-01-02 10:00:00,"A","Error" +"6853",2018-01-02 10:20:00,"A","No clue" +"6854",2018-01-02 10:40:00,"B","Limit" +"6855",2018-01-02 11:00:00,"A","Debug" +"6856",2018-01-02 11:20:00,"B","Warn" +"6857",2018-01-02 11:40:00,"B","Attach" +"6858",2018-01-02 12:00:00,"A","Check with author" +"6859",2018-01-02 12:20:00,"B","No clue" +"6860",2018-01-02 12:40:00,"C","Limit" +"6861",2018-01-02 13:00:00,"C","Debug" +"6862",2018-01-02 13:20:00,"A","Debug" +"6863",2018-01-02 13:40:00,"B","Error" +"6864",2018-01-02 14:00:00,"A","Debug" +"6865",2018-01-02 14:20:00,"B","Attach" +"6866",2018-01-02 14:40:00,"A","Warn" +"6867",2018-01-02 15:00:00,"B","No clue" +"6868",2018-01-02 15:20:00,"C","No clue" +"6869",2018-01-02 15:40:00,"A","Check with author" +"6870",2018-01-02 16:00:00,"C","No clue" +"6871",2018-01-02 16:20:00,"A","Check with author" +"6872",2018-01-02 16:40:00,"C","Debug" +"6873",2018-01-02 17:00:00,"C","Attach" +"6874",2018-01-02 17:20:00,"B","No clue" +"6875",2018-01-02 17:40:00,"C","No clue" +"6876",2018-01-02 18:00:00,"B","No clue" +"6877",2018-01-02 18:20:00,"C","Limit" +"6878",2018-01-02 18:40:00,"B","Attach" +"6879",2018-01-02 19:00:00,"A","Error" +"6880",2018-01-02 19:20:00,"B","No clue" +"6881",2018-01-02 19:40:00,"B","Check with author" +"6882",2018-01-02 20:00:00,"C","Warn" +"6883",2018-01-02 20:20:00,"A","Limit" +"6884",2018-01-02 20:40:00,"A","Check with author" +"6885",2018-01-02 21:00:00,"A","Attach" +"6886",2018-01-02 21:20:00,"C","Error" +"6887",2018-01-02 21:40:00,"C","Debug" +"6888",2018-01-02 22:00:00,"C","Limit" +"6889",2018-01-02 22:20:00,"A","Error" +"6890",2018-01-02 22:40:00,"B","Limit" +"6891",2018-01-02 23:00:00,"C","Error" +"6892",2018-01-02 23:20:00,"B","Check with author" +"6893",2018-01-02 23:40:00,"B","Check with author" +"6894",2018-01-03 00:00:00,"B","Warn" +"6895",2018-01-03 00:20:00,"C","Attach" +"6896",2018-01-03 00:40:00,"B","Error" +"6897",2018-01-03 01:00:00,"C","No clue" +"6898",2018-01-03 01:20:00,"A","Check with author" +"6899",2018-01-03 01:40:00,"A","Check with author" +"6900",2018-01-03 02:00:00,"B","No clue" +"6901",2018-01-03 02:20:00,"B","Limit" +"6902",2018-01-03 02:40:00,"C","Limit" +"6903",2018-01-03 03:00:00,"C","Debug" +"6904",2018-01-03 03:20:00,"C","Debug" +"6905",2018-01-03 03:40:00,"C","Attach" +"6906",2018-01-03 04:00:00,"C","Debug" +"6907",2018-01-03 04:20:00,"B","No clue" +"6908",2018-01-03 04:40:00,"C","No clue" +"6909",2018-01-03 05:00:00,"B","Limit" +"6910",2018-01-03 05:20:00,"A","Attach" +"6911",2018-01-03 05:40:00,"B","Check with author" +"6912",2018-01-03 06:00:00,"A","Debug" +"6913",2018-01-03 06:20:00,"C","No clue" +"6914",2018-01-03 06:40:00,"B","Limit" +"6915",2018-01-03 07:00:00,"B","Debug" +"6916",2018-01-03 07:20:00,"A","Warn" +"6917",2018-01-03 07:40:00,"B","Debug" +"6918",2018-01-03 08:00:00,"A","Attach" +"6919",2018-01-03 08:20:00,"A","No clue" +"6920",2018-01-03 08:40:00,"B","Warn" +"6921",2018-01-03 09:00:00,"A","No clue" +"6922",2018-01-03 09:20:00,"A","No clue" +"6923",2018-01-03 09:40:00,"A","No clue" +"6924",2018-01-03 10:00:00,"C","Error" +"6925",2018-01-03 10:20:00,"A","Attach" +"6926",2018-01-03 10:40:00,"C","Debug" +"6927",2018-01-03 11:00:00,"C","Attach" +"6928",2018-01-03 11:20:00,"A","Attach" +"6929",2018-01-03 11:40:00,"C","Limit" +"6930",2018-01-03 12:00:00,"C","Warn" +"6931",2018-01-03 12:20:00,"C","Warn" +"6932",2018-01-03 12:40:00,"C","Limit" +"6933",2018-01-03 13:00:00,"B","Warn" +"6934",2018-01-03 13:20:00,"C","Attach" +"6935",2018-01-03 13:40:00,"B","Debug" +"6936",2018-01-03 14:00:00,"C","Attach" +"6937",2018-01-03 14:20:00,"A","Debug" +"6938",2018-01-03 14:40:00,"C","Attach" +"6939",2018-01-03 15:00:00,"A","Check with author" +"6940",2018-01-03 15:20:00,"A","Error" +"6941",2018-01-03 15:40:00,"A","Limit" +"6942",2018-01-03 16:00:00,"A","Attach" +"6943",2018-01-03 16:20:00,"B","Error" +"6944",2018-01-03 16:40:00,"B","Attach" +"6945",2018-01-03 17:00:00,"B","Error" +"6946",2018-01-03 17:20:00,"C","Debug" +"6947",2018-01-03 17:40:00,"A","Check with author" +"6948",2018-01-03 18:00:00,"B","Check with author" +"6949",2018-01-03 18:20:00,"B","Check with author" +"6950",2018-01-03 18:40:00,"B","Limit" +"6951",2018-01-03 19:00:00,"A","No clue" +"6952",2018-01-03 19:20:00,"C","Error" +"6953",2018-01-03 19:40:00,"A","Attach" +"6954",2018-01-03 20:00:00,"A","Limit" +"6955",2018-01-03 20:20:00,"B","Warn" +"6956",2018-01-03 20:40:00,"C","No clue" +"6957",2018-01-03 21:00:00,"B","Limit" +"6958",2018-01-03 21:20:00,"B","Error" +"6959",2018-01-03 21:40:00,"A","Check with author" +"6960",2018-01-03 22:00:00,"A","Check with author" +"6961",2018-01-03 22:20:00,"A","Attach" +"6962",2018-01-03 22:40:00,"B","Error" +"6963",2018-01-03 23:00:00,"B","Warn" +"6964",2018-01-03 23:20:00,"B","Warn" +"6965",2018-01-03 23:40:00,"C","Error" +"6966",2018-01-04 00:00:00,"A","Debug" +"6967",2018-01-04 00:20:00,"A","Error" +"6968",2018-01-04 00:40:00,"B","Attach" +"6969",2018-01-04 01:00:00,"A","Debug" +"6970",2018-01-04 01:20:00,"C","Limit" +"6971",2018-01-04 01:40:00,"A","No clue" +"6972",2018-01-04 02:00:00,"A","Warn" +"6973",2018-01-04 02:20:00,"B","Limit" +"6974",2018-01-04 02:40:00,"B","No clue" +"6975",2018-01-04 03:00:00,"A","Check with author" +"6976",2018-01-04 03:20:00,"C","No clue" +"6977",2018-01-04 03:40:00,"B","Warn" +"6978",2018-01-04 04:00:00,"A","Limit" +"6979",2018-01-04 04:20:00,"C","Error" +"6980",2018-01-04 04:40:00,"B","Check with author" +"6981",2018-01-04 05:00:00,"A","Limit" +"6982",2018-01-04 05:20:00,"C","Attach" +"6983",2018-01-04 05:40:00,"A","Attach" +"6984",2018-01-04 06:00:00,"A","Check with author" +"6985",2018-01-04 06:20:00,"C","Error" +"6986",2018-01-04 06:40:00,"A","Check with author" +"6987",2018-01-04 07:00:00,"A","Debug" +"6988",2018-01-04 07:20:00,"A","Warn" +"6989",2018-01-04 07:40:00,"B","Limit" +"6990",2018-01-04 08:00:00,"C","Check with author" +"6991",2018-01-04 08:20:00,"C","Check with author" +"6992",2018-01-04 08:40:00,"C","No clue" +"6993",2018-01-04 09:00:00,"B","Attach" +"6994",2018-01-04 09:20:00,"C","Warn" +"6995",2018-01-04 09:40:00,"B","No clue" +"6996",2018-01-04 10:00:00,"C","Warn" +"6997",2018-01-04 10:20:00,"C","Debug" +"6998",2018-01-04 10:40:00,"C","Error" +"6999",2018-01-04 11:00:00,"B","Debug" +"7000",2018-01-04 11:20:00,"B","Limit" +"7001",2018-01-04 11:40:00,"B","Error" +"7002",2018-01-04 12:00:00,"B","Debug" +"7003",2018-01-04 12:20:00,"B","No clue" +"7004",2018-01-04 12:40:00,"C","Check with author" +"7005",2018-01-04 13:00:00,"B","No clue" +"7006",2018-01-04 13:20:00,"B","Limit" +"7007",2018-01-04 13:40:00,"B","Debug" +"7008",2018-01-04 14:00:00,"C","Debug" +"7009",2018-01-04 14:20:00,"B","Check with author" +"7010",2018-01-04 14:40:00,"A","No clue" +"7011",2018-01-04 15:00:00,"C","Check with author" +"7012",2018-01-04 15:20:00,"C","No clue" +"7013",2018-01-04 15:40:00,"A","No clue" +"7014",2018-01-04 16:00:00,"B","Limit" +"7015",2018-01-04 16:20:00,"C","Check with author" +"7016",2018-01-04 16:40:00,"B","Debug" +"7017",2018-01-04 17:00:00,"C","Warn" +"7018",2018-01-04 17:20:00,"B","No clue" +"7019",2018-01-04 17:40:00,"A","Error" +"7020",2018-01-04 18:00:00,"A","Warn" +"7021",2018-01-04 18:20:00,"B","Limit" +"7022",2018-01-04 18:40:00,"A","Check with author" +"7023",2018-01-04 19:00:00,"A","Warn" +"7024",2018-01-04 19:20:00,"C","Error" +"7025",2018-01-04 19:40:00,"A","Check with author" +"7026",2018-01-04 20:00:00,"A","Check with author" +"7027",2018-01-04 20:20:00,"C","Debug" +"7028",2018-01-04 20:40:00,"B","No clue" +"7029",2018-01-04 21:00:00,"C","Check with author" +"7030",2018-01-04 21:20:00,"C","No clue" +"7031",2018-01-04 21:40:00,"C","Limit" +"7032",2018-01-04 22:00:00,"C","Limit" +"7033",2018-01-04 22:20:00,"B","Error" +"7034",2018-01-04 22:40:00,"B","Limit" +"7035",2018-01-04 23:00:00,"B","No clue" +"7036",2018-01-04 23:20:00,"A","Limit" +"7037",2018-01-04 23:40:00,"B","No clue" +"7038",2018-01-05 00:00:00,"A","Limit" +"7039",2018-01-05 00:20:00,"B","Warn" +"7040",2018-01-05 00:40:00,"C","Debug" +"7041",2018-01-05 01:00:00,"A","Error" +"7042",2018-01-05 01:20:00,"C","Warn" +"7043",2018-01-05 01:40:00,"C","Limit" +"7044",2018-01-05 02:00:00,"A","Warn" +"7045",2018-01-05 02:20:00,"B","Error" +"7046",2018-01-05 02:40:00,"A","No clue" +"7047",2018-01-05 03:00:00,"B","Attach" +"7048",2018-01-05 03:20:00,"A","Check with author" +"7049",2018-01-05 03:40:00,"B","Limit" +"7050",2018-01-05 04:00:00,"A","Check with author" +"7051",2018-01-05 04:20:00,"C","Warn" +"7052",2018-01-05 04:40:00,"B","Warn" +"7053",2018-01-05 05:00:00,"A","No clue" +"7054",2018-01-05 05:20:00,"A","Limit" +"7055",2018-01-05 05:40:00,"B","Limit" +"7056",2018-01-05 06:00:00,"A","Error" +"7057",2018-01-05 06:20:00,"B","Attach" +"7058",2018-01-05 06:40:00,"A","Attach" +"7059",2018-01-05 07:00:00,"B","Debug" +"7060",2018-01-05 07:20:00,"A","Debug" +"7061",2018-01-05 07:40:00,"B","Check with author" +"7062",2018-01-05 08:00:00,"C","Debug" +"7063",2018-01-05 08:20:00,"B","Debug" +"7064",2018-01-05 08:40:00,"B","Attach" +"7065",2018-01-05 09:00:00,"B","No clue" +"7066",2018-01-05 09:20:00,"B","Warn" +"7067",2018-01-05 09:40:00,"C","Error" +"7068",2018-01-05 10:00:00,"C","Check with author" +"7069",2018-01-05 10:20:00,"B","Attach" +"7070",2018-01-05 10:40:00,"A","Limit" +"7071",2018-01-05 11:00:00,"A","No clue" +"7072",2018-01-05 11:20:00,"C","No clue" +"7073",2018-01-05 11:40:00,"C","Attach" +"7074",2018-01-05 12:00:00,"B","Limit" +"7075",2018-01-05 12:20:00,"B","Error" +"7076",2018-01-05 12:40:00,"B","Debug" +"7077",2018-01-05 13:00:00,"A","Limit" +"7078",2018-01-05 13:20:00,"A","Limit" +"7079",2018-01-05 13:40:00,"A","Error" +"7080",2018-01-05 14:00:00,"B","Warn" +"7081",2018-01-01 12:00:00,"C","Limit" +"7082",2018-01-01 12:20:00,"B","No clue" +"7083",2018-01-01 12:40:00,"B","Attach" +"7084",2018-01-01 13:00:00,"C","Attach" +"7085",2018-01-01 13:20:00,"C","Error" +"7086",2018-01-01 13:40:00,"A","No clue" +"7087",2018-01-01 14:00:00,"A","Limit" +"7088",2018-01-01 14:20:00,"A","No clue" +"7089",2018-01-01 14:40:00,"C","Check with author" +"7090",2018-01-01 15:00:00,"C","Warn" +"7091",2018-01-01 15:20:00,"C","Check with author" +"7092",2018-01-01 15:40:00,"B","No clue" +"7093",2018-01-01 16:00:00,"B","Error" +"7094",2018-01-01 16:20:00,"A","No clue" +"7095",2018-01-01 16:40:00,"B","Limit" +"7096",2018-01-01 17:00:00,"A","No clue" +"7097",2018-01-01 17:20:00,"A","Attach" +"7098",2018-01-01 17:40:00,"B","Check with author" +"7099",2018-01-01 18:00:00,"A","Error" +"7100",2018-01-01 18:20:00,"C","Debug" +"7101",2018-01-01 18:40:00,"B","Error" +"7102",2018-01-01 19:00:00,"A","Debug" +"7103",2018-01-01 19:20:00,"A","Error" +"7104",2018-01-01 19:40:00,"A","Attach" +"7105",2018-01-01 20:00:00,"A","Debug" +"7106",2018-01-01 20:20:00,"C","No clue" +"7107",2018-01-01 20:40:00,"B","Check with author" +"7108",2018-01-01 21:00:00,"C","No clue" +"7109",2018-01-01 21:20:00,"C","Error" +"7110",2018-01-01 21:40:00,"A","Error" +"7111",2018-01-01 22:00:00,"C","Error" +"7112",2018-01-01 22:20:00,"A","Limit" +"7113",2018-01-01 22:40:00,"B","Error" +"7114",2018-01-01 23:00:00,"A","Limit" +"7115",2018-01-01 23:20:00,"B","Debug" +"7116",2018-01-01 23:40:00,"C","Check with author" +"7117",2018-01-02 00:00:00,"A","No clue" +"7118",2018-01-02 00:20:00,"A","No clue" +"7119",2018-01-02 00:40:00,"A","No clue" +"7120",2018-01-02 01:00:00,"B","Debug" +"7121",2018-01-02 01:20:00,"B","No clue" +"7122",2018-01-02 01:40:00,"B","No clue" +"7123",2018-01-02 02:00:00,"C","Debug" +"7124",2018-01-02 02:20:00,"C","Debug" +"7125",2018-01-02 02:40:00,"C","Limit" +"7126",2018-01-02 03:00:00,"B","Limit" +"7127",2018-01-02 03:20:00,"C","Error" +"7128",2018-01-02 03:40:00,"B","Check with author" +"7129",2018-01-02 04:00:00,"C","Warn" +"7130",2018-01-02 04:20:00,"B","Error" +"7131",2018-01-02 04:40:00,"A","Warn" +"7132",2018-01-02 05:00:00,"B","No clue" +"7133",2018-01-02 05:20:00,"B","Warn" +"7134",2018-01-02 05:40:00,"B","Debug" +"7135",2018-01-02 06:00:00,"C","Attach" +"7136",2018-01-02 06:20:00,"C","Debug" +"7137",2018-01-02 06:40:00,"A","Warn" +"7138",2018-01-02 07:00:00,"B","Attach" +"7139",2018-01-02 07:20:00,"C","Debug" +"7140",2018-01-02 07:40:00,"A","Limit" +"7141",2018-01-02 08:00:00,"B","Limit" +"7142",2018-01-02 08:20:00,"C","No clue" +"7143",2018-01-02 08:40:00,"B","Attach" +"7144",2018-01-02 09:00:00,"C","Attach" +"7145",2018-01-02 09:20:00,"A","Attach" +"7146",2018-01-02 09:40:00,"C","Warn" +"7147",2018-01-02 10:00:00,"C","Check with author" +"7148",2018-01-02 10:20:00,"B","Debug" +"7149",2018-01-02 10:40:00,"A","Debug" +"7150",2018-01-02 11:00:00,"C","Attach" +"7151",2018-01-02 11:20:00,"B","No clue" +"7152",2018-01-02 11:40:00,"C","Warn" +"7153",2018-01-02 12:00:00,"A","Error" +"7154",2018-01-02 12:20:00,"A","No clue" +"7155",2018-01-02 12:40:00,"C","No clue" +"7156",2018-01-02 13:00:00,"C","Error" +"7157",2018-01-02 13:20:00,"C","No clue" +"7158",2018-01-02 13:40:00,"C","Warn" +"7159",2018-01-02 14:00:00,"B","No clue" +"7160",2018-01-02 14:20:00,"B","Attach" +"7161",2018-01-02 14:40:00,"B","Attach" +"7162",2018-01-02 15:00:00,"C","Warn" +"7163",2018-01-02 15:20:00,"A","Debug" +"7164",2018-01-02 15:40:00,"A","Attach" +"7165",2018-01-02 16:00:00,"B","Error" +"7166",2018-01-02 16:20:00,"A","Check with author" +"7167",2018-01-02 16:40:00,"C","Check with author" +"7168",2018-01-02 17:00:00,"B","Debug" +"7169",2018-01-02 17:20:00,"A","Limit" +"7170",2018-01-02 17:40:00,"A","Error" +"7171",2018-01-02 18:00:00,"A","Warn" +"7172",2018-01-02 18:20:00,"A","No clue" +"7173",2018-01-02 18:40:00,"B","Error" +"7174",2018-01-02 19:00:00,"B","Attach" +"7175",2018-01-02 19:20:00,"B","Error" +"7176",2018-01-02 19:40:00,"B","Limit" +"7177",2018-01-02 20:00:00,"B","Warn" +"7178",2018-01-02 20:20:00,"C","Error" +"7179",2018-01-02 20:40:00,"B","Warn" +"7180",2018-01-02 21:00:00,"B","Attach" +"7181",2018-01-02 21:20:00,"C","Check with author" +"7182",2018-01-02 21:40:00,"A","Debug" +"7183",2018-01-02 22:00:00,"B","Error" +"7184",2018-01-02 22:20:00,"C","Debug" +"7185",2018-01-02 22:40:00,"C","Attach" +"7186",2018-01-02 23:00:00,"A","Debug" +"7187",2018-01-02 23:20:00,"C","Error" +"7188",2018-01-02 23:40:00,"A","Debug" +"7189",2018-01-03 00:00:00,"C","Debug" +"7190",2018-01-03 00:20:00,"C","Error" +"7191",2018-01-03 00:40:00,"B","Warn" +"7192",2018-01-03 01:00:00,"B","Attach" +"7193",2018-01-03 01:20:00,"B","Debug" +"7194",2018-01-03 01:40:00,"C","Attach" +"7195",2018-01-03 02:00:00,"A","Debug" +"7196",2018-01-03 02:20:00,"C","Check with author" +"7197",2018-01-03 02:40:00,"C","Check with author" +"7198",2018-01-03 03:00:00,"A","Error" +"7199",2018-01-03 03:20:00,"B","Limit" +"7200",2018-01-03 03:40:00,"B","Error" +"7201",2018-01-03 04:00:00,"B","Debug" +"7202",2018-01-03 04:20:00,"A","Warn" +"7203",2018-01-03 04:40:00,"C","Limit" +"7204",2018-01-03 05:00:00,"C","Warn" +"7205",2018-01-03 05:20:00,"C","Limit" +"7206",2018-01-03 05:40:00,"C","No clue" +"7207",2018-01-03 06:00:00,"C","Debug" +"7208",2018-01-03 06:20:00,"A","Debug" +"7209",2018-01-03 06:40:00,"A","No clue" +"7210",2018-01-03 07:00:00,"B","Error" +"7211",2018-01-03 07:20:00,"C","No clue" +"7212",2018-01-03 07:40:00,"A","Debug" +"7213",2018-01-03 08:00:00,"B","Warn" +"7214",2018-01-03 08:20:00,"A","Limit" +"7215",2018-01-03 08:40:00,"C","Limit" +"7216",2018-01-03 09:00:00,"A","Attach" +"7217",2018-01-03 09:20:00,"B","Error" +"7218",2018-01-03 09:40:00,"A","Check with author" +"7219",2018-01-03 10:00:00,"A","Debug" +"7220",2018-01-03 10:20:00,"B","Warn" +"7221",2018-01-03 10:40:00,"C","Attach" +"7222",2018-01-03 11:00:00,"A","Check with author" +"7223",2018-01-03 11:20:00,"C","Limit" +"7224",2018-01-03 11:40:00,"C","Error" +"7225",2018-01-03 12:00:00,"B","Limit" +"7226",2018-01-03 12:20:00,"B","Error" +"7227",2018-01-03 12:40:00,"C","Warn" +"7228",2018-01-03 13:00:00,"A","Check with author" +"7229",2018-01-03 13:20:00,"B","Limit" +"7230",2018-01-03 13:40:00,"C","Limit" +"7231",2018-01-03 14:00:00,"B","Check with author" +"7232",2018-01-03 14:20:00,"C","Limit" +"7233",2018-01-03 14:40:00,"A","Warn" +"7234",2018-01-03 15:00:00,"B","Debug" +"7235",2018-01-03 15:20:00,"B","Warn" +"7236",2018-01-03 15:40:00,"C","Attach" +"7237",2018-01-03 16:00:00,"A","Error" +"7238",2018-01-03 16:20:00,"B","Debug" +"7239",2018-01-03 16:40:00,"B","No clue" +"7240",2018-01-03 17:00:00,"B","Attach" +"7241",2018-01-03 17:20:00,"A","Debug" +"7242",2018-01-03 17:40:00,"B","Check with author" +"7243",2018-01-03 18:00:00,"A","Check with author" +"7244",2018-01-03 18:20:00,"C","Attach" +"7245",2018-01-03 18:40:00,"A","Limit" +"7246",2018-01-03 19:00:00,"B","Warn" +"7247",2018-01-03 19:20:00,"B","No clue" +"7248",2018-01-03 19:40:00,"C","No clue" +"7249",2018-01-03 20:00:00,"B","Limit" +"7250",2018-01-03 20:20:00,"B","Error" +"7251",2018-01-03 20:40:00,"C","Attach" +"7252",2018-01-03 21:00:00,"A","No clue" +"7253",2018-01-03 21:20:00,"A","Error" +"7254",2018-01-03 21:40:00,"A","Debug" +"7255",2018-01-03 22:00:00,"C","Attach" +"7256",2018-01-03 22:20:00,"B","No clue" +"7257",2018-01-03 22:40:00,"A","Error" +"7258",2018-01-03 23:00:00,"C","No clue" +"7259",2018-01-03 23:20:00,"A","Error" +"7260",2018-01-03 23:40:00,"C","Error" +"7261",2018-01-04 00:00:00,"C","Warn" +"7262",2018-01-04 00:20:00,"B","Debug" +"7263",2018-01-04 00:40:00,"B","Debug" +"7264",2018-01-04 01:00:00,"C","Debug" +"7265",2018-01-04 01:20:00,"B","Error" +"7266",2018-01-04 01:40:00,"C","Warn" +"7267",2018-01-04 02:00:00,"B","Attach" +"7268",2018-01-04 02:20:00,"B","Check with author" +"7269",2018-01-04 02:40:00,"B","Warn" +"7270",2018-01-04 03:00:00,"B","Check with author" +"7271",2018-01-04 03:20:00,"A","Attach" +"7272",2018-01-04 03:40:00,"B","Attach" +"7273",2018-01-04 04:00:00,"C","Attach" +"7274",2018-01-04 04:20:00,"C","Error" +"7275",2018-01-04 04:40:00,"B","Limit" +"7276",2018-01-04 05:00:00,"C","No clue" +"7277",2018-01-04 05:20:00,"B","Debug" +"7278",2018-01-04 05:40:00,"A","Debug" +"7279",2018-01-04 06:00:00,"A","No clue" +"7280",2018-01-04 06:20:00,"B","No clue" +"7281",2018-01-04 06:40:00,"C","Limit" +"7282",2018-01-04 07:00:00,"C","Error" +"7283",2018-01-04 07:20:00,"B","Limit" +"7284",2018-01-04 07:40:00,"C","Check with author" +"7285",2018-01-04 08:00:00,"B","Attach" +"7286",2018-01-04 08:20:00,"B","Limit" +"7287",2018-01-04 08:40:00,"C","Error" +"7288",2018-01-04 09:00:00,"A","Check with author" +"7289",2018-01-04 09:20:00,"B","Check with author" +"7290",2018-01-04 09:40:00,"C","No clue" +"7291",2018-01-04 10:00:00,"B","Warn" +"7292",2018-01-04 10:20:00,"A","No clue" +"7293",2018-01-04 10:40:00,"B","Check with author" +"7294",2018-01-04 11:00:00,"B","No clue" +"7295",2018-01-04 11:20:00,"C","Limit" +"7296",2018-01-04 11:40:00,"A","Error" +"7297",2018-01-04 12:00:00,"C","Limit" +"7298",2018-01-04 12:20:00,"A","No clue" +"7299",2018-01-04 12:40:00,"C","Attach" +"7300",2018-01-04 13:00:00,"A","Error" +"7301",2018-01-04 13:20:00,"B","No clue" +"7302",2018-01-04 13:40:00,"B","Debug" +"7303",2018-01-04 14:00:00,"C","Debug" +"7304",2018-01-04 14:20:00,"A","Debug" +"7305",2018-01-04 14:40:00,"B","Debug" +"7306",2018-01-04 15:00:00,"B","Check with author" +"7307",2018-01-04 15:20:00,"A","Error" +"7308",2018-01-04 15:40:00,"A","No clue" +"7309",2018-01-04 16:00:00,"C","Limit" +"7310",2018-01-04 16:20:00,"A","Attach" +"7311",2018-01-04 16:40:00,"A","Warn" +"7312",2018-01-04 17:00:00,"A","Attach" +"7313",2018-01-04 17:20:00,"C","Debug" +"7314",2018-01-04 17:40:00,"A","Warn" +"7315",2018-01-04 18:00:00,"B","Debug" +"7316",2018-01-04 18:20:00,"A","Check with author" +"7317",2018-01-04 18:40:00,"A","Check with author" +"7318",2018-01-04 19:00:00,"B","No clue" +"7319",2018-01-04 19:20:00,"C","Error" +"7320",2018-01-04 19:40:00,"B","Error" +"7321",2018-01-04 20:00:00,"A","No clue" +"7322",2018-01-04 20:20:00,"A","No clue" +"7323",2018-01-04 20:40:00,"B","Check with author" +"7324",2018-01-04 21:00:00,"C","Error" +"7325",2018-01-04 21:20:00,"B","Attach" +"7326",2018-01-04 21:40:00,"C","Attach" +"7327",2018-01-04 22:00:00,"C","Warn" +"7328",2018-01-04 22:20:00,"A","Limit" +"7329",2018-01-04 22:40:00,"C","No clue" +"7330",2018-01-04 23:00:00,"A","No clue" +"7331",2018-01-04 23:20:00,"B","Error" +"7332",2018-01-04 23:40:00,"A","Attach" +"7333",2018-01-05 00:00:00,"C","No clue" +"7334",2018-01-05 00:20:00,"A","Attach" +"7335",2018-01-05 00:40:00,"B","Warn" +"7336",2018-01-05 01:00:00,"C","No clue" +"7337",2018-01-05 01:20:00,"C","Warn" +"7338",2018-01-05 01:40:00,"C","Error" +"7339",2018-01-05 02:00:00,"C","Attach" +"7340",2018-01-05 02:20:00,"C","Attach" +"7341",2018-01-05 02:40:00,"B","Limit" +"7342",2018-01-05 03:00:00,"A","Limit" +"7343",2018-01-05 03:20:00,"C","Attach" +"7344",2018-01-05 03:40:00,"C","Debug" +"7345",2018-01-05 04:00:00,"C","Error" +"7346",2018-01-05 04:20:00,"C","Error" +"7347",2018-01-05 04:40:00,"B","No clue" +"7348",2018-01-05 05:00:00,"C","Warn" +"7349",2018-01-05 05:20:00,"C","Warn" +"7350",2018-01-05 05:40:00,"C","Check with author" +"7351",2018-01-05 06:00:00,"C","Warn" +"7352",2018-01-05 06:20:00,"B","Check with author" +"7353",2018-01-05 06:40:00,"B","Attach" +"7354",2018-01-05 07:00:00,"C","Warn" +"7355",2018-01-05 07:20:00,"B","Debug" +"7356",2018-01-05 07:40:00,"C","Debug" +"7357",2018-01-05 08:00:00,"C","Check with author" +"7358",2018-01-05 08:20:00,"A","Debug" +"7359",2018-01-05 08:40:00,"A","Debug" +"7360",2018-01-05 09:00:00,"C","No clue" +"7361",2018-01-05 09:20:00,"C","Error" +"7362",2018-01-05 09:40:00,"B","Limit" +"7363",2018-01-05 10:00:00,"C","Limit" +"7364",2018-01-05 10:20:00,"C","Limit" +"7365",2018-01-05 10:40:00,"A","No clue" +"7366",2018-01-05 11:00:00,"C","No clue" +"7367",2018-01-05 11:20:00,"C","Attach" +"7368",2018-01-05 11:40:00,"B","Check with author" +"7369",2018-01-05 12:00:00,"C","Attach" +"7370",2018-01-05 12:20:00,"C","Warn" +"7371",2018-01-05 12:40:00,"C","Error" +"7372",2018-01-05 13:00:00,"C","Limit" +"7373",2018-01-05 13:20:00,"C","Warn" +"7374",2018-01-05 13:40:00,"C","No clue" +"7375",2018-01-05 14:00:00,"A","Debug" +"7376",2018-01-01 12:00:00,"C","Warn" +"7377",2018-01-01 12:20:00,"A","Warn" +"7378",2018-01-01 12:40:00,"C","Debug" +"7379",2018-01-01 13:00:00,"B","Check with author" +"7380",2018-01-01 13:20:00,"B","Error" +"7381",2018-01-01 13:40:00,"A","Debug" +"7382",2018-01-01 14:00:00,"A","Warn" +"7383",2018-01-01 14:20:00,"B","No clue" +"7384",2018-01-01 14:40:00,"B","Debug" +"7385",2018-01-01 15:00:00,"B","No clue" +"7386",2018-01-01 15:20:00,"C","Limit" +"7387",2018-01-01 15:40:00,"B","Limit" +"7388",2018-01-01 16:00:00,"A","Check with author" +"7389",2018-01-01 16:20:00,"A","Error" +"7390",2018-01-01 16:40:00,"C","Attach" +"7391",2018-01-01 17:00:00,"A","Limit" +"7392",2018-01-01 17:20:00,"A","No clue" +"7393",2018-01-01 17:40:00,"C","Attach" +"7394",2018-01-01 18:00:00,"C","Limit" +"7395",2018-01-01 18:20:00,"C","Warn" +"7396",2018-01-01 18:40:00,"A","Attach" +"7397",2018-01-01 19:00:00,"B","Limit" +"7398",2018-01-01 19:20:00,"C","Debug" +"7399",2018-01-01 19:40:00,"B","Error" +"7400",2018-01-01 20:00:00,"B","Check with author" +"7401",2018-01-01 20:20:00,"B","No clue" +"7402",2018-01-01 20:40:00,"C","Warn" +"7403",2018-01-01 21:00:00,"B","Attach" +"7404",2018-01-01 21:20:00,"A","Check with author" +"7405",2018-01-01 21:40:00,"C","Check with author" +"7406",2018-01-01 22:00:00,"B","Check with author" +"7407",2018-01-01 22:20:00,"A","Check with author" +"7408",2018-01-01 22:40:00,"B","Warn" +"7409",2018-01-01 23:00:00,"B","Error" +"7410",2018-01-01 23:20:00,"A","Check with author" +"7411",2018-01-01 23:40:00,"A","No clue" +"7412",2018-01-02 00:00:00,"A","No clue" +"7413",2018-01-02 00:20:00,"C","Check with author" +"7414",2018-01-02 00:40:00,"A","Debug" +"7415",2018-01-02 01:00:00,"B","Check with author" +"7416",2018-01-02 01:20:00,"C","Limit" +"7417",2018-01-02 01:40:00,"C","No clue" +"7418",2018-01-02 02:00:00,"B","Attach" +"7419",2018-01-02 02:20:00,"C","Error" +"7420",2018-01-02 02:40:00,"B","Check with author" +"7421",2018-01-02 03:00:00,"C","Debug" +"7422",2018-01-02 03:20:00,"C","Warn" +"7423",2018-01-02 03:40:00,"B","Warn" +"7424",2018-01-02 04:00:00,"C","Attach" +"7425",2018-01-02 04:20:00,"B","Check with author" +"7426",2018-01-02 04:40:00,"A","Check with author" +"7427",2018-01-02 05:00:00,"C","Error" +"7428",2018-01-02 05:20:00,"C","Check with author" +"7429",2018-01-02 05:40:00,"B","Debug" +"7430",2018-01-02 06:00:00,"C","Debug" +"7431",2018-01-02 06:20:00,"A","Debug" +"7432",2018-01-02 06:40:00,"B","Attach" +"7433",2018-01-02 07:00:00,"A","Debug" +"7434",2018-01-02 07:20:00,"B","Attach" +"7435",2018-01-02 07:40:00,"B","Error" +"7436",2018-01-02 08:00:00,"C","Error" +"7437",2018-01-02 08:20:00,"A","Attach" +"7438",2018-01-02 08:40:00,"C","Attach" +"7439",2018-01-02 09:00:00,"C","No clue" +"7440",2018-01-02 09:20:00,"B","Check with author" +"7441",2018-01-02 09:40:00,"B","Attach" +"7442",2018-01-02 10:00:00,"C","Attach" +"7443",2018-01-02 10:20:00,"A","Debug" +"7444",2018-01-02 10:40:00,"A","Warn" +"7445",2018-01-02 11:00:00,"C","Warn" +"7446",2018-01-02 11:20:00,"C","No clue" +"7447",2018-01-02 11:40:00,"C","Check with author" +"7448",2018-01-02 12:00:00,"C","Error" +"7449",2018-01-02 12:20:00,"B","Debug" +"7450",2018-01-02 12:40:00,"C","Error" +"7451",2018-01-02 13:00:00,"C","Limit" +"7452",2018-01-02 13:20:00,"B","Warn" +"7453",2018-01-02 13:40:00,"B","No clue" +"7454",2018-01-02 14:00:00,"B","Check with author" +"7455",2018-01-02 14:20:00,"B","No clue" +"7456",2018-01-02 14:40:00,"B","Debug" +"7457",2018-01-02 15:00:00,"B","Warn" +"7458",2018-01-02 15:20:00,"A","Check with author" +"7459",2018-01-02 15:40:00,"A","Error" +"7460",2018-01-02 16:00:00,"C","Attach" +"7461",2018-01-02 16:20:00,"B","Limit" +"7462",2018-01-02 16:40:00,"B","Debug" +"7463",2018-01-02 17:00:00,"A","Limit" +"7464",2018-01-02 17:20:00,"A","Error" +"7465",2018-01-02 17:40:00,"B","No clue" +"7466",2018-01-02 18:00:00,"A","Error" +"7467",2018-01-02 18:20:00,"A","Check with author" +"7468",2018-01-02 18:40:00,"C","No clue" +"7469",2018-01-02 19:00:00,"A","Debug" +"7470",2018-01-02 19:20:00,"C","No clue" +"7471",2018-01-02 19:40:00,"A","Check with author" +"7472",2018-01-02 20:00:00,"C","No clue" +"7473",2018-01-02 20:20:00,"B","Debug" +"7474",2018-01-02 20:40:00,"C","Check with author" +"7475",2018-01-02 21:00:00,"B","Attach" +"7476",2018-01-02 21:20:00,"B","Debug" +"7477",2018-01-02 21:40:00,"B","No clue" +"7478",2018-01-02 22:00:00,"C","Limit" +"7479",2018-01-02 22:20:00,"B","Debug" +"7480",2018-01-02 22:40:00,"C","Limit" +"7481",2018-01-02 23:00:00,"B","Limit" +"7482",2018-01-02 23:20:00,"B","Limit" +"7483",2018-01-02 23:40:00,"B","Error" +"7484",2018-01-03 00:00:00,"B","Error" +"7485",2018-01-03 00:20:00,"A","Attach" +"7486",2018-01-03 00:40:00,"B","Limit" +"7487",2018-01-03 01:00:00,"A","Attach" +"7488",2018-01-03 01:20:00,"B","Attach" +"7489",2018-01-03 01:40:00,"C","Limit" +"7490",2018-01-03 02:00:00,"C","No clue" +"7491",2018-01-03 02:20:00,"B","Attach" +"7492",2018-01-03 02:40:00,"A","Limit" +"7493",2018-01-03 03:00:00,"A","No clue" +"7494",2018-01-03 03:20:00,"A","Error" +"7495",2018-01-03 03:40:00,"B","Limit" +"7496",2018-01-03 04:00:00,"B","Check with author" +"7497",2018-01-03 04:20:00,"C","Check with author" +"7498",2018-01-03 04:40:00,"B","Attach" +"7499",2018-01-03 05:00:00,"C","Attach" +"7500",2018-01-03 05:20:00,"A","Attach" +"7501",2018-01-03 05:40:00,"A","No clue" +"7502",2018-01-03 06:00:00,"C","Debug" +"7503",2018-01-03 06:20:00,"A","No clue" +"7504",2018-01-03 06:40:00,"A","Error" +"7505",2018-01-03 07:00:00,"A","Error" +"7506",2018-01-03 07:20:00,"B","Attach" +"7507",2018-01-03 07:40:00,"B","Check with author" +"7508",2018-01-03 08:00:00,"C","Limit" +"7509",2018-01-03 08:20:00,"B","Limit" +"7510",2018-01-03 08:40:00,"A","Warn" +"7511",2018-01-03 09:00:00,"C","Warn" +"7512",2018-01-03 09:20:00,"A","Debug" +"7513",2018-01-03 09:40:00,"A","Limit" +"7514",2018-01-03 10:00:00,"A","Error" +"7515",2018-01-03 10:20:00,"A","Warn" +"7516",2018-01-03 10:40:00,"C","Check with author" +"7517",2018-01-03 11:00:00,"A","No clue" +"7518",2018-01-03 11:20:00,"B","Limit" +"7519",2018-01-03 11:40:00,"B","Limit" +"7520",2018-01-03 12:00:00,"C","Debug" +"7521",2018-01-03 12:20:00,"B","Limit" +"7522",2018-01-03 12:40:00,"A","Check with author" +"7523",2018-01-03 13:00:00,"C","Error" +"7524",2018-01-03 13:20:00,"B","Check with author" +"7525",2018-01-03 13:40:00,"B","Warn" +"7526",2018-01-03 14:00:00,"B","Debug" +"7527",2018-01-03 14:20:00,"C","Limit" +"7528",2018-01-03 14:40:00,"A","Error" +"7529",2018-01-03 15:00:00,"B","Check with author" +"7530",2018-01-03 15:20:00,"C","Debug" +"7531",2018-01-03 15:40:00,"B","No clue" +"7532",2018-01-03 16:00:00,"B","Warn" +"7533",2018-01-03 16:20:00,"B","No clue" +"7534",2018-01-03 16:40:00,"C","Warn" +"7535",2018-01-03 17:00:00,"B","Error" +"7536",2018-01-03 17:20:00,"B","Attach" +"7537",2018-01-03 17:40:00,"C","Check with author" +"7538",2018-01-03 18:00:00,"A","Limit" +"7539",2018-01-03 18:20:00,"B","Check with author" +"7540",2018-01-03 18:40:00,"A","Error" +"7541",2018-01-03 19:00:00,"C","Warn" +"7542",2018-01-03 19:20:00,"B","Attach" +"7543",2018-01-03 19:40:00,"B","No clue" +"7544",2018-01-03 20:00:00,"A","No clue" +"7545",2018-01-03 20:20:00,"B","Warn" +"7546",2018-01-03 20:40:00,"A","Limit" +"7547",2018-01-03 21:00:00,"A","No clue" +"7548",2018-01-03 21:20:00,"B","Warn" +"7549",2018-01-03 21:40:00,"C","Debug" +"7550",2018-01-03 22:00:00,"B","Limit" +"7551",2018-01-03 22:20:00,"A","Attach" +"7552",2018-01-03 22:40:00,"C","Error" +"7553",2018-01-03 23:00:00,"A","No clue" +"7554",2018-01-03 23:20:00,"B","Limit" +"7555",2018-01-03 23:40:00,"C","Error" +"7556",2018-01-04 00:00:00,"B","Limit" +"7557",2018-01-04 00:20:00,"A","Limit" +"7558",2018-01-04 00:40:00,"C","Error" +"7559",2018-01-04 01:00:00,"C","No clue" +"7560",2018-01-04 01:20:00,"C","Error" +"7561",2018-01-04 01:40:00,"B","Warn" +"7562",2018-01-04 02:00:00,"A","Error" +"7563",2018-01-04 02:20:00,"B","Check with author" +"7564",2018-01-04 02:40:00,"C","Error" +"7565",2018-01-04 03:00:00,"A","Attach" +"7566",2018-01-04 03:20:00,"B","Attach" +"7567",2018-01-04 03:40:00,"C","Debug" +"7568",2018-01-04 04:00:00,"A","Attach" +"7569",2018-01-04 04:20:00,"B","Debug" +"7570",2018-01-04 04:40:00,"A","Check with author" +"7571",2018-01-04 05:00:00,"C","Limit" +"7572",2018-01-04 05:20:00,"A","No clue" +"7573",2018-01-04 05:40:00,"A","Limit" +"7574",2018-01-04 06:00:00,"C","Limit" +"7575",2018-01-04 06:20:00,"A","Error" +"7576",2018-01-04 06:40:00,"A","Error" +"7577",2018-01-04 07:00:00,"B","Debug" +"7578",2018-01-04 07:20:00,"A","Error" +"7579",2018-01-04 07:40:00,"B","Check with author" +"7580",2018-01-04 08:00:00,"B","Error" +"7581",2018-01-04 08:20:00,"B","Limit" +"7582",2018-01-04 08:40:00,"B","Attach" +"7583",2018-01-04 09:00:00,"B","No clue" +"7584",2018-01-04 09:20:00,"C","Check with author" +"7585",2018-01-04 09:40:00,"A","Debug" +"7586",2018-01-04 10:00:00,"A","Limit" +"7587",2018-01-04 10:20:00,"C","Error" +"7588",2018-01-04 10:40:00,"A","No clue" +"7589",2018-01-04 11:00:00,"B","Warn" +"7590",2018-01-04 11:20:00,"C","No clue" +"7591",2018-01-04 11:40:00,"C","Attach" +"7592",2018-01-04 12:00:00,"A","Attach" +"7593",2018-01-04 12:20:00,"A","No clue" +"7594",2018-01-04 12:40:00,"B","Limit" +"7595",2018-01-04 13:00:00,"A","No clue" +"7596",2018-01-04 13:20:00,"C","Error" +"7597",2018-01-04 13:40:00,"A","Error" +"7598",2018-01-04 14:00:00,"C","No clue" +"7599",2018-01-04 14:20:00,"A","No clue" +"7600",2018-01-04 14:40:00,"C","Check with author" +"7601",2018-01-04 15:00:00,"C","Limit" +"7602",2018-01-04 15:20:00,"B","No clue" +"7603",2018-01-04 15:40:00,"B","Debug" +"7604",2018-01-04 16:00:00,"A","Attach" +"7605",2018-01-04 16:20:00,"C","Debug" +"7606",2018-01-04 16:40:00,"B","Attach" +"7607",2018-01-04 17:00:00,"A","Error" +"7608",2018-01-04 17:20:00,"C","Debug" +"7609",2018-01-04 17:40:00,"A","No clue" +"7610",2018-01-04 18:00:00,"B","Error" +"7611",2018-01-04 18:20:00,"B","Check with author" +"7612",2018-01-04 18:40:00,"C","No clue" +"7613",2018-01-04 19:00:00,"C","Error" +"7614",2018-01-04 19:20:00,"A","Limit" +"7615",2018-01-04 19:40:00,"A","Limit" +"7616",2018-01-04 20:00:00,"A","Attach" +"7617",2018-01-04 20:20:00,"B","Limit" +"7618",2018-01-04 20:40:00,"B","Error" +"7619",2018-01-04 21:00:00,"C","Limit" +"7620",2018-01-04 21:20:00,"C","No clue" +"7621",2018-01-04 21:40:00,"B","Warn" +"7622",2018-01-04 22:00:00,"C","Debug" +"7623",2018-01-04 22:20:00,"A","Error" +"7624",2018-01-04 22:40:00,"B","Warn" +"7625",2018-01-04 23:00:00,"B","Warn" +"7626",2018-01-04 23:20:00,"C","Warn" +"7627",2018-01-04 23:40:00,"B","Limit" +"7628",2018-01-05 00:00:00,"B","Check with author" +"7629",2018-01-05 00:20:00,"C","Debug" +"7630",2018-01-05 00:40:00,"B","Attach" +"7631",2018-01-05 01:00:00,"B","Warn" +"7632",2018-01-05 01:20:00,"A","No clue" +"7633",2018-01-05 01:40:00,"A","Check with author" +"7634",2018-01-05 02:00:00,"A","Check with author" +"7635",2018-01-05 02:20:00,"C","Check with author" +"7636",2018-01-05 02:40:00,"A","Attach" +"7637",2018-01-05 03:00:00,"B","Error" +"7638",2018-01-05 03:20:00,"A","Debug" +"7639",2018-01-05 03:40:00,"A","Debug" +"7640",2018-01-05 04:00:00,"B","Attach" +"7641",2018-01-05 04:20:00,"C","Attach" +"7642",2018-01-05 04:40:00,"B","Limit" +"7643",2018-01-05 05:00:00,"C","Check with author" +"7644",2018-01-05 05:20:00,"B","Attach" +"7645",2018-01-05 05:40:00,"A","Warn" +"7646",2018-01-05 06:00:00,"B","No clue" +"7647",2018-01-05 06:20:00,"C","Check with author" +"7648",2018-01-05 06:40:00,"A","Attach" +"7649",2018-01-05 07:00:00,"B","Attach" +"7650",2018-01-05 07:20:00,"A","No clue" +"7651",2018-01-05 07:40:00,"A","Attach" +"7652",2018-01-05 08:00:00,"B","Attach" +"7653",2018-01-05 08:20:00,"C","Warn" +"7654",2018-01-05 08:40:00,"C","No clue" +"7655",2018-01-05 09:00:00,"A","Warn" +"7656",2018-01-05 09:20:00,"B","No clue" +"7657",2018-01-05 09:40:00,"C","Debug" +"7658",2018-01-05 10:00:00,"C","Limit" +"7659",2018-01-05 10:20:00,"C","Attach" +"7660",2018-01-05 10:40:00,"A","Debug" +"7661",2018-01-05 11:00:00,"C","Debug" +"7662",2018-01-05 11:20:00,"B","Limit" +"7663",2018-01-05 11:40:00,"C","Debug" +"7664",2018-01-05 12:00:00,"A","Warn" +"7665",2018-01-05 12:20:00,"A","Check with author" +"7666",2018-01-05 12:40:00,"B","Debug" +"7667",2018-01-05 13:00:00,"A","Check with author" +"7668",2018-01-05 13:20:00,"A","No clue" +"7669",2018-01-05 13:40:00,"C","No clue" +"7670",2018-01-05 14:00:00,"C","Check with author" +"7671",2018-01-01 12:00:00,"B","Debug" +"7672",2018-01-01 12:20:00,"C","Attach" +"7673",2018-01-01 12:40:00,"B","Error" +"7674",2018-01-01 13:00:00,"B","No clue" +"7675",2018-01-01 13:20:00,"A","No clue" +"7676",2018-01-01 13:40:00,"A","Limit" +"7677",2018-01-01 14:00:00,"A","Attach" +"7678",2018-01-01 14:20:00,"A","Debug" +"7679",2018-01-01 14:40:00,"C","No clue" +"7680",2018-01-01 15:00:00,"B","Warn" +"7681",2018-01-01 15:20:00,"B","Warn" +"7682",2018-01-01 15:40:00,"A","Error" +"7683",2018-01-01 16:00:00,"A","Check with author" +"7684",2018-01-01 16:20:00,"C","Limit" +"7685",2018-01-01 16:40:00,"C","Attach" +"7686",2018-01-01 17:00:00,"C","No clue" +"7687",2018-01-01 17:20:00,"C","Warn" +"7688",2018-01-01 17:40:00,"B","Limit" +"7689",2018-01-01 18:00:00,"A","Attach" +"7690",2018-01-01 18:20:00,"A","No clue" +"7691",2018-01-01 18:40:00,"A","Error" +"7692",2018-01-01 19:00:00,"B","Error" +"7693",2018-01-01 19:20:00,"C","Check with author" +"7694",2018-01-01 19:40:00,"A","Limit" +"7695",2018-01-01 20:00:00,"C","Attach" +"7696",2018-01-01 20:20:00,"B","Debug" +"7697",2018-01-01 20:40:00,"C","Warn" +"7698",2018-01-01 21:00:00,"A","Debug" +"7699",2018-01-01 21:20:00,"A","Error" +"7700",2018-01-01 21:40:00,"B","Debug" +"7701",2018-01-01 22:00:00,"A","Limit" +"7702",2018-01-01 22:20:00,"C","Debug" +"7703",2018-01-01 22:40:00,"B","Debug" +"7704",2018-01-01 23:00:00,"C","Warn" +"7705",2018-01-01 23:20:00,"C","Debug" +"7706",2018-01-01 23:40:00,"B","Error" +"7707",2018-01-02 00:00:00,"C","No clue" +"7708",2018-01-02 00:20:00,"C","Limit" +"7709",2018-01-02 00:40:00,"B","Limit" +"7710",2018-01-02 01:00:00,"A","No clue" +"7711",2018-01-02 01:20:00,"B","Error" +"7712",2018-01-02 01:40:00,"C","Attach" +"7713",2018-01-02 02:00:00,"C","Limit" +"7714",2018-01-02 02:20:00,"C","No clue" +"7715",2018-01-02 02:40:00,"A","Debug" +"7716",2018-01-02 03:00:00,"B","No clue" +"7717",2018-01-02 03:20:00,"A","Debug" +"7718",2018-01-02 03:40:00,"B","Error" +"7719",2018-01-02 04:00:00,"B","Warn" +"7720",2018-01-02 04:20:00,"B","No clue" +"7721",2018-01-02 04:40:00,"A","No clue" +"7722",2018-01-02 05:00:00,"B","Debug" +"7723",2018-01-02 05:20:00,"A","Warn" +"7724",2018-01-02 05:40:00,"B","Limit" +"7725",2018-01-02 06:00:00,"A","Attach" +"7726",2018-01-02 06:20:00,"B","No clue" +"7727",2018-01-02 06:40:00,"B","Error" +"7728",2018-01-02 07:00:00,"C","Attach" +"7729",2018-01-02 07:20:00,"C","Limit" +"7730",2018-01-02 07:40:00,"C","Error" +"7731",2018-01-02 08:00:00,"B","Warn" +"7732",2018-01-02 08:20:00,"A","Check with author" +"7733",2018-01-02 08:40:00,"B","Limit" +"7734",2018-01-02 09:00:00,"A","No clue" +"7735",2018-01-02 09:20:00,"B","Warn" +"7736",2018-01-02 09:40:00,"C","Error" +"7737",2018-01-02 10:00:00,"C","No clue" +"7738",2018-01-02 10:20:00,"C","Check with author" +"7739",2018-01-02 10:40:00,"C","Debug" +"7740",2018-01-02 11:00:00,"B","Attach" +"7741",2018-01-02 11:20:00,"A","Warn" +"7742",2018-01-02 11:40:00,"A","Warn" +"7743",2018-01-02 12:00:00,"A","No clue" +"7744",2018-01-02 12:20:00,"B","Limit" +"7745",2018-01-02 12:40:00,"B","Debug" +"7746",2018-01-02 13:00:00,"C","Error" +"7747",2018-01-02 13:20:00,"A","No clue" +"7748",2018-01-02 13:40:00,"C","No clue" +"7749",2018-01-02 14:00:00,"B","Warn" +"7750",2018-01-02 14:20:00,"C","No clue" +"7751",2018-01-02 14:40:00,"C","Error" +"7752",2018-01-02 15:00:00,"C","Warn" +"7753",2018-01-02 15:20:00,"C","Limit" +"7754",2018-01-02 15:40:00,"A","Debug" +"7755",2018-01-02 16:00:00,"C","Warn" +"7756",2018-01-02 16:20:00,"B","Check with author" +"7757",2018-01-02 16:40:00,"C","Limit" +"7758",2018-01-02 17:00:00,"A","Check with author" +"7759",2018-01-02 17:20:00,"B","Limit" +"7760",2018-01-02 17:40:00,"A","Error" +"7761",2018-01-02 18:00:00,"C","Attach" +"7762",2018-01-02 18:20:00,"A","Limit" +"7763",2018-01-02 18:40:00,"A","Limit" +"7764",2018-01-02 19:00:00,"C","No clue" +"7765",2018-01-02 19:20:00,"B","Check with author" +"7766",2018-01-02 19:40:00,"B","Error" +"7767",2018-01-02 20:00:00,"A","Limit" +"7768",2018-01-02 20:20:00,"A","Limit" +"7769",2018-01-02 20:40:00,"A","Check with author" +"7770",2018-01-02 21:00:00,"A","Error" +"7771",2018-01-02 21:20:00,"A","Check with author" +"7772",2018-01-02 21:40:00,"A","Error" +"7773",2018-01-02 22:00:00,"A","Error" +"7774",2018-01-02 22:20:00,"B","Debug" +"7775",2018-01-02 22:40:00,"A","Attach" +"7776",2018-01-02 23:00:00,"A","Attach" +"7777",2018-01-02 23:20:00,"B","Check with author" +"7778",2018-01-02 23:40:00,"B","No clue" +"7779",2018-01-03 00:00:00,"C","No clue" +"7780",2018-01-03 00:20:00,"A","Limit" +"7781",2018-01-03 00:40:00,"A","Attach" +"7782",2018-01-03 01:00:00,"A","Limit" +"7783",2018-01-03 01:20:00,"C","No clue" +"7784",2018-01-03 01:40:00,"A","Check with author" +"7785",2018-01-03 02:00:00,"B","Debug" +"7786",2018-01-03 02:20:00,"C","Error" +"7787",2018-01-03 02:40:00,"C","Attach" +"7788",2018-01-03 03:00:00,"C","Check with author" +"7789",2018-01-03 03:20:00,"A","Attach" +"7790",2018-01-03 03:40:00,"A","Warn" +"7791",2018-01-03 04:00:00,"B","No clue" +"7792",2018-01-03 04:20:00,"B","Warn" +"7793",2018-01-03 04:40:00,"C","Attach" +"7794",2018-01-03 05:00:00,"C","Limit" +"7795",2018-01-03 05:20:00,"C","Attach" +"7796",2018-01-03 05:40:00,"A","Error" +"7797",2018-01-03 06:00:00,"A","Attach" +"7798",2018-01-03 06:20:00,"A","Limit" +"7799",2018-01-03 06:40:00,"B","Debug" +"7800",2018-01-03 07:00:00,"C","Error" +"7801",2018-01-03 07:20:00,"A","Error" +"7802",2018-01-03 07:40:00,"C","Attach" +"7803",2018-01-03 08:00:00,"B","Check with author" +"7804",2018-01-03 08:20:00,"A","Warn" +"7805",2018-01-03 08:40:00,"C","Debug" +"7806",2018-01-03 09:00:00,"A","Limit" +"7807",2018-01-03 09:20:00,"B","Limit" +"7808",2018-01-03 09:40:00,"B","Warn" +"7809",2018-01-03 10:00:00,"B","Debug" +"7810",2018-01-03 10:20:00,"C","No clue" +"7811",2018-01-03 10:40:00,"B","Attach" +"7812",2018-01-03 11:00:00,"A","Limit" +"7813",2018-01-03 11:20:00,"A","Warn" +"7814",2018-01-03 11:40:00,"A","Attach" +"7815",2018-01-03 12:00:00,"A","Check with author" +"7816",2018-01-03 12:20:00,"B","Limit" +"7817",2018-01-03 12:40:00,"A","Debug" +"7818",2018-01-03 13:00:00,"B","Check with author" +"7819",2018-01-03 13:20:00,"B","Error" +"7820",2018-01-03 13:40:00,"C","Debug" +"7821",2018-01-03 14:00:00,"A","Debug" +"7822",2018-01-03 14:20:00,"C","Debug" +"7823",2018-01-03 14:40:00,"A","Limit" +"7824",2018-01-03 15:00:00,"C","Check with author" +"7825",2018-01-03 15:20:00,"B","Attach" +"7826",2018-01-03 15:40:00,"C","Debug" +"7827",2018-01-03 16:00:00,"C","Debug" +"7828",2018-01-03 16:20:00,"B","Error" +"7829",2018-01-03 16:40:00,"B","Attach" +"7830",2018-01-03 17:00:00,"B","Error" +"7831",2018-01-03 17:20:00,"B","Debug" +"7832",2018-01-03 17:40:00,"A","Check with author" +"7833",2018-01-03 18:00:00,"A","Check with author" +"7834",2018-01-03 18:20:00,"B","Limit" +"7835",2018-01-03 18:40:00,"A","Attach" +"7836",2018-01-03 19:00:00,"A","Debug" +"7837",2018-01-03 19:20:00,"B","Check with author" +"7838",2018-01-03 19:40:00,"A","Debug" +"7839",2018-01-03 20:00:00,"C","Warn" +"7840",2018-01-03 20:20:00,"A","Warn" +"7841",2018-01-03 20:40:00,"C","Warn" +"7842",2018-01-03 21:00:00,"B","Warn" +"7843",2018-01-03 21:20:00,"A","Limit" +"7844",2018-01-03 21:40:00,"A","Attach" +"7845",2018-01-03 22:00:00,"B","Debug" +"7846",2018-01-03 22:20:00,"C","Limit" +"7847",2018-01-03 22:40:00,"B","Limit" +"7848",2018-01-03 23:00:00,"C","Debug" +"7849",2018-01-03 23:20:00,"C","Error" +"7850",2018-01-03 23:40:00,"A","Error" +"7851",2018-01-04 00:00:00,"C","Check with author" +"7852",2018-01-04 00:20:00,"C","No clue" +"7853",2018-01-04 00:40:00,"C","No clue" +"7854",2018-01-04 01:00:00,"C","Check with author" +"7855",2018-01-04 01:20:00,"B","No clue" +"7856",2018-01-04 01:40:00,"A","Debug" +"7857",2018-01-04 02:00:00,"A","Warn" +"7858",2018-01-04 02:20:00,"B","Attach" +"7859",2018-01-04 02:40:00,"B","Check with author" +"7860",2018-01-04 03:00:00,"A","No clue" +"7861",2018-01-04 03:20:00,"A","Error" +"7862",2018-01-04 03:40:00,"C","Attach" +"7863",2018-01-04 04:00:00,"A","No clue" +"7864",2018-01-04 04:20:00,"C","Attach" +"7865",2018-01-04 04:40:00,"A","No clue" +"7866",2018-01-04 05:00:00,"C","Check with author" +"7867",2018-01-04 05:20:00,"A","Warn" +"7868",2018-01-04 05:40:00,"B","Limit" +"7869",2018-01-04 06:00:00,"A","Limit" +"7870",2018-01-04 06:20:00,"A","Warn" +"7871",2018-01-04 06:40:00,"A","No clue" +"7872",2018-01-04 07:00:00,"C","Check with author" +"7873",2018-01-04 07:20:00,"A","Limit" +"7874",2018-01-04 07:40:00,"B","Check with author" +"7875",2018-01-04 08:00:00,"C","Limit" +"7876",2018-01-04 08:20:00,"B","Limit" +"7877",2018-01-04 08:40:00,"B","Error" +"7878",2018-01-04 09:00:00,"C","Debug" +"7879",2018-01-04 09:20:00,"A","No clue" +"7880",2018-01-04 09:40:00,"C","Debug" +"7881",2018-01-04 10:00:00,"B","Error" +"7882",2018-01-04 10:20:00,"A","Error" +"7883",2018-01-04 10:40:00,"B","No clue" +"7884",2018-01-04 11:00:00,"B","Error" +"7885",2018-01-04 11:20:00,"A","Warn" +"7886",2018-01-04 11:40:00,"B","Warn" +"7887",2018-01-04 12:00:00,"C","Attach" +"7888",2018-01-04 12:20:00,"A","Limit" +"7889",2018-01-04 12:40:00,"A","Debug" +"7890",2018-01-04 13:00:00,"B","Limit" +"7891",2018-01-04 13:20:00,"B","Check with author" +"7892",2018-01-04 13:40:00,"B","Limit" +"7893",2018-01-04 14:00:00,"C","Error" +"7894",2018-01-04 14:20:00,"A","No clue" +"7895",2018-01-04 14:40:00,"A","No clue" +"7896",2018-01-04 15:00:00,"B","Warn" +"7897",2018-01-04 15:20:00,"A","Warn" +"7898",2018-01-04 15:40:00,"A","Attach" +"7899",2018-01-04 16:00:00,"C","Error" +"7900",2018-01-04 16:20:00,"C","Debug" +"7901",2018-01-04 16:40:00,"A","Check with author" +"7902",2018-01-04 17:00:00,"A","Debug" +"7903",2018-01-04 17:20:00,"B","No clue" +"7904",2018-01-04 17:40:00,"B","Attach" +"7905",2018-01-04 18:00:00,"B","Attach" +"7906",2018-01-04 18:20:00,"A","Error" +"7907",2018-01-04 18:40:00,"B","Debug" +"7908",2018-01-04 19:00:00,"C","Attach" +"7909",2018-01-04 19:20:00,"C","Attach" +"7910",2018-01-04 19:40:00,"C","No clue" +"7911",2018-01-04 20:00:00,"B","Debug" +"7912",2018-01-04 20:20:00,"A","Error" +"7913",2018-01-04 20:40:00,"B","Check with author" +"7914",2018-01-04 21:00:00,"B","Attach" +"7915",2018-01-04 21:20:00,"C","Attach" +"7916",2018-01-04 21:40:00,"B","Error" +"7917",2018-01-04 22:00:00,"B","Attach" +"7918",2018-01-04 22:20:00,"B","Attach" +"7919",2018-01-04 22:40:00,"B","Check with author" +"7920",2018-01-04 23:00:00,"A","Check with author" +"7921",2018-01-04 23:20:00,"C","No clue" +"7922",2018-01-04 23:40:00,"A","Attach" +"7923",2018-01-05 00:00:00,"C","Attach" +"7924",2018-01-05 00:20:00,"C","Limit" +"7925",2018-01-05 00:40:00,"A","Check with author" +"7926",2018-01-05 01:00:00,"A","Warn" +"7927",2018-01-05 01:20:00,"C","Check with author" +"7928",2018-01-05 01:40:00,"A","Warn" +"7929",2018-01-05 02:00:00,"A","Limit" +"7930",2018-01-05 02:20:00,"B","Warn" +"7931",2018-01-05 02:40:00,"A","Error" +"7932",2018-01-05 03:00:00,"A","Error" +"7933",2018-01-05 03:20:00,"A","Warn" +"7934",2018-01-05 03:40:00,"C","No clue" +"7935",2018-01-05 04:00:00,"A","Check with author" +"7936",2018-01-05 04:20:00,"B","Warn" +"7937",2018-01-05 04:40:00,"A","Attach" +"7938",2018-01-05 05:00:00,"A","Warn" +"7939",2018-01-05 05:20:00,"B","Attach" +"7940",2018-01-05 05:40:00,"B","Error" +"7941",2018-01-05 06:00:00,"A","No clue" +"7942",2018-01-05 06:20:00,"B","Warn" +"7943",2018-01-05 06:40:00,"C","No clue" +"7944",2018-01-05 07:00:00,"C","Error" +"7945",2018-01-05 07:20:00,"B","Check with author" +"7946",2018-01-05 07:40:00,"B","Warn" +"7947",2018-01-05 08:00:00,"C","No clue" +"7948",2018-01-05 08:20:00,"C","Check with author" +"7949",2018-01-05 08:40:00,"B","Debug" +"7950",2018-01-05 09:00:00,"C","Attach" +"7951",2018-01-05 09:20:00,"C","Warn" +"7952",2018-01-05 09:40:00,"C","Limit" +"7953",2018-01-05 10:00:00,"C","Warn" +"7954",2018-01-05 10:20:00,"A","Warn" +"7955",2018-01-05 10:40:00,"A","No clue" +"7956",2018-01-05 11:00:00,"C","Limit" +"7957",2018-01-05 11:20:00,"B","No clue" +"7958",2018-01-05 11:40:00,"A","Error" +"7959",2018-01-05 12:00:00,"C","Debug" +"7960",2018-01-05 12:20:00,"C","Attach" +"7961",2018-01-05 12:40:00,"B","No clue" +"7962",2018-01-05 13:00:00,"B","Warn" +"7963",2018-01-05 13:20:00,"C","Debug" +"7964",2018-01-05 13:40:00,"A","Limit" +"7965",2018-01-05 14:00:00,"B","No clue" +"7966",2018-01-01 12:00:00,"A","Error" +"7967",2018-01-01 12:20:00,"B","Warn" +"7968",2018-01-01 12:40:00,"C","Error" +"7969",2018-01-01 13:00:00,"B","Check with author" +"7970",2018-01-01 13:20:00,"A","Attach" +"7971",2018-01-01 13:40:00,"C","Limit" +"7972",2018-01-01 14:00:00,"B","Warn" +"7973",2018-01-01 14:20:00,"A","Debug" +"7974",2018-01-01 14:40:00,"B","Error" +"7975",2018-01-01 15:00:00,"B","Limit" +"7976",2018-01-01 15:20:00,"C","Error" +"7977",2018-01-01 15:40:00,"A","Error" +"7978",2018-01-01 16:00:00,"C","Error" +"7979",2018-01-01 16:20:00,"A","Limit" +"7980",2018-01-01 16:40:00,"C","Error" +"7981",2018-01-01 17:00:00,"A","No clue" +"7982",2018-01-01 17:20:00,"C","Debug" +"7983",2018-01-01 17:40:00,"A","No clue" +"7984",2018-01-01 18:00:00,"B","No clue" +"7985",2018-01-01 18:20:00,"C","Warn" +"7986",2018-01-01 18:40:00,"A","Limit" +"7987",2018-01-01 19:00:00,"C","Check with author" +"7988",2018-01-01 19:20:00,"A","No clue" +"7989",2018-01-01 19:40:00,"B","Debug" +"7990",2018-01-01 20:00:00,"A","Warn" +"7991",2018-01-01 20:20:00,"C","No clue" +"7992",2018-01-01 20:40:00,"A","No clue" +"7993",2018-01-01 21:00:00,"B","Warn" +"7994",2018-01-01 21:20:00,"A","No clue" +"7995",2018-01-01 21:40:00,"B","Warn" +"7996",2018-01-01 22:00:00,"B","Attach" +"7997",2018-01-01 22:20:00,"C","Warn" +"7998",2018-01-01 22:40:00,"C","Check with author" +"7999",2018-01-01 23:00:00,"A","Warn" +"8000",2018-01-01 23:20:00,"C","Debug" +"8001",2018-01-01 23:40:00,"A","Debug" +"8002",2018-01-02 00:00:00,"A","Check with author" +"8003",2018-01-02 00:20:00,"C","Warn" +"8004",2018-01-02 00:40:00,"B","Attach" +"8005",2018-01-02 01:00:00,"B","Attach" +"8006",2018-01-02 01:20:00,"C","Debug" +"8007",2018-01-02 01:40:00,"C","Debug" +"8008",2018-01-02 02:00:00,"A","Check with author" +"8009",2018-01-02 02:20:00,"C","No clue" +"8010",2018-01-02 02:40:00,"C","Debug" +"8011",2018-01-02 03:00:00,"C","No clue" +"8012",2018-01-02 03:20:00,"C","Warn" +"8013",2018-01-02 03:40:00,"A","Attach" +"8014",2018-01-02 04:00:00,"A","Error" +"8015",2018-01-02 04:20:00,"B","Limit" +"8016",2018-01-02 04:40:00,"C","Attach" +"8017",2018-01-02 05:00:00,"B","Attach" +"8018",2018-01-02 05:20:00,"C","Debug" +"8019",2018-01-02 05:40:00,"A","Debug" +"8020",2018-01-02 06:00:00,"C","Warn" +"8021",2018-01-02 06:20:00,"B","Limit" +"8022",2018-01-02 06:40:00,"A","Debug" +"8023",2018-01-02 07:00:00,"B","Limit" +"8024",2018-01-02 07:20:00,"A","Attach" +"8025",2018-01-02 07:40:00,"B","No clue" +"8026",2018-01-02 08:00:00,"B","Attach" +"8027",2018-01-02 08:20:00,"B","Attach" +"8028",2018-01-02 08:40:00,"B","No clue" +"8029",2018-01-02 09:00:00,"C","Warn" +"8030",2018-01-02 09:20:00,"B","Error" +"8031",2018-01-02 09:40:00,"C","Error" +"8032",2018-01-02 10:00:00,"B","Debug" +"8033",2018-01-02 10:20:00,"B","Check with author" +"8034",2018-01-02 10:40:00,"C","Attach" +"8035",2018-01-02 11:00:00,"C","Warn" +"8036",2018-01-02 11:20:00,"B","Debug" +"8037",2018-01-02 11:40:00,"B","Limit" +"8038",2018-01-02 12:00:00,"B","Warn" +"8039",2018-01-02 12:20:00,"A","Debug" +"8040",2018-01-02 12:40:00,"B","Limit" +"8041",2018-01-02 13:00:00,"B","Check with author" +"8042",2018-01-02 13:20:00,"A","Limit" +"8043",2018-01-02 13:40:00,"B","Warn" +"8044",2018-01-02 14:00:00,"A","Attach" +"8045",2018-01-02 14:20:00,"B","Error" +"8046",2018-01-02 14:40:00,"B","Warn" +"8047",2018-01-02 15:00:00,"A","Debug" +"8048",2018-01-02 15:20:00,"A","Check with author" +"8049",2018-01-02 15:40:00,"B","Limit" +"8050",2018-01-02 16:00:00,"A","Error" +"8051",2018-01-02 16:20:00,"B","Warn" +"8052",2018-01-02 16:40:00,"A","Debug" +"8053",2018-01-02 17:00:00,"A","Limit" +"8054",2018-01-02 17:20:00,"A","No clue" +"8055",2018-01-02 17:40:00,"C","Check with author" +"8056",2018-01-02 18:00:00,"C","Check with author" +"8057",2018-01-02 18:20:00,"A","Limit" +"8058",2018-01-02 18:40:00,"A","Error" +"8059",2018-01-02 19:00:00,"A","Attach" +"8060",2018-01-02 19:20:00,"C","No clue" +"8061",2018-01-02 19:40:00,"A","Error" +"8062",2018-01-02 20:00:00,"B","No clue" +"8063",2018-01-02 20:20:00,"A","Check with author" +"8064",2018-01-02 20:40:00,"C","No clue" +"8065",2018-01-02 21:00:00,"C","No clue" +"8066",2018-01-02 21:20:00,"A","Check with author" +"8067",2018-01-02 21:40:00,"C","Attach" +"8068",2018-01-02 22:00:00,"A","Limit" +"8069",2018-01-02 22:20:00,"C","No clue" +"8070",2018-01-02 22:40:00,"B","Error" +"8071",2018-01-02 23:00:00,"B","Limit" +"8072",2018-01-02 23:20:00,"B","Check with author" +"8073",2018-01-02 23:40:00,"C","Attach" +"8074",2018-01-03 00:00:00,"A","Debug" +"8075",2018-01-03 00:20:00,"B","Debug" +"8076",2018-01-03 00:40:00,"A","Check with author" +"8077",2018-01-03 01:00:00,"A","Debug" +"8078",2018-01-03 01:20:00,"B","Limit" +"8079",2018-01-03 01:40:00,"B","Debug" +"8080",2018-01-03 02:00:00,"B","Attach" +"8081",2018-01-03 02:20:00,"C","No clue" +"8082",2018-01-03 02:40:00,"C","Error" +"8083",2018-01-03 03:00:00,"C","Attach" +"8084",2018-01-03 03:20:00,"B","Check with author" +"8085",2018-01-03 03:40:00,"C","No clue" +"8086",2018-01-03 04:00:00,"C","No clue" +"8087",2018-01-03 04:20:00,"C","No clue" +"8088",2018-01-03 04:40:00,"C","Warn" +"8089",2018-01-03 05:00:00,"A","Attach" +"8090",2018-01-03 05:20:00,"B","Attach" +"8091",2018-01-03 05:40:00,"A","Debug" +"8092",2018-01-03 06:00:00,"B","Debug" +"8093",2018-01-03 06:20:00,"C","Warn" +"8094",2018-01-03 06:40:00,"C","Limit" +"8095",2018-01-03 07:00:00,"C","Check with author" +"8096",2018-01-03 07:20:00,"C","Limit" +"8097",2018-01-03 07:40:00,"C","Error" +"8098",2018-01-03 08:00:00,"C","Limit" +"8099",2018-01-03 08:20:00,"A","Warn" +"8100",2018-01-03 08:40:00,"B","No clue" +"8101",2018-01-03 09:00:00,"A","Warn" +"8102",2018-01-03 09:20:00,"A","No clue" +"8103",2018-01-03 09:40:00,"C","Check with author" +"8104",2018-01-03 10:00:00,"A","Attach" +"8105",2018-01-03 10:20:00,"B","Check with author" +"8106",2018-01-03 10:40:00,"C","No clue" +"8107",2018-01-03 11:00:00,"A","Debug" +"8108",2018-01-03 11:20:00,"A","Check with author" +"8109",2018-01-03 11:40:00,"C","Warn" +"8110",2018-01-03 12:00:00,"B","Attach" +"8111",2018-01-03 12:20:00,"B","Check with author" +"8112",2018-01-03 12:40:00,"A","Error" +"8113",2018-01-03 13:00:00,"A","Limit" +"8114",2018-01-03 13:20:00,"A","Warn" +"8115",2018-01-03 13:40:00,"C","Error" +"8116",2018-01-03 14:00:00,"C","Debug" +"8117",2018-01-03 14:20:00,"A","Check with author" +"8118",2018-01-03 14:40:00,"C","Check with author" +"8119",2018-01-03 15:00:00,"C","Check with author" +"8120",2018-01-03 15:20:00,"A","Error" +"8121",2018-01-03 15:40:00,"B","Limit" +"8122",2018-01-03 16:00:00,"B","Warn" +"8123",2018-01-03 16:20:00,"B","Warn" +"8124",2018-01-03 16:40:00,"A","No clue" +"8125",2018-01-03 17:00:00,"A","Warn" +"8126",2018-01-03 17:20:00,"C","No clue" +"8127",2018-01-03 17:40:00,"A","Error" +"8128",2018-01-03 18:00:00,"B","No clue" +"8129",2018-01-03 18:20:00,"B","Debug" +"8130",2018-01-03 18:40:00,"C","Error" +"8131",2018-01-03 19:00:00,"C","Warn" +"8132",2018-01-03 19:20:00,"C","Warn" +"8133",2018-01-03 19:40:00,"A","Attach" +"8134",2018-01-03 20:00:00,"C","Error" +"8135",2018-01-03 20:20:00,"B","No clue" +"8136",2018-01-03 20:40:00,"C","Check with author" +"8137",2018-01-03 21:00:00,"C","No clue" +"8138",2018-01-03 21:20:00,"C","Warn" +"8139",2018-01-03 21:40:00,"A","Limit" +"8140",2018-01-03 22:00:00,"C","Debug" +"8141",2018-01-03 22:20:00,"C","Error" +"8142",2018-01-03 22:40:00,"B","Debug" +"8143",2018-01-03 23:00:00,"C","Error" +"8144",2018-01-03 23:20:00,"A","Warn" +"8145",2018-01-03 23:40:00,"C","Attach" +"8146",2018-01-04 00:00:00,"C","Attach" +"8147",2018-01-04 00:20:00,"C","Attach" +"8148",2018-01-04 00:40:00,"C","Debug" +"8149",2018-01-04 01:00:00,"B","Warn" +"8150",2018-01-04 01:20:00,"B","Debug" +"8151",2018-01-04 01:40:00,"C","Error" +"8152",2018-01-04 02:00:00,"C","Debug" +"8153",2018-01-04 02:20:00,"B","Attach" +"8154",2018-01-04 02:40:00,"C","Limit" +"8155",2018-01-04 03:00:00,"C","Check with author" +"8156",2018-01-04 03:20:00,"C","Error" +"8157",2018-01-04 03:40:00,"C","Attach" +"8158",2018-01-04 04:00:00,"B","Attach" +"8159",2018-01-04 04:20:00,"C","Debug" +"8160",2018-01-04 04:40:00,"B","Attach" +"8161",2018-01-04 05:00:00,"A","Warn" +"8162",2018-01-04 05:20:00,"A","Attach" +"8163",2018-01-04 05:40:00,"B","Limit" +"8164",2018-01-04 06:00:00,"A","Limit" +"8165",2018-01-04 06:20:00,"C","Error" +"8166",2018-01-04 06:40:00,"B","Check with author" +"8167",2018-01-04 07:00:00,"B","Check with author" +"8168",2018-01-04 07:20:00,"A","Warn" +"8169",2018-01-04 07:40:00,"C","No clue" +"8170",2018-01-04 08:00:00,"C","Check with author" +"8171",2018-01-04 08:20:00,"B","Error" +"8172",2018-01-04 08:40:00,"B","Warn" +"8173",2018-01-04 09:00:00,"B","Error" +"8174",2018-01-04 09:20:00,"C","Warn" +"8175",2018-01-04 09:40:00,"B","Debug" +"8176",2018-01-04 10:00:00,"B","Warn" +"8177",2018-01-04 10:20:00,"C","Limit" +"8178",2018-01-04 10:40:00,"B","Check with author" +"8179",2018-01-04 11:00:00,"B","Limit" +"8180",2018-01-04 11:20:00,"A","Check with author" +"8181",2018-01-04 11:40:00,"A","Warn" +"8182",2018-01-04 12:00:00,"C","Check with author" +"8183",2018-01-04 12:20:00,"B","Attach" +"8184",2018-01-04 12:40:00,"A","Warn" +"8185",2018-01-04 13:00:00,"A","Check with author" +"8186",2018-01-04 13:20:00,"A","Attach" +"8187",2018-01-04 13:40:00,"C","Error" +"8188",2018-01-04 14:00:00,"C","Warn" +"8189",2018-01-04 14:20:00,"C","Debug" +"8190",2018-01-04 14:40:00,"B","Check with author" +"8191",2018-01-04 15:00:00,"C","Debug" +"8192",2018-01-04 15:20:00,"B","Check with author" +"8193",2018-01-04 15:40:00,"C","Limit" +"8194",2018-01-04 16:00:00,"B","Error" +"8195",2018-01-04 16:20:00,"B","Check with author" +"8196",2018-01-04 16:40:00,"C","Limit" +"8197",2018-01-04 17:00:00,"C","Debug" +"8198",2018-01-04 17:20:00,"C","Error" +"8199",2018-01-04 17:40:00,"C","Warn" +"8200",2018-01-04 18:00:00,"C","Warn" +"8201",2018-01-04 18:20:00,"B","No clue" +"8202",2018-01-04 18:40:00,"C","Error" +"8203",2018-01-04 19:00:00,"B","Limit" +"8204",2018-01-04 19:20:00,"B","No clue" +"8205",2018-01-04 19:40:00,"C","Check with author" +"8206",2018-01-04 20:00:00,"A","No clue" +"8207",2018-01-04 20:20:00,"C","Limit" +"8208",2018-01-04 20:40:00,"C","Attach" +"8209",2018-01-04 21:00:00,"B","Error" +"8210",2018-01-04 21:20:00,"C","No clue" +"8211",2018-01-04 21:40:00,"C","Warn" +"8212",2018-01-04 22:00:00,"C","Error" +"8213",2018-01-04 22:20:00,"B","Check with author" +"8214",2018-01-04 22:40:00,"A","Attach" +"8215",2018-01-04 23:00:00,"B","Attach" +"8216",2018-01-04 23:20:00,"A","Warn" +"8217",2018-01-04 23:40:00,"A","Attach" +"8218",2018-01-05 00:00:00,"C","Debug" +"8219",2018-01-05 00:20:00,"B","Attach" +"8220",2018-01-05 00:40:00,"B","Check with author" +"8221",2018-01-05 01:00:00,"A","Limit" +"8222",2018-01-05 01:20:00,"C","Warn" +"8223",2018-01-05 01:40:00,"A","Limit" +"8224",2018-01-05 02:00:00,"C","Warn" +"8225",2018-01-05 02:20:00,"B","Attach" +"8226",2018-01-05 02:40:00,"B","Debug" +"8227",2018-01-05 03:00:00,"A","Error" +"8228",2018-01-05 03:20:00,"A","Debug" +"8229",2018-01-05 03:40:00,"B","No clue" +"8230",2018-01-05 04:00:00,"C","Warn" +"8231",2018-01-05 04:20:00,"C","No clue" +"8232",2018-01-05 04:40:00,"C","No clue" +"8233",2018-01-05 05:00:00,"C","No clue" +"8234",2018-01-05 05:20:00,"B","Limit" +"8235",2018-01-05 05:40:00,"C","Debug" +"8236",2018-01-05 06:00:00,"C","Debug" +"8237",2018-01-05 06:20:00,"C","No clue" +"8238",2018-01-05 06:40:00,"B","No clue" +"8239",2018-01-05 07:00:00,"B","No clue" +"8240",2018-01-05 07:20:00,"B","Error" +"8241",2018-01-05 07:40:00,"C","Warn" +"8242",2018-01-05 08:00:00,"A","Error" +"8243",2018-01-05 08:20:00,"C","Attach" +"8244",2018-01-05 08:40:00,"B","Debug" +"8245",2018-01-05 09:00:00,"B","Attach" +"8246",2018-01-05 09:20:00,"C","Attach" +"8247",2018-01-05 09:40:00,"A","Debug" +"8248",2018-01-05 10:00:00,"A","Debug" +"8249",2018-01-05 10:20:00,"B","No clue" +"8250",2018-01-05 10:40:00,"A","Check with author" +"8251",2018-01-05 11:00:00,"A","Check with author" +"8252",2018-01-05 11:20:00,"A","No clue" +"8253",2018-01-05 11:40:00,"C","Limit" +"8254",2018-01-05 12:00:00,"B","Error" +"8255",2018-01-05 12:20:00,"C","No clue" +"8256",2018-01-05 12:40:00,"B","Limit" +"8257",2018-01-05 13:00:00,"A","Check with author" +"8258",2018-01-05 13:20:00,"B","No clue" +"8259",2018-01-05 13:40:00,"C","Error" +"8260",2018-01-05 14:00:00,"B","Debug" +"8261",2018-01-01 12:00:00,"B","Check with author" +"8262",2018-01-01 12:20:00,"B","Debug" +"8263",2018-01-01 12:40:00,"B","Attach" +"8264",2018-01-01 13:00:00,"A","Check with author" +"8265",2018-01-01 13:20:00,"C","Limit" +"8266",2018-01-01 13:40:00,"B","Attach" +"8267",2018-01-01 14:00:00,"C","Debug" +"8268",2018-01-01 14:20:00,"C","Debug" +"8269",2018-01-01 14:40:00,"C","No clue" +"8270",2018-01-01 15:00:00,"C","Warn" +"8271",2018-01-01 15:20:00,"A","Warn" +"8272",2018-01-01 15:40:00,"C","Limit" +"8273",2018-01-01 16:00:00,"B","Error" +"8274",2018-01-01 16:20:00,"B","No clue" +"8275",2018-01-01 16:40:00,"B","Warn" +"8276",2018-01-01 17:00:00,"A","Attach" +"8277",2018-01-01 17:20:00,"B","Warn" +"8278",2018-01-01 17:40:00,"B","Check with author" +"8279",2018-01-01 18:00:00,"A","Debug" +"8280",2018-01-01 18:20:00,"C","Check with author" +"8281",2018-01-01 18:40:00,"C","Check with author" +"8282",2018-01-01 19:00:00,"C","Error" +"8283",2018-01-01 19:20:00,"A","Debug" +"8284",2018-01-01 19:40:00,"B","Error" +"8285",2018-01-01 20:00:00,"A","Warn" +"8286",2018-01-01 20:20:00,"B","Error" +"8287",2018-01-01 20:40:00,"A","No clue" +"8288",2018-01-01 21:00:00,"C","Check with author" +"8289",2018-01-01 21:20:00,"A","Warn" +"8290",2018-01-01 21:40:00,"B","Attach" +"8291",2018-01-01 22:00:00,"C","Check with author" +"8292",2018-01-01 22:20:00,"B","Debug" +"8293",2018-01-01 22:40:00,"C","Warn" +"8294",2018-01-01 23:00:00,"A","Limit" +"8295",2018-01-01 23:20:00,"C","Warn" +"8296",2018-01-01 23:40:00,"B","Attach" +"8297",2018-01-02 00:00:00,"C","Debug" +"8298",2018-01-02 00:20:00,"B","Warn" +"8299",2018-01-02 00:40:00,"C","Error" +"8300",2018-01-02 01:00:00,"C","Limit" +"8301",2018-01-02 01:20:00,"C","Error" +"8302",2018-01-02 01:40:00,"A","Attach" +"8303",2018-01-02 02:00:00,"B","Error" +"8304",2018-01-02 02:20:00,"B","Warn" +"8305",2018-01-02 02:40:00,"A","Error" +"8306",2018-01-02 03:00:00,"A","No clue" +"8307",2018-01-02 03:20:00,"A","Check with author" +"8308",2018-01-02 03:40:00,"C","Warn" +"8309",2018-01-02 04:00:00,"A","Attach" +"8310",2018-01-02 04:20:00,"A","Warn" +"8311",2018-01-02 04:40:00,"A","Attach" +"8312",2018-01-02 05:00:00,"A","Debug" +"8313",2018-01-02 05:20:00,"A","Error" +"8314",2018-01-02 05:40:00,"B","Check with author" +"8315",2018-01-02 06:00:00,"B","Warn" +"8316",2018-01-02 06:20:00,"C","Limit" +"8317",2018-01-02 06:40:00,"A","Debug" +"8318",2018-01-02 07:00:00,"B","Debug" +"8319",2018-01-02 07:20:00,"A","No clue" +"8320",2018-01-02 07:40:00,"B","Error" +"8321",2018-01-02 08:00:00,"C","Error" +"8322",2018-01-02 08:20:00,"C","Attach" +"8323",2018-01-02 08:40:00,"C","Warn" +"8324",2018-01-02 09:00:00,"B","Error" +"8325",2018-01-02 09:20:00,"B","No clue" +"8326",2018-01-02 09:40:00,"A","Debug" +"8327",2018-01-02 10:00:00,"B","Check with author" +"8328",2018-01-02 10:20:00,"A","Check with author" +"8329",2018-01-02 10:40:00,"B","Attach" +"8330",2018-01-02 11:00:00,"A","Warn" +"8331",2018-01-02 11:20:00,"B","Check with author" +"8332",2018-01-02 11:40:00,"B","Attach" +"8333",2018-01-02 12:00:00,"C","Limit" +"8334",2018-01-02 12:20:00,"A","Debug" +"8335",2018-01-02 12:40:00,"C","No clue" +"8336",2018-01-02 13:00:00,"A","No clue" +"8337",2018-01-02 13:20:00,"C","Error" +"8338",2018-01-02 13:40:00,"B","Attach" +"8339",2018-01-02 14:00:00,"B","Error" +"8340",2018-01-02 14:20:00,"C","No clue" +"8341",2018-01-02 14:40:00,"B","Limit" +"8342",2018-01-02 15:00:00,"C","Check with author" +"8343",2018-01-02 15:20:00,"C","Attach" +"8344",2018-01-02 15:40:00,"A","Warn" +"8345",2018-01-02 16:00:00,"A","Check with author" +"8346",2018-01-02 16:20:00,"A","Attach" +"8347",2018-01-02 16:40:00,"C","Attach" +"8348",2018-01-02 17:00:00,"A","Attach" +"8349",2018-01-02 17:20:00,"C","Check with author" +"8350",2018-01-02 17:40:00,"B","Check with author" +"8351",2018-01-02 18:00:00,"A","No clue" +"8352",2018-01-02 18:20:00,"C","Error" +"8353",2018-01-02 18:40:00,"C","Check with author" +"8354",2018-01-02 19:00:00,"A","Limit" +"8355",2018-01-02 19:20:00,"A","No clue" +"8356",2018-01-02 19:40:00,"C","Limit" +"8357",2018-01-02 20:00:00,"A","Check with author" +"8358",2018-01-02 20:20:00,"C","Warn" +"8359",2018-01-02 20:40:00,"B","Limit" +"8360",2018-01-02 21:00:00,"A","Attach" +"8361",2018-01-02 21:20:00,"C","Check with author" +"8362",2018-01-02 21:40:00,"C","Attach" +"8363",2018-01-02 22:00:00,"A","No clue" +"8364",2018-01-02 22:20:00,"A","Debug" +"8365",2018-01-02 22:40:00,"C","Limit" +"8366",2018-01-02 23:00:00,"A","Error" +"8367",2018-01-02 23:20:00,"B","Error" +"8368",2018-01-02 23:40:00,"A","Limit" +"8369",2018-01-03 00:00:00,"A","No clue" +"8370",2018-01-03 00:20:00,"C","Attach" +"8371",2018-01-03 00:40:00,"A","Warn" +"8372",2018-01-03 01:00:00,"C","Check with author" +"8373",2018-01-03 01:20:00,"C","Error" +"8374",2018-01-03 01:40:00,"C","Check with author" +"8375",2018-01-03 02:00:00,"A","Attach" +"8376",2018-01-03 02:20:00,"A","Limit" +"8377",2018-01-03 02:40:00,"A","Debug" +"8378",2018-01-03 03:00:00,"C","Limit" +"8379",2018-01-03 03:20:00,"C","Attach" +"8380",2018-01-03 03:40:00,"A","No clue" +"8381",2018-01-03 04:00:00,"C","Debug" +"8382",2018-01-03 04:20:00,"A","Attach" +"8383",2018-01-03 04:40:00,"C","Warn" +"8384",2018-01-03 05:00:00,"B","Error" +"8385",2018-01-03 05:20:00,"C","No clue" +"8386",2018-01-03 05:40:00,"B","Debug" +"8387",2018-01-03 06:00:00,"B","No clue" +"8388",2018-01-03 06:20:00,"B","Attach" +"8389",2018-01-03 06:40:00,"A","Debug" +"8390",2018-01-03 07:00:00,"C","Check with author" +"8391",2018-01-03 07:20:00,"A","Warn" +"8392",2018-01-03 07:40:00,"A","Warn" +"8393",2018-01-03 08:00:00,"C","No clue" +"8394",2018-01-03 08:20:00,"C","Error" +"8395",2018-01-03 08:40:00,"B","Attach" +"8396",2018-01-03 09:00:00,"B","No clue" +"8397",2018-01-03 09:20:00,"A","Warn" +"8398",2018-01-03 09:40:00,"C","Warn" +"8399",2018-01-03 10:00:00,"A","Attach" +"8400",2018-01-03 10:20:00,"B","Warn" +"8401",2018-01-03 10:40:00,"A","Attach" +"8402",2018-01-03 11:00:00,"C","No clue" +"8403",2018-01-03 11:20:00,"C","No clue" +"8404",2018-01-03 11:40:00,"A","Warn" +"8405",2018-01-03 12:00:00,"B","No clue" +"8406",2018-01-03 12:20:00,"B","Limit" +"8407",2018-01-03 12:40:00,"C","Warn" +"8408",2018-01-03 13:00:00,"C","Limit" +"8409",2018-01-03 13:20:00,"B","No clue" +"8410",2018-01-03 13:40:00,"C","Warn" +"8411",2018-01-03 14:00:00,"A","Error" +"8412",2018-01-03 14:20:00,"B","No clue" +"8413",2018-01-03 14:40:00,"B","No clue" +"8414",2018-01-03 15:00:00,"C","Error" +"8415",2018-01-03 15:20:00,"B","Check with author" +"8416",2018-01-03 15:40:00,"A","Check with author" +"8417",2018-01-03 16:00:00,"B","Check with author" +"8418",2018-01-03 16:20:00,"C","Warn" +"8419",2018-01-03 16:40:00,"B","No clue" +"8420",2018-01-03 17:00:00,"B","Attach" +"8421",2018-01-03 17:20:00,"B","Limit" +"8422",2018-01-03 17:40:00,"A","Check with author" +"8423",2018-01-03 18:00:00,"C","Warn" +"8424",2018-01-03 18:20:00,"A","Debug" +"8425",2018-01-03 18:40:00,"C","Attach" +"8426",2018-01-03 19:00:00,"C","Debug" +"8427",2018-01-03 19:20:00,"C","Limit" +"8428",2018-01-03 19:40:00,"A","No clue" +"8429",2018-01-03 20:00:00,"C","Attach" +"8430",2018-01-03 20:20:00,"B","Attach" +"8431",2018-01-03 20:40:00,"A","No clue" +"8432",2018-01-03 21:00:00,"A","Check with author" +"8433",2018-01-03 21:20:00,"B","No clue" +"8434",2018-01-03 21:40:00,"B","Check with author" +"8435",2018-01-03 22:00:00,"B","Error" +"8436",2018-01-03 22:20:00,"C","Attach" +"8437",2018-01-03 22:40:00,"A","Debug" +"8438",2018-01-03 23:00:00,"B","Limit" +"8439",2018-01-03 23:20:00,"A","Debug" +"8440",2018-01-03 23:40:00,"B","Check with author" +"8441",2018-01-04 00:00:00,"A","Error" +"8442",2018-01-04 00:20:00,"B","Warn" +"8443",2018-01-04 00:40:00,"B","Check with author" +"8444",2018-01-04 01:00:00,"B","Debug" +"8445",2018-01-04 01:20:00,"C","Limit" +"8446",2018-01-04 01:40:00,"C","Error" +"8447",2018-01-04 02:00:00,"A","Check with author" +"8448",2018-01-04 02:20:00,"A","Debug" +"8449",2018-01-04 02:40:00,"A","Debug" +"8450",2018-01-04 03:00:00,"B","Error" +"8451",2018-01-04 03:20:00,"B","Check with author" +"8452",2018-01-04 03:40:00,"A","Check with author" +"8453",2018-01-04 04:00:00,"C","No clue" +"8454",2018-01-04 04:20:00,"B","Attach" +"8455",2018-01-04 04:40:00,"C","Check with author" +"8456",2018-01-04 05:00:00,"C","Limit" +"8457",2018-01-04 05:20:00,"C","Debug" +"8458",2018-01-04 05:40:00,"A","Warn" +"8459",2018-01-04 06:00:00,"B","Check with author" +"8460",2018-01-04 06:20:00,"C","No clue" +"8461",2018-01-04 06:40:00,"B","Warn" +"8462",2018-01-04 07:00:00,"C","Debug" +"8463",2018-01-04 07:20:00,"A","Attach" +"8464",2018-01-04 07:40:00,"A","Attach" +"8465",2018-01-04 08:00:00,"B","No clue" +"8466",2018-01-04 08:20:00,"B","Debug" +"8467",2018-01-04 08:40:00,"A","Attach" +"8468",2018-01-04 09:00:00,"C","Debug" +"8469",2018-01-04 09:20:00,"C","Limit" +"8470",2018-01-04 09:40:00,"B","Attach" +"8471",2018-01-04 10:00:00,"A","Warn" +"8472",2018-01-04 10:20:00,"B","No clue" +"8473",2018-01-04 10:40:00,"A","Debug" +"8474",2018-01-04 11:00:00,"B","Warn" +"8475",2018-01-04 11:20:00,"A","Check with author" +"8476",2018-01-04 11:40:00,"C","Debug" +"8477",2018-01-04 12:00:00,"C","Limit" +"8478",2018-01-04 12:20:00,"C","Limit" +"8479",2018-01-04 12:40:00,"A","No clue" +"8480",2018-01-04 13:00:00,"A","Warn" +"8481",2018-01-04 13:20:00,"C","Check with author" +"8482",2018-01-04 13:40:00,"C","Error" +"8483",2018-01-04 14:00:00,"C","Debug" +"8484",2018-01-04 14:20:00,"C","Debug" +"8485",2018-01-04 14:40:00,"B","Error" +"8486",2018-01-04 15:00:00,"C","Attach" +"8487",2018-01-04 15:20:00,"C","Limit" +"8488",2018-01-04 15:40:00,"C","Warn" +"8489",2018-01-04 16:00:00,"A","Check with author" +"8490",2018-01-04 16:20:00,"A","Attach" +"8491",2018-01-04 16:40:00,"B","Error" +"8492",2018-01-04 17:00:00,"B","Warn" +"8493",2018-01-04 17:20:00,"C","No clue" +"8494",2018-01-04 17:40:00,"C","Error" +"8495",2018-01-04 18:00:00,"B","Debug" +"8496",2018-01-04 18:20:00,"B","No clue" +"8497",2018-01-04 18:40:00,"B","Debug" +"8498",2018-01-04 19:00:00,"B","Limit" +"8499",2018-01-04 19:20:00,"B","Error" +"8500",2018-01-04 19:40:00,"A","Attach" +"8501",2018-01-04 20:00:00,"A","Attach" +"8502",2018-01-04 20:20:00,"A","Check with author" +"8503",2018-01-04 20:40:00,"C","Warn" +"8504",2018-01-04 21:00:00,"B","Warn" +"8505",2018-01-04 21:20:00,"B","Debug" +"8506",2018-01-04 21:40:00,"A","Attach" +"8507",2018-01-04 22:00:00,"A","Error" +"8508",2018-01-04 22:20:00,"C","Attach" +"8509",2018-01-04 22:40:00,"A","Warn" +"8510",2018-01-04 23:00:00,"A","Debug" +"8511",2018-01-04 23:20:00,"A","Check with author" +"8512",2018-01-04 23:40:00,"C","No clue" +"8513",2018-01-05 00:00:00,"A","No clue" +"8514",2018-01-05 00:20:00,"A","No clue" +"8515",2018-01-05 00:40:00,"C","No clue" +"8516",2018-01-05 01:00:00,"C","No clue" +"8517",2018-01-05 01:20:00,"B","Warn" +"8518",2018-01-05 01:40:00,"C","Warn" +"8519",2018-01-05 02:00:00,"A","Limit" +"8520",2018-01-05 02:20:00,"C","Attach" +"8521",2018-01-05 02:40:00,"A","Debug" +"8522",2018-01-05 03:00:00,"C","Error" +"8523",2018-01-05 03:20:00,"A","Check with author" +"8524",2018-01-05 03:40:00,"C","Error" +"8525",2018-01-05 04:00:00,"C","Limit" +"8526",2018-01-05 04:20:00,"B","Error" +"8527",2018-01-05 04:40:00,"A","Warn" +"8528",2018-01-05 05:00:00,"B","Attach" +"8529",2018-01-05 05:20:00,"B","Attach" +"8530",2018-01-05 05:40:00,"C","No clue" +"8531",2018-01-05 06:00:00,"A","Warn" +"8532",2018-01-05 06:20:00,"B","Warn" +"8533",2018-01-05 06:40:00,"B","No clue" +"8534",2018-01-05 07:00:00,"B","Debug" +"8535",2018-01-05 07:20:00,"C","Check with author" +"8536",2018-01-05 07:40:00,"C","Error" +"8537",2018-01-05 08:00:00,"A","Error" +"8538",2018-01-05 08:20:00,"A","Error" +"8539",2018-01-05 08:40:00,"B","Debug" +"8540",2018-01-05 09:00:00,"C","Debug" +"8541",2018-01-05 09:20:00,"A","Error" +"8542",2018-01-05 09:40:00,"C","Attach" +"8543",2018-01-05 10:00:00,"C","Debug" +"8544",2018-01-05 10:20:00,"A","Warn" +"8545",2018-01-05 10:40:00,"C","Limit" +"8546",2018-01-05 11:00:00,"A","Error" +"8547",2018-01-05 11:20:00,"C","Debug" +"8548",2018-01-05 11:40:00,"B","Error" +"8549",2018-01-05 12:00:00,"A","Debug" +"8550",2018-01-05 12:20:00,"C","No clue" +"8551",2018-01-05 12:40:00,"B","Check with author" +"8552",2018-01-05 13:00:00,"C","Limit" +"8553",2018-01-05 13:20:00,"C","Check with author" +"8554",2018-01-05 13:40:00,"C","Warn" +"8555",2018-01-05 14:00:00,"A","Error" +"8556",2018-01-01 12:00:00,"C","Warn" +"8557",2018-01-01 12:20:00,"A","Limit" +"8558",2018-01-01 12:40:00,"A","Limit" +"8559",2018-01-01 13:00:00,"B","No clue" +"8560",2018-01-01 13:20:00,"C","Warn" +"8561",2018-01-01 13:40:00,"C","Debug" +"8562",2018-01-01 14:00:00,"C","Attach" +"8563",2018-01-01 14:20:00,"C","Limit" +"8564",2018-01-01 14:40:00,"B","Limit" +"8565",2018-01-01 15:00:00,"B","Warn" +"8566",2018-01-01 15:20:00,"A","No clue" +"8567",2018-01-01 15:40:00,"B","Warn" +"8568",2018-01-01 16:00:00,"C","Limit" +"8569",2018-01-01 16:20:00,"C","Warn" +"8570",2018-01-01 16:40:00,"A","Check with author" +"8571",2018-01-01 17:00:00,"B","No clue" +"8572",2018-01-01 17:20:00,"C","Check with author" +"8573",2018-01-01 17:40:00,"C","Debug" +"8574",2018-01-01 18:00:00,"C","Check with author" +"8575",2018-01-01 18:20:00,"A","Debug" +"8576",2018-01-01 18:40:00,"C","Debug" +"8577",2018-01-01 19:00:00,"B","Error" +"8578",2018-01-01 19:20:00,"B","Check with author" +"8579",2018-01-01 19:40:00,"C","Limit" +"8580",2018-01-01 20:00:00,"B","No clue" +"8581",2018-01-01 20:20:00,"B","Error" +"8582",2018-01-01 20:40:00,"A","No clue" +"8583",2018-01-01 21:00:00,"B","No clue" +"8584",2018-01-01 21:20:00,"A","Error" +"8585",2018-01-01 21:40:00,"B","Attach" +"8586",2018-01-01 22:00:00,"C","Warn" +"8587",2018-01-01 22:20:00,"C","Warn" +"8588",2018-01-01 22:40:00,"A","Attach" +"8589",2018-01-01 23:00:00,"C","Attach" +"8590",2018-01-01 23:20:00,"B","Attach" +"8591",2018-01-01 23:40:00,"A","Debug" +"8592",2018-01-02 00:00:00,"C","Error" +"8593",2018-01-02 00:20:00,"A","Limit" +"8594",2018-01-02 00:40:00,"A","Attach" +"8595",2018-01-02 01:00:00,"C","Check with author" +"8596",2018-01-02 01:20:00,"A","Attach" +"8597",2018-01-02 01:40:00,"C","Error" +"8598",2018-01-02 02:00:00,"C","Check with author" +"8599",2018-01-02 02:20:00,"A","Attach" +"8600",2018-01-02 02:40:00,"A","No clue" +"8601",2018-01-02 03:00:00,"A","Check with author" +"8602",2018-01-02 03:20:00,"B","Debug" +"8603",2018-01-02 03:40:00,"C","Limit" +"8604",2018-01-02 04:00:00,"A","Error" +"8605",2018-01-02 04:20:00,"A","Warn" +"8606",2018-01-02 04:40:00,"C","No clue" +"8607",2018-01-02 05:00:00,"A","Debug" +"8608",2018-01-02 05:20:00,"B","No clue" +"8609",2018-01-02 05:40:00,"B","Attach" +"8610",2018-01-02 06:00:00,"B","Check with author" +"8611",2018-01-02 06:20:00,"C","No clue" +"8612",2018-01-02 06:40:00,"B","Attach" +"8613",2018-01-02 07:00:00,"B","Limit" +"8614",2018-01-02 07:20:00,"B","Error" +"8615",2018-01-02 07:40:00,"A","No clue" +"8616",2018-01-02 08:00:00,"B","Check with author" +"8617",2018-01-02 08:20:00,"B","No clue" +"8618",2018-01-02 08:40:00,"A","No clue" +"8619",2018-01-02 09:00:00,"B","Attach" +"8620",2018-01-02 09:20:00,"C","Check with author" +"8621",2018-01-02 09:40:00,"C","Check with author" +"8622",2018-01-02 10:00:00,"A","Limit" +"8623",2018-01-02 10:20:00,"B","Warn" +"8624",2018-01-02 10:40:00,"B","No clue" +"8625",2018-01-02 11:00:00,"A","Warn" +"8626",2018-01-02 11:20:00,"A","Error" +"8627",2018-01-02 11:40:00,"C","No clue" +"8628",2018-01-02 12:00:00,"C","Debug" +"8629",2018-01-02 12:20:00,"B","No clue" +"8630",2018-01-02 12:40:00,"B","Limit" +"8631",2018-01-02 13:00:00,"B","Attach" +"8632",2018-01-02 13:20:00,"B","Attach" +"8633",2018-01-02 13:40:00,"C","Warn" +"8634",2018-01-02 14:00:00,"B","Limit" +"8635",2018-01-02 14:20:00,"B","Attach" +"8636",2018-01-02 14:40:00,"A","Warn" +"8637",2018-01-02 15:00:00,"A","No clue" +"8638",2018-01-02 15:20:00,"A","Debug" +"8639",2018-01-02 15:40:00,"A","Error" +"8640",2018-01-02 16:00:00,"B","No clue" +"8641",2018-01-02 16:20:00,"B","Limit" +"8642",2018-01-02 16:40:00,"A","Check with author" +"8643",2018-01-02 17:00:00,"B","Debug" +"8644",2018-01-02 17:20:00,"B","Error" +"8645",2018-01-02 17:40:00,"B","Debug" +"8646",2018-01-02 18:00:00,"C","Check with author" +"8647",2018-01-02 18:20:00,"C","Limit" +"8648",2018-01-02 18:40:00,"A","Limit" +"8649",2018-01-02 19:00:00,"B","Error" +"8650",2018-01-02 19:20:00,"B","No clue" +"8651",2018-01-02 19:40:00,"C","Debug" +"8652",2018-01-02 20:00:00,"A","Limit" +"8653",2018-01-02 20:20:00,"B","Warn" +"8654",2018-01-02 20:40:00,"C","Warn" +"8655",2018-01-02 21:00:00,"C","Check with author" +"8656",2018-01-02 21:20:00,"B","Error" +"8657",2018-01-02 21:40:00,"B","Debug" +"8658",2018-01-02 22:00:00,"B","No clue" +"8659",2018-01-02 22:20:00,"A","Attach" +"8660",2018-01-02 22:40:00,"A","Debug" +"8661",2018-01-02 23:00:00,"A","Attach" +"8662",2018-01-02 23:20:00,"B","Attach" +"8663",2018-01-02 23:40:00,"A","No clue" +"8664",2018-01-03 00:00:00,"C","Limit" +"8665",2018-01-03 00:20:00,"A","Check with author" +"8666",2018-01-03 00:40:00,"C","Debug" +"8667",2018-01-03 01:00:00,"A","Check with author" +"8668",2018-01-03 01:20:00,"B","Limit" +"8669",2018-01-03 01:40:00,"C","Warn" +"8670",2018-01-03 02:00:00,"C","Error" +"8671",2018-01-03 02:20:00,"A","Limit" +"8672",2018-01-03 02:40:00,"A","No clue" +"8673",2018-01-03 03:00:00,"B","Debug" +"8674",2018-01-03 03:20:00,"A","Error" +"8675",2018-01-03 03:40:00,"B","Limit" +"8676",2018-01-03 04:00:00,"A","Check with author" +"8677",2018-01-03 04:20:00,"B","Check with author" +"8678",2018-01-03 04:40:00,"C","Debug" +"8679",2018-01-03 05:00:00,"B","Limit" +"8680",2018-01-03 05:20:00,"A","Debug" +"8681",2018-01-03 05:40:00,"A","Check with author" +"8682",2018-01-03 06:00:00,"A","Limit" +"8683",2018-01-03 06:20:00,"B","Attach" +"8684",2018-01-03 06:40:00,"B","Error" +"8685",2018-01-03 07:00:00,"B","No clue" +"8686",2018-01-03 07:20:00,"C","Limit" +"8687",2018-01-03 07:40:00,"A","Error" +"8688",2018-01-03 08:00:00,"C","Warn" +"8689",2018-01-03 08:20:00,"B","Limit" +"8690",2018-01-03 08:40:00,"A","Error" +"8691",2018-01-03 09:00:00,"A","Limit" +"8692",2018-01-03 09:20:00,"C","Error" +"8693",2018-01-03 09:40:00,"C","No clue" +"8694",2018-01-03 10:00:00,"C","Check with author" +"8695",2018-01-03 10:20:00,"C","Error" +"8696",2018-01-03 10:40:00,"C","Check with author" +"8697",2018-01-03 11:00:00,"B","Attach" +"8698",2018-01-03 11:20:00,"A","Warn" +"8699",2018-01-03 11:40:00,"B","Attach" +"8700",2018-01-03 12:00:00,"A","Attach" +"8701",2018-01-03 12:20:00,"A","No clue" +"8702",2018-01-03 12:40:00,"C","Limit" +"8703",2018-01-03 13:00:00,"B","Error" +"8704",2018-01-03 13:20:00,"A","Attach" +"8705",2018-01-03 13:40:00,"B","Check with author" +"8706",2018-01-03 14:00:00,"A","Check with author" +"8707",2018-01-03 14:20:00,"A","Warn" +"8708",2018-01-03 14:40:00,"A","Error" +"8709",2018-01-03 15:00:00,"A","Attach" +"8710",2018-01-03 15:20:00,"C","Limit" +"8711",2018-01-03 15:40:00,"B","Check with author" +"8712",2018-01-03 16:00:00,"B","Warn" +"8713",2018-01-03 16:20:00,"A","Warn" +"8714",2018-01-03 16:40:00,"B","Attach" +"8715",2018-01-03 17:00:00,"C","Check with author" +"8716",2018-01-03 17:20:00,"C","Attach" +"8717",2018-01-03 17:40:00,"A","Error" +"8718",2018-01-03 18:00:00,"B","Warn" +"8719",2018-01-03 18:20:00,"B","Check with author" +"8720",2018-01-03 18:40:00,"B","Debug" +"8721",2018-01-03 19:00:00,"B","Attach" +"8722",2018-01-03 19:20:00,"C","Attach" +"8723",2018-01-03 19:40:00,"B","Warn" +"8724",2018-01-03 20:00:00,"C","Check with author" +"8725",2018-01-03 20:20:00,"C","Attach" +"8726",2018-01-03 20:40:00,"C","Error" +"8727",2018-01-03 21:00:00,"A","Warn" +"8728",2018-01-03 21:20:00,"B","Attach" +"8729",2018-01-03 21:40:00,"A","No clue" +"8730",2018-01-03 22:00:00,"A","Attach" +"8731",2018-01-03 22:20:00,"A","Check with author" +"8732",2018-01-03 22:40:00,"B","Check with author" +"8733",2018-01-03 23:00:00,"B","Warn" +"8734",2018-01-03 23:20:00,"A","Warn" +"8735",2018-01-03 23:40:00,"B","Attach" +"8736",2018-01-04 00:00:00,"A","Limit" +"8737",2018-01-04 00:20:00,"A","Check with author" +"8738",2018-01-04 00:40:00,"A","No clue" +"8739",2018-01-04 01:00:00,"C","Limit" +"8740",2018-01-04 01:20:00,"A","Error" +"8741",2018-01-04 01:40:00,"B","Limit" +"8742",2018-01-04 02:00:00,"B","Attach" +"8743",2018-01-04 02:20:00,"B","Warn" +"8744",2018-01-04 02:40:00,"B","Check with author" +"8745",2018-01-04 03:00:00,"B","Error" +"8746",2018-01-04 03:20:00,"C","Warn" +"8747",2018-01-04 03:40:00,"A","Debug" +"8748",2018-01-04 04:00:00,"A","Debug" +"8749",2018-01-04 04:20:00,"B","Error" +"8750",2018-01-04 04:40:00,"B","Attach" +"8751",2018-01-04 05:00:00,"C","Check with author" +"8752",2018-01-04 05:20:00,"B","Error" +"8753",2018-01-04 05:40:00,"B","Check with author" +"8754",2018-01-04 06:00:00,"B","Attach" +"8755",2018-01-04 06:20:00,"B","Limit" +"8756",2018-01-04 06:40:00,"C","Warn" +"8757",2018-01-04 07:00:00,"A","Check with author" +"8758",2018-01-04 07:20:00,"C","Attach" +"8759",2018-01-04 07:40:00,"B","Limit" +"8760",2018-01-04 08:00:00,"C","Check with author" +"8761",2018-01-04 08:20:00,"C","Check with author" +"8762",2018-01-04 08:40:00,"A","Limit" +"8763",2018-01-04 09:00:00,"B","Check with author" +"8764",2018-01-04 09:20:00,"C","No clue" +"8765",2018-01-04 09:40:00,"A","Check with author" +"8766",2018-01-04 10:00:00,"A","Error" +"8767",2018-01-04 10:20:00,"C","Check with author" +"8768",2018-01-04 10:40:00,"C","No clue" +"8769",2018-01-04 11:00:00,"B","Check with author" +"8770",2018-01-04 11:20:00,"C","Warn" +"8771",2018-01-04 11:40:00,"A","Limit" +"8772",2018-01-04 12:00:00,"B","Debug" +"8773",2018-01-04 12:20:00,"A","Attach" +"8774",2018-01-04 12:40:00,"B","Limit" +"8775",2018-01-04 13:00:00,"B","Debug" +"8776",2018-01-04 13:20:00,"A","Check with author" +"8777",2018-01-04 13:40:00,"B","Limit" +"8778",2018-01-04 14:00:00,"C","Limit" +"8779",2018-01-04 14:20:00,"A","Warn" +"8780",2018-01-04 14:40:00,"B","Error" +"8781",2018-01-04 15:00:00,"C","Warn" +"8782",2018-01-04 15:20:00,"A","Error" +"8783",2018-01-04 15:40:00,"C","Warn" +"8784",2018-01-04 16:00:00,"C","Attach" +"8785",2018-01-04 16:20:00,"C","Warn" +"8786",2018-01-04 16:40:00,"A","Error" +"8787",2018-01-04 17:00:00,"B","Error" +"8788",2018-01-04 17:20:00,"B","Limit" +"8789",2018-01-04 17:40:00,"A","Check with author" +"8790",2018-01-04 18:00:00,"B","No clue" +"8791",2018-01-04 18:20:00,"A","Warn" +"8792",2018-01-04 18:40:00,"B","Check with author" +"8793",2018-01-04 19:00:00,"B","Error" +"8794",2018-01-04 19:20:00,"B","No clue" +"8795",2018-01-04 19:40:00,"A","Warn" +"8796",2018-01-04 20:00:00,"C","Error" +"8797",2018-01-04 20:20:00,"C","Debug" +"8798",2018-01-04 20:40:00,"A","Limit" +"8799",2018-01-04 21:00:00,"C","Check with author" +"8800",2018-01-04 21:20:00,"B","Error" +"8801",2018-01-04 21:40:00,"A","Attach" +"8802",2018-01-04 22:00:00,"C","No clue" +"8803",2018-01-04 22:20:00,"C","Attach" +"8804",2018-01-04 22:40:00,"B","No clue" +"8805",2018-01-04 23:00:00,"A","Error" +"8806",2018-01-04 23:20:00,"B","Attach" +"8807",2018-01-04 23:40:00,"A","Attach" +"8808",2018-01-05 00:00:00,"C","Error" +"8809",2018-01-05 00:20:00,"A","Attach" +"8810",2018-01-05 00:40:00,"C","Attach" +"8811",2018-01-05 01:00:00,"A","Check with author" +"8812",2018-01-05 01:20:00,"B","Limit" +"8813",2018-01-05 01:40:00,"A","Error" +"8814",2018-01-05 02:00:00,"B","Attach" +"8815",2018-01-05 02:20:00,"A","No clue" +"8816",2018-01-05 02:40:00,"C","No clue" +"8817",2018-01-05 03:00:00,"A","Warn" +"8818",2018-01-05 03:20:00,"A","Limit" +"8819",2018-01-05 03:40:00,"A","Check with author" +"8820",2018-01-05 04:00:00,"B","Warn" +"8821",2018-01-05 04:20:00,"C","No clue" +"8822",2018-01-05 04:40:00,"C","Warn" +"8823",2018-01-05 05:00:00,"A","Attach" +"8824",2018-01-05 05:20:00,"C","Warn" +"8825",2018-01-05 05:40:00,"B","Check with author" +"8826",2018-01-05 06:00:00,"A","Check with author" +"8827",2018-01-05 06:20:00,"A","Attach" +"8828",2018-01-05 06:40:00,"C","Attach" +"8829",2018-01-05 07:00:00,"B","Warn" +"8830",2018-01-05 07:20:00,"B","No clue" +"8831",2018-01-05 07:40:00,"C","Debug" +"8832",2018-01-05 08:00:00,"A","Check with author" +"8833",2018-01-05 08:20:00,"C","No clue" +"8834",2018-01-05 08:40:00,"A","Warn" +"8835",2018-01-05 09:00:00,"B","Error" +"8836",2018-01-05 09:20:00,"B","Attach" +"8837",2018-01-05 09:40:00,"A","Debug" +"8838",2018-01-05 10:00:00,"C","Debug" +"8839",2018-01-05 10:20:00,"B","Debug" +"8840",2018-01-05 10:40:00,"A","Warn" +"8841",2018-01-05 11:00:00,"C","Warn" +"8842",2018-01-05 11:20:00,"C","Error" +"8843",2018-01-05 11:40:00,"C","Warn" +"8844",2018-01-05 12:00:00,"A","Error" +"8845",2018-01-05 12:20:00,"C","No clue" +"8846",2018-01-05 12:40:00,"B","Warn" +"8847",2018-01-05 13:00:00,"B","Debug" +"8848",2018-01-05 13:20:00,"B","Limit" +"8849",2018-01-05 13:40:00,"C","Error" +"8850",2018-01-05 14:00:00,"C","Warn" diff --git a/taganomaly/global.R b/taganomaly/global.R new file mode 100644 index 0000000..5f7b3d1 --- /dev/null +++ b/taganomaly/global.R @@ -0,0 +1,10 @@ +if(!require(shiny)) install.packages('shiny') +if(!require(shinythemes)) install.packages('shinythemes') +if(!require(DT)) install.packages('DT') +if(!require(dplyr)) install.packages('dplyr') +if(!require(ggplot2)) install.packages('ggplot2') +if(!require(gridExtra)) install.packages('gridExtra') +if(!require(shinydashboard)) install.packages('shinydashboard') +if(!require(parsedate)) install.packages('parsedate') +if(!require(devtools)) install.packages('devtools') +if(!require(AnomalyDetection)) devtools::install_github('twitter/AnomalyDetection') diff --git a/taganomaly/server.R b/taganomaly/server.R new file mode 100644 index 0000000..107056e --- /dev/null +++ b/taganomaly/server.R @@ -0,0 +1,475 @@ +library(shiny) +library(dplyr) +library(gridExtra) +library(parsedate) # for cases when the provided date wasn't in a specific pattern +library(DT) +library(ggplot2) + + +## Extend the max file upload size +options(shiny.maxRequestSize=150*1024^2) + + +## Shiny server function +server <- function(input,output, session) { + + ## Reactive values + # A boolean checking if the provided dataset contains multiple categories or not. This affects the UI + hasCategories <- reactiveVal(value = T,label='hasCategories') + + # A numeric holding the time series gap (difference between two consecutive samples) as inferred from the provided dataset + timeSeriesGap <- reactiveVal(value = 12*60*60,label='timeSeriesGap') + + # Whether the first column holds a numeric value (TRUE), or a date value (FALSE) + numericTimestamp <- reactiveVal(value = F,label = 'numericTimestamp') + + ####---- Time-Series data handling ----#### + + ## Read CSV input file + tryReadFile <- function() { + out <- tryCatch( + { + read.csv(input$timeseriesfile$datapath,stringsAsFactors = F) + }, + error=function(cond) { + message("Failed to load file. Message:") + message(cond) + return(NULL) + }, + warning=function(cond) { + message("Warning:") + message(cond) + return(NULL) + } + ) + return(out) + } + + padMissingDates <- function(dataset,padValue = 0, timeSeriesGapValue){ + category <- dataset[1,'category'] %>% unlist() + + pad <- data.frame(date = seq(from = min(dataset$date),to = max(dataset$date),by = timeSeriesGapValue)) + + full_df <- full_join(dataset,pad) %>% mutate_all(funs(ifelse(is.na(.),padValue,.)))%>% arrange(date) + + full_df$date <- as.POSIXct(full_df$date,tz='UTC',origin = "1970-01-01") + full_df$category <- category + full_df$sampleId <- ifelse(full_df$sampleId == 0,NA,full_df$sampleId) + dataset <- full_df + + dataset + } + + ## Get time-series dataset from file upload + getDataset <- reactive({ + if(is.null(input$timeseriesfile)) return(NULL) + + dataset <- tryReadFile() + + validate( + need(nrow(dataset) > 0, "Input file is empty"), + need(('date' %in% names(dataset)),"date column not found. Consider renaming your timestamp column to date"), + need(('value' %in% names(dataset)),"value column not found. Consider renaming your value column to value") + + ) + dataset + }) + + + getTimeSeriesDataset <- reactive({ + dataset <- getDataset() + if(is.null(dataset)) return(NULL) + + if(is.numeric(dataset$date)){ + numericTimestamp(TRUE) + + } + else{ + + ## Parse date to POSIXct + dataset$new_date <- as.POSIXct(dataset$date,tz = 'UTC',format = '%Y-%m-%d %H:%M:%S') + + ## If parsing failed, use parsedate to automatically parse the input date + if(all(is.na(dataset$new_date))){ + warning('Error parsing date column, using parsedate to try parsing the date') + library(parsedate) + dataset$date <- parse_date(dataset$date) + } else{ + dataset$date <- dataset$new_date + + } + + dataset$new_date <- NULL + + } + + ## Check whether the time series has multiple categories + if(is.null(dataset$category)){ + warning('Category not found, assuming one category') + hasCategories(FALSE) + ## Setup the time series gap as the median of all gaps in the time series + dataset <- dataset %>% arrange(date) + timeSeriesGap(median(diff(as.numeric(dataset$date)))) + + } else{ + ## Setup the time series gap + oneCategory <- dataset %>% filter(category == dataset[1,'category']) %>% arrange(date) + gap <- diff(as.numeric(oneCategory$date))[1] + timeSeriesGap(gap) + } + + dataset$sampleId <- 1:nrow(dataset) + dataset + }) + + ## Get a dataset for a specific category + getCategoryDataset <- reactive({ + ts <- getTimeSeriesDataset() + if(is.null(ts)) return(NULL) + + if(hasCategories()==FALSE){ + return(ts) + } + cate <- input$category + if(is.null(cate)) return(NULL) + + dataset <- ts %>% filter(category == cate) + + ## Fill missing values in time series if requested (Fill with 0 dates in which no value exists) + if(input$interpolate){ + dataset <- padMissingDates(dataset,timeSeriesGapValue = timeSeriesGap()) + } + + dataset + }) + + ## Get the entire dataset, filtered by the slider range + getTimeFilteredDataset <- reactive({ + dataset <- getTimeSeriesDataset() + if(is.null(dataset)) return(NULL) + if(is.null(input$slider)) return(NULL) + + dataset %>% filter(date >= input$slider[1], date <= input$slider[2]) + }) + + ## Get category dataset, filtered by the slider range + getTimeFilteredCategoryDataset <- reactive({ + dataset <- getCategoryDataset() + if(is.null(dataset)) return(NULL) + if(is.null(input$slider)) return(NULL) + + dataset %>% filter(date >= input$slider[1], date <= input$slider[2]) + }) + + ####---- Raw data handling ----#### + + ## Get raw data (an additional dataset for which the time-series dataset is an aggregation) + ## See R/create_sample_data.R for a script that creates demo time-series and raw datasets + getRawData <- reactive({ + cate <- input$category + + if(is.null(input$rawfile)) return(NULL) + raw <- withProgress({ + read.csv(input$rawfile$datapath,stringsAsFactors = F) + },message = "loading raw data file") + if(!numericTimestamp()){ + raw$new_date <- as.POSIXct(strptime(raw$date,format = "%Y-%m-%d %H:%M:%S",tz = 'UTC')) + + ## If parsing failed, use parsedate to automatically parse the input date + if(all(is.na(raw$new_date))){ + warning('Error parsing date column, using parsedate to try parsing the date') + library(parsedate) + raw$date <- parse_date(raw$date) + } else{ + raw$date <- raw$new_date + raw$new_date <- NULL + } + } + if(hasCategories()){ + raw <- raw %>% filter(category == cate) + } + + raw + }) + + ## get raw data for a sample selected by the user + getRawDataForSample <- reactive({ + lastclicked <- input$summaryTable_rows_selected + if(is.null(lastclicked)) return(NULL) + + raw <- getRawData() + if(is.null(raw)) stop('No raw data found for further inspection') + selected <- selectedPoints() + + categoryDataset <- getTimeFilteredCategoryDataset() + + selectedRow <- which(categoryDataset$date == selected[lastclicked,'date']) + if(selectedRow > nrow(categoryDataset)){ + nextSampleDate <- selected$date + timeSeriesGap() + } else{ + nextSampleDate <- categoryDataset[selectedRow+1,'date'] + } + if(is.null(selected)) return(NULL) + + sampleDate <- selected[lastclicked,'date'] + + #get raw data only for this window + raw <- raw %>% filter(date >= sampleDate & date < nextSampleDate, category == input$category) + + ## Select columns to show + raw <- raw %>% select(date,category,content) + raw + + }) + + + ####---- Infer time-series frequency ----#### + + ## Determine the time series frequency for graphs + observe({ + dataset <- getTimeFilteredCategoryDataset() + if(is.null(dataset)) return(NULL) + mini <- min(dataset$date) + maxi <- max(dataset$date) + diff <- as.numeric(maxi) - as.numeric(mini) + + sel <- '1 day' + if(diff < 60){ + # difference is in seconds + sel <- '1 second' + } else if(diff < 60*60){ + sel <- '1 minute' + } else if(diff < 60*60*24){ + sel <- '1 hour' + } else if(diff < 60*60*24*7){ + sel <- '1 day' + } else if(diff < 60*60*24*31){ + sel <- '1 week' + } else if(diff < 60*60*24*365){ + sel <- '1 month' + } else{ + sel <- '1 year' + } + + ## Update the UI + updateSelectInput(session, "breaks",selected = sel) + }) + + ####---- UI Components ----#### + + ## Date slider + output$slider <- renderUI({ + dataset <- getTimeSeriesDataset() + if(is.null(dataset)) return(NULL) + dataset <- dataset %>% arrange(date) + + if(numericTimestamp()){ + mini = min(dataset$date) + maxi = max(dataset$date) + } else{ + mini = as.POSIXct(min(dataset$date),origin = '1970-01-01',tz = 'UTC') + maxi = as.POSIXct(max(dataset$date),origin = '1970-01-01',tz = 'UTC') + } + sliderInput("slider","Time range",min = mini-1,max = maxi+1,value = c(mini-1,maxi+1),step = 1,width = 400) + }) + + + ## Select input for categories, based on the categories found in the time series dataset + output$category <- renderUI({ + if(hasCategories()==TRUE){ + req(input$timeseriesfile) + dataset <- getTimeSeriesDataset() + if(is.null(dataset)) return("") + selectInput("category", "Choose category:", as.list(unique(dataset$category)),selected = unique(dataset$category)[1],multiple = F) + } else{ + return(NULL) + } + }) + + ####---- Plots ----#### + + ## Main plot + output$plot <- renderPlot({ + withProgress({ + categoryDataset <- getTimeFilteredCategoryDataset() + if(is.null(categoryDataset)) return(NULL) + + g <- ggplot(categoryDataset, aes(date, value))+ geom_line(size=0.25,color="#D55E00") + geom_point(size = 0.5,shape=21,alpha=0.7) + + scale_y_continuous(labels = scales::comma) + theme_bw() + if(!numericTimestamp()){ + g <- g + scale_x_datetime(date_breaks = input$breaks) + } + g <- g + theme(axis.text.x = element_text(angle = 90, hjust = 1), + panel.grid.minor = element_blank(), + text = element_text(size = 14)) + + g + },message = "Rendering plot...") + }) + + + + + ## Capture the selected points on the graph + selectedPoints <- reactive({ + user_brush <- input$user_brush + pts <- brushedPoints(getTimeFilteredCategoryDataset(), user_brush, xvar = "date", yvar = "value") + if(is.null(pts)) return(NULL) + if(hasCategories()){ + pts %>% select(date, category, value) + } else { + pts %>% select(date, value) + } + }) + + ## Plot showing all categories + output$allplot <- renderPlot({ + + if(hasCategories()==FALSE){ + stop('This plot only shows multiple categories. No categories found in the data. Did you add a "category" column to the provided file?.') + + } + + + dataset <- getTimeFilteredDataset() + if(is.null(dataset)) stop('No dataset found.') + + categoryDataset <- getTimeFilteredCategoryDataset() + if(is.null(categoryDataset)) stop('No data found for category.') + + minDate = min(categoryDataset$date) + maxDate = max(categoryDataset$date) + + categories <- dataset %>% group_by(category) %>% summarise(perCat = sum(value)) + categories <- categories[categories$perCat > input$minPerCategory,'category'] %>% unlist() + dataset <- dataset %>% filter(category %in% categories & category != input$category) + + if(nrow(dataset) == 0) stop('no dataset found.') + + thisplot <- categoryDataset %>% filter(category == input$category) %>% + ggplot(aes(date, value)) + geom_line(stat="identity") + facet_grid(category ~.) + + ggtitle(paste0('Current category: ',input$category)) + + theme(axis.text.x = element_text(angle = 90, hjust = 1)) + + scale_y_continuous(labels = scales::comma) + + theme(axis.title.x=element_blank(),axis.text.x=element_blank(),axis.ticks.x=element_blank()) + + if(numericTimestamp()){ + allplot <- dataset %>% + ggplot(aes(date, value)) + + geom_line(stat="identity") + + facet_grid(category ~. , scales = 'free') + + theme(axis.text.x = element_text(angle = 90, hjust = 1)) + + ggtitle(paste0("All other categories with more than ",input$minPerCategory, " values")) + + scale_y_continuous(labels = scales::comma) + } else{ + + allplot <- dataset %>% + ggplot(aes(date, value)) + + geom_line(stat="identity") + + facet_grid(category ~. , scales = 'free') + + theme(axis.text.x = element_text(angle = 90, hjust = 1)) + + ggtitle(paste0("All other categories with more than ",input$minPerCategory, " values")) + + scale_y_continuous(labels = scales::comma) + + scale_x_datetime(date_breaks = input$breaks) + } + grid.arrange(thisplot, allplot, ncol = 1,nrow = 2,heights = c(200,1000)) + + }, height = 1200) + + + ## Plot distributions across categories + output$alldistributions <- renderPlot({ + if(hasCategories()==FALSE){ + stop('This plot only shows multiple categories. No categories found in the data. Did you add a "category" column to the provided file?.') + } + + dataset <- getTimeFilteredDataset() + if(is.null(dataset)) stop('no dataset found.') + categoryDataset <- getTimeFilteredCategoryDataset() + if(is.null(categoryDataset)) stop('no dataset found.') + + minDate = min(categoryDataset$date) + maxDate = max(categoryDataset$date) + + categories <- dataset %>% + group_by(category) %>% + summarise(perCat = sum(value)) + categories <- categories[categories$perCat > input$minPerCategoryDist,'category'] %>% unlist() + dataset <- dataset %>% + filter(category %in% unique(c(categories,input$category))) + + if(nrow(dataset) == 0) stop('no data found') + if(numericTimestamp()){ + ggplot(dataset,aes(x = date, y = value,fill = category)) + + ggtitle("Distribution of counts per category") + + geom_bar(position = "fill",stat = "identity") + + scale_colour_gradientn(colours=rainbow(4)) + + coord_flip() + } else{ + ggplot(dataset,aes(x = date, y = value,fill = category)) + + ggtitle("Distribution of counts per category") + + geom_bar(position = "fill",stat = "identity") + + scale_x_datetime(date_breaks = input$breaks) + + scale_colour_gradientn(colours=rainbow(4)) + + coord_flip() + } + }, height = 1200) + + output$summaryTable <- DT::renderDataTable(expr = selectedPoints(), selection = 'single',server = F) + + + data_to_display<-eventReactive(input$summaryTable_rows_selected, + ignoreNULL=TRUE, + getRawDataForSample() + ) + + + ## Render DataTable (DT) for raw data + output$rawtable<-DT::renderDataTable( + data_to_display(),options = list( + pageLength = 25,order = list(list(1, 'asc')))) + + + ####---- Anomaly detection model results ----#### + + + ## Plot anomalies based on Twitter's model + output$twitteranomalies <- renderPlot({ + withProgress({ + source("R/anomaly_detection.R") + dataset <- getTimeFilteredCategoryDataset() + if(numericTimestamp()){ + dataset$date <- as.POSIXct(dataset$date,tz="UTC",origin="1970-01-01") + } + if(is.null(dataset)) stop('no dataset found.') + res <- find_anomalies_twitter(dataset, + is_ts = !numericTimestamp(), + threshold = input$twitterThreshold, + alpha = input$twitterAlpha, + direction = input$twitterDirection) + if(is.null(res$plot)){ + stop("No anomalies found") + } + res$plot + },message = 'Finding anomalies...') + }) + + + ####---- Data output ----#### + + ## download selected points + output$mydownload <- downloadHandler( + filename = function(){ + random_string <- paste0(paste0(sample(LETTERS,2 , TRUE),collapse=''),sample(999, 1, TRUE), paste0(sample(LETTERS,2 , TRUE),collapse=''),collapse = '') + + if(hasCategories()){ + paste0(gsub(".csv",replacement = "",input$timeseriesfile$name),'-',input$category,'-',random_string,'-labels.csv') + } else{ + paste0(gsub(".csv",replacement = "",input$timeseriesfile$name),'-',random_string,'-labels.csv') + } + }, + content = function(file) { + write.csv(selectedPoints(),file) + } + ) +} \ No newline at end of file diff --git a/taganomaly/taganomaly.Rproj b/taganomaly/taganomaly.Rproj new file mode 100644 index 0000000..8e3c2eb --- /dev/null +++ b/taganomaly/taganomaly.Rproj @@ -0,0 +1,13 @@ +Version: 1.0 + +RestoreWorkspace: Default +SaveWorkspace: Default +AlwaysSaveHistory: Default + +EnableCodeIndexing: Yes +UseSpacesForTab: Yes +NumSpacesForTab: 2 +Encoding: UTF-8 + +RnwWeave: Sweave +LaTeX: pdfLaTeX diff --git a/taganomaly/ui.R b/taganomaly/ui.R new file mode 100644 index 0000000..5d555c9 --- /dev/null +++ b/taganomaly/ui.R @@ -0,0 +1,103 @@ +library(shiny) +library(DT) +library(ggplot2) +library(shinythemes) +library(shinydashboard) + +header <- dashboardHeader(title = 'Taganomaly - Anomaly detection labeling tool', + dropdownMenu( + type = "notifications", + icon = icon("question-circle"), + badgeStatus = NULL, + headerText = + helpText(HTML('Instructions:

+ 1. Import time series CSV file. Assumed structure:
+ - date ("%Y-%m-%d %H:%M:%S")
+ - category
+ - value

+ 2. (Optional) Import raw data time series CSV file.

+ If the original time series is an aggreation over time windows, this time series is the raw values themselves. This way we could dive deeper into an anomalous value and see what it is comprised of.
+ Assumed structure:
+ - date ("%Y-%m-%d %H:%M:%S")
+ - category
+ - value

+ 2. Select category (if exists)

+ 3. Select time range on slider

+ 4.Select points on plot that look anomalous. +
Optional (1): click on one time range on the table below the plot to see raw data on this time range +
Optional (2): Open the "All Categories" tab to see how other time series behave on the same time range. +
5. Once you decide that these are actual anomalies, save the resulting table to csv by clicking on "Download labels set" and continue to the next category.

' + ))) +) + +sidebar <- dashboardSidebar( + + sidebarMenu( + tags$style(".skin-red .sidebar a { color: #444; }"), + fileInput("timeseriesfile", "Choose CSV File with counts per time frame", + accept = c( + "text/csv", + "text/comma-separated-values,text/plain", + ".csv") + ), + #checkboxInput("header","My dataset has headers",value=TRUE), + fileInput("rawfile", "Choose CSV File with raw data", + accept = c( + "text/csv", + "text/comma-separated-values,text/plain", + ".csv") + ), + uiOutput("category"), + checkboxInput('interpolate',label = "Interpolate missing points",value = FALSE), + selectInput('breaks',"Select graph breaks",choices = c('1 sec','1 min','1 hour','1 day','1 week','1 month','1 year'),selected = '1 year'), + uiOutput('slider'), + + downloadButton(outputId = "mydownload", label = "Download labels set") + ) +) + +body <- dashboardBody( + tags$head(tags$style(".shiny-notification {position: fixed; top: 20% ;left: 50%")), + tabsetPanel( + tabPanel("Current category", + h2('Time Series for labeling:'), + h5("Graph might take a few moments to load"), + plotOutput("plot", brush = "user_brush"), + h2('Selected points:'), + dataTableOutput("summaryTable"), + h2('Inspect raw data:'), + h5('Select a point or more on the graph, then select a record on the \"Selected Points\" table to see raw data'), + dataTableOutput("rawtable") + ), + tabPanel('All categories', + h2('Inspect all other categories:'), + numericInput('minPerCategory','Minimum samples for being a major category',min = 0,value = 100), + plotOutput("allplot") + ), + tabPanel('Category distribution over time', + h2('Inspect change in distribution over time:'), + numericInput('minPerCategoryDist','Minimum samples for being a major category',min = 0,value = 100), + plotOutput('alldistributions') + ), + tabPanel('Suggested anomalies (Twitter model)', + h3("Based on Twitter's AnomalyDetection package:"), + a('https://github.com/twitter/AnomalyDetection/', href = 'https://github.com/twitter/AnomalyDetection/'), + h5("Might take a while to load..."), + plotOutput('twitteranomalies'), + fluidRow( + column(2, selectInput("twitterThreshold",label="Threshold",choices=c("None", "med_max", "p95", "p99"),selected = "p95")), + column(2, selectInput("twitterDirection",label="Direction",choices=c("pos", "neg", "both"),selected='pos')), + column(2, numericInput("twitterAlpha","Alpha value",min=0,max=1,step=0.05,value=0.05)) + ) + + + ) + ) + + + +) + + +dashboardPage(header, sidebar, body,skin = "red") +