<!DOCTYPE html>
<meta charset="utf-8">
<style>
  .axis text {
    font: 10px sans-serif;
  }
  .axis line,
  .axis path {
    fill: none;
    stroke: #000;
    shape-rendering: crispEdges;
  }
</style>

<body>
  <script src="https://d3js.org/d3.v3.min.js"></script>
  <script>
    var customTimeFormat = d3.time.format.multi([
      [".%L",
        function(d) {
          return d.getMilliseconds();
        }
      ],
      [":%S",
        function(d) {
          return d.getSeconds();
        }
      ],
      ["%I:%M",
        function(d) {
          return d.getMinutes();
        }
      ],
      ["%I %p",
        function(d) {
          return d.getHours();
        }
      ],
      ["%a %d",
        function(d) {
          return d.getDay() && d.getDate() != 1;
        }
      ],
      ["%b %d",
        function(d) {
          return d.getDate() != 1;
        }
      ],
      ["%B",
        function(d) {
          return d.getMonth();
        }
      ],
      ["%Y",
        function() {
          return true;
        }
      ]
    ]);

    var parseDate = d3.time.format("%d/%m/%Y %H:%M").parse;

    var margin = {
      top: 60,
      right: 10,
      bottom: 20,
      left: 10
    },
      width = 1500 - margin.left - margin.right,
      height = 1500 - margin.top - margin.bottom;

    d3.csv("attendData", function(error, data) {
      data.forEach(function(d) {
        d.arrivalTime = parseDate(d.arrivalTime);
        d.triageTime = parseDate(d.triageTime);
        d.clinicianTime = parseDate(d.clinicianTime);
        d.referralTime = parseDate(d.referralTime);
        d.dischargeTime = parseDate(d.dischargeTime);
        d.stayTime = +(d.stayTime);
        d.triageCat = +(d.triageCat);
      });


      newData = data.map(function(d) {
        return [{
          plotPoint: d['arrivalTime'],
          lenStay: d['stayTime'],
          triageCat: d['triageCat']
        }, {
          plotPoint: d['triageTime'],
          lenStay: d['stayTime'],
          triageCat: d['triageCat']
        }, {
          plotPoint: d['clinicianTime'],
          lenStay: d['stayTime'],
          triageCat: d['triageCat']
        }, {
          plotPoint: d['referralTime'],
          lenStay: d['stayTime'],
          triageCat: d['triageCat']
        }, {
          plotPoint: d['dischargeTime'],
          lenStay: d['stayTime'],
          triageCat: d['triageCat']
        }];
      });

      var yScale = d3.time.scale()
        .domain([parseDate("17/6/2014 00:01"), parseDate("18/6/2014 04:00")])
        .range([0, height]);


      var xScale = d3.scale.linear()
        .domain([0, 5])
        .range([0, width]);

      var yAxis = d3.svg.axis()
        .scale(yScale)
        .orient("left")
        .tickFormat(customTimeFormat);


      var xAxis = d3.svg.axis()
        .scale(xScale)
        .orient("top")
      //.axis.tickValues[nil];
      .ticks(5);


      var svg = d3.select("body").append("svg")
        .attr("width", width + margin.left + margin.right)
        .attr("height", height + margin.top + margin.bottom)
        .append("g")
        .attr("transform", "translate(" + margin.left + "," + margin.top + ")");



      var line = d3.svg.line()
        .interpolate("linear")
        .y(function(d) {
          return yScale(d.plotPoint);
        })
        .x(function(d, i) {
          return xScale(i);
        });


      var returnColor = function(d) {
        if (d[0].triageCat == 1) {
          returnColor = "red";
        } else if (d[0].triageCat == 2) {
          returnColor = "orange";
        } else if (d[0].triageCat == 3) {
          returnColor = "yellow";
        } else if (d[0].triageCat == 4) {
          returnColor = "green";
        } else {
          returnColor = "blue";
        }
        return returnColor;
      };

      svg.selectAll(".line")
        .data(newData)
        .enter().append("path")
        .attr("class", "line")
        .attr("d", line)
        .attr("stroke", returnColor)
        .attr("stroke-width", 2)
        .attr("fill", "none")
        .attr("transform", "translate(50,10)")
        .on("mouseover", function(d) {

          d3.select(this)
            .attr("stroke", "black");
          svg.append("text")
            .attr("id", "tooltip")
            .attr("x", 1300)
            .attr("y", event.pageY - 10)
            .attr("text-anchor", "middle")
            .attr("font-family", "san-serif")
            .attr("font-size", "32px")
            .attr("font-weight", "bold")
            .attr("fill", "black")
            .text(d[0].lenStay);
        })
        .on("mouseout", function() {
          d3.select("#tooltip").remove();
          d3.select(this)
            .transition()
            .duration(500)
            .attr("stroke", function(d) {
              if (d[0].triageCat == 1) {
                returnColor = "red";
              } else if (d[0].triageCat == 2) {
                returnColor = "orange";
              } else if (d[0].triageCat == 3) {
                returnColor = "yellow";
              } else if (d[0].triageCat == 4) {
                returnColor = "green";
              } else {
                returnColor = "blue";
              }
              return returnColor;
            });
        });

      svg.append("g")
        .attr("class", "y axis")
        .attr("transform", "translate(50,10)")
        .call(yAxis);

      svg.append("text")
        .attr("transform", "rotate(-90)")
        .attr("y", 6)
        .attr("x", margin.top - (height / 2))
        .attr("dy", ".71em")
        .style("text-anchor", "end")
        .attr("font-size", "32px")
        .text("Time");
      svg.append("text")
        .attr("transform", "rotate(-90)")
        .attr("y", width - 30)
        .attr("x", margin.top - (height / 2))
        .attr("dy", ".71em")
        .style("text-anchor", "end")
        .attr("font-size", "24px")
        .text("Time taken in minutes");
      svg.append("text")
        .attr("y", -30)
        .attr("x", 90)
        .attr("dy", ".71em")
        .style("text-anchor", "end")
        .attr("font-size", "24px")
        .text("Arrive");
      svg.append("text")
        .attr("y", -30)
        .attr("x", (width * 0.26))
        .attr("dy", ".71em")
        .style("text-anchor", "end")
        .attr("font-size", "24px")
        .text("Triage");
      svg.append("text")
        .attr("y", -30)
        .attr("x", (width * 0.47))
        .attr("dy", ".71em")
        .style("text-anchor", "end")
        .attr("font-size", "24px")
        .text("Clinician");
      svg.append("text")
        .attr("y", -30)
        .attr("x", (width * 0.67))
        .attr("dy", ".71em")
        .style("text-anchor", "end")
        .attr("font-size", "24px")
        .text("Referral");
      svg.append("text")
        .attr("y", -30)
        .attr("x", (width * 0.87))
        .attr("dy", ".71em")
        .style("text-anchor", "end")
        .attr("font-size", "24px")
        .text("Discharge");
      svg.append("g")
        .attr("class", "x axis")
        .attr("transform", "translate(50,10)")
        .call(xAxis);

      svg.append("g")
        .attr("class", "line")
        .attr("transform", "translate(50,10)")
        .call(line);
    });
  </script>
// Code goes here

/* Styles go here */

arrivalTime,triageTime,clinicianTime,referralTime,dischargeTime,stayTime,triageCat
17/06/2014 00:04,17/06/2014 00:15,17/06/2014 00:15,17/06/2014 00:15,17/06/2014 00:18,14,4
17/06/2014 00:10,17/06/2014 00:10,17/06/2014 00:57,17/06/2014 01:49,17/06/2014 02:57,167,2
17/06/2014 00:25,17/06/2014 00:48,17/06/2014 01:27,17/06/2014 01:27,17/06/2014 01:43,78,4
17/06/2014 00:25,17/06/2014 00:40,17/06/2014 00:58,17/06/2014 01:43,17/06/2014 03:10,165,3
17/06/2014 00:28,17/06/2014 00:52,17/06/2014 01:58,17/06/2014 03:20,17/06/2014 08:43,495,2
17/06/2014 00:25,17/06/2014 00:25,17/06/2014 01:40,17/06/2014 02:06,17/06/2014 03:31,186,4
17/06/2014 00:35,17/06/2014 00:35,17/06/2014 02:05,17/06/2014 02:10,17/06/2014 03:33,178,3
17/06/2014 00:39,17/06/2014 00:56,17/06/2014 01:46,17/06/2014 01:46,17/06/2014 00:40,1,4
17/06/2014 00:41,17/06/2014 00:41,17/06/2014 02:30,17/06/2014 02:30,17/06/2014 03:23,162,4
17/06/2014 00:44,17/06/2014 00:44,17/06/2014 01:31,17/06/2014 02:44,17/06/2014 04:43,239,2
17/06/2014 00:48,17/06/2014 01:01,17/06/2014 01:07,17/06/2014 01:07,17/06/2014 03:40,172,3
17/06/2014 00:50,17/06/2014 01:15,17/06/2014 02:21,17/06/2014 01:27,17/06/2014 02:34,104,4
17/06/2014 00:51,17/06/2014 00:52,17/06/2014 01:10,17/06/2014 00:54,17/06/2014 01:10,19,3
17/06/2014 01:02,17/06/2014 01:25,17/06/2014 02:45,17/06/2014 02:45,17/06/2014 03:49,167,4
17/06/2014 01:10,17/06/2014 01:10,17/06/2014 03:06,17/06/2014 03:06,17/06/2014 03:46,156,4
17/06/2014 01:14,17/06/2014 01:28,17/06/2014 02:53,17/06/2014 02:53,17/06/2014 03:05,111,4
17/06/2014 01:17,17/06/2014 01:17,17/06/2014 02:28,17/06/2014 03:24,17/06/2014 04:53,216,3
17/06/2014 01:27,17/06/2014 01:27,17/06/2014 03:07,17/06/2014 03:08,17/06/2014 05:04,217,2
17/06/2014 01:42,17/06/2014 01:45,17/06/2014 02:05,17/06/2014 02:52,17/06/2014 05:32,230,2
17/06/2014 01:45,17/06/2014 01:50,17/06/2014 03:17,17/06/2014 03:17,17/06/2014 05:07,202,4
17/06/2014 01:51,17/06/2014 01:51,17/06/2014 03:06,17/06/2014 03:52,17/06/2014 09:15,444,3
17/06/2014 02:05,17/06/2014 02:05,17/06/2014 02:22,17/06/2014 02:34,17/06/2014 03:49,104,2
17/06/2014 02:15,17/06/2014 02:23,17/06/2014 02:23,17/06/2014 02:23,17/06/2014 02:26,11,4
17/06/2014 03:08,17/06/2014 03:08,17/06/2014 03:30,17/06/2014 03:53,17/06/2014 05:13,125,3
17/06/2014 03:24,17/06/2014 03:32,17/06/2014 03:37,17/06/2014 03:37,17/06/2014 04:44,80,4
17/06/2014 03:26,17/06/2014 03:35,17/06/2014 03:37,17/06/2014 03:37,17/06/2014 04:45,79,4
17/06/2014 03:33,17/06/2014 03:38,17/06/2014 04:03,17/06/2014 04:03,17/06/2014 06:19,166,3
17/06/2014 03:44,17/06/2014 03:49,17/06/2014 04:29,17/06/2014 04:29,17/06/2014 05:03,79,4
17/06/2014 04:20,17/06/2014 04:21,17/06/2014 04:49,17/06/2014 04:49,17/06/2014 06:23,123,3
17/06/2014 04:32,17/06/2014 04:32,17/06/2014 04:40,17/06/2014 04:54,17/06/2014 05:44,72,4
17/06/2014 04:37,17/06/2014 04:44,17/06/2014 04:55,17/06/2014 04:55,17/06/2014 05:05,28,4
17/06/2014 05:19,17/06/2014 05:19,17/06/2014 05:35,17/06/2014 07:44,17/06/2014 08:53,214,2
17/06/2014 05:32,17/06/2014 05:37,17/06/2014 05:37,17/06/2014 05:42,17/06/2014 13:21,469,3
17/06/2014 05:37,17/06/2014 05:45,17/06/2014 05:53,17/06/2014 05:53,17/06/2014 06:31,54,4
17/06/2014 06:12,17/06/2014 06:12,17/06/2014 06:30,17/06/2014 08:42,17/06/2014 10:10,238,4
17/06/2014 06:48,17/06/2014 06:48,17/06/2014 07:00,17/06/2014 07:36,17/06/2014 15:11,503,2
17/06/2014 06:53,17/06/2014 06:53,17/06/2014 08:46,17/06/2014 08:46,17/06/2014 09:47,174,2
17/06/2014 07:14,17/06/2014 07:16,17/06/2014 07:31,17/06/2014 07:31,17/06/2014 09:57,163,3
17/06/2014 07:32,17/06/2014 07:35,17/06/2014 07:50,17/06/2014 07:50,17/06/2014 08:39,67,4
17/06/2014 07:37,17/06/2014 07:43,17/06/2014 08:32,17/06/2014 10:21,17/06/2014 11:21,224,4
17/06/2014 07:55,17/06/2014 07:59,17/06/2014 08:34,17/06/2014 08:34,17/06/2014 09:12,77,4
17/06/2014 07:58,17/06/2014 08:07,17/06/2014 08:18,17/06/2014 08:18,17/06/2014 08:19,21,5
17/06/2014 08:01,17/06/2014 08:07,17/06/2014 08:32,17/06/2014 09:11,17/06/2014 09:38,97,3
17/06/2014 08:00,17/06/2014 08:14,17/06/2014 08:06,17/06/2014 10:15,17/06/2014 15:29,449,2
17/06/2014 08:11,17/06/2014 08:11,17/06/2014 09:24,17/06/2014 09:24,17/06/2014 11:23,192,3
17/06/2014 08:17,17/06/2014 08:22,17/06/2014 09:20,17/06/2014 09:20,17/06/2014 10:55,158,4
17/06/2014 08:32,17/06/2014 08:32,17/06/2014 09:20,17/06/2014 09:20,17/06/2014 11:45,193,4
17/06/2014 08:36,17/06/2014 08:39,17/06/2014 09:00,17/06/2014 11:57,17/06/2014 12:33,237,3
17/06/2014 08:35,17/06/2014 08:35,17/06/2014 09:34,17/06/2014 09:34,17/06/2014 10:57,142,3
17/06/2014 08:38,17/06/2014 08:44,17/06/2014 08:44,17/06/2014 08:44,17/06/2014 09:54,76,4
17/06/2014 08:41,17/06/2014 08:46,17/06/2014 09:25,17/06/2014 09:25,17/06/2014 11:22,161,4
17/06/2014 08:46,17/06/2014 08:56,17/06/2014 08:52,17/06/2014 08:52,17/06/2014 09:43,57,4
17/06/2014 08:52,17/06/2014 09:00,17/06/2014 09:45,17/06/2014 09:45,17/06/2014 12:50,238,4
17/06/2014 09:01,17/06/2014 09:01,17/06/2014 09:58,17/06/2014 09:58,17/06/2014 12:07,186,4
17/06/2014 09:07,17/06/2014 09:07,17/06/2014 09:57,17/06/2014 09:57,17/06/2014 12:10,183,4
17/06/2014 09:15,17/06/2014 09:24,17/06/2014 09:24,17/06/2014 09:24,17/06/2014 10:15,60,4
17/06/2014 08:39,17/06/2014 09:18,17/06/2014 09:35,17/06/2014 09:35,17/06/2014 11:51,192,4
17/06/2014 09:18,17/06/2014 09:38,17/06/2014 09:30,17/06/2014 09:30,17/06/2014 11:24,126,4
17/06/2014 09:21,17/06/2014 09:35,17/06/2014 09:59,17/06/2014 09:59,17/06/2014 11:47,146,3
17/06/2014 09:24,17/06/2014 09:31,17/06/2014 10:29,17/06/2014 10:41,17/06/2014 11:24,120,4
17/06/2014 09:24,17/06/2014 09:30,17/06/2014 10:00,17/06/2014 10:00,17/06/2014 10:33,69,4
17/06/2014 09:26,17/06/2014 09:41,17/06/2014 09:52,17/06/2014 09:52,17/06/2014 09:55,29,4
17/06/2014 09:27,17/06/2014 09:46,17/06/2014 10:40,17/06/2014 10:40,17/06/2014 11:50,143,4
17/06/2014 09:27,17/06/2014 09:42,17/06/2014 09:42,17/06/2014 09:42,17/06/2014 11:06,99,5
17/06/2014 09:26,17/06/2014 09:26,17/06/2014 10:22,17/06/2014 10:46,17/06/2014 13:09,223,2
17/06/2014 09:30,17/06/2014 09:54,17/06/2014 10:50,17/06/2014 10:50,17/06/2014 12:36,186,4
17/06/2014 09:32,17/06/2014 09:57,17/06/2014 10:54,17/06/2014 11:37,17/06/2014 12:16,164,4
17/06/2014 09:42,17/06/2014 09:57,17/06/2014 12:38,17/06/2014 12:00,17/06/2014 13:13,211,4
17/06/2014 09:44,17/06/2014 09:50,17/06/2014 11:59,17/06/2014 13:06,17/06/2014 13:37,233,3
17/06/2014 09:46,17/06/2014 10:01,17/06/2014 10:01,17/06/2014 10:01,17/06/2014 11:58,132,5
17/06/2014 10:01,17/06/2014 10:08,17/06/2014 11:40,17/06/2014 11:40,17/06/2014 13:51,230,2
17/06/2014 10:03,17/06/2014 10:34,17/06/2014 10:12,17/06/2014 10:12,17/06/2014 12:04,121,4
17/06/2014 10:07,17/06/2014 10:13,17/06/2014 10:13,17/06/2014 10:18,17/06/2014 12:18,131,4
17/06/2014 10:09,17/06/2014 10:19,17/06/2014 11:38,17/06/2014 13:14,17/06/2014 13:55,226,3
17/06/2014 10:12,17/06/2014 10:17,17/06/2014 12:41,17/06/2014 12:41,17/06/2014 12:42,150,2
17/06/2014 10:12,17/06/2014 10:12,17/06/2014 11:59,17/06/2014 11:59,17/06/2014 13:33,201,3
17/06/2014 10:13,17/06/2014 10:24,17/06/2014 11:51,17/06/2014 11:51,17/06/2014 13:42,209,3
17/06/2014 10:18,17/06/2014 10:26,17/06/2014 11:59,17/06/2014 11:59,17/06/2014 13:16,178,4
17/06/2014 10:20,17/06/2014 10:33,17/06/2014 10:29,17/06/2014 13:22,17/06/2014 14:15,235,3
17/06/2014 10:21,17/06/2014 10:39,17/06/2014 12:02,17/06/2014 12:02,17/06/2014 13:41,200,3
17/06/2014 10:22,17/06/2014 10:41,17/06/2014 10:41,17/06/2014 12:33,17/06/2014 13:49,207,3
17/06/2014 10:21,17/06/2014 10:29,17/06/2014 12:23,17/06/2014 12:23,17/06/2014 13:48,207,4
17/06/2014 10:23,17/06/2014 10:45,17/06/2014 11:59,17/06/2014 11:59,17/06/2014 13:01,158,4
17/06/2014 10:25,17/06/2014 10:48,17/06/2014 11:56,17/06/2014 11:56,17/06/2014 13:08,163,4
17/06/2014 10:25,17/06/2014 10:25,17/06/2014 12:14,17/06/2014 12:14,17/06/2014 13:09,164,3
17/06/2014 10:31,17/06/2014 10:48,17/06/2014 12:17,17/06/2014 12:17,17/06/2014 13:49,198,3
17/06/2014 10:32,17/06/2014 10:32,17/06/2014 12:17,17/06/2014 13:41,17/06/2014 14:30,238,3
17/06/2014 10:36,17/06/2014 10:53,17/06/2014 12:41,17/06/2014 14:03,17/06/2014 14:27,231,3
17/06/2014 10:36,17/06/2014 10:36,17/06/2014 12:23,17/06/2014 12:23,17/06/2014 14:33,237,3
17/06/2014 10:39,17/06/2014 10:52,17/06/2014 12:57,17/06/2014 12:57,17/06/2014 14:37,238,4
17/06/2014 10:41,17/06/2014 10:57,17/06/2014 12:00,17/06/2014 12:00,17/06/2014 12:52,131,4
17/06/2014 10:42,17/06/2014 10:59,17/06/2014 12:56,17/06/2014 12:56,17/06/2014 14:19,217,3
17/06/2014 10:42,17/06/2014 10:43,17/06/2014 12:19,17/06/2014 13:30,17/06/2014 14:19,217,3
17/06/2014 10:47,17/06/2014 11:02,17/06/2014 11:02,17/06/2014 11:02,17/06/2014 12:22,95,5
17/06/2014 10:49,17/06/2014 11:10,17/06/2014 11:05,17/06/2014 11:05,17/06/2014 12:45,116,5
17/06/2014 10:51,17/06/2014 11:05,17/06/2014 13:38,17/06/2014 13:59,17/06/2014 14:48,237,3
17/06/2014 10:51,17/06/2014 10:51,17/06/2014 13:12,17/06/2014 14:33,17/06/2014 16:00,309,4
17/06/2014 10:53,17/06/2014 11:15,17/06/2014 12:24,17/06/2014 12:24,17/06/2014 12:33,100,3
17/06/2014 10:55,17/06/2014 11:21,17/06/2014 13:01,17/06/2014 13:01,17/06/2014 13:33,158,4
17/06/2014 10:57,17/06/2014 11:25,17/06/2014 13:47,17/06/2014 13:47,17/06/2014 14:09,192,4
17/06/2014 10:57,17/06/2014 11:22,17/06/2014 14:03,17/06/2014 14:03,17/06/2014 14:06,189,4
17/06/2014 11:06,17/06/2014 11:09,17/06/2014 11:10,17/06/2014 13:21,17/06/2014 15:00,234,2
17/06/2014 11:03,17/06/2014 11:03,17/06/2014 11:03,17/06/2014 11:10,17/06/2014 18:59,476,2
17/06/2014 11:17,17/06/2014 11:17,17/06/2014 12:38,17/06/2014 12:38,17/06/2014 13:40,143,4
17/06/2014 11:19,17/06/2014 11:30,17/06/2014 11:30,17/06/2014 11:30,17/06/2014 13:13,114,4
17/06/2014 11:21,17/06/2014 11:31,17/06/2014 13:50,17/06/2014 13:50,17/06/2014 14:34,193,4
17/06/2014 11:24,17/06/2014 11:25,17/06/2014 14:08,17/06/2014 14:08,17/06/2014 14:28,184,3
17/06/2014 11:28,17/06/2014 11:32,17/06/2014 12:39,17/06/2014 16:47,17/06/2014 17:17,349,2
17/06/2014 11:34,17/06/2014 11:37,17/06/2014 14:01,17/06/2014 14:01,17/06/2014 15:07,213,4
17/06/2014 11:38,17/06/2014 11:42,17/06/2014 14:07,17/06/2014 14:07,17/06/2014 14:59,201,4
17/06/2014 11:42,17/06/2014 11:48,17/06/2014 14:12,17/06/2014 14:12,17/06/2014 14:38,176,4
17/06/2014 11:48,17/06/2014 12:01,17/06/2014 11:52,17/06/2014 11:52,17/06/2014 15:27,219,4
17/06/2014 10:14,17/06/2014 11:53,17/06/2014 12:12,17/06/2014 13:34,17/06/2014 14:02,228,3
17/06/2014 10:03,17/06/2014 11:58,17/06/2014 11:58,17/06/2014 11:54,17/06/2014 14:00,237,2
17/06/2014 11:49,17/06/2014 11:49,17/06/2014 13:22,17/06/2014 13:22,17/06/2014 15:20,211,2
17/06/2014 11:53,17/06/2014 12:20,17/06/2014 12:36,17/06/2014 12:30,17/06/2014 15:37,224,3
17/06/2014 11:55,17/06/2014 12:22,17/06/2014 12:14,17/06/2014 12:14,17/06/2014 14:27,152,4
17/06/2014 11:55,17/06/2014 12:07,17/06/2014 14:36,17/06/2014 15:08,17/06/2014 15:52,237,3
17/06/2014 11:58,17/06/2014 12:18,17/06/2014 12:18,17/06/2014 12:24,17/06/2014 15:57,239,4
17/06/2014 12:01,17/06/2014 12:24,17/06/2014 14:19,17/06/2014 14:47,17/06/2014 15:50,229,3
17/06/2014 12:02,17/06/2014 12:30,17/06/2014 14:42,17/06/2014 14:44,17/06/2014 16:00,238,3
17/06/2014 12:02,17/06/2014 12:28,17/06/2014 14:21,17/06/2014 14:21,17/06/2014 17:18,316,4
17/06/2014 12:09,17/06/2014 12:35,17/06/2014 14:49,17/06/2014 14:49,17/06/2014 15:42,213,4
17/06/2014 12:10,17/06/2014 12:14,17/06/2014 12:45,17/06/2014 13:41,17/06/2014 16:05,235,2
17/06/2014 12:09,17/06/2014 12:33,17/06/2014 14:40,17/06/2014 14:49,17/06/2014 16:07,238,4
17/06/2014 12:14,17/06/2014 12:35,17/06/2014 14:52,17/06/2014 14:52,17/06/2014 16:03,229,4
17/06/2014 12:14,17/06/2014 12:41,17/06/2014 12:41,17/06/2014 12:41,17/06/2014 14:06,112,4
17/06/2014 12:16,17/06/2014 12:45,17/06/2014 15:25,17/06/2014 15:25,17/06/2014 15:27,191,4
17/06/2014 12:21,17/06/2014 12:21,17/06/2014 14:49,17/06/2014 14:49,17/06/2014 16:18,237,3
17/06/2014 12:24,17/06/2014 12:47,17/06/2014 15:04,17/06/2014 15:04,17/06/2014 15:52,208,3
17/06/2014 12:31,17/06/2014 12:31,17/06/2014 12:38,17/06/2014 12:38,17/06/2014 12:39,8,3
17/06/2014 12:32,17/06/2014 12:48,17/06/2014 15:31,17/06/2014 15:07,17/06/2014 16:17,225,3
17/06/2014 12:36,17/06/2014 12:41,17/06/2014 13:28,17/06/2014 13:28,17/06/2014 16:30,234,2
17/06/2014 12:39,17/06/2014 13:00,17/06/2014 14:59,17/06/2014 14:59,17/06/2014 15:33,174,3
17/06/2014 12:41,17/06/2014 12:56,17/06/2014 13:29,17/06/2014 15:38,17/06/2014 16:27,226,3
17/06/2014 12:49,17/06/2014 13:03,17/06/2014 15:50,17/06/2014 15:50,17/06/2014 15:51,182,4
17/06/2014 13:02,17/06/2014 13:08,17/06/2014 15:06,17/06/2014 15:06,17/06/2014 16:26,204,4
17/06/2014 12:53,17/06/2014 13:11,17/06/2014 13:10,17/06/2014 13:10,17/06/2014 13:15,22,1
17/06/2014 13:04,17/06/2014 13:04,17/06/2014 15:23,17/06/2014 15:23,17/06/2014 16:52,228,4
17/06/2014 13:06,17/06/2014 13:11,17/06/2014 13:11,17/06/2014 13:11,17/06/2014 14:29,83,4
17/06/2014 13:07,17/06/2014 13:16,17/06/2014 13:16,17/06/2014 13:22,17/06/2014 16:38,211,3
17/06/2014 13:10,17/06/2014 13:26,17/06/2014 16:27,17/06/2014 16:27,17/06/2014 16:33,203,3
17/06/2014 13:08,17/06/2014 13:09,17/06/2014 14:02,17/06/2014 15:48,17/06/2014 16:53,225,3
17/06/2014 13:12,17/06/2014 13:28,17/06/2014 15:11,17/06/2014 15:11,17/06/2014 16:30,198,1
17/06/2014 13:14,17/06/2014 13:35,17/06/2014 13:35,17/06/2014 13:46,17/06/2014 21:11,477,3
17/06/2014 13:15,17/06/2014 13:20,17/06/2014 13:56,17/06/2014 13:56,17/06/2014 14:10,55,
17/06/2014 13:15,17/06/2014 13:47,17/06/2014 15:24,17/06/2014 15:24,17/06/2014 16:42,207,3
17/06/2014 13:16,17/06/2014 13:57,17/06/2014 15:30,17/06/2014 15:30,17/06/2014 16:28,192,4
17/06/2014 13:21,17/06/2014 14:00,17/06/2014 15:43,17/06/2014 15:43,17/06/2014 15:59,158,4
17/06/2014 13:29,17/06/2014 14:08,17/06/2014 15:58,17/06/2014 16:48,17/06/2014 17:20,231,4
17/06/2014 13:31,17/06/2014 14:11,17/06/2014 15:47,17/06/2014 15:47,17/06/2014 16:56,205,4
17/06/2014 13:34,17/06/2014 14:15,17/06/2014 14:43,17/06/2014 14:43,17/06/2014 18:45,311,2
17/06/2014 13:36,17/06/2014 14:15,17/06/2014 15:40,17/06/2014 15:40,17/06/2014 16:41,185,4
17/06/2014 13:35,17/06/2014 13:36,17/06/2014 14:09,17/06/2014 14:54,17/06/2014 17:04,209,4
17/06/2014 13:48,17/06/2014 14:18,17/06/2014 15:55,17/06/2014 15:55,17/06/2014 16:59,191,4
17/06/2014 13:49,17/06/2014 14:35,17/06/2014 14:26,17/06/2014 14:26,17/06/2014 16:40,171,4
17/06/2014 13:51,17/06/2014 14:26,17/06/2014 15:55,17/06/2014 15:55,17/06/2014 16:53,182,4
17/06/2014 13:55,17/06/2014 14:29,17/06/2014 14:40,17/06/2014 14:40,17/06/2014 16:06,131,3
17/06/2014 13:57,17/06/2014 14:42,17/06/2014 15:58,17/06/2014 15:58,17/06/2014 16:39,162,2
17/06/2014 14:12,17/06/2014 14:12,17/06/2014 15:50,17/06/2014 15:50,17/06/2014 15:52,100,4
17/06/2014 14:18,17/06/2014 14:44,17/06/2014 16:32,17/06/2014 17:39,17/06/2014 18:00,222,3
17/06/2014 12:56,17/06/2014 14:25,17/06/2014 16:49,17/06/2014 14:31,17/06/2014 16:50,234,4
17/06/2014 14:21,17/06/2014 14:47,17/06/2014 16:15,17/06/2014 17:01,17/06/2014 17:38,197,3
17/06/2014 14:24,17/06/2014 14:51,17/06/2014 17:01,17/06/2014 17:01,17/06/2014 17:31,187,4
17/06/2014 14:27,17/06/2014 14:51,17/06/2014 15:11,17/06/2014 15:20,17/06/2014 18:25,238,2
17/06/2014 14:27,17/06/2014 14:27,17/06/2014 16:35,17/06/2014 17:46,17/06/2014 18:11,224,4
17/06/2014 14:29,17/06/2014 15:01,17/06/2014 16:32,17/06/2014 17:22,17/06/2014 18:11,222,3
17/06/2014 14:37,17/06/2014 15:17,17/06/2014 15:23,17/06/2014 15:23,17/06/2014 15:24,47,4
17/06/2014 14:40,17/06/2014 15:17,17/06/2014 16:16,17/06/2014 16:16,17/06/2014 17:00,140,4
17/06/2014 14:42,17/06/2014 15:25,17/06/2014 17:55,17/06/2014 15:32,17/06/2014 17:58,196,4
17/06/2014 14:50,17/06/2014 15:28,17/06/2014 16:33,17/06/2014 16:33,17/06/2014 17:36,166,3
17/06/2014 14:57,17/06/2014 15:44,17/06/2014 16:34,17/06/2014 16:34,17/06/2014 17:01,124,4
17/06/2014 14:36,17/06/2014 15:18,17/06/2014 14:58,17/06/2014 16:50,17/06/2014 21:26,410,2
17/06/2014 15:03,17/06/2014 15:48,17/06/2014 15:55,17/06/2014 15:55,17/06/2014 15:57,54,4
17/06/2014 15:04,17/06/2014 15:05,17/06/2014 17:34,17/06/2014 18:13,17/06/2014 19:02,238,4
17/06/2014 15:06,17/06/2014 15:49,17/06/2014 18:56,17/06/2014 15:53,17/06/2014 18:57,231,4
17/06/2014 15:09,17/06/2014 15:59,17/06/2014 16:59,17/06/2014 17:28,17/06/2014 19:05,236,2
17/06/2014 15:09,17/06/2014 15:10,17/06/2014 16:00,17/06/2014 15:23,17/06/2014 19:00,231,3
17/06/2014 15:14,17/06/2014 15:57,17/06/2014 17:40,17/06/2014 17:40,17/06/2014 18:03,169,3
17/06/2014 15:19,17/06/2014 15:59,17/06/2014 16:59,17/06/2014 16:59,17/06/2014 18:17,178,4
17/06/2014 15:17,17/06/2014 15:18,17/06/2014 15:18,17/06/2014 15:33,17/06/2014 18:43,206,3
17/06/2014 13:12,17/06/2014 15:39,17/06/2014 14:57,17/06/2014 14:57,17/06/2014 16:52,220,4
17/06/2014 15:25,17/06/2014 15:25,17/06/2014 16:59,17/06/2014 16:59,17/06/2014 17:33,128,3
17/06/2014 15:29,17/06/2014 16:07,17/06/2014 17:02,17/06/2014 18:19,17/06/2014 19:12,223,3
17/06/2014 15:30,17/06/2014 15:35,17/06/2014 15:44,17/06/2014 15:44,17/06/2014 15:45,15,4
17/06/2014 15:33,17/06/2014 16:08,17/06/2014 17:10,17/06/2014 17:10,17/06/2014 17:52,139,4
17/06/2014 15:35,17/06/2014 15:35,17/06/2014 17:10,17/06/2014 17:10,17/06/2014 17:56,141,4
17/06/2014 15:38,17/06/2014 16:13,17/06/2014 17:22,17/06/2014 17:22,17/06/2014 17:46,128,4
17/06/2014 15:50,17/06/2014 16:19,17/06/2014 17:20,17/06/2014 17:46,17/06/2014 19:48,238,3
17/06/2014 15:52,17/06/2014 16:26,17/06/2014 16:26,17/06/2014 18:37,17/06/2014 19:48,236,4
17/06/2014 16:04,17/06/2014 16:32,17/06/2014 17:33,17/06/2014 17:33,17/06/2014 18:57,173,4
17/06/2014 16:05,17/06/2014 16:05,17/06/2014 17:01,17/06/2014 18:11,17/06/2014 19:33,208,3
17/06/2014 16:09,17/06/2014 16:16,17/06/2014 17:11,17/06/2014 17:11,17/06/2014 18:13,124,4
17/06/2014 16:12,17/06/2014 16:33,17/06/2014 17:40,17/06/2014 19:04,17/06/2014 20:05,233,3
17/06/2014 16:19,17/06/2014 16:36,17/06/2014 17:42,17/06/2014 17:42,17/06/2014 19:28,189,3
17/06/2014 16:22,17/06/2014 16:45,17/06/2014 16:45,17/06/2014 16:45,17/06/2014 18:01,99,4
17/06/2014 16:22,17/06/2014 16:44,17/06/2014 18:59,17/06/2014 17:05,17/06/2014 19:00,158,3
17/06/2014 16:33,17/06/2014 16:52,17/06/2014 17:49,17/06/2014 17:49,17/06/2014 18:51,138,4
17/06/2014 16:36,17/06/2014 17:06,17/06/2014 17:06,17/06/2014 17:15,17/06/2014 20:30,234,2
17/06/2014 16:48,17/06/2014 17:08,17/06/2014 17:40,17/06/2014 17:40,17/06/2014 18:15,87,4
17/06/2014 16:53,17/06/2014 17:13,17/06/2014 17:18,17/06/2014 17:18,17/06/2014 17:19,26,4
17/06/2014 16:55,17/06/2014 17:19,17/06/2014 18:19,17/06/2014 18:19,17/06/2014 19:20,145,4
17/06/2014 16:30,17/06/2014 16:50,17/06/2014 17:58,17/06/2014 17:58,17/06/2014 19:51,201,4
17/06/2014 17:03,17/06/2014 17:03,17/06/2014 17:03,17/06/2014 17:05,17/06/2014 23:02,359,3
17/06/2014 17:07,17/06/2014 17:08,17/06/2014 17:39,17/06/2014 18:01,17/06/2014 21:00,233,2
17/06/2014 17:11,17/06/2014 17:20,17/06/2014 18:19,17/06/2014 18:19,17/06/2014 19:05,114,4
17/06/2014 17:12,17/06/2014 17:13,17/06/2014 17:45,17/06/2014 20:41,17/06/2014 21:09,237,3
17/06/2014 17:18,17/06/2014 17:18,17/06/2014 17:50,17/06/2014 17:50,17/06/2014 20:27,189,3
17/06/2014 17:30,17/06/2014 17:36,17/06/2014 18:32,17/06/2014 20:52,17/06/2014 21:24,234,3
17/06/2014 15:23,17/06/2014 17:42,17/06/2014 18:17,17/06/2014 17:47,17/06/2014 19:20,237,3
17/06/2014 17:35,17/06/2014 17:35,17/06/2014 18:25,17/06/2014 20:22,17/06/2014 20:56,201,3
17/06/2014 17:37,17/06/2014 17:50,17/06/2014 18:36,17/06/2014 18:36,17/06/2014 20:49,192,3
17/06/2014 17:26,17/06/2014 17:43,17/06/2014 17:55,17/06/2014 18:03,17/06/2014 21:25,239,2
17/06/2014 17:45,17/06/2014 17:50,17/06/2014 18:43,17/06/2014 18:43,17/06/2014 20:24,159,4
17/06/2014 17:50,17/06/2014 17:59,17/06/2014 18:48,17/06/2014 18:48,17/06/2014 19:22,92,4
17/06/2014 17:56,17/06/2014 18:02,17/06/2014 18:58,17/06/2014 18:58,17/06/2014 19:14,78,4
17/06/2014 18:02,17/06/2014 18:08,17/06/2014 19:04,17/06/2014 19:34,17/06/2014 21:38,216,3
17/06/2014 18:07,17/06/2014 18:12,17/06/2014 19:13,17/06/2014 19:13,17/06/2014 20:08,121,4
17/06/2014 18:02,17/06/2014 18:02,17/06/2014 18:22,17/06/2014 19:11,17/06/2014 22:01,239,2
17/06/2014 18:07,17/06/2014 18:18,17/06/2014 18:18,17/06/2014 18:18,17/06/2014 20:13,126,4
17/06/2014 18:09,17/06/2014 18:18,17/06/2014 18:18,17/06/2014 18:27,17/06/2014 22:02,233,3
17/06/2014 18:10,17/06/2014 18:21,17/06/2014 20:08,17/06/2014 20:08,17/06/2014 19:23,73,3
17/06/2014 18:11,17/06/2014 18:11,17/06/2014 19:28,17/06/2014 19:53,17/06/2014 21:42,211,2
17/06/2014 18:13,17/06/2014 18:28,17/06/2014 20:07,17/06/2014 20:07,17/06/2014 20:08,115,4
17/06/2014 18:13,17/06/2014 18:30,17/06/2014 19:21,17/06/2014 19:21,17/06/2014 19:48,95,3
17/06/2014 18:21,17/06/2014 18:34,17/06/2014 19:22,17/06/2014 19:22,17/06/2014 20:18,117,4
17/06/2014 18:27,17/06/2014 18:35,17/06/2014 19:22,17/06/2014 19:22,17/06/2014 20:29,122,4
17/06/2014 18:31,17/06/2014 18:37,17/06/2014 19:38,17/06/2014 19:38,17/06/2014 20:20,109,4
17/06/2014 18:30,17/06/2014 18:30,17/06/2014 19:05,17/06/2014 20:21,17/06/2014 22:21,231,3
17/06/2014 18:39,17/06/2014 18:43,17/06/2014 19:33,17/06/2014 19:33,17/06/2014 19:57,78,3
17/06/2014 18:45,17/06/2014 18:51,17/06/2014 19:40,17/06/2014 19:40,17/06/2014 20:21,96,4
17/06/2014 18:48,17/06/2014 18:57,17/06/2014 19:52,17/06/2014 20:53,17/06/2014 22:45,237,4
17/06/2014 18:48,17/06/2014 19:18,17/06/2014 20:14,17/06/2014 20:14,17/06/2014 20:20,92,4
17/06/2014 18:49,17/06/2014 19:14,17/06/2014 20:36,17/06/2014 20:36,17/06/2014 21:28,159,2
17/06/2014 18:54,17/06/2014 18:54,17/06/2014 19:06,17/06/2014 22:01,17/06/2014 22:31,217,2
17/06/2014 18:57,17/06/2014 19:22,17/06/2014 20:54,17/06/2014 21:21,17/06/2014 22:55,238,3
17/06/2014 18:59,17/06/2014 19:32,17/06/2014 22:13,17/06/2014 22:12,17/06/2014 22:58,239,2
17/06/2014 19:07,17/06/2014 19:46,17/06/2014 19:46,17/06/2014 19:46,17/06/2014 20:28,81,4
17/06/2014 17:37,17/06/2014 19:39,17/06/2014 19:44,17/06/2014 19:44,17/06/2014 20:34,177,3
17/06/2014 17:39,17/06/2014 19:43,17/06/2014 19:46,17/06/2014 19:46,17/06/2014 21:00,201,4
17/06/2014 19:13,17/06/2014 19:42,17/06/2014 20:14,17/06/2014 21:19,17/06/2014 23:10,237,3
17/06/2014 19:17,17/06/2014 19:50,17/06/2014 20:17,17/06/2014 20:17,17/06/2014 21:51,154,3
17/06/2014 19:21,17/06/2014 19:26,17/06/2014 19:38,17/06/2014 22:25,17/06/2014 23:05,224,2
17/06/2014 19:27,17/06/2014 19:54,17/06/2014 20:26,17/06/2014 20:26,17/06/2014 21:37,130,4
17/06/2014 19:25,17/06/2014 19:25,17/06/2014 20:20,17/06/2014 20:50,17/06/2014 23:10,225,2
17/06/2014 19:33,17/06/2014 20:03,17/06/2014 20:21,17/06/2014 20:21,17/06/2014 20:30,57,4
17/06/2014 19:40,17/06/2014 20:07,17/06/2014 20:19,17/06/2014 20:19,17/06/2014 20:43,63,4
17/06/2014 19:38,17/06/2014 19:38,17/06/2014 20:24,17/06/2014 20:24,18/06/2014 01:06,328,3
17/06/2014 19:41,17/06/2014 19:52,17/06/2014 20:21,17/06/2014 21:29,17/06/2014 22:32,171,2
17/06/2014 19:42,17/06/2014 19:43,17/06/2014 21:51,17/06/2014 22:26,17/06/2014 23:38,236,2
17/06/2014 19:51,17/06/2014 20:03,17/06/2014 20:30,17/06/2014 20:30,17/06/2014 22:39,168,4
17/06/2014 20:09,17/06/2014 20:12,17/06/2014 20:46,17/06/2014 21:47,17/06/2014 23:14,185,3
17/06/2014 20:20,17/06/2014 20:22,17/06/2014 20:22,17/06/2014 20:22,17/06/2014 21:29,69,4
17/06/2014 20:26,17/06/2014 20:35,17/06/2014 20:51,17/06/2014 20:51,17/06/2014 22:01,95,4
17/06/2014 20:25,17/06/2014 20:26,17/06/2014 20:47,17/06/2014 22:12,17/06/2014 23:49,204,3
17/06/2014 20:31,17/06/2014 20:38,17/06/2014 21:14,17/06/2014 21:14,17/06/2014 22:44,133,4
17/06/2014 20:32,17/06/2014 20:43,17/06/2014 21:20,17/06/2014 21:40,17/06/2014 23:47,195,4
17/06/2014 20:48,17/06/2014 20:48,17/06/2014 21:24,17/06/2014 21:24,17/06/2014 22:20,92,4
17/06/2014 20:54,17/06/2014 20:55,17/06/2014 21:35,17/06/2014 21:35,17/06/2014 21:36,42,4
17/06/2014 20:57,17/06/2014 20:59,17/06/2014 21:53,17/06/2014 21:53,17/06/2014 23:02,125,3
17/06/2014 20:55,17/06/2014 20:55,17/06/2014 22:03,17/06/2014 22:03,18/06/2014 00:32,217,4
17/06/2014 21:04,17/06/2014 21:08,17/06/2014 21:08,17/06/2014 21:08,17/06/2014 21:36,32,4
17/06/2014 21:07,17/06/2014 21:25,17/06/2014 21:07,17/06/2014 22:00,18/06/2014 01:05,238,2
17/06/2014 21:09,17/06/2014 21:14,17/06/2014 21:13,17/06/2014 21:13,17/06/2014 23:22,133,4
17/06/2014 21:02,17/06/2014 21:02,17/06/2014 22:38,17/06/2014 23:24,18/06/2014 00:33,211,4
17/06/2014 21:11,17/06/2014 21:17,17/06/2014 22:04,17/06/2014 22:04,18/06/2014 00:53,222,5
17/06/2014 21:14,17/06/2014 21:22,17/06/2014 22:04,17/06/2014 22:09,17/06/2014 23:47,153,3
17/06/2014 21:17,17/06/2014 21:31,17/06/2014 22:22,17/06/2014 22:22,17/06/2014 22:49,92,3
17/06/2014 21:19,17/06/2014 21:39,17/06/2014 22:10,17/06/2014 22:10,17/06/2014 22:50,91,4
17/06/2014 21:27,17/06/2014 21:39,17/06/2014 22:20,17/06/2014 22:20,17/06/2014 23:29,122,3
17/06/2014 21:24,17/06/2014 21:24,17/06/2014 22:21,17/06/2014 22:21,17/06/2014 23:07,103,4
17/06/2014 21:32,17/06/2014 21:41,17/06/2014 22:25,17/06/2014 22:25,17/06/2014 23:01,89,4
17/06/2014 21:37,17/06/2014 21:45,17/06/2014 22:25,17/06/2014 22:25,17/06/2014 23:05,88,4
17/06/2014 21:44,17/06/2014 21:46,17/06/2014 22:08,17/06/2014 22:41,18/06/2014 01:10,206,2
17/06/2014 21:47,17/06/2014 21:51,17/06/2014 22:43,17/06/2014 22:43,17/06/2014 23:50,123,4
17/06/2014 20:16,17/06/2014 21:50,17/06/2014 21:44,17/06/2014 22:12,17/06/2014 23:37,201,4
17/06/2014 21:50,17/06/2014 21:56,17/06/2014 22:54,17/06/2014 22:54,17/06/2014 23:50,120,4
17/06/2014 20:48,17/06/2014 22:01,17/06/2014 23:07,17/06/2014 22:14,17/06/2014 23:32,164,3
17/06/2014 22:02,17/06/2014 22:15,17/06/2014 23:17,18/06/2014 00:39,18/06/2014 01:30,208,4
17/06/2014 21:01,17/06/2014 22:31,17/06/2014 22:15,17/06/2014 22:15,17/06/2014 23:19,138,2
17/06/2014 22:07,17/06/2014 22:19,17/06/2014 23:29,18/06/2014 00:06,18/06/2014 00:14,127,4
17/06/2014 22:02,17/06/2014 22:03,17/06/2014 23:08,18/06/2014 01:06,18/06/2014 01:30,208,3
17/06/2014 22:09,17/06/2014 22:25,17/06/2014 22:25,17/06/2014 22:25,17/06/2014 22:28,19,4
17/06/2014 22:14,17/06/2014 22:25,17/06/2014 22:25,17/06/2014 22:25,17/06/2014 22:30,16,4
17/06/2014 22:16,17/06/2014 22:29,17/06/2014 22:44,17/06/2014 23:06,18/06/2014 01:46,210,3
17/06/2014 22:19,17/06/2014 22:37,17/06/2014 23:45,17/06/2014 23:45,17/06/2014 23:46,87,4
17/06/2014 22:20,17/06/2014 22:37,17/06/2014 23:32,17/06/2014 23:32,18/06/2014 00:06,106,4
17/06/2014 22:22,17/06/2014 22:23,17/06/2014 23:34,17/06/2014 23:34,18/06/2014 00:22,120,4
17/06/2014 22:33,17/06/2014 22:40,17/06/2014 23:47,17/06/2014 23:47,18/06/2014 01:50,197,4
17/06/2014 22:35,17/06/2014 22:35,17/06/2014 23:37,18/06/2014 00:48,18/06/2014 02:35,240,3
17/06/2014 22:42,17/06/2014 22:49,17/06/2014 22:47,18/06/2014 01:34,18/06/2014 02:37,235,3
17/06/2014 22:42,17/06/2014 22:42,17/06/2014 22:56,18/06/2014 02:24,18/06/2014 02:39,237,3
17/06/2014 22:51,17/06/2014 22:55,17/06/2014 23:48,17/06/2014 23:48,18/06/2014 01:12,141,5
17/06/2014 22:54,17/06/2014 23:00,17/06/2014 23:49,17/06/2014 23:49,18/06/2014 01:29,155,4
17/06/2014 22:51,17/06/2014 22:53,17/06/2014 23:12,18/06/2014 00:11,18/06/2014 02:50,239,2
17/06/2014 23:00,17/06/2014 23:00,17/06/2014 23:33,17/06/2014 23:33,18/06/2014 02:18,198,3
17/06/2014 23:03,17/06/2014 23:04,17/06/2014 23:40,18/06/2014 02:00,18/06/2014 02:50,227,3
17/06/2014 23:20,17/06/2014 23:37,18/06/2014 00:24,18/06/2014 00:24,18/06/2014 00:51,91,5
17/06/2014 23:19,17/06/2014 23:19,17/06/2014 23:36,18/06/2014 02:04,18/06/2014 03:19,240,3
17/06/2014 23:25,17/06/2014 23:40,17/06/2014 23:40,17/06/2014 23:40,17/06/2014 23:44,19,5
17/06/2014 23:28,17/06/2014 23:44,18/06/2014 00:16,18/06/2014 00:16,18/06/2014 00:57,89,4
17/06/2014 23:29,17/06/2014 23:48,18/06/2014 00:18,18/06/2014 00:18,18/06/2014 02:02,153,3
17/06/2014 23:29,17/06/2014 23:30,18/06/2014 00:41,18/06/2014 01:18,18/06/2014 03:22,233,4
17/06/2014 23:40,17/06/2014 23:40,18/06/2014 00:41,18/06/2014 01:43,18/06/2014 02:54,194,3