Skip to content

Instantly share code, notes, and snippets.

@tkrs
Created June 23, 2017 04:06
Show Gist options
  • Select an option

  • Save tkrs/f05c60b5622c83a89c818ab54986ccdc to your computer and use it in GitHub Desktop.

Select an option

Save tkrs/f05c60b5622c83a89c818ab54986ccdc to your computer and use it in GitHub Desktop.
Example - Monix.gatherUnorderd
package sandbox
import java.time.Instant
import java.time.format.{DateTimeFormatter, DateTimeFormatterBuilder}
import java.util.concurrent._
import cats.instances.future._
import cats.syntax.cartesian._
import monix.eval.{Callback, Task}
import monix.execution.{Ack, Cancelable, Scheduler}
import monix.reactive.{Consumer, Observable, Observer}
import scala.concurrent.duration._
import scala.concurrent.{Await, ExecutionContext, Future}
object MonixGatherUnorderd {
// implicit val scheduler: Scheduler = Scheduler.computation(daemonic = false)
implicit val scheduler: Scheduler = Scheduler.singleThread(name = "mo", daemonic = false)
implicit val ctx = ExecutionContext.fromExecutorService(Executors.newWorkStealingPool(3))
def tasks(s: String): Task[Unit] = for {
_ <- Task { Thread.sleep(50); Mo.prn(s"$s: t1")}
_ <- Task { Thread.sleep(50); Mo.prn(s"$s: t2")}
_ <- Task { Thread.sleep(50); Mo.prn(s"$s: t3")}
} yield ()
def main(args: Array[String]): Unit = {
val queue = new ConcurrentLinkedQueue[String]
(1 to 1000).foreach(a => queue.offer(a.toString))
def fn = Future {
val iter =
Iterator.continually(queue.poll())
.takeWhile { v => Mo.prn(s"input value: $v"); v != null }
.map(tasks)
.take(100)
Task.gatherUnordered(iter).runAsync(new Callback[List[Unit]] {
override def onError(ex: Throwable): Unit = ex.printStackTrace()
override def onSuccess(value: List[Unit]): Unit = Mo.prn("complete")
})
}
Await.result(
(fn |@| fn |@| fn |@| fn |@| fn |@| fn |@| fn |@| fn |@| fn |@| fn |@| fn).tupled,
100.seconds
)
}
}
object Mo {
private[this] val dtf: DateTimeFormatter = new DateTimeFormatterBuilder().appendInstant(3).toFormatter
def prn(s: String): Unit =
println(s"${dtf.format(Instant.now)} [${Thread.currentThread().getName}] - $s.")
}
[info] Running sandbox.MonixGatherUnorderd
2017-06-23T03:50:15.462Z [ForkJoinPool-1-worker-2] - input value: 2.
2017-06-23T03:50:15.462Z [ForkJoinPool-1-worker-3] - input value: 1.
2017-06-23T03:50:15.462Z [ForkJoinPool-1-worker-1] - input value: 3.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-2] - input value: 4.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-3] - input value: 5.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-2] - input value: 7.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-3] - input value: 8.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-1] - input value: 6.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-3] - input value: 10.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-2] - input value: 9.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-3] - input value: 12.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-1] - input value: 11.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-2] - input value: 13.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-1] - input value: 15.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-3] - input value: 14.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-2] - input value: 16.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-1] - input value: 17.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-3] - input value: 18.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-2] - input value: 19.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-3] - input value: 21.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-2] - input value: 22.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-3] - input value: 23.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-2] - input value: 24.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-3] - input value: 25.
2017-06-23T03:50:15.482Z [ForkJoinPool-1-worker-1] - input value: 20.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-2] - input value: 26.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-3] - input value: 27.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-1] - input value: 28.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-2] - input value: 29.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-3] - input value: 30.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-2] - input value: 32.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-3] - input value: 33.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-2] - input value: 34.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-3] - input value: 35.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-2] - input value: 36.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-3] - input value: 37.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-1] - input value: 31.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-2] - input value: 38.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-1] - input value: 40.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-2] - input value: 41.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-1] - input value: 42.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-2] - input value: 43.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-1] - input value: 44.
2017-06-23T03:50:15.483Z [ForkJoinPool-1-worker-3] - input value: 39.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-1] - input value: 46.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-2] - input value: 45.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-3] - input value: 47.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-2] - input value: 49.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-1] - input value: 48.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-2] - input value: 51.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-1] - input value: 52.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-3] - input value: 50.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-2] - input value: 53.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-3] - input value: 55.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-1] - input value: 54.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-3] - input value: 57.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-1] - input value: 58.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-3] - input value: 59.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-1] - input value: 60.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-3] - input value: 61.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-1] - input value: 62.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-3] - input value: 63.
2017-06-23T03:50:15.484Z [ForkJoinPool-1-worker-2] - input value: 56.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-3] - input value: 65.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-2] - input value: 66.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-3] - input value: 67.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-2] - input value: 68.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-3] - input value: 69.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-1] - input value: 64.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-3] - input value: 71.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-1] - input value: 72.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-3] - input value: 73.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-1] - input value: 74.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-2] - input value: 70.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-1] - input value: 76.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-2] - input value: 77.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-1] - input value: 78.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-2] - input value: 79.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-1] - input value: 80.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-2] - input value: 81.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-1] - input value: 82.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-2] - input value: 83.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-1] - input value: 84.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-1] - input value: 86.
2017-06-23T03:50:15.485Z [ForkJoinPool-1-worker-3] - input value: 75.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-1] - input value: 87.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-3] - input value: 88.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-3] - input value: 90.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-2] - input value: 85.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-3] - input value: 91.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-2] - input value: 92.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-3] - input value: 93.
2017-06-23T03:50:15.487Z [ForkJoinPool-1-worker-3] - input value: 95.
2017-06-23T03:50:15.487Z [ForkJoinPool-1-worker-3] - input value: 96.
2017-06-23T03:50:15.488Z [ForkJoinPool-1-worker-3] - input value: 97.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-1] - input value: 89.
2017-06-23T03:50:15.488Z [ForkJoinPool-1-worker-1] - input value: 99.
2017-06-23T03:50:15.486Z [ForkJoinPool-1-worker-2] - input value: 94.
2017-06-23T03:50:15.488Z [ForkJoinPool-1-worker-1] - input value: 100.
2017-06-23T03:50:15.488Z [ForkJoinPool-1-worker-2] - input value: 101.
2017-06-23T03:50:15.488Z [ForkJoinPool-1-worker-2] - input value: 102.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-2] - input value: 103.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-2] - input value: 104.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-1] - input value: 105.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-2] - input value: 106.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-1] - input value: 107.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-2] - input value: 108.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-1] - input value: 109.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-2] - input value: 110.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-3] - input value: 98.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-2] - input value: 112.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-2] - input value: 114.
2017-06-23T03:50:15.490Z [ForkJoinPool-1-worker-2] - input value: 115.
2017-06-23T03:50:15.490Z [ForkJoinPool-1-worker-2] - input value: 116.
2017-06-23T03:50:15.490Z [ForkJoinPool-1-worker-2] - input value: 117.
2017-06-23T03:50:15.491Z [ForkJoinPool-1-worker-2] - input value: 118.
2017-06-23T03:50:15.491Z [ForkJoinPool-1-worker-2] - input value: 119.
2017-06-23T03:50:15.491Z [ForkJoinPool-1-worker-2] - input value: 120.
2017-06-23T03:50:15.491Z [ForkJoinPool-1-worker-2] - input value: 121.
2017-06-23T03:50:15.491Z [ForkJoinPool-1-worker-2] - input value: 122.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-1] - input value: 111.
2017-06-23T03:50:15.491Z [ForkJoinPool-1-worker-2] - input value: 123.
2017-06-23T03:50:15.491Z [ForkJoinPool-1-worker-1] - input value: 124.
2017-06-23T03:50:15.491Z [ForkJoinPool-1-worker-2] - input value: 125.
2017-06-23T03:50:15.491Z [ForkJoinPool-1-worker-1] - input value: 126.
2017-06-23T03:50:15.491Z [ForkJoinPool-1-worker-2] - input value: 127.
2017-06-23T03:50:15.492Z [ForkJoinPool-1-worker-2] - input value: 128.
2017-06-23T03:50:15.492Z [ForkJoinPool-1-worker-2] - input value: 129.
2017-06-23T03:50:15.497Z [ForkJoinPool-1-worker-2] - input value: 130.
2017-06-23T03:50:15.498Z [ForkJoinPool-1-worker-2] - input value: 132.
2017-06-23T03:50:15.498Z [ForkJoinPool-1-worker-2] - input value: 133.
2017-06-23T03:50:15.489Z [ForkJoinPool-1-worker-3] - input value: 113.
2017-06-23T03:50:15.498Z [ForkJoinPool-1-worker-2] - input value: 134.
2017-06-23T03:50:15.498Z [ForkJoinPool-1-worker-2] - input value: 135.
2017-06-23T03:50:15.498Z [ForkJoinPool-1-worker-1] - input value: 131.
2017-06-23T03:50:15.498Z [ForkJoinPool-1-worker-3] - input value: 137.
2017-06-23T03:50:15.498Z [ForkJoinPool-1-worker-2] - input value: 136.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 139.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-2] - input value: 140.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 141.
2017-06-23T03:50:15.498Z [ForkJoinPool-1-worker-1] - input value: 138.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 143.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-2] - input value: 142.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 145.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-1] - input value: 144.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 147.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-2] - input value: 146.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 149.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-1] - input value: 148.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 151.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-1] - input value: 152.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 153.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 155.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 156.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-3] - input value: 157.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-2] - input value: 150.
2017-06-23T03:50:15.500Z [ForkJoinPool-1-worker-2] - input value: 158.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-2] - input value: 159.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-3] - input value: 160.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-2] - input value: 161.
2017-06-23T03:50:15.499Z [ForkJoinPool-1-worker-1] - input value: 154.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-2] - input value: 163.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-1] - input value: 164.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-2] - input value: 165.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-1] - input value: 166.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-2] - input value: 167.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-2] - input value: 169.
2017-06-23T03:50:15.507Z [ForkJoinPool-1-worker-2] - input value: 170.
2017-06-23T03:50:15.507Z [ForkJoinPool-1-worker-2] - input value: 171.
2017-06-23T03:50:15.507Z [ForkJoinPool-1-worker-2] - input value: 172.
2017-06-23T03:50:15.507Z [ForkJoinPool-1-worker-2] - input value: 173.
2017-06-23T03:50:15.507Z [ForkJoinPool-1-worker-2] - input value: 174.
2017-06-23T03:50:15.507Z [ForkJoinPool-1-worker-2] - input value: 175.
2017-06-23T03:50:15.507Z [ForkJoinPool-1-worker-2] - input value: 176.
2017-06-23T03:50:15.507Z [ForkJoinPool-1-worker-2] - input value: 177.
2017-06-23T03:50:15.507Z [ForkJoinPool-1-worker-2] - input value: 178.
2017-06-23T03:50:15.507Z [ForkJoinPool-1-worker-2] - input value: 179.
2017-06-23T03:50:15.508Z [ForkJoinPool-1-worker-2] - input value: 180.
2017-06-23T03:50:15.508Z [ForkJoinPool-1-worker-2] - input value: 181.
2017-06-23T03:50:15.508Z [ForkJoinPool-1-worker-2] - input value: 182.
2017-06-23T03:50:15.508Z [ForkJoinPool-1-worker-2] - input value: 183.
2017-06-23T03:50:15.508Z [ForkJoinPool-1-worker-2] - input value: 184.
2017-06-23T03:50:15.508Z [ForkJoinPool-1-worker-2] - input value: 185.
2017-06-23T03:50:15.508Z [ForkJoinPool-1-worker-2] - input value: 186.
2017-06-23T03:50:15.508Z [ForkJoinPool-1-worker-2] - input value: 187.
2017-06-23T03:50:15.508Z [ForkJoinPool-1-worker-2] - input value: 188.
2017-06-23T03:50:15.508Z [ForkJoinPool-1-worker-2] - input value: 189.
2017-06-23T03:50:15.509Z [ForkJoinPool-1-worker-2] - input value: 190.
2017-06-23T03:50:15.509Z [ForkJoinPool-1-worker-2] - input value: 191.
2017-06-23T03:50:15.509Z [ForkJoinPool-1-worker-2] - input value: 192.
2017-06-23T03:50:15.509Z [ForkJoinPool-1-worker-2] - input value: 193.
2017-06-23T03:50:15.509Z [ForkJoinPool-1-worker-2] - input value: 194.
2017-06-23T03:50:15.509Z [ForkJoinPool-1-worker-2] - input value: 195.
2017-06-23T03:50:15.509Z [ForkJoinPool-1-worker-2] - input value: 196.
2017-06-23T03:50:15.509Z [ForkJoinPool-1-worker-2] - input value: 197.
2017-06-23T03:50:15.509Z [ForkJoinPool-1-worker-2] - input value: 198.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-3] - input value: 162.
2017-06-23T03:50:15.506Z [ForkJoinPool-1-worker-1] - input value: 168.
2017-06-23T03:50:15.512Z [ForkJoinPool-1-worker-1] - input value: 199.
2017-06-23T03:50:15.512Z [ForkJoinPool-1-worker-1] - input value: 200.
2017-06-23T03:50:15.512Z [ForkJoinPool-1-worker-1] - input value: 201.
2017-06-23T03:50:15.512Z [ForkJoinPool-1-worker-1] - input value: 202.
2017-06-23T03:50:15.512Z [ForkJoinPool-1-worker-1] - input value: 203.
2017-06-23T03:50:15.512Z [ForkJoinPool-1-worker-1] - input value: 204.
2017-06-23T03:50:15.513Z [ForkJoinPool-1-worker-1] - input value: 205.
2017-06-23T03:50:15.513Z [ForkJoinPool-1-worker-1] - input value: 206.
2017-06-23T03:50:15.513Z [ForkJoinPool-1-worker-1] - input value: 207.
2017-06-23T03:50:15.513Z [ForkJoinPool-1-worker-1] - input value: 208.
2017-06-23T03:50:15.513Z [ForkJoinPool-1-worker-1] - input value: 209.
2017-06-23T03:50:15.513Z [ForkJoinPool-1-worker-1] - input value: 210.
2017-06-23T03:50:15.513Z [ForkJoinPool-1-worker-1] - input value: 211.
2017-06-23T03:50:15.513Z [ForkJoinPool-1-worker-1] - input value: 212.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 213.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 214.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 215.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 216.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 217.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 218.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 219.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 220.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 221.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-3] - input value: 222.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 223.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-3] - input value: 224.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-1] - input value: 225.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 227.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 228.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 229.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 230.
2017-06-23T03:50:15.514Z [ForkJoinPool-1-worker-3] - input value: 226.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 231.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-3] - input value: 232.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 233.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 235.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 236.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 237.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 238.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-1] - input value: 239.
2017-06-23T03:50:15.516Z [ForkJoinPool-1-worker-1] - input value: 240.
2017-06-23T03:50:15.516Z [ForkJoinPool-1-worker-1] - input value: 241.
2017-06-23T03:50:15.515Z [ForkJoinPool-1-worker-3] - input value: 234.
2017-06-23T03:50:15.517Z [ForkJoinPool-1-worker-1] - input value: 242.
2017-06-23T03:50:15.517Z [ForkJoinPool-1-worker-3] - input value: 243.
2017-06-23T03:50:15.518Z [ForkJoinPool-1-worker-1] - input value: 244.
2017-06-23T03:50:15.518Z [ForkJoinPool-1-worker-3] - input value: 245.
2017-06-23T03:50:15.518Z [ForkJoinPool-1-worker-1] - input value: 246.
2017-06-23T03:50:15.518Z [ForkJoinPool-1-worker-3] - input value: 247.
2017-06-23T03:50:15.518Z [ForkJoinPool-1-worker-1] - input value: 248.
2017-06-23T03:50:15.518Z [ForkJoinPool-1-worker-3] - input value: 249.
2017-06-23T03:50:15.518Z [ForkJoinPool-1-worker-1] - input value: 250.
2017-06-23T03:50:15.518Z [ForkJoinPool-1-worker-3] - input value: 251.
2017-06-23T03:50:15.518Z [ForkJoinPool-1-worker-1] - input value: 252.
2017-06-23T03:50:15.519Z [ForkJoinPool-1-worker-1] - input value: 254.
2017-06-23T03:50:15.519Z [ForkJoinPool-1-worker-1] - input value: 255.
2017-06-23T03:50:15.518Z [ForkJoinPool-1-worker-3] - input value: 253.
2017-06-23T03:50:15.519Z [ForkJoinPool-1-worker-1] - input value: 256.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-3] - input value: 257.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-1] - input value: 258.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-3] - input value: 259.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-1] - input value: 260.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-1] - input value: 262.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-3] - input value: 261.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-1] - input value: 263.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-3] - input value: 264.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-1] - input value: 265.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-3] - input value: 266.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-3] - input value: 268.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-3] - input value: 269.
2017-06-23T03:50:15.520Z [ForkJoinPool-1-worker-1] - input value: 267.
2017-06-23T03:50:15.521Z [ForkJoinPool-1-worker-3] - input value: 270.
2017-06-23T03:50:15.521Z [ForkJoinPool-1-worker-3] - input value: 272.
2017-06-23T03:50:15.521Z [ForkJoinPool-1-worker-3] - input value: 273.
2017-06-23T03:50:15.521Z [ForkJoinPool-1-worker-1] - input value: 271.
2017-06-23T03:50:15.521Z [ForkJoinPool-1-worker-3] - input value: 274.
2017-06-23T03:50:15.521Z [ForkJoinPool-1-worker-3] - input value: 275.
2017-06-23T03:50:15.521Z [ForkJoinPool-1-worker-3] - input value: 276.
2017-06-23T03:50:15.521Z [ForkJoinPool-1-worker-3] - input value: 277.
2017-06-23T03:50:15.521Z [ForkJoinPool-1-worker-3] - input value: 278.
2017-06-23T03:50:15.522Z [ForkJoinPool-1-worker-3] - input value: 279.
2017-06-23T03:50:15.522Z [ForkJoinPool-1-worker-3] - input value: 280.
2017-06-23T03:50:15.522Z [ForkJoinPool-1-worker-3] - input value: 281.
2017-06-23T03:50:15.522Z [ForkJoinPool-1-worker-3] - input value: 282.
2017-06-23T03:50:15.522Z [ForkJoinPool-1-worker-3] - input value: 283.
2017-06-23T03:50:15.522Z [ForkJoinPool-1-worker-3] - input value: 284.
2017-06-23T03:50:15.522Z [ForkJoinPool-1-worker-3] - input value: 285.
2017-06-23T03:50:15.523Z [ForkJoinPool-1-worker-3] - input value: 286.
2017-06-23T03:50:15.523Z [ForkJoinPool-1-worker-3] - input value: 287.
2017-06-23T03:50:15.523Z [ForkJoinPool-1-worker-3] - input value: 288.
2017-06-23T03:50:15.523Z [ForkJoinPool-1-worker-3] - input value: 289.
2017-06-23T03:50:15.523Z [ForkJoinPool-1-worker-3] - input value: 290.
2017-06-23T03:50:15.523Z [ForkJoinPool-1-worker-3] - input value: 291.
2017-06-23T03:50:15.523Z [ForkJoinPool-1-worker-3] - input value: 292.
2017-06-23T03:50:15.524Z [ForkJoinPool-1-worker-3] - input value: 293.
2017-06-23T03:50:15.524Z [ForkJoinPool-1-worker-3] - input value: 294.
2017-06-23T03:50:15.524Z [ForkJoinPool-1-worker-3] - input value: 295.
2017-06-23T03:50:15.524Z [ForkJoinPool-1-worker-3] - input value: 296.
2017-06-23T03:50:15.527Z [ForkJoinPool-1-worker-3] - input value: 297.
2017-06-23T03:50:15.527Z [ForkJoinPool-1-worker-3] - input value: 298.
2017-06-23T03:50:15.528Z [ForkJoinPool-1-worker-3] - input value: 299.
2017-06-23T03:50:15.528Z [ForkJoinPool-1-worker-3] - input value: 300.
2017-06-23T03:50:15.534Z [ForkJoinPool-1-worker-1] - input value: 301.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-1] - input value: 302.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-1] - input value: 303.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-1] - input value: 304.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-1] - input value: 305.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-2] - input value: 306.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-1] - input value: 307.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-2] - input value: 308.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-1] - input value: 309.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-2] - input value: 310.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-1] - input value: 311.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-2] - input value: 312.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-1] - input value: 313.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 315.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 316.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 317.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 318.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 319.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 320.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 321.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 322.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 323.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 324.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 325.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-1] - input value: 327.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-1] - input value: 328.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-1] - input value: 329.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-1] - input value: 330.
2017-06-23T03:50:15.535Z [ForkJoinPool-1-worker-2] - input value: 314.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-2] - input value: 332.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-2] - input value: 333.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-2] - input value: 334.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-2] - input value: 335.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-2] - input value: 336.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-2] - input value: 337.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-1] - input value: 331.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-1] - input value: 339.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-1] - input value: 340.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-1] - input value: 341.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-1] - input value: 342.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-1] - input value: 343.
2017-06-23T03:50:15.536Z [ForkJoinPool-1-worker-3] - input value: 326.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-3] - input value: 345.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-3] - input value: 346.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-3] - input value: 347.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-3] - input value: 348.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-3] - input value: 349.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 350.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 351.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 352.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 353.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 354.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 355.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 356.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 357.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 358.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 359.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 360.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 361.
2017-06-23T03:50:15.539Z [ForkJoinPool-1-worker-3] - input value: 362.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 363.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 364.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 365.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 366.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 367.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 368.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 369.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 370.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 371.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 372.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 373.
2017-06-23T03:50:15.540Z [ForkJoinPool-1-worker-3] - input value: 374.
2017-06-23T03:50:15.541Z [ForkJoinPool-1-worker-3] - input value: 375.
2017-06-23T03:50:15.541Z [ForkJoinPool-1-worker-3] - input value: 376.
2017-06-23T03:50:15.541Z [ForkJoinPool-1-worker-3] - input value: 377.
2017-06-23T03:50:15.541Z [ForkJoinPool-1-worker-3] - input value: 378.
2017-06-23T03:50:15.541Z [ForkJoinPool-1-worker-3] - input value: 379.
2017-06-23T03:50:15.541Z [ForkJoinPool-1-worker-3] - input value: 380.
2017-06-23T03:50:15.541Z [ForkJoinPool-1-worker-3] - input value: 381.
2017-06-23T03:50:15.537Z [ForkJoinPool-1-worker-2] - input value: 338.
2017-06-23T03:50:15.538Z [ForkJoinPool-1-worker-1] - input value: 344.
2017-06-23T03:50:15.541Z [ForkJoinPool-1-worker-2] - input value: 383.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-1] - input value: 384.
2017-06-23T03:50:15.541Z [ForkJoinPool-1-worker-3] - input value: 382.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-1] - input value: 386.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-3] - input value: 387.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-1] - input value: 388.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-3] - input value: 389.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-1] - input value: 390.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-3] - input value: 391.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-1] - input value: 392.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-3] - input value: 393.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-1] - input value: 394.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-2] - input value: 385.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-3] - input value: 395.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-2] - input value: 397.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-3] - input value: 398.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-2] - input value: 399.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-1] - input value: 396.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-2] - input value: 401.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-1] - input value: 402.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-2] - input value: 403.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-1] - input value: 404.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-2] - input value: 405.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-1] - input value: 406.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-1] - input value: 408.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-1] - input value: 409.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-1] - input value: 410.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-1] - input value: 411.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-1] - input value: 412.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-1] - input value: 413.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-1] - input value: 414.
2017-06-23T03:50:15.542Z [ForkJoinPool-1-worker-3] - input value: 400.
2017-06-23T03:50:15.544Z [ForkJoinPool-1-worker-1] - input value: 415.
2017-06-23T03:50:15.544Z [ForkJoinPool-1-worker-1] - input value: 417.
2017-06-23T03:50:15.544Z [ForkJoinPool-1-worker-1] - input value: 418.
2017-06-23T03:50:15.544Z [ForkJoinPool-1-worker-1] - input value: 419.
2017-06-23T03:50:15.544Z [ForkJoinPool-1-worker-1] - input value: 420.
2017-06-23T03:50:15.544Z [ForkJoinPool-1-worker-1] - input value: 421.
2017-06-23T03:50:15.545Z [ForkJoinPool-1-worker-1] - input value: 422.
2017-06-23T03:50:15.545Z [ForkJoinPool-1-worker-1] - input value: 423.
2017-06-23T03:50:15.545Z [ForkJoinPool-1-worker-1] - input value: 424.
2017-06-23T03:50:15.545Z [ForkJoinPool-1-worker-1] - input value: 425.
2017-06-23T03:50:15.545Z [ForkJoinPool-1-worker-1] - input value: 426.
2017-06-23T03:50:15.545Z [ForkJoinPool-1-worker-1] - input value: 427.
2017-06-23T03:50:15.545Z [ForkJoinPool-1-worker-1] - input value: 428.
2017-06-23T03:50:15.545Z [ForkJoinPool-1-worker-1] - input value: 429.
2017-06-23T03:50:15.548Z [ForkJoinPool-1-worker-1] - input value: 430.
2017-06-23T03:50:15.548Z [ForkJoinPool-1-worker-1] - input value: 431.
2017-06-23T03:50:15.548Z [ForkJoinPool-1-worker-1] - input value: 432.
2017-06-23T03:50:15.543Z [ForkJoinPool-1-worker-2] - input value: 407.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-2] - input value: 434.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-2] - input value: 435.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-2] - input value: 436.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-2] - input value: 437.
2017-06-23T03:50:15.548Z [ForkJoinPool-1-worker-1] - input value: 433.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-2] - input value: 438.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-1] - input value: 439.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-1] - input value: 441.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-1] - input value: 442.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-1] - input value: 443.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-1] - input value: 444.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-1] - input value: 445.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-1] - input value: 446.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-1] - input value: 447.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-1] - input value: 448.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-1] - input value: 449.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-1] - input value: 450.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-1] - input value: 451.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-1] - input value: 452.
2017-06-23T03:50:15.544Z [ForkJoinPool-1-worker-3] - input value: 416.
2017-06-23T03:50:15.549Z [ForkJoinPool-1-worker-2] - input value: 440.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-2] - input value: 453.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-2] - input value: 454.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-2] - input value: 455.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-2] - input value: 456.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-2] - input value: 457.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-2] - input value: 458.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-2] - input value: 459.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 461.
2017-06-23T03:50:15.550Z [ForkJoinPool-1-worker-3] - input value: 460.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 463.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 464.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 462.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 465.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 466.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 467.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 468.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 469.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 470.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 471.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 472.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-3] - input value: 474.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 475.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-3] - input value: 476.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 477.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-3] - input value: 478.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 479.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 473.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 481.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-3] - input value: 480.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 483.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 482.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 485.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 486.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-2] - input value: 487.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-3] - input value: 484.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-2] - input value: 489.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-3] - input value: 490.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-3] - input value: 492.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-3] - input value: 493.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-3] - input value: 494.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-3] - input value: 495.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-3] - input value: 496.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-3] - input value: 497.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-3] - input value: 498.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-3] - input value: 499.
2017-06-23T03:50:15.551Z [ForkJoinPool-1-worker-1] - input value: 488.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-1] - input value: 501.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-1] - input value: 502.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-1] - input value: 503.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-1] - input value: 504.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-1] - input value: 505.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-1] - input value: 506.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-1] - input value: 507.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-1] - input value: 508.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-1] - input value: 509.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-1] - input value: 510.
2017-06-23T03:50:15.553Z [ForkJoinPool-1-worker-3] - input value: 500.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 511.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 512.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 513.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 514.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 515.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 516.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 517.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 518.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 519.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 520.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 521.
2017-06-23T03:50:15.555Z [ForkJoinPool-1-worker-3] - input value: 522.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-3] - input value: 523.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-3] - input value: 524.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-3] - input value: 525.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-3] - input value: 526.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-3] - input value: 527.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-3] - input value: 528.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-3] - input value: 529.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-3] - input value: 530.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-1] - input value: 531.
2017-06-23T03:50:15.552Z [ForkJoinPool-1-worker-2] - input value: 491.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-1] - input value: 532.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-2] - input value: 533.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-1] - input value: 534.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-2] - input value: 535.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-1] - input value: 536.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-2] - input value: 537.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-3] - input value: 539.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-2] - input value: 540.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 541.
2017-06-23T03:50:15.556Z [ForkJoinPool-1-worker-1] - input value: 538.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 543.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-1] - input value: 544.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 545.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 547.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 548.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 549.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 550.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 551.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 552.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 553.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 554.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 555.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 556.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 557.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-2] - input value: 542.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 559.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-3] - input value: 558.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 560.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-3] - input value: 561.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 562.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 563.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 564.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 565.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 566.
2017-06-23T03:50:15.557Z [ForkJoinPool-1-worker-1] - input value: 546.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 567.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-1] - input value: 568.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 569.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-1] - input value: 570.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 571.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-1] - input value: 572.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 573.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-1] - input value: 574.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 575.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-1] - input value: 576.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 577.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-1] - input value: 578.
2017-06-23T03:50:15.558Z [ForkJoinPool-1-worker-2] - input value: 579.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-1] - input value: 580.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-2] - input value: 581.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-1] - input value: 582.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-2] - input value: 583.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-1] - input value: 584.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-2] - input value: 585.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-1] - input value: 586.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-2] - input value: 587.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-1] - input value: 588.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-2] - input value: 589.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-1] - input value: 590.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-1] - input value: 592.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-1] - input value: 593.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-1] - input value: 594.
2017-06-23T03:50:15.560Z [ForkJoinPool-1-worker-1] - input value: 595.
2017-06-23T03:50:15.560Z [ForkJoinPool-1-worker-1] - input value: 596.
2017-06-23T03:50:15.560Z [ForkJoinPool-1-worker-1] - input value: 597.
2017-06-23T03:50:15.560Z [ForkJoinPool-1-worker-1] - input value: 598.
2017-06-23T03:50:15.560Z [ForkJoinPool-1-worker-1] - input value: 599.
2017-06-23T03:50:15.560Z [ForkJoinPool-1-worker-1] - input value: 600.
2017-06-23T03:50:15.559Z [ForkJoinPool-1-worker-2] - input value: 591.
2017-06-23T03:50:15.560Z [ForkJoinPool-1-worker-2] - input value: 601.
2017-06-23T03:50:15.561Z [ForkJoinPool-1-worker-2] - input value: 602.
2017-06-23T03:50:15.563Z [ForkJoinPool-1-worker-2] - input value: 603.
2017-06-23T03:50:15.563Z [ForkJoinPool-1-worker-2] - input value: 604.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-2] - input value: 605.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-2] - input value: 606.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-2] - input value: 607.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-2] - input value: 608.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-2] - input value: 609.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-2] - input value: 610.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-2] - input value: 611.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-2] - input value: 612.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-2] - input value: 613.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-2] - input value: 614.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 616.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 617.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 618.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 619.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 620.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 621.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 622.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 623.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 624.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 625.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 626.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 627.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 628.
2017-06-23T03:50:15.565Z [ForkJoinPool-1-worker-2] - input value: 629.
2017-06-23T03:50:15.564Z [ForkJoinPool-1-worker-1] - input value: 615.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 630.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 631.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 632.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 633.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 634.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 635.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 636.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 637.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 638.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 639.
2017-06-23T03:50:15.566Z [ForkJoinPool-1-worker-1] - input value: 640.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 641.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 642.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 643.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 644.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 645.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 646.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 647.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 648.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 649.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 651.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 652.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 653.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 654.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 655.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-1] - input value: 656.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-1] - input value: 657.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-1] - input value: 658.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-1] - input value: 659.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-1] - input value: 660.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-1] - input value: 661.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-1] - input value: 662.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-1] - input value: 663.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-1] - input value: 664.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-1] - input value: 665.
2017-06-23T03:50:15.567Z [ForkJoinPool-1-worker-3] - input value: 650.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-3] - input value: 667.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-3] - input value: 668.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-3] - input value: 669.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-3] - input value: 670.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-2] - input value: 671.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-2] - input value: 673.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-2] - input value: 674.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 675.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 676.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 677.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 678.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 679.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 680.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 681.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 682.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 683.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 684.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 685.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 686.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 687.
2017-06-23T03:50:15.569Z [ForkJoinPool-1-worker-2] - input value: 688.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 689.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 690.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 691.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 692.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 693.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 694.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 695.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 696.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 697.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 698.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 699.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 700.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 701.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 702.
2017-06-23T03:50:15.570Z [ForkJoinPool-1-worker-2] - input value: 703.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-2] - input value: 704.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-2] - input value: 705.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-2] - input value: 706.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-2] - input value: 707.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-2] - input value: 708.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-2] - input value: 709.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-2] - input value: 710.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-2] - input value: 711.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-1] - input value: 666.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-1] - input value: 713.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-1] - input value: 714.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-1] - input value: 715.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-1] - input value: 716.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-1] - input value: 717.
2017-06-23T03:50:15.572Z [ForkJoinPool-1-worker-1] - input value: 718.
2017-06-23T03:50:15.572Z [ForkJoinPool-1-worker-1] - input value: 719.
2017-06-23T03:50:15.571Z [ForkJoinPool-1-worker-2] - input value: 712.
2017-06-23T03:50:15.572Z [ForkJoinPool-1-worker-1] - input value: 720.
2017-06-23T03:50:15.572Z [ForkJoinPool-1-worker-2] - input value: 721.
2017-06-23T03:50:15.568Z [ForkJoinPool-1-worker-3] - input value: 672.
2017-06-23T03:50:15.572Z [ForkJoinPool-1-worker-1] - input value: 722.
2017-06-23T03:50:15.572Z [ForkJoinPool-1-worker-3] - input value: 724.
2017-06-23T03:50:15.572Z [ForkJoinPool-1-worker-1] - input value: 725.
2017-06-23T03:50:15.572Z [ForkJoinPool-1-worker-2] - input value: 723.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-1] - input value: 727.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-2] - input value: 728.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-1] - input value: 729.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-2] - input value: 730.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-1] - input value: 731.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-2] - input value: 732.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-1] - input value: 733.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-2] - input value: 734.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-1] - input value: 735.
2017-06-23T03:50:15.572Z [ForkJoinPool-1-worker-3] - input value: 726.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-1] - input value: 737.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-2] - input value: 736.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-1] - input value: 739.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-3] - input value: 738.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-1] - input value: 741.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-2] - input value: 740.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-1] - input value: 743.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-2] - input value: 744.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 745.
2017-06-23T03:50:15.573Z [ForkJoinPool-1-worker-3] - input value: 742.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 747.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-2] - input value: 746.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 749.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-3] - input value: 748.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 751.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-2] - input value: 750.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 753.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 755.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-3] - input value: 752.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 756.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-3] - input value: 757.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 758.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-3] - input value: 759.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 760.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-2] - input value: 754.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 762.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-3] - input value: 761.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-1] - input value: 764.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-2] - input value: 763.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-1] - input value: 766.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-2] - input value: 767.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-1] - input value: 768.
2017-06-23T03:50:15.574Z [ForkJoinPool-1-worker-3] - input value: 765.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-1] - input value: 770.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-3] - input value: 771.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-1] - input value: 772.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-3] - input value: 773.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-2] - input value: 769.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-3] - input value: 775.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-2] - input value: 776.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-1] - input value: 774.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-2] - input value: 778.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-2] - input value: 779.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-2] - input value: 780.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-2] - input value: 781.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 782.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 783.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 784.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 785.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 786.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 787.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 788.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 789.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 790.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 791.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 792.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 793.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 794.
2017-06-23T03:50:15.576Z [ForkJoinPool-1-worker-2] - input value: 795.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 796.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 797.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 798.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 799.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 800.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 801.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 802.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 803.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 804.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 805.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 806.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 807.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 808.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 809.
2017-06-23T03:50:15.577Z [ForkJoinPool-1-worker-2] - input value: 810.
2017-06-23T03:50:15.578Z [ForkJoinPool-1-worker-2] - input value: 811.
2017-06-23T03:50:15.578Z [ForkJoinPool-1-worker-2] - input value: 812.
2017-06-23T03:50:15.578Z [ForkJoinPool-1-worker-2] - input value: 813.
2017-06-23T03:50:15.578Z [ForkJoinPool-1-worker-2] - input value: 814.
2017-06-23T03:50:15.578Z [ForkJoinPool-1-worker-2] - input value: 815.
2017-06-23T03:50:15.578Z [ForkJoinPool-1-worker-2] - input value: 816.
2017-06-23T03:50:15.578Z [ForkJoinPool-1-worker-2] - input value: 817.
2017-06-23T03:50:15.578Z [ForkJoinPool-1-worker-2] - input value: 818.
2017-06-23T03:50:15.578Z [ForkJoinPool-1-worker-2] - input value: 819.
2017-06-23T03:50:15.578Z [ForkJoinPool-1-worker-2] - input value: 820.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 821.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 822.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 823.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 824.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 825.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 826.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 827.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 828.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 829.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 830.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 831.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 832.
2017-06-23T03:50:15.579Z [ForkJoinPool-1-worker-1] - input value: 833.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 834.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 835.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 836.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 837.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 838.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 839.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 840.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 841.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 842.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 843.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 844.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 845.
2017-06-23T03:50:15.580Z [ForkJoinPool-1-worker-1] - input value: 846.
2017-06-23T03:50:15.581Z [ForkJoinPool-1-worker-1] - input value: 847.
2017-06-23T03:50:15.581Z [ForkJoinPool-1-worker-1] - input value: 848.
2017-06-23T03:50:15.581Z [ForkJoinPool-1-worker-1] - input value: 849.
2017-06-23T03:50:15.581Z [ForkJoinPool-1-worker-1] - input value: 850.
2017-06-23T03:50:15.581Z [ForkJoinPool-1-worker-1] - input value: 851.
2017-06-23T03:50:15.581Z [ForkJoinPool-1-worker-2] - input value: 852.
2017-06-23T03:50:15.581Z [ForkJoinPool-1-worker-1] - input value: 853.
2017-06-23T03:50:15.581Z [ForkJoinPool-1-worker-2] - input value: 854.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-1] - input value: 855.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 856.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-1] - input value: 857.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 858.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-1] - input value: 859.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 860.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-1] - input value: 861.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 862.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-1] - input value: 863.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 864.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 865.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 866.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 867.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 868.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 869.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 870.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 871.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 873.
2017-06-23T03:50:15.575Z [ForkJoinPool-1-worker-3] - input value: 777.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 874.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-3] - input value: 875.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-1] - input value: 872.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-3] - input value: 877.
2017-06-23T03:50:15.582Z [ForkJoinPool-1-worker-2] - input value: 876.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-3] - input value: 879.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-2] - input value: 880.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-3] - input value: 881.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 878.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-3] - input value: 883.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 884.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-3] - input value: 885.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 886.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-3] - input value: 887.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 888.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-3] - input value: 889.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 890.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-3] - input value: 891.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 892.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 894.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 895.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 896.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 897.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-1] - input value: 898.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-1] - input value: 899.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-1] - input value: 900.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-1] - input value: 901.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-1] - input value: 902.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-1] - input value: 903.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-1] - input value: 904.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-1] - input value: 905.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-3] - input value: 893.
2017-06-23T03:50:15.583Z [ForkJoinPool-1-worker-2] - input value: 882.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-3] - input value: 907.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-1] - input value: 906.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-2] - input value: 908.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-3] - input value: 909.
2017-06-23T03:50:15.584Z [mo-60] - 198: t1.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-3] - input value: 912.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-3] - input value: 913.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-3] - input value: 914.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-2] - input value: 911.
2017-06-23T03:50:15.584Z [ForkJoinPool-1-worker-1] - input value: 910.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 916.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 917.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-3] - input value: 915.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 919.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 918.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 921.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 922.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 923.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 924.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 925.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 926.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 927.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-3] - input value: 920.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 928.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-3] - input value: 930.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 929.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-3] - input value: 932.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 931.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 933.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-3] - input value: 934.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 936.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 935.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-3] - input value: 937.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 938.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 939.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 941.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 942.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-1] - input value: 943.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-2] - input value: 944.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 945.
2017-06-23T03:50:15.585Z [ForkJoinPool-1-worker-3] - input value: 940.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 947.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-3] - input value: 948.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 949.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 951.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 952.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 953.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 954.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 955.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 956.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 957.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 958.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 959.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 960.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 961.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-1] - input value: 962.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 963.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 964.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-2] - input value: 946.
2017-06-23T03:50:15.586Z [ForkJoinPool-1-worker-3] - input value: 950.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 965.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 968.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 969.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 970.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 971.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 972.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 973.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 974.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 975.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 976.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 977.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-1] - input value: 978.
2017-06-23T03:50:15.588Z [ForkJoinPool-1-worker-1] - input value: 979.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-2] - input value: 966.
2017-06-23T03:50:15.588Z [ForkJoinPool-1-worker-2] - input value: 980.
2017-06-23T03:50:15.588Z [ForkJoinPool-1-worker-2] - input value: 981.
2017-06-23T03:50:15.588Z [ForkJoinPool-1-worker-2] - input value: 982.
2017-06-23T03:50:15.588Z [ForkJoinPool-1-worker-2] - input value: 983.
2017-06-23T03:50:15.588Z [ForkJoinPool-1-worker-2] - input value: 984.
2017-06-23T03:50:15.588Z [ForkJoinPool-1-worker-2] - input value: 985.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 986.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 987.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 988.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 989.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 990.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 991.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 992.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 993.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 994.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 995.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 996.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 997.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 998.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 999.
2017-06-23T03:50:15.589Z [ForkJoinPool-1-worker-2] - input value: 1000.
2017-06-23T03:50:15.590Z [ForkJoinPool-1-worker-2] - input value: null.
2017-06-23T03:50:15.587Z [ForkJoinPool-1-worker-3] - input value: 967.
2017-06-23T03:50:15.590Z [ForkJoinPool-1-worker-3] - input value: null.
2017-06-23T03:50:15.642Z [mo-60] - 300: t1.
2017-06-23T03:50:15.693Z [mo-60] - 271: t1.
2017-06-23T03:50:15.744Z [mo-60] - 299: t1.
2017-06-23T03:50:15.798Z [mo-60] - 298: t1.
2017-06-23T03:50:15.851Z [mo-60] - 297: t1.
2017-06-23T03:50:15.905Z [mo-60] - 296: t1.
2017-06-23T03:50:15.955Z [mo-60] - 197: t1.
2017-06-23T03:50:16.007Z [mo-60] - 196: t1.
2017-06-23T03:50:16.059Z [mo-60] - 195: t1.
2017-06-23T03:50:16.111Z [mo-60] - 194: t1.
2017-06-23T03:50:16.162Z [mo-60] - 267: t1.
2017-06-23T03:50:16.214Z [mo-60] - 295: t1.
2017-06-23T03:50:16.266Z [mo-60] - 294: t1.
2017-06-23T03:50:16.317Z [mo-60] - 193: t1.
2017-06-23T03:50:16.371Z [mo-60] - 192: t1.
2017-06-23T03:50:16.425Z [mo-60] - 191: t1.
2017-06-23T03:50:16.477Z [mo-60] - 190: t1.
2017-06-23T03:50:16.531Z [mo-60] - 189: t1.
2017-06-23T03:50:16.582Z [mo-60] - 188: t1.
2017-06-23T03:50:16.637Z [mo-60] - 187: t1.
2017-06-23T03:50:16.692Z [mo-60] - 186: t1.
2017-06-23T03:50:16.747Z [mo-60] - 185: t1.
2017-06-23T03:50:16.800Z [mo-60] - 184: t1.
2017-06-23T03:50:16.852Z [mo-60] - 183: t1.
2017-06-23T03:50:16.904Z [mo-60] - 182: t1.
2017-06-23T03:50:16.958Z [mo-60] - 181: t1.
2017-06-23T03:50:17.010Z [mo-60] - 180: t1.
2017-06-23T03:50:17.062Z [mo-60] - 179: t1.
2017-06-23T03:50:17.114Z [mo-60] - 178: t1.
2017-06-23T03:50:17.167Z [mo-60] - 177: t1.
2017-06-23T03:50:17.221Z [mo-60] - 176: t1.
2017-06-23T03:50:17.275Z [mo-60] - 175: t1.
2017-06-23T03:50:17.329Z [mo-60] - 174: t1.
2017-06-23T03:50:17.382Z [mo-60] - 173: t1.
2017-06-23T03:50:17.435Z [mo-60] - 172: t1.
2017-06-23T03:50:17.487Z [mo-60] - 265: t1.
2017-06-23T03:50:17.542Z [mo-60] - 171: t1.
2017-06-23T03:50:17.594Z [mo-60] - 263: t1.
2017-06-23T03:50:17.647Z [mo-60] - 170: t1.
2017-06-23T03:50:17.698Z [mo-60] - 262: t1.
2017-06-23T03:50:17.752Z [mo-60] - 169: t1.
2017-06-23T03:50:17.803Z [mo-60] - 260: t1.
2017-06-23T03:50:17.858Z [mo-60] - 167: t1.
2017-06-23T03:50:17.913Z [mo-60] - 258: t1.
2017-06-23T03:50:17.965Z [mo-60] - 165: t1.
2017-06-23T03:50:18.019Z [mo-60] - 256: t1.
2017-06-23T03:50:18.073Z [mo-60] - 163: t1.
2017-06-23T03:50:18.125Z [mo-60] - 255: t1.
2017-06-23T03:50:18.180Z [mo-60] - 161: t1.
2017-06-23T03:50:18.233Z [mo-60] - 254: t1.
2017-06-23T03:50:18.288Z [mo-60] - 252: t1.
2017-06-23T03:50:18.343Z [mo-60] - 159: t1.
2017-06-23T03:50:18.397Z [mo-60] - 250: t1.
2017-06-23T03:50:18.452Z [mo-60] - 158: t1.
2017-06-23T03:50:18.506Z [mo-60] - 248: t1.
2017-06-23T03:50:18.561Z [mo-60] - 150: t1.
2017-06-23T03:50:18.612Z [mo-60] - 246: t1.
2017-06-23T03:50:18.665Z [mo-60] - 146: t1.
2017-06-23T03:50:18.720Z [mo-60] - 244: t1.
2017-06-23T03:50:18.775Z [mo-60] - 142: t1.
2017-06-23T03:50:18.829Z [mo-60] - 242: t1.
2017-06-23T03:50:18.884Z [mo-60] - 241: t1.
2017-06-23T03:50:18.935Z [mo-60] - 140: t1.
2017-06-23T03:50:18.988Z [mo-60] - 240: t1.
2017-06-23T03:50:19.042Z [mo-60] - 136: t1.
2017-06-23T03:50:19.094Z [mo-60] - 239: t1.
2017-06-23T03:50:19.149Z [mo-60] - 135: t1.
2017-06-23T03:50:19.207Z [mo-60] - 238: t1.
2017-06-23T03:50:19.259Z [mo-60] - 134: t1.
2017-06-23T03:50:19.316Z [mo-60] - 237: t1.
2017-06-23T03:50:19.372Z [mo-60] - 236: t1.
2017-06-23T03:50:19.435Z [mo-60] - 133: t1.
2017-06-23T03:50:19.488Z [mo-60] - 235: t1.
2017-06-23T03:50:19.543Z [mo-60] - 132: t1.
2017-06-23T03:50:19.597Z [mo-60] - 233: t1.
2017-06-23T03:50:19.649Z [mo-60] - 130: t1.
2017-06-23T03:50:19.703Z [mo-60] - 231: t1.
2017-06-23T03:50:19.756Z [mo-60] - 129: t1.
2017-06-23T03:50:19.810Z [mo-60] - 230: t1.
2017-06-23T03:50:19.864Z [mo-60] - 229: t1.
2017-06-23T03:50:19.917Z [mo-60] - 128: t1.
2017-06-23T03:50:19.972Z [mo-60] - 228: t1.
2017-06-23T03:50:20.026Z [mo-60] - 127: t1.
2017-06-23T03:50:20.078Z [mo-60] - 227: t1.
2017-06-23T03:50:20.131Z [mo-60] - 125: t1.
2017-06-23T03:50:20.184Z [mo-60] - 225: t1.
2017-06-23T03:50:20.238Z [mo-60] - 123: t1.
2017-06-23T03:50:20.292Z [mo-60] - 223: t1.
2017-06-23T03:50:20.345Z [mo-60] - 122: t1.
2017-06-23T03:50:20.400Z [mo-60] - 221: t1.
2017-06-23T03:50:20.452Z [mo-60] - 220: t1.
2017-06-23T03:50:20.506Z [mo-60] - 121: t1.
2017-06-23T03:50:20.560Z [mo-60] - 219: t1.
2017-06-23T03:50:20.613Z [mo-60] - 120: t1.
2017-06-23T03:50:20.666Z [mo-60] - 218: t1.
2017-06-23T03:50:20.720Z [mo-60] - 217: t1.
2017-06-23T03:50:20.775Z [mo-60] - 119: t1.
2017-06-23T03:50:20.829Z [mo-60] - 216: t1.
2017-06-23T03:50:20.883Z [mo-60] - 118: t1.
2017-06-23T03:50:20.936Z [mo-60] - 215: t1.
2017-06-23T03:50:20.989Z [mo-60] - 117: t1.
2017-06-23T03:50:21.044Z [mo-60] - 214: t1.
2017-06-23T03:50:21.094Z [mo-60] - 213: t1.
2017-06-23T03:50:21.148Z [mo-60] - 116: t1.
2017-06-23T03:50:21.200Z [mo-60] - 212: t1.
2017-06-23T03:50:21.253Z [mo-60] - 115: t1.
2017-06-23T03:50:21.305Z [mo-60] - 211: t1.
2017-06-23T03:50:21.360Z [mo-60] - 114: t1.
2017-06-23T03:50:21.415Z [mo-60] - 210: t1.
2017-06-23T03:50:21.468Z [mo-60] - 112: t1.
2017-06-23T03:50:21.521Z [mo-60] - 209: t1.
2017-06-23T03:50:21.575Z [mo-60] - 110: t1.
2017-06-23T03:50:21.629Z [mo-60] - 208: t1.
2017-06-23T03:50:21.684Z [mo-60] - 207: t1.
2017-06-23T03:50:21.737Z [mo-60] - 108: t1.
2017-06-23T03:50:21.792Z [mo-60] - 206: t1.
2017-06-23T03:50:21.846Z [mo-60] - 106: t1.
2017-06-23T03:50:21.900Z [mo-60] - 205: t1.
2017-06-23T03:50:21.953Z [mo-60] - 104: t1.
2017-06-23T03:50:22.004Z [mo-60] - 204: t1.
2017-06-23T03:50:22.055Z [mo-60] - 103: t1.
2017-06-23T03:50:22.109Z [mo-60] - 203: t1.
2017-06-23T03:50:22.163Z [mo-60] - 102: t1.
2017-06-23T03:50:22.217Z [mo-60] - 202: t1.
2017-06-23T03:50:22.271Z [mo-60] - 101: t1.
2017-06-23T03:50:22.325Z [mo-60] - 201: t1.
2017-06-23T03:50:22.376Z [mo-60] - 94: t1.
2017-06-23T03:50:22.428Z [mo-60] - 200: t1.
2017-06-23T03:50:22.483Z [mo-60] - 199: t1.
2017-06-23T03:50:22.538Z [mo-60] - 92: t1.
2017-06-23T03:50:22.592Z [mo-60] - 168: t1.
2017-06-23T03:50:22.647Z [mo-60] - 85: t1.
2017-06-23T03:50:22.701Z [mo-60] - 166: t1.
2017-06-23T03:50:22.755Z [mo-60] - 164: t1.
2017-06-23T03:50:22.806Z [mo-60] - 83: t1.
2017-06-23T03:50:22.861Z [mo-60] - 154: t1.
2017-06-23T03:50:22.916Z [mo-60] - 81: t1.
2017-06-23T03:50:22.967Z [mo-60] - 152: t1.
2017-06-23T03:50:23.021Z [mo-60] - 79: t1.
2017-06-23T03:50:23.076Z [mo-60] - 148: t1.
2017-06-23T03:50:23.131Z [mo-60] - 77: t1.
2017-06-23T03:50:23.185Z [mo-60] - 144: t1.
2017-06-23T03:50:23.238Z [mo-60] - 138: t1.
2017-06-23T03:50:23.292Z [mo-60] - 70: t1.
2017-06-23T03:50:23.347Z [mo-60] - 131: t1.
2017-06-23T03:50:23.401Z [mo-60] - 68: t1.
2017-06-23T03:50:23.452Z [mo-60] - 126: t1.
2017-06-23T03:50:23.503Z [mo-60] - 66: t1.
2017-06-23T03:50:23.557Z [mo-60] - 124: t1.
2017-06-23T03:50:23.611Z [mo-60] - 56: t1.
2017-06-23T03:50:23.665Z [mo-60] - 111: t1.
2017-06-23T03:50:23.718Z [mo-60] - 109: t1.
2017-06-23T03:50:23.772Z [mo-60] - 107: t1.
2017-06-23T03:50:23.826Z [mo-60] - 53: t1.
2017-06-23T03:50:23.880Z [mo-60] - 51: t1.
2017-06-23T03:50:23.934Z [mo-60] - 49: t1.
2017-06-23T03:50:23.988Z [mo-60] - 105: t1.
2017-06-23T03:50:24.042Z [mo-60] - 45: t1.
2017-06-23T03:50:24.095Z [mo-60] - 100: t1.
2017-06-23T03:50:24.149Z [mo-60] - 43: t1.
2017-06-23T03:50:24.202Z [mo-60] - 99: t1.
2017-06-23T03:50:24.255Z [mo-60] - 89: t1.
2017-06-23T03:50:24.310Z [mo-60] - 41: t1.
2017-06-23T03:50:24.363Z [mo-60] - 87: t1.
2017-06-23T03:50:24.414Z [mo-60] - 38: t1.
2017-06-23T03:50:24.469Z [mo-60] - 86: t1.
2017-06-23T03:50:24.522Z [mo-60] - 36: t1.
2017-06-23T03:50:24.576Z [mo-60] - 84: t1.
2017-06-23T03:50:24.628Z [mo-60] - 82: t1.
2017-06-23T03:50:24.680Z [mo-60] - 34: t1.
2017-06-23T03:50:24.734Z [mo-60] - 80: t1.
2017-06-23T03:50:24.785Z [mo-60] - 32: t1.
2017-06-23T03:50:24.839Z [mo-60] - 78: t1.
2017-06-23T03:50:24.893Z [mo-60] - 29: t1.
2017-06-23T03:50:24.948Z [mo-60] - 76: t1.
2017-06-23T03:50:25.002Z [mo-60] - 26: t1.
2017-06-23T03:50:25.057Z [mo-60] - 74: t1.
2017-06-23T03:50:25.110Z [mo-60] - 72: t1.
2017-06-23T03:50:25.161Z [mo-60] - 24: t1.
2017-06-23T03:50:25.215Z [mo-60] - 64: t1.
2017-06-23T03:50:25.268Z [mo-60] - 22: t1.
2017-06-23T03:50:25.321Z [mo-60] - 62: t1.
2017-06-23T03:50:25.376Z [mo-60] - 19: t1.
2017-06-23T03:50:25.429Z [mo-60] - 60: t1.
2017-06-23T03:50:25.481Z [mo-60] - 16: t1.
2017-06-23T03:50:25.535Z [mo-60] - 58: t1.
2017-06-23T03:50:25.590Z [mo-60] - 54: t1.
2017-06-23T03:50:25.644Z [mo-60] - 13: t1.
2017-06-23T03:50:25.697Z [mo-60] - 52: t1.
2017-06-23T03:50:25.752Z [mo-60] - 9: t1.
2017-06-23T03:50:25.803Z [mo-60] - 48: t1.
2017-06-23T03:50:25.855Z [mo-60] - 7: t1.
2017-06-23T03:50:25.909Z [mo-60] - 46: t1.
2017-06-23T03:50:25.964Z [mo-60] - 4: t1.
2017-06-23T03:50:26.017Z [mo-60] - 44: t1.
2017-06-23T03:50:26.071Z [mo-60] - 42: t1.
2017-06-23T03:50:26.126Z [mo-60] - 2: t1.
2017-06-23T03:50:26.181Z [mo-60] - 40: t1.
2017-06-23T03:50:26.234Z [mo-60] - 31: t1.
2017-06-23T03:50:26.288Z [mo-60] - 28: t1.
2017-06-23T03:50:26.342Z [mo-60] - 20: t1.
2017-06-23T03:50:26.394Z [mo-60] - 17: t1.
2017-06-23T03:50:26.445Z [mo-60] - 15: t1.
2017-06-23T03:50:26.497Z [mo-60] - 11: t1.
2017-06-23T03:50:26.548Z [mo-60] - 6: t1.
2017-06-23T03:50:26.603Z [mo-60] - 3: t1.
2017-06-23T03:50:26.654Z [mo-60] - 293: t1.
2017-06-23T03:50:26.708Z [mo-60] - 292: t1.
2017-06-23T03:50:26.760Z [mo-60] - 291: t1.
2017-06-23T03:50:26.813Z [mo-60] - 290: t1.
2017-06-23T03:50:26.866Z [mo-60] - 289: t1.
2017-06-23T03:50:26.920Z [mo-60] - 288: t1.
2017-06-23T03:50:26.974Z [mo-60] - 287: t1.
2017-06-23T03:50:27.027Z [mo-60] - 286: t1.
2017-06-23T03:50:27.078Z [mo-60] - 285: t1.
2017-06-23T03:50:27.131Z [mo-60] - 284: t1.
2017-06-23T03:50:27.187Z [mo-60] - 283: t1.
2017-06-23T03:50:27.240Z [mo-60] - 282: t1.
2017-06-23T03:50:27.293Z [mo-60] - 281: t1.
2017-06-23T03:50:27.348Z [mo-60] - 280: t1.
2017-06-23T03:50:27.403Z [mo-60] - 279: t1.
2017-06-23T03:50:27.458Z [mo-60] - 278: t1.
2017-06-23T03:50:27.510Z [mo-60] - 277: t1.
2017-06-23T03:50:27.564Z [mo-60] - 276: t1.
2017-06-23T03:50:27.617Z [mo-60] - 275: t1.
2017-06-23T03:50:27.670Z [mo-60] - 274: t1.
2017-06-23T03:50:27.725Z [mo-60] - 273: t1.
2017-06-23T03:50:27.777Z [mo-60] - 272: t1.
2017-06-23T03:50:27.831Z [mo-60] - 270: t1.
2017-06-23T03:50:27.886Z [mo-60] - 269: t1.
2017-06-23T03:50:27.937Z [mo-60] - 268: t1.
2017-06-23T03:50:27.992Z [mo-60] - 266: t1.
2017-06-23T03:50:28.045Z [mo-60] - 264: t1.
2017-06-23T03:50:28.097Z [mo-60] - 261: t1.
2017-06-23T03:50:28.149Z [mo-60] - 259: t1.
2017-06-23T03:50:28.203Z [mo-60] - 257: t1.
2017-06-23T03:50:28.253Z [mo-60] - 253: t1.
2017-06-23T03:50:28.308Z [mo-60] - 251: t1.
2017-06-23T03:50:28.360Z [mo-60] - 249: t1.
2017-06-23T03:50:28.414Z [mo-60] - 247: t1.
2017-06-23T03:50:28.465Z [mo-60] - 245: t1.
2017-06-23T03:50:28.521Z [mo-60] - 243: t1.
2017-06-23T03:50:28.576Z [mo-60] - 234: t1.
2017-06-23T03:50:28.628Z [mo-60] - 232: t1.
2017-06-23T03:50:28.682Z [mo-60] - 226: t1.
2017-06-23T03:50:28.737Z [mo-60] - 224: t1.
2017-06-23T03:50:28.792Z [mo-60] - 222: t1.
2017-06-23T03:50:28.843Z [mo-60] - 162: t1.
2017-06-23T03:50:28.899Z [mo-60] - 160: t1.
2017-06-23T03:50:28.954Z [mo-60] - 157: t1.
2017-06-23T03:50:29.008Z [mo-60] - 156: t1.
2017-06-23T03:50:29.060Z [mo-60] - 155: t1.
2017-06-23T03:50:29.110Z [mo-60] - 153: t1.
2017-06-23T03:50:29.161Z [mo-60] - 151: t1.
2017-06-23T03:50:29.213Z [mo-60] - 149: t1.
2017-06-23T03:50:29.265Z [mo-60] - 147: t1.
2017-06-23T03:50:29.317Z [mo-60] - 145: t1.
2017-06-23T03:50:29.371Z [mo-60] - 143: t1.
2017-06-23T03:50:29.426Z [mo-60] - 141: t1.
2017-06-23T03:50:29.478Z [mo-60] - 139: t1.
2017-06-23T03:50:29.529Z [mo-60] - 137: t1.
2017-06-23T03:50:29.583Z [mo-60] - 113: t1.
2017-06-23T03:50:29.638Z [mo-60] - 98: t1.
2017-06-23T03:50:29.692Z [mo-60] - 97: t1.
2017-06-23T03:50:29.744Z [mo-60] - 96: t1.
2017-06-23T03:50:29.798Z [mo-60] - 95: t1.
2017-06-23T03:50:29.852Z [mo-60] - 93: t1.
2017-06-23T03:50:29.905Z [mo-60] - 91: t1.
2017-06-23T03:50:29.959Z [mo-60] - 90: t1.
2017-06-23T03:50:30.014Z [mo-60] - 88: t1.
2017-06-23T03:50:30.068Z [mo-60] - 75: t1.
2017-06-23T03:50:30.122Z [mo-60] - 73: t1.
2017-06-23T03:50:30.177Z [mo-60] - 71: t1.
2017-06-23T03:50:30.229Z [mo-60] - 69: t1.
2017-06-23T03:50:30.283Z [mo-60] - 67: t1.
2017-06-23T03:50:30.337Z [mo-60] - 65: t1.
2017-06-23T03:50:30.392Z [mo-60] - 63: t1.
2017-06-23T03:50:30.443Z [mo-60] - 61: t1.
2017-06-23T03:50:30.497Z [mo-60] - 59: t1.
2017-06-23T03:50:30.549Z [mo-60] - 57: t1.
2017-06-23T03:50:30.604Z [mo-60] - 55: t1.
2017-06-23T03:50:30.655Z [mo-60] - 50: t1.
2017-06-23T03:50:30.709Z [mo-60] - 47: t1.
2017-06-23T03:50:30.762Z [mo-60] - 39: t1.
2017-06-23T03:50:30.814Z [mo-60] - 37: t1.
2017-06-23T03:50:30.867Z [mo-60] - 35: t1.
2017-06-23T03:50:30.922Z [mo-60] - 33: t1.
2017-06-23T03:50:30.977Z [mo-60] - 30: t1.
2017-06-23T03:50:31.029Z [mo-60] - 27: t1.
2017-06-23T03:50:31.084Z [mo-60] - 25: t1.
2017-06-23T03:50:31.138Z [mo-60] - 23: t1.
2017-06-23T03:50:31.192Z [mo-60] - 21: t1.
2017-06-23T03:50:31.244Z [mo-60] - 18: t1.
2017-06-23T03:50:31.299Z [mo-60] - 14: t1.
2017-06-23T03:50:31.351Z [mo-60] - 12: t1.
2017-06-23T03:50:31.404Z [mo-60] - 10: t1.
2017-06-23T03:50:31.459Z [mo-60] - 8: t1.
2017-06-23T03:50:31.510Z [mo-60] - 5: t1.
2017-06-23T03:50:31.564Z [mo-60] - 1: t1.
2017-06-23T03:50:31.618Z [mo-60] - 510: t1.
2017-06-23T03:50:31.673Z [mo-60] - 509: t1.
2017-06-23T03:50:31.727Z [mo-60] - 508: t1.
2017-06-23T03:50:31.779Z [mo-60] - 507: t1.
2017-06-23T03:50:31.834Z [mo-60] - 506: t1.
2017-06-23T03:50:31.888Z [mo-60] - 505: t1.
2017-06-23T03:50:31.943Z [mo-60] - 504: t1.
2017-06-23T03:50:31.994Z [mo-60] - 503: t1.
2017-06-23T03:50:32.045Z [mo-60] - 502: t1.
2017-06-23T03:50:32.099Z [mo-60] - 501: t1.
2017-06-23T03:50:32.151Z [mo-60] - 488: t1.
2017-06-23T03:50:32.205Z [mo-60] - 486: t1.
2017-06-23T03:50:32.257Z [mo-60] - 482: t1.
2017-06-23T03:50:32.307Z [mo-60] - 473: t1.
2017-06-23T03:50:32.361Z [mo-60] - 471: t1.
2017-06-23T03:50:32.413Z [mo-60] - 469: t1.
2017-06-23T03:50:32.467Z [mo-60] - 467: t1.
2017-06-23T03:50:32.517Z [mo-60] - 465: t1.
2017-06-23T03:50:32.570Z [mo-60] - 464: t1.
2017-06-23T03:50:32.623Z [mo-60] - 463: t1.
2017-06-23T03:50:32.676Z [mo-60] - 461: t1.
2017-06-23T03:50:32.730Z [mo-60] - 452: t1.
2017-06-23T03:50:32.784Z [mo-60] - 451: t1.
2017-06-23T03:50:32.838Z [mo-60] - 450: t1.
2017-06-23T03:50:32.892Z [mo-60] - 449: t1.
2017-06-23T03:50:32.947Z [mo-60] - 448: t1.
2017-06-23T03:50:33.001Z [mo-60] - 447: t1.
2017-06-23T03:50:33.056Z [mo-60] - 446: t1.
2017-06-23T03:50:33.110Z [mo-60] - 445: t1.
2017-06-23T03:50:33.160Z [mo-60] - 444: t1.
2017-06-23T03:50:33.215Z [mo-60] - 443: t1.
2017-06-23T03:50:33.266Z [mo-60] - 442: t1.
2017-06-23T03:50:33.320Z [mo-60] - 441: t1.
2017-06-23T03:50:33.372Z [mo-60] - 439: t1.
2017-06-23T03:50:33.428Z [mo-60] - 433: t1.
2017-06-23T03:50:33.481Z [mo-60] - 432: t1.
2017-06-23T03:50:33.532Z [mo-60] - 431: t1.
2017-06-23T03:50:33.587Z [mo-60] - 430: t1.
2017-06-23T03:50:33.642Z [mo-60] - 429: t1.
2017-06-23T03:50:33.697Z [mo-60] - 428: t1.
2017-06-23T03:50:33.748Z [mo-60] - 427: t1.
2017-06-23T03:50:33.801Z [mo-60] - 426: t1.
2017-06-23T03:50:33.857Z [mo-60] - 425: t1.
2017-06-23T03:50:33.907Z [mo-60] - 424: t1.
2017-06-23T03:50:33.961Z [mo-60] - 423: t1.
2017-06-23T03:50:34.012Z [mo-60] - 422: t1.
2017-06-23T03:50:34.067Z [mo-60] - 421: t1.
2017-06-23T03:50:34.120Z [mo-60] - 420: t1.
2017-06-23T03:50:34.175Z [mo-60] - 419: t1.
2017-06-23T03:50:34.229Z [mo-60] - 418: t1.
2017-06-23T03:50:34.281Z [mo-60] - 417: t1.
2017-06-23T03:50:34.332Z [mo-60] - 415: t1.
2017-06-23T03:50:34.385Z [mo-60] - 414: t1.
2017-06-23T03:50:34.440Z [mo-60] - 413: t1.
2017-06-23T03:50:34.493Z [mo-60] - 412: t1.
2017-06-23T03:50:34.548Z [mo-60] - 411: t1.
2017-06-23T03:50:34.602Z [mo-60] - 410: t1.
2017-06-23T03:50:34.657Z [mo-60] - 409: t1.
2017-06-23T03:50:34.711Z [mo-60] - 408: t1.
2017-06-23T03:50:34.765Z [mo-60] - 406: t1.
2017-06-23T03:50:34.816Z [mo-60] - 404: t1.
2017-06-23T03:50:34.875Z [mo-60] - 402: t1.
2017-06-23T03:50:34.928Z [mo-60] - 396: t1.
2017-06-23T03:50:34.980Z [mo-60] - 394: t1.
2017-06-23T03:50:35.034Z [mo-60] - 392: t1.
2017-06-23T03:50:35.086Z [mo-60] - 390: t1.
2017-06-23T03:50:35.140Z [mo-60] - 388: t1.
2017-06-23T03:50:35.194Z [mo-60] - 386: t1.
2017-06-23T03:50:35.246Z [mo-60] - 384: t1.
2017-06-23T03:50:35.298Z [mo-60] - 344: t1.
2017-06-23T03:50:35.350Z [mo-60] - 343: t1.
2017-06-23T03:50:35.404Z [mo-60] - 342: t1.
2017-06-23T03:50:35.458Z [mo-60] - 341: t1.
2017-06-23T03:50:35.512Z [mo-60] - 340: t1.
2017-06-23T03:50:35.564Z [mo-60] - 339: t1.
2017-06-23T03:50:35.619Z [mo-60] - 331: t1.
2017-06-23T03:50:35.674Z [mo-60] - 330: t1.
2017-06-23T03:50:35.728Z [mo-60] - 329: t1.
2017-06-23T03:50:35.781Z [mo-60] - 328: t1.
2017-06-23T03:50:35.832Z [mo-60] - 327: t1.
2017-06-23T03:50:35.885Z [mo-60] - 325: t1.
2017-06-23T03:50:35.940Z [mo-60] - 324: t1.
2017-06-23T03:50:35.995Z [mo-60] - 323: t1.
2017-06-23T03:50:36.045Z [mo-60] - 322: t1.
2017-06-23T03:50:36.099Z [mo-60] - 321: t1.
2017-06-23T03:50:36.154Z [mo-60] - 320: t1.
2017-06-23T03:50:36.208Z [mo-60] - 319: t1.
2017-06-23T03:50:36.260Z [mo-60] - 318: t1.
2017-06-23T03:50:36.314Z [mo-60] - 317: t1.
2017-06-23T03:50:36.369Z [mo-60] - 316: t1.
2017-06-23T03:50:36.423Z [mo-60] - 315: t1.
2017-06-23T03:50:36.477Z [mo-60] - 313: t1.
2017-06-23T03:50:36.529Z [mo-60] - 311: t1.
2017-06-23T03:50:36.580Z [mo-60] - 309: t1.
2017-06-23T03:50:36.632Z [mo-60] - 307: t1.
2017-06-23T03:50:36.686Z [mo-60] - 305: t1.
2017-06-23T03:50:36.740Z [mo-60] - 304: t1.
2017-06-23T03:50:36.793Z [mo-60] - 303: t1.
2017-06-23T03:50:36.847Z [mo-60] - 302: t1.
2017-06-23T03:50:36.898Z [mo-60] - 301: t1.
2017-06-23T03:50:36.952Z [mo-60] - 561: t1.
2017-06-23T03:50:37.003Z [mo-60] - 558: t1.
2017-06-23T03:50:37.057Z [mo-60] - 557: t1.
2017-06-23T03:50:37.108Z [mo-60] - 556: t1.
2017-06-23T03:50:37.162Z [mo-60] - 555: t1.
2017-06-23T03:50:37.217Z [mo-60] - 554: t1.
2017-06-23T03:50:37.270Z [mo-60] - 553: t1.
2017-06-23T03:50:37.324Z [mo-60] - 552: t1.
2017-06-23T03:50:37.375Z [mo-60] - 551: t1.
2017-06-23T03:50:37.430Z [mo-60] - 550: t1.
2017-06-23T03:50:37.481Z [mo-60] - 549: t1.
2017-06-23T03:50:37.531Z [mo-60] - 548: t1.
2017-06-23T03:50:37.584Z [mo-60] - 547: t1.
2017-06-23T03:50:37.637Z [mo-60] - 545: t1.
2017-06-23T03:50:37.691Z [mo-60] - 543: t1.
2017-06-23T03:50:37.745Z [mo-60] - 541: t1.
2017-06-23T03:50:37.800Z [mo-60] - 539: t1.
2017-06-23T03:50:37.851Z [mo-60] - 530: t1.
2017-06-23T03:50:37.903Z [mo-60] - 529: t1.
2017-06-23T03:50:37.959Z [mo-60] - 528: t1.
2017-06-23T03:50:38.013Z [mo-60] - 527: t1.
2017-06-23T03:50:38.064Z [mo-60] - 526: t1.
2017-06-23T03:50:38.119Z [mo-60] - 525: t1.
2017-06-23T03:50:38.174Z [mo-60] - 524: t1.
2017-06-23T03:50:38.227Z [mo-60] - 523: t1.
2017-06-23T03:50:38.280Z [mo-60] - 522: t1.
2017-06-23T03:50:38.331Z [mo-60] - 521: t1.
2017-06-23T03:50:38.384Z [mo-60] - 520: t1.
2017-06-23T03:50:38.437Z [mo-60] - 519: t1.
2017-06-23T03:50:38.492Z [mo-60] - 518: t1.
2017-06-23T03:50:38.543Z [mo-60] - 517: t1.
2017-06-23T03:50:38.597Z [mo-60] - 516: t1.
2017-06-23T03:50:38.648Z [mo-60] - 515: t1.
2017-06-23T03:50:38.702Z [mo-60] - 514: t1.
2017-06-23T03:50:38.755Z [mo-60] - 513: t1.
2017-06-23T03:50:38.808Z [mo-60] - 512: t1.
2017-06-23T03:50:38.860Z [mo-60] - 511: t1.
2017-06-23T03:50:38.915Z [mo-60] - 500: t1.
2017-06-23T03:50:38.968Z [mo-60] - 499: t1.
2017-06-23T03:50:39.021Z [mo-60] - 498: t1.
2017-06-23T03:50:39.075Z [mo-60] - 497: t1.
2017-06-23T03:50:39.130Z [mo-60] - 496: t1.
2017-06-23T03:50:39.181Z [mo-60] - 495: t1.
2017-06-23T03:50:39.233Z [mo-60] - 494: t1.
2017-06-23T03:50:39.287Z [mo-60] - 493: t1.
2017-06-23T03:50:39.341Z [mo-60] - 492: t1.
2017-06-23T03:50:39.394Z [mo-60] - 490: t1.
2017-06-23T03:50:39.446Z [mo-60] - 484: t1.
2017-06-23T03:50:39.499Z [mo-60] - 480: t1.
2017-06-23T03:50:39.550Z [mo-60] - 478: t1.
2017-06-23T03:50:39.600Z [mo-60] - 476: t1.
2017-06-23T03:50:39.654Z [mo-60] - 474: t1.
2017-06-23T03:50:39.710Z [mo-60] - 460: t1.
2017-06-23T03:50:39.760Z [mo-60] - 416: t1.
2017-06-23T03:50:39.814Z [mo-60] - 400: t1.
2017-06-23T03:50:39.868Z [mo-60] - 398: t1.
2017-06-23T03:50:39.919Z [mo-60] - 395: t1.
2017-06-23T03:50:39.974Z [mo-60] - 393: t1.
2017-06-23T03:50:40.026Z [mo-60] - 391: t1.
2017-06-23T03:50:40.081Z [mo-60] - 389: t1.
2017-06-23T03:50:40.131Z [mo-60] - 387: t1.
2017-06-23T03:50:40.186Z [mo-60] - 629: t1.
2017-06-23T03:50:40.236Z [mo-60] - 382: t1.
2017-06-23T03:50:40.291Z [mo-60] - 628: t1.
2017-06-23T03:50:40.344Z [mo-60] - 381: t1.
2017-06-23T03:50:40.397Z [mo-60] - 627: t1.
2017-06-23T03:50:40.452Z [mo-60] - 626: t1.
2017-06-23T03:50:40.505Z [mo-60] - 380: t1.
2017-06-23T03:50:40.559Z [mo-60] - 625: t1.
2017-06-23T03:50:40.612Z [mo-60] - 379: t1.
2017-06-23T03:50:40.667Z [mo-60] - 624: t1.
2017-06-23T03:50:40.719Z [mo-60] - 623: t1.
2017-06-23T03:50:40.774Z [mo-60] - 622: t1.
2017-06-23T03:50:40.826Z [mo-60] - 621: t1.
2017-06-23T03:50:40.878Z [mo-60] - 620: t1.
2017-06-23T03:50:40.933Z [mo-60] - 619: t1.
2017-06-23T03:50:40.987Z [mo-60] - 618: t1.
2017-06-23T03:50:41.041Z [mo-60] - 617: t1.
2017-06-23T03:50:41.093Z [mo-60] - 378: t1.
2017-06-23T03:50:41.145Z [mo-60] - 616: t1.
2017-06-23T03:50:41.200Z [mo-60] - 377: t1.
2017-06-23T03:50:41.255Z [mo-60] - 614: t1.
2017-06-23T03:50:41.310Z [mo-60] - 613: t1.
2017-06-23T03:50:41.360Z [mo-60] - 376: t1.
2017-06-23T03:50:41.411Z [mo-60] - 612: t1.
2017-06-23T03:50:41.465Z [mo-60] - 375: t1.
2017-06-23T03:50:41.518Z [mo-60] - 611: t1.
2017-06-23T03:50:41.572Z [mo-60] - 374: t1.
2017-06-23T03:50:41.627Z [mo-60] - 610: t1.
2017-06-23T03:50:41.677Z [mo-60] - 373: t1.
2017-06-23T03:50:41.730Z [mo-60] - 609: t1.
2017-06-23T03:50:41.784Z [mo-60] - 372: t1.
2017-06-23T03:50:41.838Z [mo-60] - 608: t1.
2017-06-23T03:50:41.893Z [mo-60] - 371: t1.
2017-06-23T03:50:41.944Z [mo-60] - 607: t1.
2017-06-23T03:50:41.998Z [mo-60] - 370: t1.
2017-06-23T03:50:42.050Z [mo-60] - 606: t1.
2017-06-23T03:50:42.105Z [mo-60] - 369: t1.
2017-06-23T03:50:42.160Z [mo-60] - 605: t1.
2017-06-23T03:50:42.211Z [mo-60] - 368: t1.
2017-06-23T03:50:42.261Z [mo-60] - 604: t1.
2017-06-23T03:50:42.311Z [mo-60] - 367: t1.
2017-06-23T03:50:42.361Z [mo-60] - 603: t1.
2017-06-23T03:50:42.416Z [mo-60] - 366: t1.
2017-06-23T03:50:42.471Z [mo-60] - 602: t1.
2017-06-23T03:50:42.522Z [mo-60] - 365: t1.
2017-06-23T03:50:42.577Z [mo-60] - 601: t1.
2017-06-23T03:50:42.628Z [mo-60] - 364: t1.
2017-06-23T03:50:42.684Z [mo-60] - 591: t1.
2017-06-23T03:50:42.734Z [mo-60] - 363: t1.
2017-06-23T03:50:42.788Z [mo-60] - 589: t1.
2017-06-23T03:50:42.844Z [mo-60] - 362: t1.
2017-06-23T03:50:42.896Z [mo-60] - 587: t1.
2017-06-23T03:50:42.949Z [mo-60] - 361: t1.
2017-06-23T03:50:43.000Z [mo-60] - 585: t1.
2017-06-23T03:50:43.056Z [mo-60] - 360: t1.
2017-06-23T03:50:43.110Z [mo-60] - 583: t1.
2017-06-23T03:50:43.161Z [mo-60] - 359: t1.
2017-06-23T03:50:43.216Z [mo-60] - 581: t1.
2017-06-23T03:50:43.267Z [mo-60] - 358: t1.
2017-06-23T03:50:43.321Z [mo-60] - 579: t1.
2017-06-23T03:50:43.372Z [mo-60] - 357: t1.
2017-06-23T03:50:43.427Z [mo-60] - 577: t1.
2017-06-23T03:50:43.477Z [mo-60] - 356: t1.
2017-06-23T03:50:43.532Z [mo-60] - 575: t1.
2017-06-23T03:50:43.583Z [mo-60] - 355: t1.
2017-06-23T03:50:43.636Z [mo-60] - 573: t1.
2017-06-23T03:50:43.689Z [mo-60] - 354: t1.
2017-06-23T03:50:43.743Z [mo-60] - 571: t1.
2017-06-23T03:50:43.794Z [mo-60] - 353: t1.
2017-06-23T03:50:43.844Z [mo-60] - 569: t1.
2017-06-23T03:50:43.895Z [mo-60] - 352: t1.
2017-06-23T03:50:43.949Z [mo-60] - 567: t1.
2017-06-23T03:50:44.004Z [mo-60] - 351: t1.
2017-06-23T03:50:44.056Z [mo-60] - 566: t1.
2017-06-23T03:50:44.110Z [mo-60] - 350: t1.
2017-06-23T03:50:44.164Z [mo-60] - 565: t1.
2017-06-23T03:50:44.217Z [mo-60] - 349: t1.
2017-06-23T03:50:44.272Z [mo-60] - 564: t1.
2017-06-23T03:50:44.327Z [mo-60] - 348: t1.
2017-06-23T03:50:44.379Z [mo-60] - 563: t1.
2017-06-23T03:50:44.432Z [mo-60] - 347: t1.
2017-06-23T03:50:44.484Z [mo-60] - 562: t1.
2017-06-23T03:50:44.537Z [mo-60] - 346: t1.
2017-06-23T03:50:44.589Z [mo-60] - 560: t1.
2017-06-23T03:50:44.643Z [mo-60] - 345: t1.
2017-06-23T03:50:44.698Z [mo-60] - 559: t1.
2017-06-23T03:50:44.751Z [mo-60] - 326: t1.
2017-06-23T03:50:44.804Z [mo-60] - 542: t1.
2017-06-23T03:50:44.856Z [mo-60] - 540: t1.
2017-06-23T03:50:44.911Z [mo-60] - 537: t1.
2017-06-23T03:50:44.966Z [mo-60] - 535: t1.
2017-06-23T03:50:45.021Z [mo-60] - 533: t1.
2017-06-23T03:50:45.071Z [mo-60] - 491: t1.
2017-06-23T03:50:45.125Z [mo-60] - 489: t1.
2017-06-23T03:50:45.177Z [mo-60] - 487: t1.
2017-06-23T03:50:45.228Z [mo-60] - 485: t1.
2017-06-23T03:50:45.282Z [mo-60] - 483: t1.
2017-06-23T03:50:45.335Z [mo-60] - 481: t1.
2017-06-23T03:50:45.388Z [mo-60] - 479: t1.
2017-06-23T03:50:45.443Z [mo-60] - 477: t1.
2017-06-23T03:50:45.495Z [mo-60] - 475: t1.
2017-06-23T03:50:45.546Z [mo-60] - 472: t1.
2017-06-23T03:50:45.600Z [mo-60] - 470: t1.
2017-06-23T03:50:45.652Z [mo-60] - 468: t1.
2017-06-23T03:50:45.706Z [mo-60] - 466: t1.
2017-06-23T03:50:45.761Z [mo-60] - 462: t1.
2017-06-23T03:50:45.816Z [mo-60] - 459: t1.
2017-06-23T03:50:45.870Z [mo-60] - 458: t1.
2017-06-23T03:50:45.923Z [mo-60] - 457: t1.
2017-06-23T03:50:45.974Z [mo-60] - 456: t1.
2017-06-23T03:50:46.027Z [mo-60] - 455: t1.
2017-06-23T03:50:46.079Z [mo-60] - 454: t1.
2017-06-23T03:50:46.133Z [mo-60] - 453: t1.
2017-06-23T03:50:46.185Z [mo-60] - 440: t1.
2017-06-23T03:50:46.239Z [mo-60] - 438: t1.
2017-06-23T03:50:46.293Z [mo-60] - 437: t1.
2017-06-23T03:50:46.345Z [mo-60] - 436: t1.
2017-06-23T03:50:46.399Z [mo-60] - 435: t1.
2017-06-23T03:50:46.452Z [mo-60] - 434: t1.
2017-06-23T03:50:46.506Z [mo-60] - 407: t1.
2017-06-23T03:50:46.561Z [mo-60] - 405: t1.
2017-06-23T03:50:46.616Z [mo-60] - 403: t1.
2017-06-23T03:50:46.671Z [mo-60] - 401: t1.
2017-06-23T03:50:46.726Z [mo-60] - 399: t1.
2017-06-23T03:50:46.779Z [mo-60] - 397: t1.
2017-06-23T03:50:46.834Z [mo-60] - 385: t1.
2017-06-23T03:50:46.887Z [mo-60] - 383: t1.
2017-06-23T03:50:46.941Z [mo-60] - 338: t1.
2017-06-23T03:50:46.993Z [mo-60] - 337: t1.
2017-06-23T03:50:47.043Z [mo-60] - 336: t1.
2017-06-23T03:50:47.096Z [mo-60] - 335: t1.
2017-06-23T03:50:47.149Z [mo-60] - 334: t1.
2017-06-23T03:50:47.202Z [mo-60] - 333: t1.
2017-06-23T03:50:47.252Z [mo-60] - 332: t1.
2017-06-23T03:50:47.304Z [mo-60] - 314: t1.
2017-06-23T03:50:47.357Z [mo-60] - 312: t1.
2017-06-23T03:50:47.411Z [mo-60] - 310: t1.
2017-06-23T03:50:47.465Z [mo-60] - 308: t1.
2017-06-23T03:50:47.519Z [mo-60] - 306: t1.
2017-06-23T03:50:47.573Z [mo-60] - 774: t1.
2017-06-23T03:50:47.628Z [mo-60] - 772: t1.
2017-06-23T03:50:47.680Z [mo-60] - 770: t1.
2017-06-23T03:50:47.733Z [mo-60] - 768: t1.
2017-06-23T03:50:47.784Z [mo-60] - 766: t1.
2017-06-23T03:50:47.839Z [mo-60] - 764: t1.
2017-06-23T03:50:47.894Z [mo-60] - 762: t1.
2017-06-23T03:50:47.946Z [mo-60] - 760: t1.
2017-06-23T03:50:48.001Z [mo-60] - 758: t1.
2017-06-23T03:50:48.056Z [mo-60] - 756: t1.
2017-06-23T03:50:48.111Z [mo-60] - 755: t1.
2017-06-23T03:50:48.165Z [mo-60] - 753: t1.
2017-06-23T03:50:48.218Z [mo-60] - 751: t1.
2017-06-23T03:50:48.270Z [mo-60] - 749: t1.
2017-06-23T03:50:48.323Z [mo-60] - 747: t1.
2017-06-23T03:50:48.378Z [mo-60] - 745: t1.
2017-06-23T03:50:48.428Z [mo-60] - 743: t1.
2017-06-23T03:50:48.480Z [mo-60] - 741: t1.
2017-06-23T03:50:48.533Z [mo-60] - 739: t1.
2017-06-23T03:50:48.589Z [mo-60] - 737: t1.
2017-06-23T03:50:48.643Z [mo-60] - 735: t1.
2017-06-23T03:50:48.695Z [mo-60] - 733: t1.
2017-06-23T03:50:48.750Z [mo-60] - 731: t1.
2017-06-23T03:50:48.802Z [mo-60] - 729: t1.
2017-06-23T03:50:48.855Z [mo-60] - 727: t1.
2017-06-23T03:50:48.910Z [mo-60] - 725: t1.
2017-06-23T03:50:48.965Z [mo-60] - 722: t1.
2017-06-23T03:50:49.018Z [mo-60] - 720: t1.
2017-06-23T03:50:49.073Z [mo-60] - 719: t1.
2017-06-23T03:50:49.127Z [mo-60] - 718: t1.
2017-06-23T03:50:49.182Z [mo-60] - 717: t1.
2017-06-23T03:50:49.235Z [mo-60] - 716: t1.
2017-06-23T03:50:49.289Z [mo-60] - 715: t1.
2017-06-23T03:50:49.343Z [mo-60] - 714: t1.
2017-06-23T03:50:49.397Z [mo-60] - 713: t1.
2017-06-23T03:50:49.448Z [mo-60] - 666: t1.
2017-06-23T03:50:49.501Z [mo-60] - 665: t1.
2017-06-23T03:50:49.554Z [mo-60] - 664: t1.
2017-06-23T03:50:49.608Z [mo-60] - 663: t1.
2017-06-23T03:50:49.664Z [mo-60] - 662: t1.
2017-06-23T03:50:49.715Z [mo-60] - 661: t1.
2017-06-23T03:50:49.769Z [mo-60] - 660: t1.
2017-06-23T03:50:49.822Z [mo-60] - 659: t1.
2017-06-23T03:50:49.876Z [mo-60] - 658: t1.
2017-06-23T03:50:49.931Z [mo-60] - 657: t1.
2017-06-23T03:50:49.985Z [mo-60] - 656: t1.
2017-06-23T03:50:50.039Z [mo-60] - 655: t1.
2017-06-23T03:50:50.093Z [mo-60] - 654: t1.
2017-06-23T03:50:50.147Z [mo-60] - 653: t1.
2017-06-23T03:50:50.201Z [mo-60] - 652: t1.
2017-06-23T03:50:50.253Z [mo-60] - 651: t1.
2017-06-23T03:50:50.307Z [mo-60] - 649: t1.
2017-06-23T03:50:50.361Z [mo-60] - 648: t1.
2017-06-23T03:50:50.414Z [mo-60] - 647: t1.
2017-06-23T03:50:50.467Z [mo-60] - 646: t1.
2017-06-23T03:50:50.521Z [mo-60] - 645: t1.
2017-06-23T03:50:50.575Z [mo-60] - 644: t1.
2017-06-23T03:50:50.626Z [mo-60] - 643: t1.
2017-06-23T03:50:50.681Z [mo-60] - 642: t1.
2017-06-23T03:50:50.736Z [mo-60] - 641: t1.
2017-06-23T03:50:50.790Z [mo-60] - 640: t1.
2017-06-23T03:50:50.844Z [mo-60] - 639: t1.
2017-06-23T03:50:50.898Z [mo-60] - 638: t1.
2017-06-23T03:50:50.953Z [mo-60] - 637: t1.
2017-06-23T03:50:51.004Z [mo-60] - 636: t1.
2017-06-23T03:50:51.054Z [mo-60] - 635: t1.
2017-06-23T03:50:51.109Z [mo-60] - 634: t1.
2017-06-23T03:50:51.161Z [mo-60] - 633: t1.
2017-06-23T03:50:51.214Z [mo-60] - 632: t1.
2017-06-23T03:50:51.267Z [mo-60] - 631: t1.
2017-06-23T03:50:51.321Z [mo-60] - 630: t1.
2017-06-23T03:50:51.376Z [mo-60] - 615: t1.
2017-06-23T03:50:51.428Z [mo-60] - 600: t1.
2017-06-23T03:50:51.482Z [mo-60] - 599: t1.
2017-06-23T03:50:51.532Z [mo-60] - 598: t1.
2017-06-23T03:50:51.585Z [mo-60] - 597: t1.
2017-06-23T03:50:51.639Z [mo-60] - 596: t1.
2017-06-23T03:50:51.694Z [mo-60] - 595: t1.
2017-06-23T03:50:51.744Z [mo-60] - 594: t1.
2017-06-23T03:50:51.798Z [mo-60] - 593: t1.
2017-06-23T03:50:51.852Z [mo-60] - 592: t1.
2017-06-23T03:50:51.902Z [mo-60] - 590: t1.
2017-06-23T03:50:51.955Z [mo-60] - 588: t1.
2017-06-23T03:50:52.009Z [mo-60] - 586: t1.
2017-06-23T03:50:52.064Z [mo-60] - 584: t1.
2017-06-23T03:50:52.116Z [mo-60] - 582: t1.
2017-06-23T03:50:52.167Z [mo-60] - 580: t1.
2017-06-23T03:50:52.220Z [mo-60] - 578: t1.
2017-06-23T03:50:52.272Z [mo-60] - 576: t1.
2017-06-23T03:50:52.325Z [mo-60] - 574: t1.
2017-06-23T03:50:52.378Z [mo-60] - 572: t1.
2017-06-23T03:50:52.432Z [mo-60] - 570: t1.
2017-06-23T03:50:52.483Z [mo-60] - 568: t1.
2017-06-23T03:50:52.538Z [mo-60] - 546: t1.
2017-06-23T03:50:52.589Z [mo-60] - 544: t1.
2017-06-23T03:50:52.643Z [mo-60] - 538: t1.
2017-06-23T03:50:52.699Z [mo-60] - 536: t1.
2017-06-23T03:50:52.750Z [mo-60] - 534: t1.
2017-06-23T03:50:52.804Z [mo-60] - 532: t1.
2017-06-23T03:50:52.855Z [mo-60] - 820: t1.
2017-06-23T03:50:52.910Z [mo-60] - 531: t1.
2017-06-23T03:50:52.963Z [mo-60] - 819: t1.
2017-06-23T03:50:53.017Z [mo-60] - 818: t1.
2017-06-23T03:50:53.070Z [mo-60] - 817: t1.
2017-06-23T03:50:53.121Z [mo-60] - 816: t1.
2017-06-23T03:50:53.175Z [mo-60] - 815: t1.
2017-06-23T03:50:53.227Z [mo-60] - 814: t1.
2017-06-23T03:50:53.282Z [mo-60] - 813: t1.
2017-06-23T03:50:53.337Z [mo-60] - 812: t1.
2017-06-23T03:50:53.389Z [mo-60] - 811: t1.
2017-06-23T03:50:53.443Z [mo-60] - 810: t1.
2017-06-23T03:50:53.494Z [mo-60] - 809: t1.
2017-06-23T03:50:53.544Z [mo-60] - 808: t1.
2017-06-23T03:50:53.598Z [mo-60] - 807: t1.
2017-06-23T03:50:53.653Z [mo-60] - 806: t1.
2017-06-23T03:50:53.706Z [mo-60] - 805: t1.
2017-06-23T03:50:53.761Z [mo-60] - 804: t1.
2017-06-23T03:50:53.816Z [mo-60] - 803: t1.
2017-06-23T03:50:53.867Z [mo-60] - 802: t1.
2017-06-23T03:50:53.921Z [mo-60] - 801: t1.
2017-06-23T03:50:53.972Z [mo-60] - 800: t1.
2017-06-23T03:50:54.027Z [mo-60] - 799: t1.
2017-06-23T03:50:54.079Z [mo-60] - 798: t1.
2017-06-23T03:50:54.133Z [mo-60] - 797: t1.
2017-06-23T03:50:54.188Z [mo-60] - 796: t1.
2017-06-23T03:50:54.240Z [mo-60] - 795: t1.
2017-06-23T03:50:54.294Z [mo-60] - 794: t1.
2017-06-23T03:50:54.345Z [mo-60] - 793: t1.
2017-06-23T03:50:54.400Z [mo-60] - 792: t1.
2017-06-23T03:50:54.450Z [mo-60] - 791: t1.
2017-06-23T03:50:54.500Z [mo-60] - 790: t1.
2017-06-23T03:50:54.553Z [mo-60] - 789: t1.
2017-06-23T03:50:54.606Z [mo-60] - 788: t1.
2017-06-23T03:50:54.656Z [mo-60] - 787: t1.
2017-06-23T03:50:54.710Z [mo-60] - 786: t1.
2017-06-23T03:50:54.765Z [mo-60] - 785: t1.
2017-06-23T03:50:54.817Z [mo-60] - 784: t1.
2017-06-23T03:50:54.868Z [mo-60] - 783: t1.
2017-06-23T03:50:54.923Z [mo-60] - 782: t1.
2017-06-23T03:50:54.976Z [mo-60] - 781: t1.
2017-06-23T03:50:55.031Z [mo-60] - 780: t1.
2017-06-23T03:50:55.081Z [mo-60] - 779: t1.
2017-06-23T03:50:55.133Z [mo-60] - 778: t1.
2017-06-23T03:50:55.188Z [mo-60] - 776: t1.
2017-06-23T03:50:55.239Z [mo-60] - 769: t1.
2017-06-23T03:50:55.294Z [mo-60] - 767: t1.
2017-06-23T03:50:55.344Z [mo-60] - 763: t1.
2017-06-23T03:50:55.397Z [mo-60] - 754: t1.
2017-06-23T03:50:55.450Z [mo-60] - 750: t1.
2017-06-23T03:50:55.501Z [mo-60] - 746: t1.
2017-06-23T03:50:55.555Z [mo-60] - 744: t1.
2017-06-23T03:50:55.608Z [mo-60] - 740: t1.
2017-06-23T03:50:55.664Z [mo-60] - 736: t1.
2017-06-23T03:50:55.717Z [mo-60] - 734: t1.
2017-06-23T03:50:55.767Z [mo-60] - 732: t1.
2017-06-23T03:50:55.821Z [mo-60] - 730: t1.
2017-06-23T03:50:55.873Z [mo-60] - 728: t1.
2017-06-23T03:50:55.928Z [mo-60] - 723: t1.
2017-06-23T03:50:55.982Z [mo-60] - 721: t1.
2017-06-23T03:50:56.035Z [mo-60] - 712: t1.
2017-06-23T03:50:56.085Z [mo-60] - 711: t1.
2017-06-23T03:50:56.140Z [mo-60] - 710: t1.
2017-06-23T03:50:56.194Z [mo-60] - 709: t1.
2017-06-23T03:50:56.247Z [mo-60] - 708: t1.
2017-06-23T03:50:56.297Z [mo-60] - 707: t1.
2017-06-23T03:50:56.351Z [mo-60] - 706: t1.
2017-06-23T03:50:56.405Z [mo-60] - 705: t1.
2017-06-23T03:50:56.457Z [mo-60] - 704: t1.
2017-06-23T03:50:56.511Z [mo-60] - 703: t1.
2017-06-23T03:50:56.565Z [mo-60] - 702: t1.
2017-06-23T03:50:56.618Z [mo-60] - 701: t1.
2017-06-23T03:50:56.668Z [mo-60] - 700: t1.
2017-06-23T03:50:56.720Z [mo-60] - 699: t1.
2017-06-23T03:50:56.772Z [mo-60] - 698: t1.
2017-06-23T03:50:56.825Z [mo-60] - 697: t1.
2017-06-23T03:50:56.877Z [mo-60] - 696: t1.
2017-06-23T03:50:56.928Z [mo-60] - 695: t1.
2017-06-23T03:50:56.978Z [mo-60] - 694: t1.
2017-06-23T03:50:57.030Z [mo-60] - 693: t1.
2017-06-23T03:50:57.084Z [mo-60] - 692: t1.
2017-06-23T03:50:57.135Z [mo-60] - 691: t1.
2017-06-23T03:50:57.185Z [mo-60] - 690: t1.
2017-06-23T03:50:57.237Z [mo-60] - 689: t1.
2017-06-23T03:50:57.290Z [mo-60] - 688: t1.
2017-06-23T03:50:57.344Z [mo-60] - 687: t1.
2017-06-23T03:50:57.394Z [mo-60] - 686: t1.
2017-06-23T03:50:57.447Z [mo-60] - 685: t1.
2017-06-23T03:50:57.501Z [mo-60] - 684: t1.
2017-06-23T03:50:57.555Z [mo-60] - 683: t1.
2017-06-23T03:50:57.607Z [mo-60] - 682: t1.
2017-06-23T03:50:57.661Z [mo-60] - 681: t1.
2017-06-23T03:50:57.713Z [mo-60] - 680: t1.
2017-06-23T03:50:57.768Z [mo-60] - 679: t1.
2017-06-23T03:50:57.823Z [mo-60] - 678: t1.
2017-06-23T03:50:57.878Z [mo-60] - 677: t1.
2017-06-23T03:50:57.928Z [mo-60] - 676: t1.
2017-06-23T03:50:57.978Z [mo-60] - 675: t1.
2017-06-23T03:50:58.030Z [mo-60] - 674: t1.
2017-06-23T03:50:58.084Z [mo-60] - 673: t1.
2017-06-23T03:50:58.135Z [mo-60] - 671: t1.
2017-06-23T03:50:58.187Z [mo-60] - 198: t2.
2017-06-23T03:50:58.244Z [mo-60] - 979: t1.
2017-06-23T03:50:58.294Z [mo-60] - 978: t1.
2017-06-23T03:50:58.347Z [mo-60] - 977: t1.
2017-06-23T03:50:58.402Z [mo-60] - 976: t1.
2017-06-23T03:50:58.457Z [mo-60] - 975: t1.
2017-06-23T03:50:58.511Z [mo-60] - 974: t1.
2017-06-23T03:50:58.566Z [mo-60] - 973: t1.
2017-06-23T03:50:58.619Z [mo-60] - 972: t1.
2017-06-23T03:50:58.671Z [mo-60] - 971: t1.
2017-06-23T03:50:58.727Z [mo-60] - 970: t1.
2017-06-23T03:50:58.779Z [mo-60] - 969: t1.
2017-06-23T03:50:58.831Z [mo-60] - 968: t1.
2017-06-23T03:50:58.886Z [mo-60] - 965: t1.
2017-06-23T03:50:58.940Z [mo-60] - 964: t1.
2017-06-23T03:50:58.994Z [mo-60] - 963: t1.
2017-06-23T03:50:59.048Z [mo-60] - 962: t1.
2017-06-23T03:50:59.102Z [mo-60] - 961: t1.
2017-06-23T03:50:59.157Z [mo-60] - 960: t1.
2017-06-23T03:50:59.212Z [mo-60] - 959: t1.
2017-06-23T03:50:59.264Z [mo-60] - 958: t1.
2017-06-23T03:50:59.319Z [mo-60] - 957: t1.
2017-06-23T03:50:59.372Z [mo-60] - 956: t1.
2017-06-23T03:50:59.426Z [mo-60] - 955: t1.
2017-06-23T03:50:59.480Z [mo-60] - 954: t1.
2017-06-23T03:50:59.534Z [mo-60] - 953: t1.
2017-06-23T03:50:59.587Z [mo-60] - 952: t1.
2017-06-23T03:50:59.642Z [mo-60] - 951: t1.
2017-06-23T03:50:59.694Z [mo-60] - 949: t1.
2017-06-23T03:50:59.747Z [mo-60] - 947: t1.
2017-06-23T03:50:59.800Z [mo-60] - 945: t1.
2017-06-23T03:50:59.855Z [mo-60] - 943: t1.
2017-06-23T03:50:59.909Z [mo-60] - 941: t1.
2017-06-23T03:50:59.962Z [mo-60] - 938: t1.
2017-06-23T03:51:00.017Z [mo-60] - 936: t1.
2017-06-23T03:51:00.069Z [mo-60] - 933: t1.
2017-06-23T03:51:00.120Z [mo-60] - 929: t1.
2017-06-23T03:51:00.174Z [mo-60] - 927: t1.
2017-06-23T03:51:00.228Z [mo-60] - 925: t1.
2017-06-23T03:51:00.280Z [mo-60] - 923: t1.
2017-06-23T03:51:00.332Z [mo-60] - 921: t1.
2017-06-23T03:51:00.386Z [mo-60] - 919: t1.
2017-06-23T03:51:00.439Z [mo-60] - 917: t1.
2017-06-23T03:51:00.494Z [mo-60] - 910: t1.
2017-06-23T03:51:00.545Z [mo-60] - 906: t1.
2017-06-23T03:51:00.596Z [mo-60] - 905: t1.
2017-06-23T03:51:00.651Z [mo-60] - 904: t1.
2017-06-23T03:51:00.706Z [mo-60] - 903: t1.
2017-06-23T03:51:00.758Z [mo-60] - 902: t1.
2017-06-23T03:51:00.812Z [mo-60] - 901: t1.
2017-06-23T03:51:00.866Z [mo-60] - 900: t1.
2017-06-23T03:51:00.919Z [mo-60] - 899: t1.
2017-06-23T03:51:00.970Z [mo-60] - 898: t1.
2017-06-23T03:51:01.023Z [mo-60] - 897: t1.
2017-06-23T03:51:01.077Z [mo-60] - 896: t1.
2017-06-23T03:51:01.132Z [mo-60] - 895: t1.
2017-06-23T03:51:01.187Z [mo-60] - 894: t1.
2017-06-23T03:51:01.240Z [mo-60] - 892: t1.
2017-06-23T03:51:01.294Z [mo-60] - 890: t1.
2017-06-23T03:51:01.344Z [mo-60] - 888: t1.
2017-06-23T03:51:01.395Z [mo-60] - 886: t1.
2017-06-23T03:51:01.449Z [mo-60] - 884: t1.
2017-06-23T03:51:01.503Z [mo-60] - 878: t1.
2017-06-23T03:51:01.557Z [mo-60] - 872: t1.
2017-06-23T03:51:01.611Z [mo-60] - 863: t1.
2017-06-23T03:51:01.664Z [mo-60] - 861: t1.
2017-06-23T03:51:01.715Z [mo-60] - 859: t1.
2017-06-23T03:51:01.770Z [mo-60] - 857: t1.
2017-06-23T03:51:01.824Z [mo-60] - 855: t1.
2017-06-23T03:51:01.879Z [mo-60] - 853: t1.
2017-06-23T03:51:01.933Z [mo-60] - 1000: t1.
2017-06-23T03:51:01.987Z [mo-60] - 851: t1.
2017-06-23T03:51:02.038Z [mo-60] - 850: t1.
2017-06-23T03:51:02.090Z [mo-60] - 999: t1.
2017-06-23T03:51:02.144Z [mo-60] - 849: t1.
2017-06-23T03:51:02.194Z [mo-60] - 848: t1.
2017-06-23T03:51:02.247Z [mo-60] - 847: t1.
2017-06-23T03:51:02.299Z [mo-60] - 846: t1.
2017-06-23T03:51:02.354Z [mo-60] - 845: t1.
2017-06-23T03:51:02.406Z [mo-60] - 844: t1.
2017-06-23T03:51:02.461Z [mo-60] - 843: t1.
2017-06-23T03:51:02.511Z [mo-60] - 842: t1.
2017-06-23T03:51:02.561Z [mo-60] - 841: t1.
2017-06-23T03:51:02.615Z [mo-60] - 840: t1.
2017-06-23T03:51:02.667Z [mo-60] - 839: t1.
2017-06-23T03:51:02.721Z [mo-60] - 967: t1.
2017-06-23T03:51:02.773Z [mo-60] - 838: t1.
2017-06-23T03:51:02.826Z [mo-60] - 998: t1.
2017-06-23T03:51:02.878Z [mo-60] - 837: t1.
2017-06-23T03:51:02.928Z [mo-60] - 836: t1.
2017-06-23T03:51:02.981Z [mo-60] - 950: t1.
2017-06-23T03:51:03.034Z [mo-60] - 835: t1.
2017-06-23T03:51:03.088Z [mo-60] - 948: t1.
2017-06-23T03:51:03.143Z [mo-60] - 834: t1.
2017-06-23T03:51:03.197Z [mo-60] - 940: t1.
2017-06-23T03:51:03.250Z [mo-60] - 833: t1.
2017-06-23T03:51:03.305Z [mo-60] - 937: t1.
2017-06-23T03:51:03.360Z [mo-60] - 832: t1.
2017-06-23T03:51:03.411Z [mo-60] - 934: t1.
2017-06-23T03:51:03.464Z [mo-60] - 831: t1.
2017-06-23T03:51:03.516Z [mo-60] - 932: t1.
2017-06-23T03:51:03.566Z [mo-60] - 830: t1.
2017-06-23T03:51:03.621Z [mo-60] - 930: t1.
2017-06-23T03:51:03.672Z [mo-60] - 829: t1.
2017-06-23T03:51:03.727Z [mo-60] - 828: t1.
2017-06-23T03:51:03.778Z [mo-60] - 997: t1.
2017-06-23T03:51:03.829Z [mo-60] - 996: t1.
2017-06-23T03:51:03.884Z [mo-60] - 995: t1.
2017-06-23T03:51:03.938Z [mo-60] - 994: t1.
2017-06-23T03:51:03.989Z [mo-60] - 993: t1.
2017-06-23T03:51:04.044Z [mo-60] - 992: t1.
2017-06-23T03:51:04.095Z [mo-60] - 991: t1.
2017-06-23T03:51:04.149Z [mo-60] - 827: t1.
2017-06-23T03:51:04.200Z [mo-60] - 826: t1.
2017-06-23T03:51:04.254Z [mo-60] - 825: t1.
2017-06-23T03:51:04.309Z [mo-60] - 824: t1.
2017-06-23T03:51:04.361Z [mo-60] - 823: t1.
2017-06-23T03:51:04.415Z [mo-60] - 822: t1.
2017-06-23T03:51:04.466Z [mo-60] - 821: t1.
2017-06-23T03:51:04.520Z [mo-60] - 920: t1.
2017-06-23T03:51:04.571Z [mo-60] - 915: t1.
2017-06-23T03:51:04.625Z [mo-60] - 914: t1.
2017-06-23T03:51:04.678Z [mo-60] - 913: t1.
2017-06-23T03:51:04.729Z [mo-60] - 912: t1.
2017-06-23T03:51:04.781Z [mo-60] - 909: t1.
2017-06-23T03:51:04.832Z [mo-60] - 907: t1.
2017-06-23T03:51:04.883Z [mo-60] - 893: t1.
2017-06-23T03:51:04.936Z [mo-60] - 891: t1.
2017-06-23T03:51:04.988Z [mo-60] - 889: t1.
2017-06-23T03:51:05.044Z [mo-60] - 887: t1.
2017-06-23T03:51:05.094Z [mo-60] - 885: t1.
2017-06-23T03:51:05.145Z [mo-60] - 990: t1.
2017-06-23T03:51:05.199Z [mo-60] - 989: t1.
2017-06-23T03:51:05.250Z [mo-60] - 988: t1.
2017-06-23T03:51:05.303Z [mo-60] - 987: t1.
2017-06-23T03:51:05.356Z [mo-60] - 986: t1.
2017-06-23T03:51:05.410Z [mo-60] - 985: t1.
2017-06-23T03:51:05.461Z [mo-60] - 984: t1.
2017-06-23T03:51:05.516Z [mo-60] - 983: t1.
2017-06-23T03:51:05.567Z [mo-60] - 982: t1.
2017-06-23T03:51:05.621Z [mo-60] - 981: t1.
2017-06-23T03:51:05.674Z [mo-60] - 980: t1.
2017-06-23T03:51:05.727Z [mo-60] - 966: t1.
2017-06-23T03:51:05.782Z [mo-60] - 946: t1.
2017-06-23T03:51:05.833Z [mo-60] - 944: t1.
2017-06-23T03:51:05.885Z [mo-60] - 942: t1.
2017-06-23T03:51:05.939Z [mo-60] - 939: t1.
2017-06-23T03:51:05.994Z [mo-60] - 935: t1.
2017-06-23T03:51:06.044Z [mo-60] - 931: t1.
2017-06-23T03:51:06.095Z [mo-60] - 928: t1.
2017-06-23T03:51:06.150Z [mo-60] - 926: t1.
2017-06-23T03:51:06.200Z [mo-60] - 924: t1.
2017-06-23T03:51:06.256Z [mo-60] - 922: t1.
2017-06-23T03:51:06.310Z [mo-60] - 918: t1.
2017-06-23T03:51:06.361Z [mo-60] - 916: t1.
2017-06-23T03:51:06.414Z [mo-60] - 911: t1.
2017-06-23T03:51:06.467Z [mo-60] - 908: t1.
2017-06-23T03:51:06.522Z [mo-60] - 882: t1.
2017-06-23T03:51:06.577Z [mo-60] - 880: t1.
2017-06-23T03:51:06.631Z [mo-60] - 876: t1.
2017-06-23T03:51:06.683Z [mo-60] - 874: t1.
2017-06-23T03:51:06.736Z [mo-60] - 873: t1.
2017-06-23T03:51:06.789Z [mo-60] - 871: t1.
2017-06-23T03:51:06.844Z [mo-60] - 870: t1.
2017-06-23T03:51:06.894Z [mo-60] - 869: t1.
2017-06-23T03:51:06.945Z [mo-60] - 868: t1.
2017-06-23T03:51:06.995Z [mo-60] - 867: t1.
2017-06-23T03:51:07.048Z [mo-60] - 866: t1.
2017-06-23T03:51:07.100Z [mo-60] - 865: t1.
2017-06-23T03:51:07.151Z [mo-60] - 864: t1.
2017-06-23T03:51:07.206Z [mo-60] - 862: t1.
2017-06-23T03:51:07.260Z [mo-60] - 860: t1.
2017-06-23T03:51:07.314Z [mo-60] - 858: t1.
2017-06-23T03:51:07.367Z [mo-60] - 856: t1.
2017-06-23T03:51:07.417Z [mo-60] - 854: t1.
2017-06-23T03:51:07.468Z [mo-60] - 852: t1.
2017-06-23T03:51:07.523Z [mo-60] - 883: t1.
2017-06-23T03:51:07.574Z [mo-60] - 881: t1.
2017-06-23T03:51:07.628Z [mo-60] - 879: t1.
2017-06-23T03:51:07.680Z [mo-60] - 877: t1.
2017-06-23T03:51:07.734Z [mo-60] - 875: t1.
2017-06-23T03:51:07.784Z [mo-60] - 777: t1.
2017-06-23T03:51:07.840Z [mo-60] - 775: t1.
2017-06-23T03:51:07.894Z [mo-60] - 773: t1.
2017-06-23T03:51:07.945Z [mo-60] - 771: t1.
2017-06-23T03:51:07.999Z [mo-60] - 765: t1.
2017-06-23T03:51:08.051Z [mo-60] - 761: t1.
2017-06-23T03:51:08.105Z [mo-60] - 759: t1.
2017-06-23T03:51:08.160Z [mo-60] - 757: t1.
2017-06-23T03:51:08.211Z [mo-60] - 752: t1.
2017-06-23T03:51:08.262Z [mo-60] - 748: t1.
2017-06-23T03:51:08.315Z [mo-60] - 742: t1.
2017-06-23T03:51:08.366Z [mo-60] - 738: t1.
2017-06-23T03:51:08.418Z [mo-60] - 726: t1.
2017-06-23T03:51:08.469Z [mo-60] - 724: t1.
2017-06-23T03:51:08.523Z [mo-60] - 672: t1.
2017-06-23T03:51:08.577Z [mo-60] - 670: t1.
2017-06-23T03:51:08.628Z [mo-60] - 669: t1.
2017-06-23T03:51:08.681Z [mo-60] - 668: t1.
2017-06-23T03:51:08.734Z [mo-60] - 667: t1.
2017-06-23T03:51:08.787Z [mo-60] - 650: t1.
2017-06-23T03:51:08.840Z [mo-60] - 300: t2.
2017-06-23T03:51:08.894Z [mo-60] - 271: t2.
2017-06-23T03:51:08.946Z [mo-60] - 299: t2.
2017-06-23T03:51:09.001Z [mo-60] - 298: t2.
2017-06-23T03:51:09.051Z [mo-60] - 297: t2.
2017-06-23T03:51:09.107Z [mo-60] - 296: t2.
2017-06-23T03:51:09.160Z [mo-60] - 197: t2.
2017-06-23T03:51:09.211Z [mo-60] - 196: t2.
2017-06-23T03:51:09.261Z [mo-60] - 195: t2.
2017-06-23T03:51:09.315Z [mo-60] - 194: t2.
2017-06-23T03:51:09.368Z [mo-60] - 267: t2.
2017-06-23T03:51:09.423Z [mo-60] - 295: t2.
2017-06-23T03:51:09.477Z [mo-60] - 294: t2.
2017-06-23T03:51:09.528Z [mo-60] - 193: t2.
2017-06-23T03:51:09.582Z [mo-60] - 192: t2.
2017-06-23T03:51:09.635Z [mo-60] - 191: t2.
2017-06-23T03:51:09.687Z [mo-60] - 190: t2.
2017-06-23T03:51:09.741Z [mo-60] - 189: t2.
2017-06-23T03:51:09.794Z [mo-60] - 188: t2.
2017-06-23T03:51:09.847Z [mo-60] - 187: t2.
2017-06-23T03:51:09.902Z [mo-60] - 186: t2.
2017-06-23T03:51:09.952Z [mo-60] - 185: t2.
2017-06-23T03:51:10.002Z [mo-60] - 184: t2.
2017-06-23T03:51:10.057Z [mo-60] - 183: t2.
2017-06-23T03:51:10.110Z [mo-60] - 182: t2.
2017-06-23T03:51:10.163Z [mo-60] - 181: t2.
2017-06-23T03:51:10.218Z [mo-60] - 180: t2.
2017-06-23T03:51:10.271Z [mo-60] - 179: t2.
2017-06-23T03:51:10.324Z [mo-60] - 178: t2.
2017-06-23T03:51:10.377Z [mo-60] - 177: t2.
2017-06-23T03:51:10.430Z [mo-60] - 176: t2.
2017-06-23T03:51:10.486Z [mo-60] - 175: t2.
2017-06-23T03:51:10.540Z [mo-60] - 174: t2.
2017-06-23T03:51:10.594Z [mo-60] - 173: t2.
2017-06-23T03:51:10.645Z [mo-60] - 172: t2.
2017-06-23T03:51:10.697Z [mo-60] - 265: t2.
2017-06-23T03:51:10.749Z [mo-60] - 171: t2.
2017-06-23T03:51:10.802Z [mo-60] - 263: t2.
2017-06-23T03:51:10.858Z [mo-60] - 170: t2.
2017-06-23T03:51:10.910Z [mo-60] - 262: t2.
2017-06-23T03:51:10.962Z [mo-60] - 169: t2.
2017-06-23T03:51:11.016Z [mo-60] - 260: t2.
2017-06-23T03:51:11.070Z [mo-60] - 167: t2.
2017-06-23T03:51:11.124Z [mo-60] - 258: t2.
2017-06-23T03:51:11.177Z [mo-60] - 165: t2.
2017-06-23T03:51:11.231Z [mo-60] - 256: t2.
2017-06-23T03:51:11.286Z [mo-60] - 163: t2.
2017-06-23T03:51:11.341Z [mo-60] - 255: t2.
2017-06-23T03:51:11.394Z [mo-60] - 161: t2.
2017-06-23T03:51:11.450Z [mo-60] - 254: t2.
2017-06-23T03:51:11.503Z [mo-60] - 252: t2.
2017-06-23T03:51:11.557Z [mo-60] - 159: t2.
2017-06-23T03:51:11.610Z [mo-60] - 250: t2.
2017-06-23T03:51:11.663Z [mo-60] - 158: t2.
2017-06-23T03:51:11.715Z [mo-60] - 248: t2.
2017-06-23T03:51:11.770Z [mo-60] - 150: t2.
2017-06-23T03:51:11.820Z [mo-60] - 246: t2.
2017-06-23T03:51:11.875Z [mo-60] - 146: t2.
2017-06-23T03:51:11.927Z [mo-60] - 244: t2.
2017-06-23T03:51:11.980Z [mo-60] - 142: t2.
2017-06-23T03:51:12.031Z [mo-60] - 242: t2.
2017-06-23T03:51:12.085Z [mo-60] - 241: t2.
2017-06-23T03:51:12.139Z [mo-60] - 140: t2.
2017-06-23T03:51:12.193Z [mo-60] - 240: t2.
2017-06-23T03:51:12.244Z [mo-60] - 136: t2.
2017-06-23T03:51:12.296Z [mo-60] - 239: t2.
2017-06-23T03:51:12.346Z [mo-60] - 135: t2.
2017-06-23T03:51:12.398Z [mo-60] - 238: t2.
2017-06-23T03:51:12.453Z [mo-60] - 134: t2.
2017-06-23T03:51:12.505Z [mo-60] - 237: t2.
2017-06-23T03:51:12.560Z [mo-60] - 236: t2.
2017-06-23T03:51:12.614Z [mo-60] - 133: t2.
2017-06-23T03:51:12.668Z [mo-60] - 235: t2.
2017-06-23T03:51:12.720Z [mo-60] - 132: t2.
2017-06-23T03:51:12.775Z [mo-60] - 233: t2.
2017-06-23T03:51:12.825Z [mo-60] - 130: t2.
2017-06-23T03:51:12.877Z [mo-60] - 231: t2.
2017-06-23T03:51:12.932Z [mo-60] - 129: t2.
2017-06-23T03:51:12.986Z [mo-60] - 230: t2.
2017-06-23T03:51:13.038Z [mo-60] - 229: t2.
2017-06-23T03:51:13.092Z [mo-60] - 128: t2.
2017-06-23T03:51:13.144Z [mo-60] - 228: t2.
2017-06-23T03:51:13.195Z [mo-60] - 127: t2.
2017-06-23T03:51:13.248Z [mo-60] - 227: t2.
2017-06-23T03:51:13.301Z [mo-60] - 125: t2.
2017-06-23T03:51:13.354Z [mo-60] - 225: t2.
2017-06-23T03:51:13.409Z [mo-60] - 123: t2.
2017-06-23T03:51:13.463Z [mo-60] - 223: t2.
2017-06-23T03:51:13.516Z [mo-60] - 122: t2.
2017-06-23T03:51:13.570Z [mo-60] - 221: t2.
2017-06-23T03:51:13.623Z [mo-60] - 220: t2.
2017-06-23T03:51:13.677Z [mo-60] - 121: t2.
2017-06-23T03:51:13.728Z [mo-60] - 219: t2.
2017-06-23T03:51:13.782Z [mo-60] - 120: t2.
2017-06-23T03:51:13.834Z [mo-60] - 218: t2.
2017-06-23T03:51:13.887Z [mo-60] - 217: t2.
2017-06-23T03:51:13.943Z [mo-60] - 119: t2.
2017-06-23T03:51:13.994Z [mo-60] - 216: t2.
2017-06-23T03:51:14.047Z [mo-60] - 118: t2.
2017-06-23T03:51:14.101Z [mo-60] - 215: t2.
2017-06-23T03:51:14.153Z [mo-60] - 117: t2.
2017-06-23T03:51:14.208Z [mo-60] - 214: t2.
2017-06-23T03:51:14.260Z [mo-60] - 213: t2.
2017-06-23T03:51:14.310Z [mo-60] - 116: t2.
2017-06-23T03:51:14.361Z [mo-60] - 212: t2.
2017-06-23T03:51:14.414Z [mo-60] - 115: t2.
2017-06-23T03:51:14.465Z [mo-60] - 211: t2.
2017-06-23T03:51:14.520Z [mo-60] - 114: t2.
2017-06-23T03:51:14.572Z [mo-60] - 210: t2.
2017-06-23T03:51:14.626Z [mo-60] - 112: t2.
2017-06-23T03:51:14.678Z [mo-60] - 209: t2.
2017-06-23T03:51:14.730Z [mo-60] - 110: t2.
2017-06-23T03:51:14.783Z [mo-60] - 208: t2.
2017-06-23T03:51:14.838Z [mo-60] - 207: t2.
2017-06-23T03:51:14.893Z [mo-60] - 108: t2.
2017-06-23T03:51:14.945Z [mo-60] - 206: t2.
2017-06-23T03:51:15.000Z [mo-60] - 106: t2.
2017-06-23T03:51:15.054Z [mo-60] - 205: t2.
2017-06-23T03:51:15.105Z [mo-60] - 104: t2.
2017-06-23T03:51:15.156Z [mo-60] - 204: t2.
2017-06-23T03:51:15.210Z [mo-60] - 103: t2.
2017-06-23T03:51:15.261Z [mo-60] - 203: t2.
2017-06-23T03:51:15.314Z [mo-60] - 102: t2.
2017-06-23T03:51:15.367Z [mo-60] - 202: t2.
2017-06-23T03:51:15.421Z [mo-60] - 101: t2.
2017-06-23T03:51:15.477Z [mo-60] - 201: t2.
2017-06-23T03:51:15.527Z [mo-60] - 94: t2.
2017-06-23T03:51:15.578Z [mo-60] - 200: t2.
2017-06-23T03:51:15.628Z [mo-60] - 199: t2.
2017-06-23T03:51:15.678Z [mo-60] - 92: t2.
2017-06-23T03:51:15.730Z [mo-60] - 168: t2.
2017-06-23T03:51:15.785Z [mo-60] - 85: t2.
2017-06-23T03:51:15.838Z [mo-60] - 166: t2.
2017-06-23T03:51:15.894Z [mo-60] - 164: t2.
2017-06-23T03:51:15.945Z [mo-60] - 83: t2.
2017-06-23T03:51:15.995Z [mo-60] - 154: t2.
2017-06-23T03:51:16.045Z [mo-60] - 81: t2.
2017-06-23T03:51:16.101Z [mo-60] - 152: t2.
2017-06-23T03:51:16.155Z [mo-60] - 79: t2.
2017-06-23T03:51:16.210Z [mo-60] - 148: t2.
2017-06-23T03:51:16.261Z [mo-60] - 77: t2.
2017-06-23T03:51:16.313Z [mo-60] - 144: t2.
2017-06-23T03:51:16.368Z [mo-60] - 138: t2.
2017-06-23T03:51:16.422Z [mo-60] - 70: t2.
2017-06-23T03:51:16.477Z [mo-60] - 131: t2.
2017-06-23T03:51:16.528Z [mo-60] - 68: t2.
2017-06-23T03:51:16.578Z [mo-60] - 126: t2.
2017-06-23T03:51:16.629Z [mo-60] - 66: t2.
2017-06-23T03:51:16.679Z [mo-60] - 124: t2.
2017-06-23T03:51:16.731Z [mo-60] - 56: t2.
2017-06-23T03:51:16.786Z [mo-60] - 111: t2.
2017-06-23T03:51:16.839Z [mo-60] - 109: t2.
2017-06-23T03:51:16.894Z [mo-60] - 107: t2.
2017-06-23T03:51:16.945Z [mo-60] - 53: t2.
2017-06-23T03:51:16.995Z [mo-60] - 51: t2.
2017-06-23T03:51:17.046Z [mo-60] - 49: t2.
2017-06-23T03:51:17.098Z [mo-60] - 105: t2.
2017-06-23T03:51:17.151Z [mo-60] - 45: t2.
2017-06-23T03:51:17.206Z [mo-60] - 100: t2.
2017-06-23T03:51:17.260Z [mo-60] - 43: t2.
2017-06-23T03:51:17.310Z [mo-60] - 99: t2.
2017-06-23T03:51:17.361Z [mo-60] - 89: t2.
2017-06-23T03:51:17.411Z [mo-60] - 41: t2.
2017-06-23T03:51:17.462Z [mo-60] - 87: t2.
2017-06-23T03:51:17.517Z [mo-60] - 38: t2.
2017-06-23T03:51:17.573Z [mo-60] - 86: t2.
2017-06-23T03:51:17.627Z [mo-60] - 36: t2.
2017-06-23T03:51:17.678Z [mo-60] - 84: t2.
2017-06-23T03:51:17.728Z [mo-60] - 82: t2.
2017-06-23T03:51:17.779Z [mo-60] - 34: t2.
2017-06-23T03:51:17.829Z [mo-60] - 80: t2.
2017-06-23T03:51:17.879Z [mo-60] - 32: t2.
2017-06-23T03:51:17.934Z [mo-60] - 78: t2.
2017-06-23T03:51:17.989Z [mo-60] - 29: t2.
2017-06-23T03:51:18.045Z [mo-60] - 76: t2.
2017-06-23T03:51:18.095Z [mo-60] - 26: t2.
2017-06-23T03:51:18.145Z [mo-60] - 74: t2.
2017-06-23T03:51:18.196Z [mo-60] - 72: t2.
2017-06-23T03:51:18.251Z [mo-60] - 24: t2.
2017-06-23T03:51:18.306Z [mo-60] - 64: t2.
2017-06-23T03:51:18.360Z [mo-60] - 22: t2.
2017-06-23T03:51:18.411Z [mo-60] - 62: t2.
2017-06-23T03:51:18.465Z [mo-60] - 19: t2.
2017-06-23T03:51:18.517Z [mo-60] - 60: t2.
2017-06-23T03:51:18.569Z [mo-60] - 16: t2.
2017-06-23T03:51:18.623Z [mo-60] - 58: t2.
2017-06-23T03:51:18.673Z [mo-60] - 54: t2.
2017-06-23T03:51:18.728Z [mo-60] - 13: t2.
2017-06-23T03:51:18.778Z [mo-60] - 52: t2.
2017-06-23T03:51:18.829Z [mo-60] - 9: t2.
2017-06-23T03:51:18.884Z [mo-60] - 48: t2.
2017-06-23T03:51:18.935Z [mo-60] - 7: t2.
2017-06-23T03:51:18.990Z [mo-60] - 46: t2.
2017-06-23T03:51:19.045Z [mo-60] - 4: t2.
2017-06-23T03:51:19.095Z [mo-60] - 44: t2.
2017-06-23T03:51:19.145Z [mo-60] - 42: t2.
2017-06-23T03:51:19.196Z [mo-60] - 2: t2.
2017-06-23T03:51:19.248Z [mo-60] - 40: t2.
2017-06-23T03:51:19.301Z [mo-60] - 31: t2.
2017-06-23T03:51:19.353Z [mo-60] - 28: t2.
2017-06-23T03:51:19.404Z [mo-60] - 20: t2.
2017-06-23T03:51:19.454Z [mo-60] - 17: t2.
2017-06-23T03:51:19.506Z [mo-60] - 15: t2.
2017-06-23T03:51:19.560Z [mo-60] - 11: t2.
2017-06-23T03:51:19.611Z [mo-60] - 6: t2.
2017-06-23T03:51:19.662Z [mo-60] - 3: t2.
2017-06-23T03:51:19.713Z [mo-60] - 293: t2.
2017-06-23T03:51:19.765Z [mo-60] - 292: t2.
2017-06-23T03:51:19.820Z [mo-60] - 291: t2.
2017-06-23T03:51:19.874Z [mo-60] - 290: t2.
2017-06-23T03:51:19.927Z [mo-60] - 289: t2.
2017-06-23T03:51:19.978Z [mo-60] - 288: t2.
2017-06-23T03:51:20.028Z [mo-60] - 287: t2.
2017-06-23T03:51:20.079Z [mo-60] - 286: t2.
2017-06-23T03:51:20.133Z [mo-60] - 285: t2.
2017-06-23T03:51:20.185Z [mo-60] - 284: t2.
2017-06-23T03:51:20.240Z [mo-60] - 283: t2.
2017-06-23T03:51:20.295Z [mo-60] - 282: t2.
2017-06-23T03:51:20.346Z [mo-60] - 281: t2.
2017-06-23T03:51:20.401Z [mo-60] - 280: t2.
2017-06-23T03:51:20.456Z [mo-60] - 279: t2.
2017-06-23T03:51:20.511Z [mo-60] - 278: t2.
2017-06-23T03:51:20.562Z [mo-60] - 277: t2.
2017-06-23T03:51:20.615Z [mo-60] - 276: t2.
2017-06-23T03:51:20.666Z [mo-60] - 275: t2.
2017-06-23T03:51:20.720Z [mo-60] - 274: t2.
2017-06-23T03:51:20.776Z [mo-60] - 273: t2.
2017-06-23T03:51:20.828Z [mo-60] - 272: t2.
2017-06-23T03:51:20.878Z [mo-60] - 270: t2.
2017-06-23T03:51:20.929Z [mo-60] - 269: t2.
2017-06-23T03:51:20.984Z [mo-60] - 268: t2.
2017-06-23T03:51:21.039Z [mo-60] - 266: t2.
2017-06-23T03:51:21.094Z [mo-60] - 264: t2.
2017-06-23T03:51:21.146Z [mo-60] - 261: t2.
2017-06-23T03:51:21.196Z [mo-60] - 259: t2.
2017-06-23T03:51:21.246Z [mo-60] - 257: t2.
2017-06-23T03:51:21.296Z [mo-60] - 253: t2.
2017-06-23T03:51:21.348Z [mo-60] - 251: t2.
2017-06-23T03:51:21.400Z [mo-60] - 249: t2.
2017-06-23T03:51:21.452Z [mo-60] - 247: t2.
2017-06-23T03:51:21.507Z [mo-60] - 245: t2.
2017-06-23T03:51:21.560Z [mo-60] - 243: t2.
2017-06-23T03:51:21.614Z [mo-60] - 234: t2.
2017-06-23T03:51:21.664Z [mo-60] - 232: t2.
2017-06-23T03:51:21.719Z [mo-60] - 226: t2.
2017-06-23T03:51:21.775Z [mo-60] - 224: t2.
2017-06-23T03:51:21.827Z [mo-60] - 222: t2.
2017-06-23T03:51:21.878Z [mo-60] - 162: t2.
2017-06-23T03:51:21.928Z [mo-60] - 160: t2.
2017-06-23T03:51:21.979Z [mo-60] - 157: t2.
2017-06-23T03:51:22.030Z [mo-60] - 156: t2.
2017-06-23T03:51:22.083Z [mo-60] - 155: t2.
2017-06-23T03:51:22.138Z [mo-60] - 153: t2.
2017-06-23T03:51:22.191Z [mo-60] - 151: t2.
2017-06-23T03:51:22.246Z [mo-60] - 149: t2.
2017-06-23T03:51:22.297Z [mo-60] - 147: t2.
2017-06-23T03:51:22.349Z [mo-60] - 145: t2.
2017-06-23T03:51:22.404Z [mo-60] - 143: t2.
2017-06-23T03:51:22.459Z [mo-60] - 141: t2.
2017-06-23T03:51:22.511Z [mo-60] - 139: t2.
2017-06-23T03:51:22.561Z [mo-60] - 137: t2.
2017-06-23T03:51:22.613Z [mo-60] - 113: t2.
2017-06-23T03:51:22.664Z [mo-60] - 98: t2.
2017-06-23T03:51:22.717Z [mo-60] - 97: t2.
2017-06-23T03:51:22.769Z [mo-60] - 96: t2.
2017-06-23T03:51:22.824Z [mo-60] - 95: t2.
2017-06-23T03:51:22.878Z [mo-60] - 93: t2.
2017-06-23T03:51:22.928Z [mo-60] - 91: t2.
2017-06-23T03:51:22.979Z [mo-60] - 90: t2.
2017-06-23T03:51:23.030Z [mo-60] - 88: t2.
2017-06-23T03:51:23.080Z [mo-60] - 75: t2.
2017-06-23T03:51:23.130Z [mo-60] - 73: t2.
2017-06-23T03:51:23.181Z [mo-60] - 71: t2.
2017-06-23T03:51:23.236Z [mo-60] - 69: t2.
2017-06-23T03:51:23.289Z [mo-60] - 67: t2.
2017-06-23T03:51:23.344Z [mo-60] - 65: t2.
2017-06-23T03:51:23.395Z [mo-60] - 63: t2.
2017-06-23T03:51:23.445Z [mo-60] - 61: t2.
2017-06-23T03:51:23.497Z [mo-60] - 59: t2.
2017-06-23T03:51:23.547Z [mo-60] - 57: t2.
2017-06-23T03:51:23.598Z [mo-60] - 55: t2.
2017-06-23T03:51:23.648Z [mo-60] - 50: t2.
2017-06-23T03:51:23.703Z [mo-60] - 47: t2.
2017-06-23T03:51:23.754Z [mo-60] - 39: t2.
2017-06-23T03:51:23.807Z [mo-60] - 37: t2.
2017-06-23T03:51:23.861Z [mo-60] - 35: t2.
2017-06-23T03:51:23.914Z [mo-60] - 33: t2.
2017-06-23T03:51:23.965Z [mo-60] - 30: t2.
2017-06-23T03:51:24.018Z [mo-60] - 27: t2.
2017-06-23T03:51:24.070Z [mo-60] - 25: t2.
2017-06-23T03:51:24.121Z [mo-60] - 23: t2.
2017-06-23T03:51:24.173Z [mo-60] - 21: t2.
2017-06-23T03:51:24.225Z [mo-60] - 18: t2.
2017-06-23T03:51:24.278Z [mo-60] - 14: t2.
2017-06-23T03:51:24.330Z [mo-60] - 12: t2.
2017-06-23T03:51:24.381Z [mo-60] - 10: t2.
2017-06-23T03:51:24.431Z [mo-60] - 8: t2.
2017-06-23T03:51:24.483Z [mo-60] - 5: t2.
2017-06-23T03:51:24.538Z [mo-60] - 1: t2.
2017-06-23T03:51:24.594Z [mo-60] - 510: t2.
2017-06-23T03:51:24.645Z [mo-60] - 509: t2.
2017-06-23T03:51:24.697Z [mo-60] - 508: t2.
2017-06-23T03:51:24.748Z [mo-60] - 507: t2.
2017-06-23T03:51:24.802Z [mo-60] - 506: t2.
2017-06-23T03:51:24.858Z [mo-60] - 505: t2.
2017-06-23T03:51:24.911Z [mo-60] - 504: t2.
2017-06-23T03:51:24.964Z [mo-60] - 503: t2.
2017-06-23T03:51:25.014Z [mo-60] - 502: t2.
2017-06-23T03:51:25.065Z [mo-60] - 501: t2.
2017-06-23T03:51:25.117Z [mo-60] - 488: t2.
2017-06-23T03:51:25.173Z [mo-60] - 486: t2.
2017-06-23T03:51:25.228Z [mo-60] - 482: t2.
2017-06-23T03:51:25.278Z [mo-60] - 473: t2.
2017-06-23T03:51:25.331Z [mo-60] - 471: t2.
2017-06-23T03:51:25.382Z [mo-60] - 469: t2.
2017-06-23T03:51:25.434Z [mo-60] - 467: t2.
2017-06-23T03:51:25.489Z [mo-60] - 465: t2.
2017-06-23T03:51:25.545Z [mo-60] - 464: t2.
2017-06-23T03:51:25.597Z [mo-60] - 463: t2.
2017-06-23T03:51:25.652Z [mo-60] - 461: t2.
2017-06-23T03:51:25.707Z [mo-60] - 452: t2.
2017-06-23T03:51:25.761Z [mo-60] - 451: t2.
2017-06-23T03:51:25.815Z [mo-60] - 450: t2.
2017-06-23T03:51:25.867Z [mo-60] - 449: t2.
2017-06-23T03:51:25.922Z [mo-60] - 448: t2.
2017-06-23T03:51:25.977Z [mo-60] - 447: t2.
2017-06-23T03:51:26.028Z [mo-60] - 446: t2.
2017-06-23T03:51:26.082Z [mo-60] - 445: t2.
2017-06-23T03:51:26.132Z [mo-60] - 444: t2.
2017-06-23T03:51:26.182Z [mo-60] - 443: t2.
2017-06-23T03:51:26.233Z [mo-60] - 442: t2.
2017-06-23T03:51:26.288Z [mo-60] - 441: t2.
2017-06-23T03:51:26.343Z [mo-60] - 439: t2.
2017-06-23T03:51:26.395Z [mo-60] - 433: t2.
2017-06-23T03:51:26.448Z [mo-60] - 432: t2.
2017-06-23T03:51:26.499Z [mo-60] - 431: t2.
2017-06-23T03:51:26.555Z [mo-60] - 430: t2.
2017-06-23T03:51:26.605Z [mo-60] - 429: t2.
2017-06-23T03:51:26.659Z [mo-60] - 428: t2.
2017-06-23T03:51:26.711Z [mo-60] - 427: t2.
2017-06-23T03:51:26.764Z [mo-60] - 426: t2.
2017-06-23T03:51:26.815Z [mo-60] - 425: t2.
2017-06-23T03:51:26.866Z [mo-60] - 424: t2.
2017-06-23T03:51:26.916Z [mo-60] - 423: t2.
2017-06-23T03:51:26.967Z [mo-60] - 422: t2.
2017-06-23T03:51:27.017Z [mo-60] - 421: t2.
2017-06-23T03:51:27.072Z [mo-60] - 420: t2.
2017-06-23T03:51:27.127Z [mo-60] - 419: t2.
2017-06-23T03:51:27.178Z [mo-60] - 418: t2.
2017-06-23T03:51:27.232Z [mo-60] - 417: t2.
2017-06-23T03:51:27.283Z [mo-60] - 415: t2.
2017-06-23T03:51:27.333Z [mo-60] - 414: t2.
2017-06-23T03:51:27.385Z [mo-60] - 413: t2.
2017-06-23T03:51:27.438Z [mo-60] - 412: t2.
2017-06-23T03:51:27.493Z [mo-60] - 411: t2.
2017-06-23T03:51:27.545Z [mo-60] - 410: t2.
2017-06-23T03:51:27.599Z [mo-60] - 409: t2.
2017-06-23T03:51:27.649Z [mo-60] - 408: t2.
2017-06-23T03:51:27.705Z [mo-60] - 406: t2.
2017-06-23T03:51:27.757Z [mo-60] - 404: t2.
2017-06-23T03:51:27.811Z [mo-60] - 402: t2.
2017-06-23T03:51:27.866Z [mo-60] - 396: t2.
2017-06-23T03:51:27.916Z [mo-60] - 394: t2.
2017-06-23T03:51:27.967Z [mo-60] - 392: t2.
2017-06-23T03:51:28.022Z [mo-60] - 390: t2.
2017-06-23T03:51:28.077Z [mo-60] - 388: t2.
2017-06-23T03:51:28.128Z [mo-60] - 386: t2.
2017-06-23T03:51:28.183Z [mo-60] - 384: t2.
2017-06-23T03:51:28.233Z [mo-60] - 344: t2.
2017-06-23T03:51:28.289Z [mo-60] - 343: t2.
2017-06-23T03:51:28.344Z [mo-60] - 342: t2.
2017-06-23T03:51:28.400Z [mo-60] - 341: t2.
2017-06-23T03:51:28.450Z [mo-60] - 340: t2.
2017-06-23T03:51:28.506Z [mo-60] - 339: t2.
2017-06-23T03:51:28.561Z [mo-60] - 331: t2.
2017-06-23T03:51:28.611Z [mo-60] - 330: t2.
2017-06-23T03:51:28.666Z [mo-60] - 329: t2.
2017-06-23T03:51:28.717Z [mo-60] - 328: t2.
2017-06-23T03:51:28.767Z [mo-60] - 327: t2.
2017-06-23T03:51:28.817Z [mo-60] - 325: t2.
2017-06-23T03:51:28.870Z [mo-60] - 324: t2.
2017-06-23T03:51:28.925Z [mo-60] - 323: t2.
2017-06-23T03:51:28.977Z [mo-60] - 322: t2.
2017-06-23T03:51:29.028Z [mo-60] - 321: t2.
2017-06-23T03:51:29.078Z [mo-60] - 320: t2.
2017-06-23T03:51:29.129Z [mo-60] - 319: t2.
2017-06-23T03:51:29.183Z [mo-60] - 318: t2.
2017-06-23T03:51:29.234Z [mo-60] - 317: t2.
2017-06-23T03:51:29.284Z [mo-60] - 316: t2.
2017-06-23T03:51:29.337Z [mo-60] - 315: t2.
2017-06-23T03:51:29.389Z [mo-60] - 313: t2.
2017-06-23T03:51:29.439Z [mo-60] - 311: t2.
2017-06-23T03:51:29.495Z [mo-60] - 309: t2.
2017-06-23T03:51:29.550Z [mo-60] - 307: t2.
2017-06-23T03:51:29.601Z [mo-60] - 305: t2.
2017-06-23T03:51:29.653Z [mo-60] - 304: t2.
2017-06-23T03:51:29.708Z [mo-60] - 303: t2.
2017-06-23T03:51:29.761Z [mo-60] - 302: t2.
2017-06-23T03:51:29.812Z [mo-60] - 301: t2.
2017-06-23T03:51:29.862Z [mo-60] - 561: t2.
2017-06-23T03:51:29.917Z [mo-60] - 558: t2.
2017-06-23T03:51:29.968Z [mo-60] - 557: t2.
2017-06-23T03:51:30.023Z [mo-60] - 556: t2.
2017-06-23T03:51:30.078Z [mo-60] - 555: t2.
2017-06-23T03:51:30.129Z [mo-60] - 554: t2.
2017-06-23T03:51:30.184Z [mo-60] - 553: t2.
2017-06-23T03:51:30.235Z [mo-60] - 552: t2.
2017-06-23T03:51:30.285Z [mo-60] - 551: t2.
2017-06-23T03:51:30.340Z [mo-60] - 550: t2.
2017-06-23T03:51:30.394Z [mo-60] - 549: t2.
2017-06-23T03:51:30.445Z [mo-60] - 548: t2.
2017-06-23T03:51:30.500Z [mo-60] - 547: t2.
2017-06-23T03:51:30.551Z [mo-60] - 545: t2.
2017-06-23T03:51:30.601Z [mo-60] - 543: t2.
2017-06-23T03:51:30.651Z [mo-60] - 541: t2.
2017-06-23T03:51:30.707Z [mo-60] - 539: t2.
2017-06-23T03:51:30.761Z [mo-60] - 530: t2.
2017-06-23T03:51:30.812Z [mo-60] - 529: t2.
2017-06-23T03:51:30.862Z [mo-60] - 528: t2.
2017-06-23T03:51:30.915Z [mo-60] - 527: t2.
2017-06-23T03:51:30.966Z [mo-60] - 526: t2.
2017-06-23T03:51:31.018Z [mo-60] - 525: t2.
2017-06-23T03:51:31.068Z [mo-60] - 524: t2.
2017-06-23T03:51:31.119Z [mo-60] - 523: t2.
2017-06-23T03:51:31.174Z [mo-60] - 522: t2.
2017-06-23T03:51:31.228Z [mo-60] - 521: t2.
2017-06-23T03:51:31.278Z [mo-60] - 520: t2.
2017-06-23T03:51:31.328Z [mo-60] - 519: t2.
2017-06-23T03:51:31.381Z [mo-60] - 518: t2.
2017-06-23T03:51:31.434Z [mo-60] - 517: t2.
2017-06-23T03:51:31.484Z [mo-60] - 516: t2.
2017-06-23T03:51:31.535Z [mo-60] - 515: t2.
2017-06-23T03:51:31.585Z [mo-60] - 514: t2.
2017-06-23T03:51:31.636Z [mo-60] - 513: t2.
2017-06-23T03:51:31.688Z [mo-60] - 512: t2.
2017-06-23T03:51:31.740Z [mo-60] - 511: t2.
2017-06-23T03:51:31.794Z [mo-60] - 500: t2.
2017-06-23T03:51:31.845Z [mo-60] - 499: t2.
2017-06-23T03:51:31.896Z [mo-60] - 498: t2.
2017-06-23T03:51:31.951Z [mo-60] - 497: t2.
2017-06-23T03:51:32.003Z [mo-60] - 496: t2.
2017-06-23T03:51:32.058Z [mo-60] - 495: t2.
2017-06-23T03:51:32.111Z [mo-60] - 494: t2.
2017-06-23T03:51:32.161Z [mo-60] - 493: t2.
2017-06-23T03:51:32.212Z [mo-60] - 492: t2.
2017-06-23T03:51:32.262Z [mo-60] - 490: t2.
2017-06-23T03:51:32.316Z [mo-60] - 484: t2.
2017-06-23T03:51:32.368Z [mo-60] - 480: t2.
2017-06-23T03:51:32.418Z [mo-60] - 478: t2.
2017-06-23T03:51:32.469Z [mo-60] - 476: t2.
2017-06-23T03:51:32.520Z [mo-60] - 474: t2.
2017-06-23T03:51:32.575Z [mo-60] - 460: t2.
2017-06-23T03:51:32.628Z [mo-60] - 416: t2.
2017-06-23T03:51:32.678Z [mo-60] - 400: t2.
2017-06-23T03:51:32.729Z [mo-60] - 398: t2.
2017-06-23T03:51:32.782Z [mo-60] - 395: t2.
2017-06-23T03:51:32.835Z [mo-60] - 393: t2.
2017-06-23T03:51:32.886Z [mo-60] - 391: t2.
2017-06-23T03:51:32.941Z [mo-60] - 389: t2.
2017-06-23T03:51:32.995Z [mo-60] - 387: t2.
2017-06-23T03:51:33.049Z [mo-60] - 629: t2.
2017-06-23T03:51:33.102Z [mo-60] - 382: t2.
2017-06-23T03:51:33.153Z [mo-60] - 628: t2.
2017-06-23T03:51:33.203Z [mo-60] - 381: t2.
2017-06-23T03:51:33.258Z [mo-60] - 627: t2.
2017-06-23T03:51:33.311Z [mo-60] - 626: t2.
2017-06-23T03:51:33.362Z [mo-60] - 380: t2.
2017-06-23T03:51:33.413Z [mo-60] - 625: t2.
2017-06-23T03:51:33.468Z [mo-60] - 379: t2.
2017-06-23T03:51:33.519Z [mo-60] - 624: t2.
2017-06-23T03:51:33.570Z [mo-60] - 623: t2.
2017-06-23T03:51:33.620Z [mo-60] - 622: t2.
2017-06-23T03:51:33.673Z [mo-60] - 621: t2.
2017-06-23T03:51:33.728Z [mo-60] - 620: t2.
2017-06-23T03:51:33.778Z [mo-60] - 619: t2.
2017-06-23T03:51:33.834Z [mo-60] - 618: t2.
2017-06-23T03:51:33.886Z [mo-60] - 617: t2.
2017-06-23T03:51:33.937Z [mo-60] - 378: t2.
2017-06-23T03:51:33.992Z [mo-60] - 616: t2.
2017-06-23T03:51:34.045Z [mo-60] - 377: t2.
2017-06-23T03:51:34.097Z [mo-60] - 614: t2.
2017-06-23T03:51:34.153Z [mo-60] - 613: t2.
2017-06-23T03:51:34.206Z [mo-60] - 376: t2.
2017-06-23T03:51:34.261Z [mo-60] - 612: t2.
2017-06-23T03:51:34.312Z [mo-60] - 375: t2.
2017-06-23T03:51:34.362Z [mo-60] - 611: t2.
2017-06-23T03:51:34.417Z [mo-60] - 374: t2.
2017-06-23T03:51:34.470Z [mo-60] - 610: t2.
2017-06-23T03:51:34.521Z [mo-60] - 373: t2.
2017-06-23T03:51:34.574Z [mo-60] - 609: t2.
2017-06-23T03:51:34.629Z [mo-60] - 372: t2.
2017-06-23T03:51:34.679Z [mo-60] - 608: t2.
2017-06-23T03:51:34.729Z [mo-60] - 371: t2.
2017-06-23T03:51:34.781Z [mo-60] - 607: t2.
2017-06-23T03:51:34.836Z [mo-60] - 370: t2.
2017-06-23T03:51:34.887Z [mo-60] - 606: t2.
2017-06-23T03:51:34.937Z [mo-60] - 369: t2.
2017-06-23T03:51:34.992Z [mo-60] - 605: t2.
2017-06-23T03:51:35.045Z [mo-60] - 368: t2.
2017-06-23T03:51:35.101Z [mo-60] - 604: t2.
2017-06-23T03:51:35.153Z [mo-60] - 367: t2.
2017-06-23T03:51:35.203Z [mo-60] - 603: t2.
2017-06-23T03:51:35.254Z [mo-60] - 366: t2.
2017-06-23T03:51:35.305Z [mo-60] - 602: t2.
2017-06-23T03:51:35.360Z [mo-60] - 365: t2.
2017-06-23T03:51:35.411Z [mo-60] - 601: t2.
2017-06-23T03:51:35.462Z [mo-60] - 364: t2.
2017-06-23T03:51:35.512Z [mo-60] - 591: t2.
2017-06-23T03:51:35.562Z [mo-60] - 363: t2.
2017-06-23T03:51:35.618Z [mo-60] - 589: t2.
2017-06-23T03:51:35.670Z [mo-60] - 362: t2.
2017-06-23T03:51:35.721Z [mo-60] - 587: t2.
2017-06-23T03:51:35.771Z [mo-60] - 361: t2.
2017-06-23T03:51:35.825Z [mo-60] - 585: t2.
2017-06-23T03:51:35.878Z [mo-60] - 360: t2.
2017-06-23T03:51:35.928Z [mo-60] - 583: t2.
2017-06-23T03:51:35.979Z [mo-60] - 359: t2.
2017-06-23T03:51:36.029Z [mo-60] - 581: t2.
2017-06-23T03:51:36.084Z [mo-60] - 358: t2.
2017-06-23T03:51:36.137Z [mo-60] - 579: t2.
2017-06-23T03:51:36.188Z [mo-60] - 357: t2.
2017-06-23T03:51:36.238Z [mo-60] - 577: t2.
2017-06-23T03:51:36.293Z [mo-60] - 356: t2.
2017-06-23T03:51:36.346Z [mo-60] - 575: t2.
2017-06-23T03:51:36.401Z [mo-60] - 355: t2.
2017-06-23T03:51:36.454Z [mo-60] - 573: t2.
2017-06-23T03:51:36.505Z [mo-60] - 354: t2.
2017-06-23T03:51:36.557Z [mo-60] - 571: t2.
2017-06-23T03:51:36.611Z [mo-60] - 353: t2.
2017-06-23T03:51:36.662Z [mo-60] - 569: t2.
2017-06-23T03:51:36.714Z [mo-60] - 352: t2.
2017-06-23T03:51:36.766Z [mo-60] - 567: t2.
2017-06-23T03:51:36.821Z [mo-60] - 351: t2.
2017-06-23T03:51:36.872Z [mo-60] - 566: t2.
2017-06-23T03:51:36.927Z [mo-60] - 350: t2.
2017-06-23T03:51:36.978Z [mo-60] - 565: t2.
2017-06-23T03:51:37.028Z [mo-60] - 349: t2.
2017-06-23T03:51:37.078Z [mo-60] - 564: t2.
2017-06-23T03:51:37.129Z [mo-60] - 348: t2.
2017-06-23T03:51:37.184Z [mo-60] - 563: t2.
2017-06-23T03:51:37.238Z [mo-60] - 347: t2.
2017-06-23T03:51:37.288Z [mo-60] - 562: t2.
2017-06-23T03:51:37.338Z [mo-60] - 346: t2.
2017-06-23T03:51:37.389Z [mo-60] - 560: t2.
2017-06-23T03:51:37.444Z [mo-60] - 345: t2.
2017-06-23T03:51:37.496Z [mo-60] - 559: t2.
2017-06-23T03:51:37.551Z [mo-60] - 326: t2.
2017-06-23T03:51:37.605Z [mo-60] - 542: t2.
2017-06-23T03:51:37.655Z [mo-60] - 540: t2.
2017-06-23T03:51:37.706Z [mo-60] - 537: t2.
2017-06-23T03:51:37.761Z [mo-60] - 535: t2.
2017-06-23T03:51:37.812Z [mo-60] - 533: t2.
2017-06-23T03:51:37.862Z [mo-60] - 491: t2.
2017-06-23T03:51:37.917Z [mo-60] - 489: t2.
2017-06-23T03:51:37.970Z [mo-60] - 487: t2.
2017-06-23T03:51:38.021Z [mo-60] - 485: t2.
2017-06-23T03:51:38.076Z [mo-60] - 483: t2.
2017-06-23T03:51:38.128Z [mo-60] - 481: t2.
2017-06-23T03:51:38.179Z [mo-60] - 479: t2.
2017-06-23T03:51:38.234Z [mo-60] - 477: t2.
2017-06-23T03:51:38.288Z [mo-60] - 475: t2.
2017-06-23T03:51:38.339Z [mo-60] - 472: t2.
2017-06-23T03:51:38.389Z [mo-60] - 470: t2.
2017-06-23T03:51:38.444Z [mo-60] - 468: t2.
2017-06-23T03:51:38.498Z [mo-60] - 466: t2.
2017-06-23T03:51:38.552Z [mo-60] - 462: t2.
2017-06-23T03:51:38.604Z [mo-60] - 459: t2.
2017-06-23T03:51:38.655Z [mo-60] - 458: t2.
2017-06-23T03:51:38.707Z [mo-60] - 457: t2.
2017-06-23T03:51:38.761Z [mo-60] - 456: t2.
2017-06-23T03:51:38.812Z [mo-60] - 455: t2.
2017-06-23T03:51:38.867Z [mo-60] - 454: t2.
2017-06-23T03:51:38.922Z [mo-60] - 453: t2.
2017-06-23T03:51:38.976Z [mo-60] - 440: t2.
2017-06-23T03:51:39.028Z [mo-60] - 438: t2.
2017-06-23T03:51:39.078Z [mo-60] - 437: t2.
2017-06-23T03:51:39.128Z [mo-60] - 436: t2.
2017-06-23T03:51:39.178Z [mo-60] - 435: t2.
2017-06-23T03:51:39.234Z [mo-60] - 434: t2.
2017-06-23T03:51:39.289Z [mo-60] - 407: t2.
2017-06-23T03:51:39.339Z [mo-60] - 405: t2.
2017-06-23T03:51:39.390Z [mo-60] - 403: t2.
2017-06-23T03:51:39.444Z [mo-60] - 401: t2.
2017-06-23T03:51:39.496Z [mo-60] - 399: t2.
2017-06-23T03:51:39.547Z [mo-60] - 397: t2.
2017-06-23T03:51:39.598Z [mo-60] - 385: t2.
2017-06-23T03:51:39.651Z [mo-60] - 383: t2.
2017-06-23T03:51:39.706Z [mo-60] - 338: t2.
2017-06-23T03:51:39.757Z [mo-60] - 337: t2.
2017-06-23T03:51:39.811Z [mo-60] - 336: t2.
2017-06-23T03:51:39.862Z [mo-60] - 335: t2.
2017-06-23T03:51:39.912Z [mo-60] - 334: t2.
2017-06-23T03:51:39.967Z [mo-60] - 333: t2.
2017-06-23T03:51:40.022Z [mo-60] - 332: t2.
2017-06-23T03:51:40.077Z [mo-60] - 314: t2.
2017-06-23T03:51:40.128Z [mo-60] - 312: t2.
2017-06-23T03:51:40.178Z [mo-60] - 310: t2.
2017-06-23T03:51:40.228Z [mo-60] - 308: t2.
2017-06-23T03:51:40.280Z [mo-60] - 306: t2.
2017-06-23T03:51:40.334Z [mo-60] - 774: t2.
2017-06-23T03:51:40.389Z [mo-60] - 772: t2.
2017-06-23T03:51:40.440Z [mo-60] - 770: t2.
2017-06-23T03:51:40.490Z [mo-60] - 768: t2.
2017-06-23T03:51:40.544Z [mo-60] - 766: t2.
2017-06-23T03:51:40.596Z [mo-60] - 764: t2.
2017-06-23T03:51:40.648Z [mo-60] - 762: t2.
2017-06-23T03:51:40.698Z [mo-60] - 760: t2.
2017-06-23T03:51:40.751Z [mo-60] - 758: t2.
2017-06-23T03:51:40.805Z [mo-60] - 756: t2.
2017-06-23T03:51:40.856Z [mo-60] - 755: t2.
2017-06-23T03:51:40.907Z [mo-60] - 753: t2.
2017-06-23T03:51:40.961Z [mo-60] - 751: t2.
2017-06-23T03:51:41.016Z [mo-60] - 749: t2.
2017-06-23T03:51:41.071Z [mo-60] - 747: t2.
2017-06-23T03:51:41.123Z [mo-60] - 745: t2.
2017-06-23T03:51:41.174Z [mo-60] - 743: t2.
2017-06-23T03:51:41.227Z [mo-60] - 741: t2.
2017-06-23T03:51:41.278Z [mo-60] - 739: t2.
2017-06-23T03:51:41.328Z [mo-60] - 737: t2.
2017-06-23T03:51:41.378Z [mo-60] - 735: t2.
2017-06-23T03:51:41.430Z [mo-60] - 733: t2.
2017-06-23T03:51:41.485Z [mo-60] - 731: t2.
2017-06-23T03:51:41.540Z [mo-60] - 729: t2.
2017-06-23T03:51:41.591Z [mo-60] - 727: t2.
2017-06-23T03:51:41.646Z [mo-60] - 725: t2.
2017-06-23T03:51:41.701Z [mo-60] - 722: t2.
2017-06-23T03:51:41.755Z [mo-60] - 720: t2.
2017-06-23T03:51:41.806Z [mo-60] - 719: t2.
2017-06-23T03:51:41.856Z [mo-60] - 718: t2.
2017-06-23T03:51:41.907Z [mo-60] - 717: t2.
2017-06-23T03:51:41.962Z [mo-60] - 716: t2.
2017-06-23T03:51:42.016Z [mo-60] - 715: t2.
2017-06-23T03:51:42.068Z [mo-60] - 714: t2.
2017-06-23T03:51:42.123Z [mo-60] - 713: t2.
2017-06-23T03:51:42.177Z [mo-60] - 666: t2.
2017-06-23T03:51:42.228Z [mo-60] - 665: t2.
2017-06-23T03:51:42.278Z [mo-60] - 664: t2.
2017-06-23T03:51:42.328Z [mo-60] - 663: t2.
2017-06-23T03:51:42.384Z [mo-60] - 662: t2.
2017-06-23T03:51:42.439Z [mo-60] - 661: t2.
2017-06-23T03:51:42.491Z [mo-60] - 660: t2.
2017-06-23T03:51:42.546Z [mo-60] - 659: t2.
2017-06-23T03:51:42.601Z [mo-60] - 658: t2.
2017-06-23T03:51:42.656Z [mo-60] - 657: t2.
2017-06-23T03:51:42.712Z [mo-60] - 656: t2.
2017-06-23T03:51:42.764Z [mo-60] - 655: t2.
2017-06-23T03:51:42.819Z [mo-60] - 654: t2.
2017-06-23T03:51:42.874Z [mo-60] - 653: t2.
2017-06-23T03:51:42.925Z [mo-60] - 652: t2.
2017-06-23T03:51:42.977Z [mo-60] - 651: t2.
2017-06-23T03:51:43.027Z [mo-60] - 649: t2.
2017-06-23T03:51:43.078Z [mo-60] - 648: t2.
2017-06-23T03:51:43.128Z [mo-60] - 647: t2.
2017-06-23T03:51:43.178Z [mo-60] - 646: t2.
2017-06-23T03:51:43.233Z [mo-60] - 645: t2.
2017-06-23T03:51:43.288Z [mo-60] - 644: t2.
2017-06-23T03:51:43.339Z [mo-60] - 643: t2.
2017-06-23T03:51:43.392Z [mo-60] - 642: t2.
2017-06-23T03:51:43.446Z [mo-60] - 641: t2.
2017-06-23T03:51:43.501Z [mo-60] - 640: t2.
2017-06-23T03:51:43.552Z [mo-60] - 639: t2.
2017-06-23T03:51:43.603Z [mo-60] - 638: t2.
2017-06-23T03:51:43.658Z [mo-60] - 637: t2.
2017-06-23T03:51:43.712Z [mo-60] - 636: t2.
2017-06-23T03:51:43.767Z [mo-60] - 635: t2.
2017-06-23T03:51:43.822Z [mo-60] - 634: t2.
2017-06-23T03:51:43.874Z [mo-60] - 633: t2.
2017-06-23T03:51:43.925Z [mo-60] - 632: t2.
2017-06-23T03:51:43.975Z [mo-60] - 631: t2.
2017-06-23T03:51:44.027Z [mo-60] - 630: t2.
2017-06-23T03:51:44.078Z [mo-60] - 615: t2.
2017-06-23T03:51:44.128Z [mo-60] - 600: t2.
2017-06-23T03:51:44.183Z [mo-60] - 599: t2.
2017-06-23T03:51:44.234Z [mo-60] - 598: t2.
2017-06-23T03:51:44.284Z [mo-60] - 597: t2.
2017-06-23T03:51:44.336Z [mo-60] - 596: t2.
2017-06-23T03:51:44.391Z [mo-60] - 595: t2.
2017-06-23T03:51:44.446Z [mo-60] - 594: t2.
2017-06-23T03:51:44.501Z [mo-60] - 593: t2.
2017-06-23T03:51:44.556Z [mo-60] - 592: t2.
2017-06-23T03:51:44.611Z [mo-60] - 590: t2.
2017-06-23T03:51:44.662Z [mo-60] - 588: t2.
2017-06-23T03:51:44.717Z [mo-60] - 586: t2.
2017-06-23T03:51:44.772Z [mo-60] - 584: t2.
2017-06-23T03:51:44.825Z [mo-60] - 582: t2.
2017-06-23T03:51:44.876Z [mo-60] - 580: t2.
2017-06-23T03:51:44.927Z [mo-60] - 578: t2.
2017-06-23T03:51:44.978Z [mo-60] - 576: t2.
2017-06-23T03:51:45.028Z [mo-60] - 574: t2.
2017-06-23T03:51:45.078Z [mo-60] - 572: t2.
2017-06-23T03:51:45.133Z [mo-60] - 570: t2.
2017-06-23T03:51:45.189Z [mo-60] - 568: t2.
2017-06-23T03:51:45.242Z [mo-60] - 546: t2.
2017-06-23T03:51:45.298Z [mo-60] - 544: t2.
2017-06-23T03:51:45.353Z [mo-60] - 538: t2.
2017-06-23T03:51:45.406Z [mo-60] - 536: t2.
2017-06-23T03:51:45.461Z [mo-60] - 534: t2.
2017-06-23T03:51:45.511Z [mo-60] - 532: t2.
2017-06-23T03:51:45.561Z [mo-60] - 820: t2.
2017-06-23T03:51:45.612Z [mo-60] - 531: t2.
2017-06-23T03:51:45.662Z [mo-60] - 819: t2.
2017-06-23T03:51:45.717Z [mo-60] - 818: t2.
2017-06-23T03:51:45.770Z [mo-60] - 817: t2.
2017-06-23T03:51:45.825Z [mo-60] - 816: t2.
2017-06-23T03:51:45.876Z [mo-60] - 815: t2.
2017-06-23T03:51:45.933Z [mo-60] - 814: t2.
2017-06-23T03:51:45.989Z [mo-60] - 813: t2.
2017-06-23T03:51:46.042Z [mo-60] - 812: t2.
2017-06-23T03:51:46.096Z [mo-60] - 811: t2.
2017-06-23T03:51:46.151Z [mo-60] - 810: t2.
2017-06-23T03:51:46.205Z [mo-60] - 809: t2.
2017-06-23T03:51:46.260Z [mo-60] - 808: t2.
2017-06-23T03:51:46.311Z [mo-60] - 807: t2.
2017-06-23T03:51:46.361Z [mo-60] - 806: t2.
2017-06-23T03:51:46.411Z [mo-60] - 805: t2.
2017-06-23T03:51:46.467Z [mo-60] - 804: t2.
2017-06-23T03:51:46.522Z [mo-60] - 803: t2.
2017-06-23T03:51:46.574Z [mo-60] - 802: t2.
2017-06-23T03:51:46.627Z [mo-60] - 801: t2.
2017-06-23T03:51:46.677Z [mo-60] - 800: t2.
2017-06-23T03:51:46.728Z [mo-60] - 799: t2.
2017-06-23T03:51:46.778Z [mo-60] - 798: t2.
2017-06-23T03:51:46.833Z [mo-60] - 797: t2.
2017-06-23T03:51:46.888Z [mo-60] - 796: t2.
2017-06-23T03:51:46.942Z [mo-60] - 795: t2.
2017-06-23T03:51:46.996Z [mo-60] - 794: t2.
2017-06-23T03:51:47.051Z [mo-60] - 793: t2.
2017-06-23T03:51:47.107Z [mo-60] - 792: t2.
2017-06-23T03:51:47.161Z [mo-60] - 791: t2.
2017-06-23T03:51:47.211Z [mo-60] - 790: t2.
2017-06-23T03:51:47.267Z [mo-60] - 789: t2.
2017-06-23T03:51:47.322Z [mo-60] - 788: t2.
2017-06-23T03:51:47.376Z [mo-60] - 787: t2.
2017-06-23T03:51:47.427Z [mo-60] - 786: t2.
2017-06-23T03:51:47.478Z [mo-60] - 785: t2.
2017-06-23T03:51:47.531Z [mo-60] - 784: t2.
2017-06-23T03:51:47.584Z [mo-60] - 783: t2.
2017-06-23T03:51:47.634Z [mo-60] - 782: t2.
2017-06-23T03:51:47.689Z [mo-60] - 781: t2.
2017-06-23T03:51:47.742Z [mo-60] - 780: t2.
2017-06-23T03:51:47.796Z [mo-60] - 779: t2.
2017-06-23T03:51:47.850Z [mo-60] - 778: t2.
2017-06-23T03:51:47.905Z [mo-60] - 776: t2.
2017-06-23T03:51:47.960Z [mo-60] - 769: t2.
2017-06-23T03:51:48.015Z [mo-60] - 767: t2.
2017-06-23T03:51:48.070Z [mo-60] - 763: t2.
2017-06-23T03:51:48.125Z [mo-60] - 754: t2.
2017-06-23T03:51:48.176Z [mo-60] - 750: t2.
2017-06-23T03:51:48.229Z [mo-60] - 746: t2.
2017-06-23T03:51:48.281Z [mo-60] - 744: t2.
2017-06-23T03:51:48.334Z [mo-60] - 740: t2.
2017-06-23T03:51:48.388Z [mo-60] - 736: t2.
2017-06-23T03:51:48.443Z [mo-60] - 734: t2.
2017-06-23T03:51:48.496Z [mo-60] - 732: t2.
2017-06-23T03:51:48.551Z [mo-60] - 730: t2.
2017-06-23T03:51:48.607Z [mo-60] - 728: t2.
2017-06-23T03:51:48.661Z [mo-60] - 723: t2.
2017-06-23T03:51:48.716Z [mo-60] - 721: t2.
2017-06-23T03:51:48.771Z [mo-60] - 712: t2.
2017-06-23T03:51:48.824Z [mo-60] - 711: t2.
2017-06-23T03:51:48.878Z [mo-60] - 710: t2.
2017-06-23T03:51:48.928Z [mo-60] - 709: t2.
2017-06-23T03:51:48.980Z [mo-60] - 708: t2.
2017-06-23T03:51:49.035Z [mo-60] - 707: t2.
2017-06-23T03:51:49.090Z [mo-60] - 706: t2.
2017-06-23T03:51:49.144Z [mo-60] - 705: t2.
2017-06-23T03:51:49.196Z [mo-60] - 704: t2.
2017-06-23T03:51:49.249Z [mo-60] - 703: t2.
2017-06-23T03:51:49.300Z [mo-60] - 702: t2.
2017-06-23T03:51:49.354Z [mo-60] - 701: t2.
2017-06-23T03:51:49.405Z [mo-60] - 700: t2.
2017-06-23T03:51:49.460Z [mo-60] - 699: t2.
2017-06-23T03:51:49.514Z [mo-60] - 698: t2.
2017-06-23T03:51:49.569Z [mo-60] - 697: t2.
2017-06-23T03:51:49.624Z [mo-60] - 696: t2.
2017-06-23T03:51:49.677Z [mo-60] - 695: t2.
2017-06-23T03:51:49.732Z [mo-60] - 694: t2.
2017-06-23T03:51:49.785Z [mo-60] - 693: t2.
2017-06-23T03:51:49.840Z [mo-60] - 692: t2.
2017-06-23T03:51:49.894Z [mo-60] - 691: t2.
2017-06-23T03:51:49.946Z [mo-60] - 690: t2.
2017-06-23T03:51:50.001Z [mo-60] - 689: t2.
2017-06-23T03:51:50.051Z [mo-60] - 688: t2.
2017-06-23T03:51:50.104Z [mo-60] - 687: t2.
2017-06-23T03:51:50.157Z [mo-60] - 686: t2.
2017-06-23T03:51:50.211Z [mo-60] - 685: t2.
2017-06-23T03:51:50.266Z [mo-60] - 684: t2.
2017-06-23T03:51:50.319Z [mo-60] - 683: t2.
2017-06-23T03:51:50.370Z [mo-60] - 682: t2.
2017-06-23T03:51:50.425Z [mo-60] - 681: t2.
2017-06-23T03:51:50.479Z [mo-60] - 680: t2.
2017-06-23T03:51:50.532Z [mo-60] - 679: t2.
2017-06-23T03:51:50.582Z [mo-60] - 678: t2.
2017-06-23T03:51:50.636Z [mo-60] - 677: t2.
2017-06-23T03:51:50.689Z [mo-60] - 676: t2.
2017-06-23T03:51:50.742Z [mo-60] - 675: t2.
2017-06-23T03:51:50.797Z [mo-60] - 674: t2.
2017-06-23T03:51:50.853Z [mo-60] - 673: t2.
2017-06-23T03:51:50.905Z [mo-60] - 671: t2.
2017-06-23T03:51:50.960Z [mo-60] - 198: t3.
2017-06-23T03:51:51.012Z [mo-60] - 979: t2.
2017-06-23T03:51:51.064Z [mo-60] - 978: t2.
2017-06-23T03:51:51.119Z [mo-60] - 977: t2.
2017-06-23T03:51:51.173Z [mo-60] - 976: t2.
2017-06-23T03:51:51.228Z [mo-60] - 975: t2.
2017-06-23T03:51:51.278Z [mo-60] - 974: t2.
2017-06-23T03:51:51.329Z [mo-60] - 973: t2.
2017-06-23T03:51:51.379Z [mo-60] - 972: t2.
2017-06-23T03:51:51.430Z [mo-60] - 971: t2.
2017-06-23T03:51:51.483Z [mo-60] - 970: t2.
2017-06-23T03:51:51.535Z [mo-60] - 969: t2.
2017-06-23T03:51:51.591Z [mo-60] - 968: t2.
2017-06-23T03:51:51.645Z [mo-60] - 965: t2.
2017-06-23T03:51:51.696Z [mo-60] - 964: t2.
2017-06-23T03:51:51.748Z [mo-60] - 963: t2.
2017-06-23T03:51:51.798Z [mo-60] - 962: t2.
2017-06-23T03:51:51.853Z [mo-60] - 961: t2.
2017-06-23T03:51:51.906Z [mo-60] - 960: t2.
2017-06-23T03:51:51.961Z [mo-60] - 959: t2.
2017-06-23T03:51:52.012Z [mo-60] - 958: t2.
2017-06-23T03:51:52.064Z [mo-60] - 957: t2.
2017-06-23T03:51:52.119Z [mo-60] - 956: t2.
2017-06-23T03:51:52.169Z [mo-60] - 955: t2.
2017-06-23T03:51:52.223Z [mo-60] - 954: t2.
2017-06-23T03:51:52.277Z [mo-60] - 953: t2.
2017-06-23T03:51:52.332Z [mo-60] - 952: t2.
2017-06-23T03:51:52.387Z [mo-60] - 951: t2.
2017-06-23T03:51:52.439Z [mo-60] - 949: t2.
2017-06-23T03:51:52.494Z [mo-60] - 947: t2.
2017-06-23T03:51:52.547Z [mo-60] - 945: t2.
2017-06-23T03:51:52.602Z [mo-60] - 943: t2.
2017-06-23T03:51:52.656Z [mo-60] - 941: t2.
2017-06-23T03:51:52.711Z [mo-60] - 938: t2.
2017-06-23T03:51:52.761Z [mo-60] - 936: t2.
2017-06-23T03:51:52.812Z [mo-60] - 933: t2.
2017-06-23T03:51:52.862Z [mo-60] - 929: t2.
2017-06-23T03:51:52.918Z [mo-60] - 927: t2.
2017-06-23T03:51:52.970Z [mo-60] - 925: t2.
2017-06-23T03:51:53.023Z [mo-60] - 923: t2.
2017-06-23T03:51:53.078Z [mo-60] - 921: t2.
2017-06-23T03:51:53.128Z [mo-60] - 919: t2.
2017-06-23T03:51:53.178Z [mo-60] - 917: t2.
2017-06-23T03:51:53.233Z [mo-60] - 910: t2.
2017-06-23T03:51:53.288Z [mo-60] - 906: t2.
2017-06-23T03:51:53.340Z [mo-60] - 905: t2.
2017-06-23T03:51:53.394Z [mo-60] - 904: t2.
2017-06-23T03:51:53.446Z [mo-60] - 903: t2.
2017-06-23T03:51:53.502Z [mo-60] - 902: t2.
2017-06-23T03:51:53.557Z [mo-60] - 901: t2.
2017-06-23T03:51:53.611Z [mo-60] - 900: t2.
2017-06-23T03:51:53.662Z [mo-60] - 899: t2.
2017-06-23T03:51:53.712Z [mo-60] - 898: t2.
2017-06-23T03:51:53.762Z [mo-60] - 897: t2.
2017-06-23T03:51:53.812Z [mo-60] - 896: t2.
2017-06-23T03:51:53.868Z [mo-60] - 895: t2.
2017-06-23T03:51:53.923Z [mo-60] - 894: t2.
2017-06-23T03:51:53.974Z [mo-60] - 892: t2.
2017-06-23T03:51:54.028Z [mo-60] - 890: t2.
2017-06-23T03:51:54.082Z [mo-60] - 888: t2.
2017-06-23T03:51:54.137Z [mo-60] - 886: t2.
2017-06-23T03:51:54.190Z [mo-60] - 884: t2.
2017-06-23T03:51:54.244Z [mo-60] - 878: t2.
2017-06-23T03:51:54.298Z [mo-60] - 872: t2.
2017-06-23T03:51:54.354Z [mo-60] - 863: t2.
2017-06-23T03:51:54.407Z [mo-60] - 861: t2.
2017-06-23T03:51:54.461Z [mo-60] - 859: t2.
2017-06-23T03:51:54.512Z [mo-60] - 857: t2.
2017-06-23T03:51:54.562Z [mo-60] - 855: t2.
2017-06-23T03:51:54.613Z [mo-60] - 853: t2.
2017-06-23T03:51:54.664Z [mo-60] - 1000: t2.
2017-06-23T03:51:54.714Z [mo-60] - 851: t2.
2017-06-23T03:51:54.766Z [mo-60] - 850: t2.
2017-06-23T03:51:54.822Z [mo-60] - 999: t2.
2017-06-23T03:51:54.874Z [mo-60] - 849: t2.
2017-06-23T03:51:54.927Z [mo-60] - 848: t2.
2017-06-23T03:51:54.979Z [mo-60] - 847: t2.
2017-06-23T03:51:55.029Z [mo-60] - 846: t2.
2017-06-23T03:51:55.079Z [mo-60] - 845: t2.
2017-06-23T03:51:55.129Z [mo-60] - 844: t2.
2017-06-23T03:51:55.185Z [mo-60] - 843: t2.
2017-06-23T03:51:55.240Z [mo-60] - 842: t2.
2017-06-23T03:51:55.294Z [mo-60] - 841: t2.
2017-06-23T03:51:55.346Z [mo-60] - 840: t2.
2017-06-23T03:51:55.402Z [mo-60] - 839: t2.
2017-06-23T03:51:55.455Z [mo-60] - 967: t2.
2017-06-23T03:51:55.509Z [mo-60] - 838: t2.
2017-06-23T03:51:55.561Z [mo-60] - 998: t2.
2017-06-23T03:51:55.612Z [mo-60] - 837: t2.
2017-06-23T03:51:55.662Z [mo-60] - 836: t2.
2017-06-23T03:51:55.714Z [mo-60] - 950: t2.
2017-06-23T03:51:55.769Z [mo-60] - 835: t2.
2017-06-23T03:51:55.824Z [mo-60] - 948: t2.
2017-06-23T03:51:55.878Z [mo-60] - 834: t2.
2017-06-23T03:51:55.929Z [mo-60] - 940: t2.
2017-06-23T03:51:55.980Z [mo-60] - 833: t2.
2017-06-23T03:51:56.030Z [mo-60] - 937: t2.
2017-06-23T03:51:56.085Z [mo-60] - 832: t2.
2017-06-23T03:51:56.141Z [mo-60] - 934: t2.
2017-06-23T03:51:56.195Z [mo-60] - 831: t2.
2017-06-23T03:51:56.249Z [mo-60] - 932: t2.
2017-06-23T03:51:56.302Z [mo-60] - 830: t2.
2017-06-23T03:51:56.357Z [mo-60] - 930: t2.
2017-06-23T03:51:56.411Z [mo-60] - 829: t2.
2017-06-23T03:51:56.463Z [mo-60] - 828: t2.
2017-06-23T03:51:56.514Z [mo-60] - 997: t2.
2017-06-23T03:51:56.569Z [mo-60] - 996: t2.
2017-06-23T03:51:56.624Z [mo-60] - 995: t2.
2017-06-23T03:51:56.678Z [mo-60] - 994: t2.
2017-06-23T03:51:56.729Z [mo-60] - 993: t2.
2017-06-23T03:51:56.780Z [mo-60] - 992: t2.
2017-06-23T03:51:56.832Z [mo-60] - 991: t2.
2017-06-23T03:51:56.883Z [mo-60] - 827: t2.
2017-06-23T03:51:56.938Z [mo-60] - 826: t2.
2017-06-23T03:51:56.988Z [mo-60] - 825: t2.
2017-06-23T03:51:57.044Z [mo-60] - 824: t2.
2017-06-23T03:51:57.096Z [mo-60] - 823: t2.
2017-06-23T03:51:57.147Z [mo-60] - 822: t2.
2017-06-23T03:51:57.197Z [mo-60] - 821: t2.
2017-06-23T03:51:57.253Z [mo-60] - 920: t2.
2017-06-23T03:51:57.303Z [mo-60] - 915: t2.
2017-06-23T03:51:57.358Z [mo-60] - 914: t2.
2017-06-23T03:51:57.411Z [mo-60] - 913: t2.
2017-06-23T03:51:57.462Z [mo-60] - 912: t2.
2017-06-23T03:51:57.513Z [mo-60] - 909: t2.
2017-06-23T03:51:57.564Z [mo-60] - 907: t2.
2017-06-23T03:51:57.615Z [mo-60] - 893: t2.
2017-06-23T03:51:57.665Z [mo-60] - 891: t2.
2017-06-23T03:51:57.720Z [mo-60] - 889: t2.
2017-06-23T03:51:57.774Z [mo-60] - 887: t2.
2017-06-23T03:51:57.828Z [mo-60] - 885: t2.
2017-06-23T03:51:57.880Z [mo-60] - 990: t2.
2017-06-23T03:51:57.931Z [mo-60] - 989: t2.
2017-06-23T03:51:57.981Z [mo-60] - 988: t2.
2017-06-23T03:51:58.031Z [mo-60] - 987: t2.
2017-06-23T03:51:58.086Z [mo-60] - 986: t2.
2017-06-23T03:51:58.142Z [mo-60] - 985: t2.
2017-06-23T03:51:58.197Z [mo-60] - 984: t2.
2017-06-23T03:51:58.247Z [mo-60] - 983: t2.
2017-06-23T03:51:58.298Z [mo-60] - 982: t2.
2017-06-23T03:51:58.353Z [mo-60] - 981: t2.
2017-06-23T03:51:58.408Z [mo-60] - 980: t2.
2017-06-23T03:51:58.461Z [mo-60] - 966: t2.
2017-06-23T03:51:58.514Z [mo-60] - 946: t2.
2017-06-23T03:51:58.568Z [mo-60] - 944: t2.
2017-06-23T03:51:58.621Z [mo-60] - 942: t2.
2017-06-23T03:51:58.672Z [mo-60] - 939: t2.
2017-06-23T03:51:58.726Z [mo-60] - 935: t2.
2017-06-23T03:51:58.777Z [mo-60] - 931: t2.
2017-06-23T03:51:58.827Z [mo-60] - 928: t2.
2017-06-23T03:51:58.878Z [mo-60] - 926: t2.
2017-06-23T03:51:58.933Z [mo-60] - 924: t2.
2017-06-23T03:51:58.984Z [mo-60] - 922: t2.
2017-06-23T03:51:59.035Z [mo-60] - 918: t2.
2017-06-23T03:51:59.090Z [mo-60] - 916: t2.
2017-06-23T03:51:59.141Z [mo-60] - 911: t2.
2017-06-23T03:51:59.195Z [mo-60] - 908: t2.
2017-06-23T03:51:59.248Z [mo-60] - 882: t2.
2017-06-23T03:51:59.300Z [mo-60] - 880: t2.
2017-06-23T03:51:59.355Z [mo-60] - 876: t2.
2017-06-23T03:51:59.406Z [mo-60] - 874: t2.
2017-06-23T03:51:59.461Z [mo-60] - 873: t2.
2017-06-23T03:51:59.517Z [mo-60] - 871: t2.
2017-06-23T03:51:59.567Z [mo-60] - 870: t2.
2017-06-23T03:51:59.618Z [mo-60] - 869: t2.
2017-06-23T03:51:59.673Z [mo-60] - 868: t2.
2017-06-23T03:51:59.728Z [mo-60] - 867: t2.
2017-06-23T03:51:59.778Z [mo-60] - 866: t2.
2017-06-23T03:51:59.829Z [mo-60] - 865: t2.
2017-06-23T03:51:59.881Z [mo-60] - 864: t2.
2017-06-23T03:51:59.932Z [mo-60] - 862: t2.
2017-06-23T03:51:59.982Z [mo-60] - 860: t2.
2017-06-23T03:52:00.034Z [mo-60] - 858: t2.
2017-06-23T03:52:00.085Z [mo-60] - 856: t2.
2017-06-23T03:52:00.136Z [mo-60] - 854: t2.
2017-06-23T03:52:00.192Z [mo-60] - 852: t2.
2017-06-23T03:52:00.247Z [mo-60] - 883: t2.
2017-06-23T03:52:00.298Z [mo-60] - 881: t2.
2017-06-23T03:52:00.349Z [mo-60] - 879: t2.
2017-06-23T03:52:00.399Z [mo-60] - 877: t2.
2017-06-23T03:52:00.450Z [mo-60] - 875: t2.
2017-06-23T03:52:00.505Z [mo-60] - 777: t2.
2017-06-23T03:52:00.556Z [mo-60] - 775: t2.
2017-06-23T03:52:00.610Z [mo-60] - 773: t2.
2017-06-23T03:52:00.662Z [mo-60] - 771: t2.
2017-06-23T03:52:00.715Z [mo-60] - 765: t2.
2017-06-23T03:52:00.766Z [mo-60] - 761: t2.
2017-06-23T03:52:00.816Z [mo-60] - 759: t2.
2017-06-23T03:52:00.866Z [mo-60] - 757: t2.
2017-06-23T03:52:00.919Z [mo-60] - 752: t2.
2017-06-23T03:52:00.973Z [mo-60] - 748: t2.
2017-06-23T03:52:01.027Z [mo-60] - 742: t2.
2017-06-23T03:52:01.078Z [mo-60] - 738: t2.
2017-06-23T03:52:01.132Z [mo-60] - 726: t2.
2017-06-23T03:52:01.183Z [mo-60] - 724: t2.
2017-06-23T03:52:01.237Z [mo-60] - 672: t2.
2017-06-23T03:52:01.292Z [mo-60] - 670: t2.
2017-06-23T03:52:01.347Z [mo-60] - 669: t2.
2017-06-23T03:52:01.399Z [mo-60] - 668: t2.
2017-06-23T03:52:01.449Z [mo-60] - 667: t2.
2017-06-23T03:52:01.505Z [mo-60] - 650: t2.
2017-06-23T03:52:01.556Z [mo-60] - 300: t3.
2017-06-23T03:52:01.610Z [mo-60] - 271: t3.
2017-06-23T03:52:01.666Z [mo-60] - 299: t3.
2017-06-23T03:52:01.716Z [mo-60] - 298: t3.
2017-06-23T03:52:01.768Z [mo-60] - 297: t3.
2017-06-23T03:52:01.818Z [mo-60] - 296: t3.
2017-06-23T03:52:01.873Z [mo-60] - 197: t3.
2017-06-23T03:52:01.927Z [mo-60] - 196: t3.
2017-06-23T03:52:01.978Z [mo-60] - 195: t3.
2017-06-23T03:52:02.029Z [mo-60] - 194: t3.
2017-06-23T03:52:02.083Z [mo-60] - 267: t3.
2017-06-23T03:52:02.133Z [mo-60] - 295: t3.
2017-06-23T03:52:02.183Z [mo-60] - 294: t3.
2017-06-23T03:52:02.234Z [mo-60] - 193: t3.
2017-06-23T03:52:02.289Z [mo-60] - 192: t3.
2017-06-23T03:52:02.344Z [mo-60] - 191: t3.
2017-06-23T03:52:02.399Z [mo-60] - 190: t3.
2017-06-23T03:52:02.452Z [mo-60] - 189: t3.
2017-06-23T03:52:02.507Z [mo-60] - 188: t3.
2017-06-23T03:52:02.561Z [mo-60] - 187: t3.
2017-06-23T03:52:02.611Z [mo-60] - 186: t3.
2017-06-23T03:52:02.662Z [mo-60] - 185: t3.
2017-06-23T03:52:02.716Z [mo-60] - 184: t3.
2017-06-23T03:52:02.767Z [mo-60] - 183: t3.
2017-06-23T03:52:02.822Z [mo-60] - 182: t3.
2017-06-23T03:52:02.873Z [mo-60] - 181: t3.
2017-06-23T03:52:02.928Z [mo-60] - 180: t3.
2017-06-23T03:52:02.983Z [mo-60] - 179: t3.
2017-06-23T03:52:03.033Z [mo-60] - 178: t3.
2017-06-23T03:52:03.084Z [mo-60] - 177: t3.
2017-06-23T03:52:03.139Z [mo-60] - 176: t3.
2017-06-23T03:52:03.195Z [mo-60] - 175: t3.
2017-06-23T03:52:03.250Z [mo-60] - 174: t3.
2017-06-23T03:52:03.300Z [mo-60] - 173: t3.
2017-06-23T03:52:03.351Z [mo-60] - 172: t3.
2017-06-23T03:52:03.406Z [mo-60] - 265: t3.
2017-06-23T03:52:03.461Z [mo-60] - 171: t3.
2017-06-23T03:52:03.511Z [mo-60] - 263: t3.
2017-06-23T03:52:03.563Z [mo-60] - 170: t3.
2017-06-23T03:52:03.617Z [mo-60] - 262: t3.
2017-06-23T03:52:03.668Z [mo-60] - 169: t3.
2017-06-23T03:52:03.723Z [mo-60] - 260: t3.
2017-06-23T03:52:03.778Z [mo-60] - 167: t3.
2017-06-23T03:52:03.829Z [mo-60] - 258: t3.
2017-06-23T03:52:03.884Z [mo-60] - 165: t3.
2017-06-23T03:52:03.934Z [mo-60] - 256: t3.
2017-06-23T03:52:03.984Z [mo-60] - 163: t3.
2017-06-23T03:52:04.034Z [mo-60] - 255: t3.
2017-06-23T03:52:04.085Z [mo-60] - 161: t3.
2017-06-23T03:52:04.140Z [mo-60] - 254: t3.
2017-06-23T03:52:04.194Z [mo-60] - 252: t3.
2017-06-23T03:52:04.248Z [mo-60] - 159: t3.
2017-06-23T03:52:04.303Z [mo-60] - 250: t3.
2017-06-23T03:52:04.358Z [mo-60] - 158: t3.
2017-06-23T03:52:04.411Z [mo-60] - 248: t3.
2017-06-23T03:52:04.461Z [mo-60] - 150: t3.
2017-06-23T03:52:04.512Z [mo-60] - 246: t3.
2017-06-23T03:52:04.563Z [mo-60] - 146: t3.
2017-06-23T03:52:04.615Z [mo-60] - 244: t3.
2017-06-23T03:52:04.665Z [mo-60] - 142: t3.
2017-06-23T03:52:04.717Z [mo-60] - 242: t3.
2017-06-23T03:52:04.768Z [mo-60] - 241: t3.
2017-06-23T03:52:04.819Z [mo-60] - 140: t3.
2017-06-23T03:52:04.870Z [mo-60] - 240: t3.
2017-06-23T03:52:04.922Z [mo-60] - 136: t3.
2017-06-23T03:52:04.976Z [mo-60] - 239: t3.
2017-06-23T03:52:05.028Z [mo-60] - 135: t3.
2017-06-23T03:52:05.078Z [mo-60] - 238: t3.
2017-06-23T03:52:05.128Z [mo-60] - 134: t3.
2017-06-23T03:52:05.179Z [mo-60] - 237: t3.
2017-06-23T03:52:05.230Z [mo-60] - 236: t3.
2017-06-23T03:52:05.284Z [mo-60] - 133: t3.
2017-06-23T03:52:05.337Z [mo-60] - 235: t3.
2017-06-23T03:52:05.390Z [mo-60] - 132: t3.
2017-06-23T03:52:05.445Z [mo-60] - 233: t3.
2017-06-23T03:52:05.497Z [mo-60] - 130: t3.
2017-06-23T03:52:05.549Z [mo-60] - 231: t3.
2017-06-23T03:52:05.601Z [mo-60] - 129: t3.
2017-06-23T03:52:05.652Z [mo-60] - 230: t3.
2017-06-23T03:52:05.707Z [mo-60] - 229: t3.
2017-06-23T03:52:05.761Z [mo-60] - 128: t3.
2017-06-23T03:52:05.812Z [mo-60] - 228: t3.
2017-06-23T03:52:05.862Z [mo-60] - 127: t3.
2017-06-23T03:52:05.917Z [mo-60] - 227: t3.
2017-06-23T03:52:05.972Z [mo-60] - 125: t3.
2017-06-23T03:52:06.027Z [mo-60] - 225: t3.
2017-06-23T03:52:06.079Z [mo-60] - 123: t3.
2017-06-23T03:52:06.130Z [mo-60] - 223: t3.
2017-06-23T03:52:06.184Z [mo-60] - 122: t3.
2017-06-23T03:52:06.235Z [mo-60] - 221: t3.
2017-06-23T03:52:06.288Z [mo-60] - 220: t3.
2017-06-23T03:52:06.343Z [mo-60] - 121: t3.
2017-06-23T03:52:06.397Z [mo-60] - 219: t3.
2017-06-23T03:52:06.452Z [mo-60] - 120: t3.
2017-06-23T03:52:06.502Z [mo-60] - 218: t3.
2017-06-23T03:52:06.553Z [mo-60] - 217: t3.
2017-06-23T03:52:06.608Z [mo-60] - 119: t3.
2017-06-23T03:52:06.661Z [mo-60] - 216: t3.
2017-06-23T03:52:06.712Z [mo-60] - 118: t3.
2017-06-23T03:52:06.765Z [mo-60] - 215: t3.
2017-06-23T03:52:06.819Z [mo-60] - 117: t3.
2017-06-23T03:52:06.869Z [mo-60] - 214: t3.
2017-06-23T03:52:06.925Z [mo-60] - 213: t3.
2017-06-23T03:52:06.979Z [mo-60] - 116: t3.
2017-06-23T03:52:07.029Z [mo-60] - 212: t3.
2017-06-23T03:52:07.084Z [mo-60] - 115: t3.
2017-06-23T03:52:07.135Z [mo-60] - 211: t3.
2017-06-23T03:52:07.186Z [mo-60] - 114: t3.
2017-06-23T03:52:07.236Z [mo-60] - 210: t3.
2017-06-23T03:52:07.290Z [mo-60] - 112: t3.
2017-06-23T03:52:07.345Z [mo-60] - 209: t3.
2017-06-23T03:52:07.397Z [mo-60] - 110: t3.
2017-06-23T03:52:07.452Z [mo-60] - 208: t3.
2017-06-23T03:52:07.505Z [mo-60] - 207: t3.
2017-06-23T03:52:07.560Z [mo-60] - 108: t3.
2017-06-23T03:52:07.611Z [mo-60] - 206: t3.
2017-06-23T03:52:07.661Z [mo-60] - 106: t3.
2017-06-23T03:52:07.712Z [mo-60] - 205: t3.
2017-06-23T03:52:07.762Z [mo-60] - 104: t3.
2017-06-23T03:52:07.812Z [mo-60] - 204: t3.
2017-06-23T03:52:07.863Z [mo-60] - 103: t3.
2017-06-23T03:52:07.914Z [mo-60] - 203: t3.
2017-06-23T03:52:07.968Z [mo-60] - 102: t3.
2017-06-23T03:52:08.019Z [mo-60] - 202: t3.
2017-06-23T03:52:08.070Z [mo-60] - 101: t3.
2017-06-23T03:52:08.120Z [mo-60] - 201: t3.
2017-06-23T03:52:08.176Z [mo-60] - 94: t3.
2017-06-23T03:52:08.228Z [mo-60] - 200: t3.
2017-06-23T03:52:08.278Z [mo-60] - 199: t3.
2017-06-23T03:52:08.333Z [mo-60] - 92: t3.
2017-06-23T03:52:08.386Z [mo-60] - 168: t3.
2017-06-23T03:52:08.439Z [mo-60] - 85: t3.
2017-06-23T03:52:08.492Z [mo-60] - 166: t3.
2017-06-23T03:52:08.545Z [mo-60] - 164: t3.
2017-06-23T03:52:08.597Z [mo-60] - 83: t3.
2017-06-23T03:52:08.647Z [mo-60] - 154: t3.
2017-06-23T03:52:08.703Z [mo-60] - 81: t3.
2017-06-23T03:52:08.753Z [mo-60] - 152: t3.
2017-06-23T03:52:08.808Z [mo-60] - 79: t3.
2017-06-23T03:52:08.861Z [mo-60] - 148: t3.
2017-06-23T03:52:08.911Z [mo-60] - 77: t3.
2017-06-23T03:52:08.962Z [mo-60] - 144: t3.
2017-06-23T03:52:09.018Z [mo-60] - 138: t3.
2017-06-23T03:52:09.070Z [mo-60] - 70: t3.
2017-06-23T03:52:09.120Z [mo-60] - 131: t3.
2017-06-23T03:52:09.170Z [mo-60] - 68: t3.
2017-06-23T03:52:09.221Z [mo-60] - 126: t3.
2017-06-23T03:52:09.273Z [mo-60] - 66: t3.
2017-06-23T03:52:09.327Z [mo-60] - 124: t3.
2017-06-23T03:52:09.378Z [mo-60] - 56: t3.
2017-06-23T03:52:09.429Z [mo-60] - 111: t3.
2017-06-23T03:52:09.480Z [mo-60] - 109: t3.
2017-06-23T03:52:09.531Z [mo-60] - 107: t3.
2017-06-23T03:52:09.586Z [mo-60] - 53: t3.
2017-06-23T03:52:09.637Z [mo-60] - 51: t3.
2017-06-23T03:52:09.687Z [mo-60] - 49: t3.
2017-06-23T03:52:09.740Z [mo-60] - 105: t3.
2017-06-23T03:52:09.794Z [mo-60] - 45: t3.
2017-06-23T03:52:09.847Z [mo-60] - 100: t3.
2017-06-23T03:52:09.902Z [mo-60] - 43: t3.
2017-06-23T03:52:09.953Z [mo-60] - 99: t3.
2017-06-23T03:52:10.004Z [mo-60] - 89: t3.
2017-06-23T03:52:10.054Z [mo-60] - 41: t3.
2017-06-23T03:52:10.105Z [mo-60] - 87: t3.
2017-06-23T03:52:10.156Z [mo-60] - 38: t3.
2017-06-23T03:52:10.211Z [mo-60] - 86: t3.
2017-06-23T03:52:10.265Z [mo-60] - 36: t3.
2017-06-23T03:52:10.320Z [mo-60] - 84: t3.
2017-06-23T03:52:10.370Z [mo-60] - 82: t3.
2017-06-23T03:52:10.425Z [mo-60] - 34: t3.
2017-06-23T03:52:10.480Z [mo-60] - 80: t3.
2017-06-23T03:52:10.531Z [mo-60] - 32: t3.
2017-06-23T03:52:10.581Z [mo-60] - 78: t3.
2017-06-23T03:52:10.636Z [mo-60] - 29: t3.
2017-06-23T03:52:10.687Z [mo-60] - 76: t3.
2017-06-23T03:52:10.740Z [mo-60] - 26: t3.
2017-06-23T03:52:10.795Z [mo-60] - 74: t3.
2017-06-23T03:52:10.848Z [mo-60] - 72: t3.
2017-06-23T03:52:10.898Z [mo-60] - 24: t3.
2017-06-23T03:52:10.951Z [mo-60] - 64: t3.
2017-06-23T03:52:11.002Z [mo-60] - 22: t3.
2017-06-23T03:52:11.054Z [mo-60] - 62: t3.
2017-06-23T03:52:11.109Z [mo-60] - 19: t3.
2017-06-23T03:52:11.161Z [mo-60] - 60: t3.
2017-06-23T03:52:11.212Z [mo-60] - 16: t3.
2017-06-23T03:52:11.262Z [mo-60] - 58: t3.
2017-06-23T03:52:11.312Z [mo-60] - 54: t3.
2017-06-23T03:52:11.363Z [mo-60] - 13: t3.
2017-06-23T03:52:11.415Z [mo-60] - 52: t3.
2017-06-23T03:52:11.465Z [mo-60] - 9: t3.
2017-06-23T03:52:11.520Z [mo-60] - 48: t3.
2017-06-23T03:52:11.571Z [mo-60] - 7: t3.
2017-06-23T03:52:11.626Z [mo-60] - 46: t3.
2017-06-23T03:52:11.678Z [mo-60] - 4: t3.
2017-06-23T03:52:11.728Z [mo-60] - 44: t3.
2017-06-23T03:52:11.779Z [mo-60] - 42: t3.
2017-06-23T03:52:11.830Z [mo-60] - 2: t3.
2017-06-23T03:52:11.832Z [mo-60] - complete.
2017-06-23T03:52:11.888Z [mo-60] - 40: t3.
2017-06-23T03:52:11.942Z [mo-60] - 31: t3.
2017-06-23T03:52:11.997Z [mo-60] - 28: t3.
2017-06-23T03:52:12.048Z [mo-60] - 20: t3.
2017-06-23T03:52:12.104Z [mo-60] - 17: t3.
2017-06-23T03:52:12.154Z [mo-60] - 15: t3.
2017-06-23T03:52:12.210Z [mo-60] - 11: t3.
2017-06-23T03:52:12.261Z [mo-60] - 6: t3.
2017-06-23T03:52:12.315Z [mo-60] - 3: t3.
2017-06-23T03:52:12.316Z [mo-60] - complete.
2017-06-23T03:52:12.371Z [mo-60] - 293: t3.
2017-06-23T03:52:12.421Z [mo-60] - 292: t3.
2017-06-23T03:52:12.472Z [mo-60] - 291: t3.
2017-06-23T03:52:12.527Z [mo-60] - 290: t3.
2017-06-23T03:52:12.578Z [mo-60] - 289: t3.
2017-06-23T03:52:12.629Z [mo-60] - 288: t3.
2017-06-23T03:52:12.679Z [mo-60] - 287: t3.
2017-06-23T03:52:12.732Z [mo-60] - 286: t3.
2017-06-23T03:52:12.782Z [mo-60] - 285: t3.
2017-06-23T03:52:12.838Z [mo-60] - 284: t3.
2017-06-23T03:52:12.888Z [mo-60] - 283: t3.
2017-06-23T03:52:12.939Z [mo-60] - 282: t3.
2017-06-23T03:52:12.989Z [mo-60] - 281: t3.
2017-06-23T03:52:13.045Z [mo-60] - 280: t3.
2017-06-23T03:52:13.099Z [mo-60] - 279: t3.
2017-06-23T03:52:13.149Z [mo-60] - 278: t3.
2017-06-23T03:52:13.205Z [mo-60] - 277: t3.
2017-06-23T03:52:13.255Z [mo-60] - 276: t3.
2017-06-23T03:52:13.310Z [mo-60] - 275: t3.
2017-06-23T03:52:13.361Z [mo-60] - 274: t3.
2017-06-23T03:52:13.412Z [mo-60] - 273: t3.
2017-06-23T03:52:13.466Z [mo-60] - 272: t3.
2017-06-23T03:52:13.516Z [mo-60] - 270: t3.
2017-06-23T03:52:13.571Z [mo-60] - 269: t3.
2017-06-23T03:52:13.622Z [mo-60] - 268: t3.
2017-06-23T03:52:13.676Z [mo-60] - 266: t3.
2017-06-23T03:52:13.728Z [mo-60] - 264: t3.
2017-06-23T03:52:13.779Z [mo-60] - 261: t3.
2017-06-23T03:52:13.829Z [mo-60] - 259: t3.
2017-06-23T03:52:13.879Z [mo-60] - 257: t3.
2017-06-23T03:52:13.933Z [mo-60] - 253: t3.
2017-06-23T03:52:13.983Z [mo-60] - 251: t3.
2017-06-23T03:52:14.034Z [mo-60] - 249: t3.
2017-06-23T03:52:14.089Z [mo-60] - 247: t3.
2017-06-23T03:52:14.144Z [mo-60] - 245: t3.
2017-06-23T03:52:14.199Z [mo-60] - 243: t3.
2017-06-23T03:52:14.250Z [mo-60] - 234: t3.
2017-06-23T03:52:14.300Z [mo-60] - 232: t3.
2017-06-23T03:52:14.355Z [mo-60] - 226: t3.
2017-06-23T03:52:14.410Z [mo-60] - 224: t3.
2017-06-23T03:52:14.461Z [mo-60] - 222: t3.
2017-06-23T03:52:14.512Z [mo-60] - 162: t3.
2017-06-23T03:52:14.562Z [mo-60] - 160: t3.
2017-06-23T03:52:14.612Z [mo-60] - 157: t3.
2017-06-23T03:52:14.663Z [mo-60] - 156: t3.
2017-06-23T03:52:14.717Z [mo-60] - 155: t3.
2017-06-23T03:52:14.772Z [mo-60] - 153: t3.
2017-06-23T03:52:14.822Z [mo-60] - 151: t3.
2017-06-23T03:52:14.878Z [mo-60] - 149: t3.
2017-06-23T03:52:14.928Z [mo-60] - 147: t3.
2017-06-23T03:52:14.980Z [mo-60] - 145: t3.
2017-06-23T03:52:15.030Z [mo-60] - 143: t3.
2017-06-23T03:52:15.084Z [mo-60] - 141: t3.
2017-06-23T03:52:15.134Z [mo-60] - 139: t3.
2017-06-23T03:52:15.189Z [mo-60] - 137: t3.
2017-06-23T03:52:15.239Z [mo-60] - 113: t3.
2017-06-23T03:52:15.295Z [mo-60] - 98: t3.
2017-06-23T03:52:15.347Z [mo-60] - 97: t3.
2017-06-23T03:52:15.400Z [mo-60] - 96: t3.
2017-06-23T03:52:15.450Z [mo-60] - 95: t3.
2017-06-23T03:52:15.505Z [mo-60] - 93: t3.
2017-06-23T03:52:15.560Z [mo-60] - 91: t3.
2017-06-23T03:52:15.611Z [mo-60] - 90: t3.
2017-06-23T03:52:15.662Z [mo-60] - 88: t3.
2017-06-23T03:52:15.712Z [mo-60] - 75: t3.
2017-06-23T03:52:15.763Z [mo-60] - 73: t3.
2017-06-23T03:52:15.813Z [mo-60] - 71: t3.
2017-06-23T03:52:15.867Z [mo-60] - 69: t3.
2017-06-23T03:52:15.923Z [mo-60] - 67: t3.
2017-06-23T03:52:15.978Z [mo-60] - 65: t3.
2017-06-23T03:52:16.029Z [mo-60] - 63: t3.
2017-06-23T03:52:16.079Z [mo-60] - 61: t3.
2017-06-23T03:52:16.134Z [mo-60] - 59: t3.
2017-06-23T03:52:16.189Z [mo-60] - 57: t3.
2017-06-23T03:52:16.240Z [mo-60] - 55: t3.
2017-06-23T03:52:16.294Z [mo-60] - 50: t3.
2017-06-23T03:52:16.348Z [mo-60] - 47: t3.
2017-06-23T03:52:16.401Z [mo-60] - 39: t3.
2017-06-23T03:52:16.451Z [mo-60] - 37: t3.
2017-06-23T03:52:16.506Z [mo-60] - 35: t3.
2017-06-23T03:52:16.560Z [mo-60] - 33: t3.
2017-06-23T03:52:16.611Z [mo-60] - 30: t3.
2017-06-23T03:52:16.662Z [mo-60] - 27: t3.
2017-06-23T03:52:16.712Z [mo-60] - 25: t3.
2017-06-23T03:52:16.763Z [mo-60] - 23: t3.
2017-06-23T03:52:16.818Z [mo-60] - 21: t3.
2017-06-23T03:52:16.873Z [mo-60] - 18: t3.
2017-06-23T03:52:16.928Z [mo-60] - 14: t3.
2017-06-23T03:52:16.979Z [mo-60] - 12: t3.
2017-06-23T03:52:17.030Z [mo-60] - 10: t3.
2017-06-23T03:52:17.085Z [mo-60] - 8: t3.
2017-06-23T03:52:17.135Z [mo-60] - 5: t3.
2017-06-23T03:52:17.190Z [mo-60] - 1: t3.
2017-06-23T03:52:17.190Z [mo-60] - complete.
2017-06-23T03:52:17.244Z [mo-60] - 510: t3.
2017-06-23T03:52:17.298Z [mo-60] - 509: t3.
2017-06-23T03:52:17.351Z [mo-60] - 508: t3.
2017-06-23T03:52:17.402Z [mo-60] - 507: t3.
2017-06-23T03:52:17.456Z [mo-60] - 506: t3.
2017-06-23T03:52:17.511Z [mo-60] - 505: t3.
2017-06-23T03:52:17.561Z [mo-60] - 504: t3.
2017-06-23T03:52:17.613Z [mo-60] - 503: t3.
2017-06-23T03:52:17.668Z [mo-60] - 502: t3.
2017-06-23T03:52:17.718Z [mo-60] - 501: t3.
2017-06-23T03:52:17.769Z [mo-60] - 488: t3.
2017-06-23T03:52:17.823Z [mo-60] - 486: t3.
2017-06-23T03:52:17.877Z [mo-60] - 482: t3.
2017-06-23T03:52:17.928Z [mo-60] - 473: t3.
2017-06-23T03:52:17.979Z [mo-60] - 471: t3.
2017-06-23T03:52:18.029Z [mo-60] - 469: t3.
2017-06-23T03:52:18.079Z [mo-60] - 467: t3.
2017-06-23T03:52:18.132Z [mo-60] - 465: t3.
2017-06-23T03:52:18.185Z [mo-60] - 464: t3.
2017-06-23T03:52:18.235Z [mo-60] - 463: t3.
2017-06-23T03:52:18.291Z [mo-60] - 461: t3.
2017-06-23T03:52:18.344Z [mo-60] - 452: t3.
2017-06-23T03:52:18.398Z [mo-60] - 451: t3.
2017-06-23T03:52:18.451Z [mo-60] - 450: t3.
2017-06-23T03:52:18.504Z [mo-60] - 449: t3.
2017-06-23T03:52:18.558Z [mo-60] - 448: t3.
2017-06-23T03:52:18.611Z [mo-60] - 447: t3.
2017-06-23T03:52:18.662Z [mo-60] - 446: t3.
2017-06-23T03:52:18.714Z [mo-60] - 445: t3.
2017-06-23T03:52:18.766Z [mo-60] - 444: t3.
2017-06-23T03:52:18.819Z [mo-60] - 443: t3.
2017-06-23T03:52:18.869Z [mo-60] - 442: t3.
2017-06-23T03:52:18.924Z [mo-60] - 441: t3.
2017-06-23T03:52:18.978Z [mo-60] - 439: t3.
2017-06-23T03:52:19.028Z [mo-60] - 433: t3.
2017-06-23T03:52:19.081Z [mo-60] - 432: t3.
2017-06-23T03:52:19.136Z [mo-60] - 431: t3.
2017-06-23T03:52:19.186Z [mo-60] - 430: t3.
2017-06-23T03:52:19.241Z [mo-60] - 429: t3.
2017-06-23T03:52:19.294Z [mo-60] - 428: t3.
2017-06-23T03:52:19.348Z [mo-60] - 427: t3.
2017-06-23T03:52:19.402Z [mo-60] - 426: t3.
2017-06-23T03:52:19.456Z [mo-60] - 425: t3.
2017-06-23T03:52:19.511Z [mo-60] - 424: t3.
2017-06-23T03:52:19.566Z [mo-60] - 423: t3.
2017-06-23T03:52:19.619Z [mo-60] - 422: t3.
2017-06-23T03:52:19.671Z [mo-60] - 421: t3.
2017-06-23T03:52:19.725Z [mo-60] - 420: t3.
2017-06-23T03:52:19.775Z [mo-60] - 419: t3.
2017-06-23T03:52:19.828Z [mo-60] - 418: t3.
2017-06-23T03:52:19.878Z [mo-60] - 417: t3.
2017-06-23T03:52:19.928Z [mo-60] - 415: t3.
2017-06-23T03:52:19.979Z [mo-60] - 414: t3.
2017-06-23T03:52:20.034Z [mo-60] - 413: t3.
2017-06-23T03:52:20.085Z [mo-60] - 412: t3.
2017-06-23T03:52:20.136Z [mo-60] - 411: t3.
2017-06-23T03:52:20.187Z [mo-60] - 410: t3.
2017-06-23T03:52:20.242Z [mo-60] - 409: t3.
2017-06-23T03:52:20.294Z [mo-60] - 408: t3.
2017-06-23T03:52:20.348Z [mo-60] - 406: t3.
2017-06-23T03:52:20.398Z [mo-60] - 404: t3.
2017-06-23T03:52:20.453Z [mo-60] - 402: t3.
2017-06-23T03:52:20.506Z [mo-60] - 396: t3.
2017-06-23T03:52:20.561Z [mo-60] - 394: t3.
2017-06-23T03:52:20.611Z [mo-60] - 392: t3.
2017-06-23T03:52:20.662Z [mo-60] - 390: t3.
2017-06-23T03:52:20.712Z [mo-60] - 388: t3.
2017-06-23T03:52:20.766Z [mo-60] - 386: t3.
2017-06-23T03:52:20.820Z [mo-60] - 384: t3.
2017-06-23T03:52:20.875Z [mo-60] - 344: t3.
2017-06-23T03:52:20.928Z [mo-60] - 343: t3.
2017-06-23T03:52:20.978Z [mo-60] - 342: t3.
2017-06-23T03:52:21.028Z [mo-60] - 341: t3.
2017-06-23T03:52:21.079Z [mo-60] - 340: t3.
2017-06-23T03:52:21.129Z [mo-60] - 339: t3.
2017-06-23T03:52:21.184Z [mo-60] - 331: t3.
2017-06-23T03:52:21.238Z [mo-60] - 330: t3.
2017-06-23T03:52:21.292Z [mo-60] - 329: t3.
2017-06-23T03:52:21.344Z [mo-60] - 328: t3.
2017-06-23T03:52:21.398Z [mo-60] - 327: t3.
2017-06-23T03:52:21.453Z [mo-60] - 325: t3.
2017-06-23T03:52:21.504Z [mo-60] - 324: t3.
2017-06-23T03:52:21.559Z [mo-60] - 323: t3.
2017-06-23T03:52:21.611Z [mo-60] - 322: t3.
2017-06-23T03:52:21.662Z [mo-60] - 321: t3.
2017-06-23T03:52:21.712Z [mo-60] - 320: t3.
2017-06-23T03:52:21.763Z [mo-60] - 319: t3.
2017-06-23T03:52:21.815Z [mo-60] - 318: t3.
2017-06-23T03:52:21.867Z [mo-60] - 317: t3.
2017-06-23T03:52:21.920Z [mo-60] - 316: t3.
2017-06-23T03:52:21.971Z [mo-60] - 315: t3.
2017-06-23T03:52:22.026Z [mo-60] - 313: t3.
2017-06-23T03:52:22.078Z [mo-60] - 311: t3.
2017-06-23T03:52:22.128Z [mo-60] - 309: t3.
2017-06-23T03:52:22.178Z [mo-60] - 307: t3.
2017-06-23T03:52:22.229Z [mo-60] - 305: t3.
2017-06-23T03:52:22.279Z [mo-60] - 304: t3.
2017-06-23T03:52:22.329Z [mo-60] - 303: t3.
2017-06-23T03:52:22.381Z [mo-60] - 302: t3.
2017-06-23T03:52:22.436Z [mo-60] - 301: t3.
2017-06-23T03:52:22.436Z [mo-60] - complete.
2017-06-23T03:52:22.488Z [mo-60] - 561: t3.
2017-06-23T03:52:22.543Z [mo-60] - 558: t3.
2017-06-23T03:52:22.598Z [mo-60] - 557: t3.
2017-06-23T03:52:22.653Z [mo-60] - 556: t3.
2017-06-23T03:52:22.704Z [mo-60] - 555: t3.
2017-06-23T03:52:22.760Z [mo-60] - 554: t3.
2017-06-23T03:52:22.811Z [mo-60] - 553: t3.
2017-06-23T03:52:22.861Z [mo-60] - 552: t3.
2017-06-23T03:52:22.912Z [mo-60] - 551: t3.
2017-06-23T03:52:22.962Z [mo-60] - 550: t3.
2017-06-23T03:52:23.012Z [mo-60] - 549: t3.
2017-06-23T03:52:23.062Z [mo-60] - 548: t3.
2017-06-23T03:52:23.118Z [mo-60] - 547: t3.
2017-06-23T03:52:23.171Z [mo-60] - 545: t3.
2017-06-23T03:52:23.226Z [mo-60] - 543: t3.
2017-06-23T03:52:23.277Z [mo-60] - 541: t3.
2017-06-23T03:52:23.328Z [mo-60] - 539: t3.
2017-06-23T03:52:23.378Z [mo-60] - 530: t3.
2017-06-23T03:52:23.429Z [mo-60] - 529: t3.
2017-06-23T03:52:23.479Z [mo-60] - 528: t3.
2017-06-23T03:52:23.531Z [mo-60] - 527: t3.
2017-06-23T03:52:23.586Z [mo-60] - 526: t3.
2017-06-23T03:52:23.638Z [mo-60] - 525: t3.
2017-06-23T03:52:23.693Z [mo-60] - 524: t3.
2017-06-23T03:52:23.748Z [mo-60] - 523: t3.
2017-06-23T03:52:23.798Z [mo-60] - 522: t3.
2017-06-23T03:52:23.853Z [mo-60] - 521: t3.
2017-06-23T03:52:23.904Z [mo-60] - 520: t3.
2017-06-23T03:52:23.955Z [mo-60] - 519: t3.
2017-06-23T03:52:24.010Z [mo-60] - 518: t3.
2017-06-23T03:52:24.061Z [mo-60] - 517: t3.
2017-06-23T03:52:24.111Z [mo-60] - 516: t3.
2017-06-23T03:52:24.162Z [mo-60] - 515: t3.
2017-06-23T03:52:24.212Z [mo-60] - 514: t3.
2017-06-23T03:52:24.267Z [mo-60] - 513: t3.
2017-06-23T03:52:24.322Z [mo-60] - 512: t3.
2017-06-23T03:52:24.375Z [mo-60] - 511: t3.
2017-06-23T03:52:24.426Z [mo-60] - 500: t3.
2017-06-23T03:52:24.478Z [mo-60] - 499: t3.
2017-06-23T03:52:24.528Z [mo-60] - 498: t3.
2017-06-23T03:52:24.579Z [mo-60] - 497: t3.
2017-06-23T03:52:24.634Z [mo-60] - 496: t3.
2017-06-23T03:52:24.689Z [mo-60] - 495: t3.
2017-06-23T03:52:24.744Z [mo-60] - 494: t3.
2017-06-23T03:52:24.798Z [mo-60] - 493: t3.
2017-06-23T03:52:24.850Z [mo-60] - 492: t3.
2017-06-23T03:52:24.905Z [mo-60] - 490: t3.
2017-06-23T03:52:24.961Z [mo-60] - 484: t3.
2017-06-23T03:52:25.011Z [mo-60] - 480: t3.
2017-06-23T03:52:25.061Z [mo-60] - 478: t3.
2017-06-23T03:52:25.112Z [mo-60] - 476: t3.
2017-06-23T03:52:25.162Z [mo-60] - 474: t3.
2017-06-23T03:52:25.214Z [mo-60] - 460: t3.
2017-06-23T03:52:25.268Z [mo-60] - 416: t3.
2017-06-23T03:52:25.319Z [mo-60] - 400: t3.
2017-06-23T03:52:25.372Z [mo-60] - 398: t3.
2017-06-23T03:52:25.427Z [mo-60] - 395: t3.
2017-06-23T03:52:25.481Z [mo-60] - 393: t3.
2017-06-23T03:52:25.532Z [mo-60] - 391: t3.
2017-06-23T03:52:25.587Z [mo-60] - 389: t3.
2017-06-23T03:52:25.639Z [mo-60] - 387: t3.
2017-06-23T03:52:25.694Z [mo-60] - 629: t3.
2017-06-23T03:52:25.748Z [mo-60] - 382: t3.
2017-06-23T03:52:25.800Z [mo-60] - 628: t3.
2017-06-23T03:52:25.855Z [mo-60] - 381: t3.
2017-06-23T03:52:25.910Z [mo-60] - 627: t3.
2017-06-23T03:52:25.961Z [mo-60] - 626: t3.
2017-06-23T03:52:26.011Z [mo-60] - 380: t3.
2017-06-23T03:52:26.066Z [mo-60] - 625: t3.
2017-06-23T03:52:26.116Z [mo-60] - 379: t3.
2017-06-23T03:52:26.170Z [mo-60] - 624: t3.
2017-06-23T03:52:26.223Z [mo-60] - 623: t3.
2017-06-23T03:52:26.278Z [mo-60] - 622: t3.
2017-06-23T03:52:26.330Z [mo-60] - 621: t3.
2017-06-23T03:52:26.380Z [mo-60] - 620: t3.
2017-06-23T03:52:26.435Z [mo-60] - 619: t3.
2017-06-23T03:52:26.490Z [mo-60] - 618: t3.
2017-06-23T03:52:26.545Z [mo-60] - 617: t3.
2017-06-23T03:52:26.598Z [mo-60] - 378: t3.
2017-06-23T03:52:26.653Z [mo-60] - 616: t3.
2017-06-23T03:52:26.706Z [mo-60] - 377: t3.
2017-06-23T03:52:26.761Z [mo-60] - 614: t3.
2017-06-23T03:52:26.813Z [mo-60] - 613: t3.
2017-06-23T03:52:26.863Z [mo-60] - 376: t3.
2017-06-23T03:52:26.913Z [mo-60] - 612: t3.
2017-06-23T03:52:26.968Z [mo-60] - 375: t3.
2017-06-23T03:52:27.022Z [mo-60] - 611: t3.
2017-06-23T03:52:27.073Z [mo-60] - 374: t3.
2017-06-23T03:52:27.128Z [mo-60] - 610: t3.
2017-06-23T03:52:27.179Z [mo-60] - 373: t3.
2017-06-23T03:52:27.229Z [mo-60] - 609: t3.
2017-06-23T03:52:27.279Z [mo-60] - 372: t3.
2017-06-23T03:52:27.330Z [mo-60] - 608: t3.
2017-06-23T03:52:27.383Z [mo-60] - 371: t3.
2017-06-23T03:52:27.438Z [mo-60] - 607: t3.
2017-06-23T03:52:27.489Z [mo-60] - 370: t3.
2017-06-23T03:52:27.540Z [mo-60] - 606: t3.
2017-06-23T03:52:27.595Z [mo-60] - 369: t3.
2017-06-23T03:52:27.648Z [mo-60] - 605: t3.
2017-06-23T03:52:27.701Z [mo-60] - 368: t3.
2017-06-23T03:52:27.754Z [mo-60] - 604: t3.
2017-06-23T03:52:27.810Z [mo-60] - 367: t3.
2017-06-23T03:52:27.862Z [mo-60] - 603: t3.
2017-06-23T03:52:27.912Z [mo-60] - 366: t3.
2017-06-23T03:52:27.963Z [mo-60] - 602: t3.
2017-06-23T03:52:28.013Z [mo-60] - 365: t3.
2017-06-23T03:52:28.067Z [mo-60] - 601: t3.
2017-06-23T03:52:28.122Z [mo-60] - 364: t3.
2017-06-23T03:52:28.174Z [mo-60] - 591: t3.
2017-06-23T03:52:28.228Z [mo-60] - 363: t3.
2017-06-23T03:52:28.278Z [mo-60] - 589: t3.
2017-06-23T03:52:28.329Z [mo-60] - 362: t3.
2017-06-23T03:52:28.379Z [mo-60] - 587: t3.
2017-06-23T03:52:28.429Z [mo-60] - 361: t3.
2017-06-23T03:52:28.481Z [mo-60] - 585: t3.
2017-06-23T03:52:28.536Z [mo-60] - 360: t3.
2017-06-23T03:52:28.591Z [mo-60] - 583: t3.
2017-06-23T03:52:28.645Z [mo-60] - 359: t3.
2017-06-23T03:52:28.698Z [mo-60] - 581: t3.
2017-06-23T03:52:28.749Z [mo-60] - 358: t3.
2017-06-23T03:52:28.799Z [mo-60] - 579: t3.
2017-06-23T03:52:28.853Z [mo-60] - 357: t3.
2017-06-23T03:52:28.907Z [mo-60] - 577: t3.
2017-06-23T03:52:28.961Z [mo-60] - 356: t3.
2017-06-23T03:52:29.013Z [mo-60] - 575: t3.
2017-06-23T03:52:29.063Z [mo-60] - 355: t3.
2017-06-23T03:52:29.113Z [mo-60] - 573: t3.
2017-06-23T03:52:29.163Z [mo-60] - 354: t3.
2017-06-23T03:52:29.218Z [mo-60] - 571: t3.
2017-06-23T03:52:29.273Z [mo-60] - 353: t3.
2017-06-23T03:52:29.328Z [mo-60] - 569: t3.
2017-06-23T03:52:29.378Z [mo-60] - 352: t3.
2017-06-23T03:52:29.429Z [mo-60] - 567: t3.
2017-06-23T03:52:29.480Z [mo-60] - 351: t3.
2017-06-23T03:52:29.535Z [mo-60] - 566: t3.
2017-06-23T03:52:29.591Z [mo-60] - 350: t3.
2017-06-23T03:52:29.641Z [mo-60] - 565: t3.
2017-06-23T03:52:29.695Z [mo-60] - 349: t3.
2017-06-23T03:52:29.748Z [mo-60] - 564: t3.
2017-06-23T03:52:29.798Z [mo-60] - 348: t3.
2017-06-23T03:52:29.849Z [mo-60] - 563: t3.
2017-06-23T03:52:29.902Z [mo-60] - 347: t3.
2017-06-23T03:52:29.954Z [mo-60] - 562: t3.
2017-06-23T03:52:30.007Z [mo-60] - 346: t3.
2017-06-23T03:52:30.060Z [mo-60] - 560: t3.
2017-06-23T03:52:30.111Z [mo-60] - 345: t3.
2017-06-23T03:52:30.163Z [mo-60] - 559: t3.
2017-06-23T03:52:30.214Z [mo-60] - 326: t3.
2017-06-23T03:52:30.214Z [mo-60] - complete.
2017-06-23T03:52:30.265Z [mo-60] - 542: t3.
2017-06-23T03:52:30.317Z [mo-60] - 540: t3.
2017-06-23T03:52:30.368Z [mo-60] - 537: t3.
2017-06-23T03:52:30.423Z [mo-60] - 535: t3.
2017-06-23T03:52:30.475Z [mo-60] - 533: t3.
2017-06-23T03:52:30.529Z [mo-60] - 491: t3.
2017-06-23T03:52:30.581Z [mo-60] - 489: t3.
2017-06-23T03:52:30.636Z [mo-60] - 487: t3.
2017-06-23T03:52:30.691Z [mo-60] - 485: t3.
2017-06-23T03:52:30.744Z [mo-60] - 483: t3.
2017-06-23T03:52:30.798Z [mo-60] - 481: t3.
2017-06-23T03:52:30.853Z [mo-60] - 479: t3.
2017-06-23T03:52:30.909Z [mo-60] - 477: t3.
2017-06-23T03:52:30.961Z [mo-60] - 475: t3.
2017-06-23T03:52:31.013Z [mo-60] - 472: t3.
2017-06-23T03:52:31.063Z [mo-60] - 470: t3.
2017-06-23T03:52:31.118Z [mo-60] - 468: t3.
2017-06-23T03:52:31.174Z [mo-60] - 466: t3.
2017-06-23T03:52:31.228Z [mo-60] - 462: t3.
2017-06-23T03:52:31.278Z [mo-60] - 459: t3.
2017-06-23T03:52:31.330Z [mo-60] - 458: t3.
2017-06-23T03:52:31.380Z [mo-60] - 457: t3.
2017-06-23T03:52:31.430Z [mo-60] - 456: t3.
2017-06-23T03:52:31.485Z [mo-60] - 455: t3.
2017-06-23T03:52:31.541Z [mo-60] - 454: t3.
2017-06-23T03:52:31.595Z [mo-60] - 453: t3.
2017-06-23T03:52:31.651Z [mo-60] - 440: t3.
2017-06-23T03:52:31.703Z [mo-60] - 438: t3.
2017-06-23T03:52:31.759Z [mo-60] - 437: t3.
2017-06-23T03:52:31.811Z [mo-60] - 436: t3.
2017-06-23T03:52:31.862Z [mo-60] - 435: t3.
2017-06-23T03:52:31.912Z [mo-60] - 434: t3.
2017-06-23T03:52:31.963Z [mo-60] - 407: t3.
2017-06-23T03:52:32.014Z [mo-60] - 405: t3.
2017-06-23T03:52:32.064Z [mo-60] - 403: t3.
2017-06-23T03:52:32.114Z [mo-60] - 401: t3.
2017-06-23T03:52:32.170Z [mo-60] - 399: t3.
2017-06-23T03:52:32.225Z [mo-60] - 397: t3.
2017-06-23T03:52:32.279Z [mo-60] - 385: t3.
2017-06-23T03:52:32.330Z [mo-60] - 383: t3.
2017-06-23T03:52:32.381Z [mo-60] - 338: t3.
2017-06-23T03:52:32.431Z [mo-60] - 337: t3.
2017-06-23T03:52:32.487Z [mo-60] - 336: t3.
2017-06-23T03:52:32.542Z [mo-60] - 335: t3.
2017-06-23T03:52:32.595Z [mo-60] - 334: t3.
2017-06-23T03:52:32.648Z [mo-60] - 333: t3.
2017-06-23T03:52:32.704Z [mo-60] - 332: t3.
2017-06-23T03:52:32.759Z [mo-60] - 314: t3.
2017-06-23T03:52:32.812Z [mo-60] - 312: t3.
2017-06-23T03:52:32.864Z [mo-60] - 310: t3.
2017-06-23T03:52:32.915Z [mo-60] - 308: t3.
2017-06-23T03:52:32.965Z [mo-60] - 306: t3.
2017-06-23T03:52:32.965Z [mo-60] - complete.
2017-06-23T03:52:33.020Z [mo-60] - 774: t3.
2017-06-23T03:52:33.075Z [mo-60] - 772: t3.
2017-06-23T03:52:33.129Z [mo-60] - 770: t3.
2017-06-23T03:52:33.181Z [mo-60] - 768: t3.
2017-06-23T03:52:33.231Z [mo-60] - 766: t3.
2017-06-23T03:52:33.282Z [mo-60] - 764: t3.
2017-06-23T03:52:33.335Z [mo-60] - 762: t3.
2017-06-23T03:52:33.389Z [mo-60] - 760: t3.
2017-06-23T03:52:33.440Z [mo-60] - 758: t3.
2017-06-23T03:52:33.495Z [mo-60] - 756: t3.
2017-06-23T03:52:33.549Z [mo-60] - 755: t3.
2017-06-23T03:52:33.604Z [mo-60] - 753: t3.
2017-06-23T03:52:33.658Z [mo-60] - 751: t3.
2017-06-23T03:52:33.712Z [mo-60] - 749: t3.
2017-06-23T03:52:33.762Z [mo-60] - 747: t3.
2017-06-23T03:52:33.815Z [mo-60] - 745: t3.
2017-06-23T03:52:33.865Z [mo-60] - 743: t3.
2017-06-23T03:52:33.919Z [mo-60] - 741: t3.
2017-06-23T03:52:33.972Z [mo-60] - 739: t3.
2017-06-23T03:52:34.027Z [mo-60] - 737: t3.
2017-06-23T03:52:34.078Z [mo-60] - 735: t3.
2017-06-23T03:52:34.132Z [mo-60] - 733: t3.
2017-06-23T03:52:34.182Z [mo-60] - 731: t3.
2017-06-23T03:52:34.237Z [mo-60] - 729: t3.
2017-06-23T03:52:34.293Z [mo-60] - 727: t3.
2017-06-23T03:52:34.345Z [mo-60] - 725: t3.
2017-06-23T03:52:34.398Z [mo-60] - 722: t3.
2017-06-23T03:52:34.449Z [mo-60] - 720: t3.
2017-06-23T03:52:34.504Z [mo-60] - 719: t3.
2017-06-23T03:52:34.558Z [mo-60] - 718: t3.
2017-06-23T03:52:34.612Z [mo-60] - 717: t3.
2017-06-23T03:52:34.665Z [mo-60] - 716: t3.
2017-06-23T03:52:34.716Z [mo-60] - 715: t3.
2017-06-23T03:52:34.766Z [mo-60] - 714: t3.
2017-06-23T03:52:34.820Z [mo-60] - 713: t3.
2017-06-23T03:52:34.870Z [mo-60] - 666: t3.
2017-06-23T03:52:34.922Z [mo-60] - 665: t3.
2017-06-23T03:52:34.976Z [mo-60] - 664: t3.
2017-06-23T03:52:35.028Z [mo-60] - 663: t3.
2017-06-23T03:52:35.078Z [mo-60] - 662: t3.
2017-06-23T03:52:35.130Z [mo-60] - 661: t3.
2017-06-23T03:52:35.182Z [mo-60] - 660: t3.
2017-06-23T03:52:35.232Z [mo-60] - 659: t3.
2017-06-23T03:52:35.283Z [mo-60] - 658: t3.
2017-06-23T03:52:35.338Z [mo-60] - 657: t3.
2017-06-23T03:52:35.393Z [mo-60] - 656: t3.
2017-06-23T03:52:35.449Z [mo-60] - 655: t3.
2017-06-23T03:52:35.502Z [mo-60] - 654: t3.
2017-06-23T03:52:35.555Z [mo-60] - 653: t3.
2017-06-23T03:52:35.608Z [mo-60] - 652: t3.
2017-06-23T03:52:35.662Z [mo-60] - 651: t3.
2017-06-23T03:52:35.712Z [mo-60] - 649: t3.
2017-06-23T03:52:35.763Z [mo-60] - 648: t3.
2017-06-23T03:52:35.816Z [mo-60] - 647: t3.
2017-06-23T03:52:35.866Z [mo-60] - 646: t3.
2017-06-23T03:52:35.917Z [mo-60] - 645: t3.
2017-06-23T03:52:35.967Z [mo-60] - 644: t3.
2017-06-23T03:52:36.020Z [mo-60] - 643: t3.
2017-06-23T03:52:36.076Z [mo-60] - 642: t3.
2017-06-23T03:52:36.129Z [mo-60] - 641: t3.
2017-06-23T03:52:36.179Z [mo-60] - 640: t3.
2017-06-23T03:52:36.229Z [mo-60] - 639: t3.
2017-06-23T03:52:36.280Z [mo-60] - 638: t3.
2017-06-23T03:52:36.333Z [mo-60] - 637: t3.
2017-06-23T03:52:36.383Z [mo-60] - 636: t3.
2017-06-23T03:52:36.437Z [mo-60] - 635: t3.
2017-06-23T03:52:36.493Z [mo-60] - 634: t3.
2017-06-23T03:52:36.545Z [mo-60] - 633: t3.
2017-06-23T03:52:36.599Z [mo-60] - 632: t3.
2017-06-23T03:52:36.650Z [mo-60] - 631: t3.
2017-06-23T03:52:36.700Z [mo-60] - 630: t3.
2017-06-23T03:52:36.751Z [mo-60] - 615: t3.
2017-06-23T03:52:36.806Z [mo-60] - 600: t3.
2017-06-23T03:52:36.857Z [mo-60] - 599: t3.
2017-06-23T03:52:36.912Z [mo-60] - 598: t3.
2017-06-23T03:52:36.966Z [mo-60] - 597: t3.
2017-06-23T03:52:37.021Z [mo-60] - 596: t3.
2017-06-23T03:52:37.072Z [mo-60] - 595: t3.
2017-06-23T03:52:37.126Z [mo-60] - 594: t3.
2017-06-23T03:52:37.178Z [mo-60] - 593: t3.
2017-06-23T03:52:37.233Z [mo-60] - 592: t3.
2017-06-23T03:52:37.283Z [mo-60] - 590: t3.
2017-06-23T03:52:37.336Z [mo-60] - 588: t3.
2017-06-23T03:52:37.391Z [mo-60] - 586: t3.
2017-06-23T03:52:37.445Z [mo-60] - 584: t3.
2017-06-23T03:52:37.499Z [mo-60] - 582: t3.
2017-06-23T03:52:37.551Z [mo-60] - 580: t3.
2017-06-23T03:52:37.606Z [mo-60] - 578: t3.
2017-06-23T03:52:37.661Z [mo-60] - 576: t3.
2017-06-23T03:52:37.712Z [mo-60] - 574: t3.
2017-06-23T03:52:37.767Z [mo-60] - 572: t3.
2017-06-23T03:52:37.818Z [mo-60] - 570: t3.
2017-06-23T03:52:37.874Z [mo-60] - 568: t3.
2017-06-23T03:52:37.928Z [mo-60] - 546: t3.
2017-06-23T03:52:37.979Z [mo-60] - 544: t3.
2017-06-23T03:52:38.030Z [mo-60] - 538: t3.
2017-06-23T03:52:38.084Z [mo-60] - 536: t3.
2017-06-23T03:52:38.134Z [mo-60] - 534: t3.
2017-06-23T03:52:38.184Z [mo-60] - 532: t3.
2017-06-23T03:52:38.240Z [mo-60] - 820: t3.
2017-06-23T03:52:38.291Z [mo-60] - 531: t3.
2017-06-23T03:52:38.291Z [mo-60] - complete.
2017-06-23T03:52:38.346Z [mo-60] - 819: t3.
2017-06-23T03:52:38.400Z [mo-60] - 818: t3.
2017-06-23T03:52:38.451Z [mo-60] - 817: t3.
2017-06-23T03:52:38.506Z [mo-60] - 816: t3.
2017-06-23T03:52:38.557Z [mo-60] - 815: t3.
2017-06-23T03:52:38.612Z [mo-60] - 814: t3.
2017-06-23T03:52:38.663Z [mo-60] - 813: t3.
2017-06-23T03:52:38.717Z [mo-60] - 812: t3.
2017-06-23T03:52:38.768Z [mo-60] - 811: t3.
2017-06-23T03:52:38.818Z [mo-60] - 810: t3.
2017-06-23T03:52:38.873Z [mo-60] - 809: t3.
2017-06-23T03:52:38.929Z [mo-60] - 808: t3.
2017-06-23T03:52:38.984Z [mo-60] - 807: t3.
2017-06-23T03:52:39.034Z [mo-60] - 806: t3.
2017-06-23T03:52:39.085Z [mo-60] - 805: t3.
2017-06-23T03:52:39.135Z [mo-60] - 804: t3.
2017-06-23T03:52:39.185Z [mo-60] - 803: t3.
2017-06-23T03:52:39.241Z [mo-60] - 802: t3.
2017-06-23T03:52:39.295Z [mo-60] - 801: t3.
2017-06-23T03:52:39.349Z [mo-60] - 800: t3.
2017-06-23T03:52:39.401Z [mo-60] - 799: t3.
2017-06-23T03:52:39.456Z [mo-60] - 798: t3.
2017-06-23T03:52:39.512Z [mo-60] - 797: t3.
2017-06-23T03:52:39.563Z [mo-60] - 796: t3.
2017-06-23T03:52:39.618Z [mo-60] - 795: t3.
2017-06-23T03:52:39.669Z [mo-60] - 794: t3.
2017-06-23T03:52:39.724Z [mo-60] - 793: t3.
2017-06-23T03:52:39.779Z [mo-60] - 792: t3.
2017-06-23T03:52:39.829Z [mo-60] - 791: t3.
2017-06-23T03:52:39.879Z [mo-60] - 790: t3.
2017-06-23T03:52:39.935Z [mo-60] - 789: t3.
2017-06-23T03:52:39.985Z [mo-60] - 788: t3.
2017-06-23T03:52:40.040Z [mo-60] - 787: t3.
2017-06-23T03:52:40.095Z [mo-60] - 786: t3.
2017-06-23T03:52:40.149Z [mo-60] - 785: t3.
2017-06-23T03:52:40.201Z [mo-60] - 784: t3.
2017-06-23T03:52:40.255Z [mo-60] - 783: t3.
2017-06-23T03:52:40.310Z [mo-60] - 782: t3.
2017-06-23T03:52:40.362Z [mo-60] - 781: t3.
2017-06-23T03:52:40.417Z [mo-60] - 780: t3.
2017-06-23T03:52:40.470Z [mo-60] - 779: t3.
2017-06-23T03:52:40.526Z [mo-60] - 778: t3.
2017-06-23T03:52:40.583Z [mo-60] - 776: t3.
2017-06-23T03:52:40.634Z [mo-60] - 769: t3.
2017-06-23T03:52:40.685Z [mo-60] - 767: t3.
2017-06-23T03:52:40.735Z [mo-60] - 763: t3.
2017-06-23T03:52:40.786Z [mo-60] - 754: t3.
2017-06-23T03:52:40.836Z [mo-60] - 750: t3.
2017-06-23T03:52:40.891Z [mo-60] - 746: t3.
2017-06-23T03:52:40.945Z [mo-60] - 744: t3.
2017-06-23T03:52:40.999Z [mo-60] - 740: t3.
2017-06-23T03:52:41.052Z [mo-60] - 736: t3.
2017-06-23T03:52:41.104Z [mo-60] - 734: t3.
2017-06-23T03:52:41.159Z [mo-60] - 732: t3.
2017-06-23T03:52:41.212Z [mo-60] - 730: t3.
2017-06-23T03:52:41.262Z [mo-60] - 728: t3.
2017-06-23T03:52:41.312Z [mo-60] - 723: t3.
2017-06-23T03:52:41.363Z [mo-60] - 721: t3.
2017-06-23T03:52:41.418Z [mo-60] - 712: t3.
2017-06-23T03:52:41.472Z [mo-60] - 711: t3.
2017-06-23T03:52:41.527Z [mo-60] - 710: t3.
2017-06-23T03:52:41.578Z [mo-60] - 709: t3.
2017-06-23T03:52:41.629Z [mo-60] - 708: t3.
2017-06-23T03:52:41.679Z [mo-60] - 707: t3.
2017-06-23T03:52:41.729Z [mo-60] - 706: t3.
2017-06-23T03:52:41.783Z [mo-60] - 705: t3.
2017-06-23T03:52:41.835Z [mo-60] - 704: t3.
2017-06-23T03:52:41.886Z [mo-60] - 703: t3.
2017-06-23T03:52:41.936Z [mo-60] - 702: t3.
2017-06-23T03:52:41.987Z [mo-60] - 701: t3.
2017-06-23T03:52:42.037Z [mo-60] - 700: t3.
2017-06-23T03:52:42.087Z [mo-60] - 699: t3.
2017-06-23T03:52:42.142Z [mo-60] - 698: t3.
2017-06-23T03:52:42.193Z [mo-60] - 697: t3.
2017-06-23T03:52:42.246Z [mo-60] - 696: t3.
2017-06-23T03:52:42.299Z [mo-60] - 695: t3.
2017-06-23T03:52:42.354Z [mo-60] - 694: t3.
2017-06-23T03:52:42.409Z [mo-60] - 693: t3.
2017-06-23T03:52:42.462Z [mo-60] - 692: t3.
2017-06-23T03:52:42.512Z [mo-60] - 691: t3.
2017-06-23T03:52:42.562Z [mo-60] - 690: t3.
2017-06-23T03:52:42.617Z [mo-60] - 689: t3.
2017-06-23T03:52:42.669Z [mo-60] - 688: t3.
2017-06-23T03:52:42.720Z [mo-60] - 687: t3.
2017-06-23T03:52:42.770Z [mo-60] - 686: t3.
2017-06-23T03:52:42.826Z [mo-60] - 685: t3.
2017-06-23T03:52:42.879Z [mo-60] - 684: t3.
2017-06-23T03:52:42.929Z [mo-60] - 683: t3.
2017-06-23T03:52:42.981Z [mo-60] - 682: t3.
2017-06-23T03:52:43.035Z [mo-60] - 681: t3.
2017-06-23T03:52:43.086Z [mo-60] - 680: t3.
2017-06-23T03:52:43.137Z [mo-60] - 679: t3.
2017-06-23T03:52:43.187Z [mo-60] - 678: t3.
2017-06-23T03:52:43.241Z [mo-60] - 677: t3.
2017-06-23T03:52:43.295Z [mo-60] - 676: t3.
2017-06-23T03:52:43.349Z [mo-60] - 675: t3.
2017-06-23T03:52:43.403Z [mo-60] - 674: t3.
2017-06-23T03:52:43.454Z [mo-60] - 673: t3.
2017-06-23T03:52:43.509Z [mo-60] - 671: t3.
2017-06-23T03:52:43.509Z [mo-60] - complete.
2017-06-23T03:52:43.563Z [mo-60] - 979: t3.
2017-06-23T03:52:43.613Z [mo-60] - 978: t3.
2017-06-23T03:52:43.663Z [mo-60] - 977: t3.
2017-06-23T03:52:43.714Z [mo-60] - 976: t3.
2017-06-23T03:52:43.766Z [mo-60] - 975: t3.
2017-06-23T03:52:43.820Z [mo-60] - 974: t3.
2017-06-23T03:52:43.871Z [mo-60] - 973: t3.
2017-06-23T03:52:43.926Z [mo-60] - 972: t3.
2017-06-23T03:52:43.979Z [mo-60] - 971: t3.
2017-06-23T03:52:44.029Z [mo-60] - 970: t3.
2017-06-23T03:52:44.085Z [mo-60] - 969: t3.
2017-06-23T03:52:44.137Z [mo-60] - 968: t3.
2017-06-23T03:52:44.192Z [mo-60] - 965: t3.
2017-06-23T03:52:44.243Z [mo-60] - 964: t3.
2017-06-23T03:52:44.294Z [mo-60] - 963: t3.
2017-06-23T03:52:44.349Z [mo-60] - 962: t3.
2017-06-23T03:52:44.403Z [mo-60] - 961: t3.
2017-06-23T03:52:44.454Z [mo-60] - 960: t3.
2017-06-23T03:52:44.509Z [mo-60] - 959: t3.
2017-06-23T03:52:44.562Z [mo-60] - 958: t3.
2017-06-23T03:52:44.612Z [mo-60] - 957: t3.
2017-06-23T03:52:44.662Z [mo-60] - 956: t3.
2017-06-23T03:52:44.713Z [mo-60] - 955: t3.
2017-06-23T03:52:44.767Z [mo-60] - 954: t3.
2017-06-23T03:52:44.821Z [mo-60] - 953: t3.
2017-06-23T03:52:44.871Z [mo-60] - 952: t3.
2017-06-23T03:52:44.922Z [mo-60] - 951: t3.
2017-06-23T03:52:44.972Z [mo-60] - 949: t3.
2017-06-23T03:52:45.022Z [mo-60] - 947: t3.
2017-06-23T03:52:45.077Z [mo-60] - 945: t3.
2017-06-23T03:52:45.128Z [mo-60] - 943: t3.
2017-06-23T03:52:45.179Z [mo-60] - 941: t3.
2017-06-23T03:52:45.229Z [mo-60] - 938: t3.
2017-06-23T03:52:45.279Z [mo-60] - 936: t3.
2017-06-23T03:52:45.334Z [mo-60] - 933: t3.
2017-06-23T03:52:45.390Z [mo-60] - 929: t3.
2017-06-23T03:52:45.445Z [mo-60] - 927: t3.
2017-06-23T03:52:45.499Z [mo-60] - 925: t3.
2017-06-23T03:52:45.552Z [mo-60] - 923: t3.
2017-06-23T03:52:45.604Z [mo-60] - 921: t3.
2017-06-23T03:52:45.655Z [mo-60] - 919: t3.
2017-06-23T03:52:45.705Z [mo-60] - 917: t3.
2017-06-23T03:52:45.758Z [mo-60] - 910: t3.
2017-06-23T03:52:45.812Z [mo-60] - 906: t3.
2017-06-23T03:52:45.862Z [mo-60] - 905: t3.
2017-06-23T03:52:45.913Z [mo-60] - 904: t3.
2017-06-23T03:52:45.967Z [mo-60] - 903: t3.
2017-06-23T03:52:46.020Z [mo-60] - 902: t3.
2017-06-23T03:52:46.071Z [mo-60] - 901: t3.
2017-06-23T03:52:46.122Z [mo-60] - 900: t3.
2017-06-23T03:52:46.172Z [mo-60] - 899: t3.
2017-06-23T03:52:46.222Z [mo-60] - 898: t3.
2017-06-23T03:52:46.278Z [mo-60] - 897: t3.
2017-06-23T03:52:46.328Z [mo-60] - 896: t3.
2017-06-23T03:52:46.378Z [mo-60] - 895: t3.
2017-06-23T03:52:46.429Z [mo-60] - 894: t3.
2017-06-23T03:52:46.481Z [mo-60] - 892: t3.
2017-06-23T03:52:46.532Z [mo-60] - 890: t3.
2017-06-23T03:52:46.586Z [mo-60] - 888: t3.
2017-06-23T03:52:46.637Z [mo-60] - 886: t3.
2017-06-23T03:52:46.688Z [mo-60] - 884: t3.
2017-06-23T03:52:46.739Z [mo-60] - 878: t3.
2017-06-23T03:52:46.789Z [mo-60] - 872: t3.
2017-06-23T03:52:46.839Z [mo-60] - 863: t3.
2017-06-23T03:52:46.889Z [mo-60] - 861: t3.
2017-06-23T03:52:46.945Z [mo-60] - 859: t3.
2017-06-23T03:52:46.999Z [mo-60] - 857: t3.
2017-06-23T03:52:47.051Z [mo-60] - 855: t3.
2017-06-23T03:52:47.105Z [mo-60] - 853: t3.
2017-06-23T03:52:47.156Z [mo-60] - 1000: t3.
2017-06-23T03:52:47.206Z [mo-60] - 851: t3.
2017-06-23T03:52:47.262Z [mo-60] - 850: t3.
2017-06-23T03:52:47.312Z [mo-60] - 999: t3.
2017-06-23T03:52:47.362Z [mo-60] - 849: t3.
2017-06-23T03:52:47.415Z [mo-60] - 848: t3.
2017-06-23T03:52:47.469Z [mo-60] - 847: t3.
2017-06-23T03:52:47.522Z [mo-60] - 846: t3.
2017-06-23T03:52:47.573Z [mo-60] - 845: t3.
2017-06-23T03:52:47.623Z [mo-60] - 844: t3.
2017-06-23T03:52:47.674Z [mo-60] - 843: t3.
2017-06-23T03:52:47.728Z [mo-60] - 842: t3.
2017-06-23T03:52:47.778Z [mo-60] - 841: t3.
2017-06-23T03:52:47.829Z [mo-60] - 840: t3.
2017-06-23T03:52:47.879Z [mo-60] - 839: t3.
2017-06-23T03:52:47.929Z [mo-60] - 967: t3.
2017-06-23T03:52:47.981Z [mo-60] - 838: t3.
2017-06-23T03:52:48.033Z [mo-60] - 998: t3.
2017-06-23T03:52:48.084Z [mo-60] - 837: t3.
2017-06-23T03:52:48.137Z [mo-60] - 836: t3.
2017-06-23T03:52:48.189Z [mo-60] - 950: t3.
2017-06-23T03:52:48.240Z [mo-60] - 835: t3.
2017-06-23T03:52:48.295Z [mo-60] - 948: t3.
2017-06-23T03:52:48.349Z [mo-60] - 834: t3.
2017-06-23T03:52:48.401Z [mo-60] - 940: t3.
2017-06-23T03:52:48.455Z [mo-60] - 833: t3.
2017-06-23T03:52:48.510Z [mo-60] - 937: t3.
2017-06-23T03:52:48.562Z [mo-60] - 832: t3.
2017-06-23T03:52:48.614Z [mo-60] - 934: t3.
2017-06-23T03:52:48.670Z [mo-60] - 831: t3.
2017-06-23T03:52:48.723Z [mo-60] - 932: t3.
2017-06-23T03:52:48.773Z [mo-60] - 830: t3.
2017-06-23T03:52:48.827Z [mo-60] - 930: t3.
2017-06-23T03:52:48.879Z [mo-60] - 829: t3.
2017-06-23T03:52:48.929Z [mo-60] - 828: t3.
2017-06-23T03:52:48.984Z [mo-60] - 997: t3.
2017-06-23T03:52:49.034Z [mo-60] - 996: t3.
2017-06-23T03:52:49.089Z [mo-60] - 995: t3.
2017-06-23T03:52:49.140Z [mo-60] - 994: t3.
2017-06-23T03:52:49.195Z [mo-60] - 993: t3.
2017-06-23T03:52:49.249Z [mo-60] - 992: t3.
2017-06-23T03:52:49.300Z [mo-60] - 991: t3.
2017-06-23T03:52:49.356Z [mo-60] - 827: t3.
2017-06-23T03:52:49.406Z [mo-60] - 826: t3.
2017-06-23T03:52:49.461Z [mo-60] - 825: t3.
2017-06-23T03:52:49.512Z [mo-60] - 824: t3.
2017-06-23T03:52:49.562Z [mo-60] - 823: t3.
2017-06-23T03:52:49.614Z [mo-60] - 822: t3.
2017-06-23T03:52:49.664Z [mo-60] - 821: t3.
2017-06-23T03:52:49.664Z [mo-60] - complete.
2017-06-23T03:52:49.719Z [mo-60] - 920: t3.
2017-06-23T03:52:49.773Z [mo-60] - 915: t3.
2017-06-23T03:52:49.828Z [mo-60] - 914: t3.
2017-06-23T03:52:49.879Z [mo-60] - 913: t3.
2017-06-23T03:52:49.929Z [mo-60] - 912: t3.
2017-06-23T03:52:49.985Z [mo-60] - 909: t3.
2017-06-23T03:52:50.035Z [mo-60] - 907: t3.
2017-06-23T03:52:50.090Z [mo-60] - 893: t3.
2017-06-23T03:52:50.141Z [mo-60] - 891: t3.
2017-06-23T03:52:50.195Z [mo-60] - 889: t3.
2017-06-23T03:52:50.249Z [mo-60] - 887: t3.
2017-06-23T03:52:50.303Z [mo-60] - 885: t3.
2017-06-23T03:52:50.357Z [mo-60] - 990: t3.
2017-06-23T03:52:50.408Z [mo-60] - 989: t3.
2017-06-23T03:52:50.461Z [mo-60] - 988: t3.
2017-06-23T03:52:50.514Z [mo-60] - 987: t3.
2017-06-23T03:52:50.569Z [mo-60] - 986: t3.
2017-06-23T03:52:50.620Z [mo-60] - 985: t3.
2017-06-23T03:52:50.674Z [mo-60] - 984: t3.
2017-06-23T03:52:50.728Z [mo-60] - 983: t3.
2017-06-23T03:52:50.778Z [mo-60] - 982: t3.
2017-06-23T03:52:50.828Z [mo-60] - 981: t3.
2017-06-23T03:52:50.879Z [mo-60] - 980: t3.
2017-06-23T03:52:50.934Z [mo-60] - 966: t3.
2017-06-23T03:52:50.988Z [mo-60] - 946: t3.
2017-06-23T03:52:51.040Z [mo-60] - 944: t3.
2017-06-23T03:52:51.091Z [mo-60] - 942: t3.
2017-06-23T03:52:51.145Z [mo-60] - 939: t3.
2017-06-23T03:52:51.195Z [mo-60] - 935: t3.
2017-06-23T03:52:51.245Z [mo-60] - 931: t3.
2017-06-23T03:52:51.295Z [mo-60] - 928: t3.
2017-06-23T03:52:51.351Z [mo-60] - 926: t3.
2017-06-23T03:52:51.406Z [mo-60] - 924: t3.
2017-06-23T03:52:51.457Z [mo-60] - 922: t3.
2017-06-23T03:52:51.511Z [mo-60] - 918: t3.
2017-06-23T03:52:51.562Z [mo-60] - 916: t3.
2017-06-23T03:52:51.612Z [mo-60] - 911: t3.
2017-06-23T03:52:51.662Z [mo-60] - 908: t3.
2017-06-23T03:52:51.717Z [mo-60] - 882: t3.
2017-06-23T03:52:51.770Z [mo-60] - 880: t3.
2017-06-23T03:52:51.824Z [mo-60] - 876: t3.
2017-06-23T03:52:51.875Z [mo-60] - 874: t3.
2017-06-23T03:52:51.928Z [mo-60] - 873: t3.
2017-06-23T03:52:51.983Z [mo-60] - 871: t3.
2017-06-23T03:52:52.038Z [mo-60] - 870: t3.
2017-06-23T03:52:52.091Z [mo-60] - 869: t3.
2017-06-23T03:52:52.142Z [mo-60] - 868: t3.
2017-06-23T03:52:52.195Z [mo-60] - 867: t3.
2017-06-23T03:52:52.245Z [mo-60] - 866: t3.
2017-06-23T03:52:52.295Z [mo-60] - 865: t3.
2017-06-23T03:52:52.351Z [mo-60] - 864: t3.
2017-06-23T03:52:52.406Z [mo-60] - 862: t3.
2017-06-23T03:52:52.458Z [mo-60] - 860: t3.
2017-06-23T03:52:52.511Z [mo-60] - 858: t3.
2017-06-23T03:52:52.561Z [mo-60] - 856: t3.
2017-06-23T03:52:52.612Z [mo-60] - 854: t3.
2017-06-23T03:52:52.667Z [mo-60] - 852: t3.
2017-06-23T03:52:52.667Z [mo-60] - complete.
2017-06-23T03:52:52.723Z [mo-60] - 883: t3.
2017-06-23T03:52:52.775Z [mo-60] - 881: t3.
2017-06-23T03:52:52.825Z [mo-60] - 879: t3.
2017-06-23T03:52:52.875Z [mo-60] - 877: t3.
2017-06-23T03:52:52.928Z [mo-60] - 875: t3.
2017-06-23T03:52:52.978Z [mo-60] - 777: t3.
2017-06-23T03:52:53.028Z [mo-60] - 775: t3.
2017-06-23T03:52:53.079Z [mo-60] - 773: t3.
2017-06-23T03:52:53.130Z [mo-60] - 771: t3.
2017-06-23T03:52:53.184Z [mo-60] - 765: t3.
2017-06-23T03:52:53.239Z [mo-60] - 761: t3.
2017-06-23T03:52:53.291Z [mo-60] - 759: t3.
2017-06-23T03:52:53.342Z [mo-60] - 757: t3.
2017-06-23T03:52:53.392Z [mo-60] - 752: t3.
2017-06-23T03:52:53.443Z [mo-60] - 748: t3.
2017-06-23T03:52:53.493Z [mo-60] - 742: t3.
2017-06-23T03:52:53.545Z [mo-60] - 738: t3.
2017-06-23T03:52:53.595Z [mo-60] - 726: t3.
2017-06-23T03:52:53.645Z [mo-60] - 724: t3.
2017-06-23T03:52:53.695Z [mo-60] - 672: t3.
2017-06-23T03:52:53.749Z [mo-60] - 670: t3.
2017-06-23T03:52:53.799Z [mo-60] - 669: t3.
2017-06-23T03:52:53.854Z [mo-60] - 668: t3.
2017-06-23T03:52:53.909Z [mo-60] - 667: t3.
2017-06-23T03:52:53.959Z [mo-60] - 650: t3.
2017-06-23T03:52:53.959Z [mo-60] - complete.
[warn] Canceling execution...
[warn] Run canceled.
java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.ExecutorCompletionService$QueueingFuture@5d22ed6c rejected from java.util.concurrent.ThreadPoolExecutor@37c37d67[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 240]
at java.util.concurrent.ThreadPoolExecutor$AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:2047)
at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:823)
at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1369)
at java.util.concurrent.ExecutorCompletionService.submit(ExecutorCompletionService.java:181)
at sbt.CompletionService$.submit(CompletionService.scala:28)
at sbt.ConcurrentRestrictions$$anon$4.submitValid(ConcurrentRestrictions.scala:160)
at sbt.ConcurrentRestrictions$$anon$4.submit(ConcurrentRestrictions.scala:150)
at sbt.Execute.submit(Execute.scala:228)
at sbt.Execute.ready(Execute.scala:209)
at sbt.Execute.notifyDone(Execute.scala:156)
at sbt.Execute$$anonfun$retire$3.apply(Execute.scala:132)
at sbt.Execute$$anonfun$retire$3.apply(Execute.scala:132)
at scala.collection.immutable.List.foreach(List.scala:318)
at sbt.Execute.retire(Execute.scala:132)
at sbt.Execute$$anonfun$work$1.apply$mcV$sp(Execute.scala:245)
at sbt.Execute$$anon$1.process(Execute.scala:18)
at sbt.Execute.next$1(Execute.scala:85)
at sbt.Execute.processAll(Execute.scala:88)
at sbt.Execute.runKeep(Execute.scala:68)
at sbt.EvaluateTask$.liftedTree1$1(EvaluateTask.scala:359)
at sbt.EvaluateTask$.run$1(EvaluateTask.scala:358)
at sbt.EvaluateTask$.runTask(EvaluateTask.scala:378)
at sbt.Aggregation$$anonfun$3.apply(Aggregation.scala:69)
at sbt.Aggregation$$anonfun$3.apply(Aggregation.scala:67)
at sbt.EvaluateTask$.withStreams(EvaluateTask.scala:314)
at sbt.Aggregation$.timedRun(Aggregation.scala:67)
at sbt.Aggregation$.runTasks(Aggregation.scala:76)
at sbt.Aggregation$$anonfun$applyDynamicTasks$1.apply(Aggregation.scala:117)
at sbt.Aggregation$$anonfun$applyDynamicTasks$1.apply(Aggregation.scala:115)
at sbt.Command$$anonfun$applyEffect$2$$anonfun$apply$3.apply(Command.scala:61)
at sbt.Command$$anonfun$applyEffect$2$$anonfun$apply$3.apply(Command.scala:61)
at sbt.Act$$anonfun$sbt$Act$$actParser0$1$$anonfun$sbt$Act$$anonfun$$evaluate$1$1$$anonfun$apply$10.apply(Act.scala:253)
at sbt.Act$$anonfun$sbt$Act$$actParser0$1$$anonfun$sbt$Act$$anonfun$$evaluate$1$1$$anonfun$apply$10.apply(Act.scala:250)
at sbt.Command$.process(Command.scala:93)
at sbt.MainLoop$$anonfun$1$$anonfun$apply$1.apply(MainLoop.scala:96)
at sbt.MainLoop$$anonfun$1$$anonfun$apply$1.apply(MainLoop.scala:96)
at sbt.State$$anon$1.doX$1(State.scala:183)
at sbt.State$$anon$1.process(State.scala:190)
at sbt.MainLoop$$anonfun$1.apply(MainLoop.scala:96)
at sbt.MainLoop$$anonfun$1.apply(MainLoop.scala:96)
at sbt.ErrorHandling$.wideConvert(ErrorHandling.scala:17)
at sbt.MainLoop$.next(MainLoop.scala:96)
at sbt.MainLoop$.run(MainLoop.scala:89)
at sbt.MainLoop$$anonfun$runWithNewLog$1.apply(MainLoop.scala:68)
at sbt.MainLoop$$anonfun$runWithNewLog$1.apply(MainLoop.scala:63)
at sbt.Using.apply(Using.scala:24)
at sbt.MainLoop$.runWithNewLog(MainLoop.scala:63)
at sbt.MainLoop$.runAndClearLast(MainLoop.scala:46)
at sbt.MainLoop$.runLoggedLoop(MainLoop.scala:30)
at sbt.MainLoop$.runLogged(MainLoop.scala:22)
at sbt.StandardMain$.runManaged(Main.scala:109)
at sbt.xMain.run(Main.scala:38)
at xsbt.boot.Launch$$anonfun$run$1.apply(Launch.scala:109)
at xsbt.boot.Launch$.withContextLoader(Launch.scala:128)
at xsbt.boot.Launch$.run(Launch.scala:109)
at xsbt.boot.Launch$$anonfun$apply$1.apply(Launch.scala:35)
at xsbt.boot.Launch$.launch(Launch.scala:117)
at xsbt.boot.Launch$.apply(Launch.scala:18)
at xsbt.boot.Boot$.runImpl(Boot.scala:41)
at xsbt.boot.Boot$.main(Boot.scala:17)
at xsbt.boot.Boot.main(Boot.scala)
[error] java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.ExecutorCompletionService$QueueingFuture@5d22ed6c rejected from java.util.concurrent.ThreadPoolExecutor@37c37d67[Terminated, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 240]
[error] Use 'last' for the full log.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment