Splunk Search

Get sum of column on table

bora9
Explorer

I've been trying to get the sum for production column on the following table by month, day, year, hours

My Search:

source="rest://RGM Lifetime Stats"
| spath intervals{} output=intervals
| rename intervals{}.end_at as Date, intervals{}.wh_del as Production
| eval temp=mvzip(Date,Production)
| stats count by _time temp
| eval Date=replace(replace(mvindex(split(temp,","),0),"-07:00",""),"T"," "),Production=mvindex(split(temp,","),1)
| table Date Production 

What I want to be able to do is a breakdown by 1) Month, 2) day, 3) year, 4) hours

For Example:

Date Production
Nov 2017 10.2
Dec 2017 235
Jan 2018 244
Feb 2018 278

and same thing for day, year and hours.

Raw:

{"system_id":9876789,"total_devices":1,"intervals":[{"end_at":"2017-12-31T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2017-12-31T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T07:30:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-01T07:45:00-07:00","devices_reporting":1,"wh_del":73},{"end_at":"2018-01-01T08:00:00-07:00","devices_reporting":1,"wh_del":168},{"end_at":"2018-01-01T08:15:00-07:00","devices_reporting":1,"wh_del":256},{"end_at":"2018-01-01T08:30:00-07:00","devices_reporting":1,"wh_del":317},{"end_at":"2018-01-01T08:45:00-07:00","devices_reporting":1,"wh_del":342},{"end_at":"2018-01-01T09:00:00-07:00","devices_reporting":1,"wh_del":508},{"end_at":"2018-01-01T09:15:00-07:00","devices_reporting":1,"wh_del":504},{"end_at":"2018-01-01T09:30:00-07:00","devices_reporting":1,"wh_del":439},{"end_at":"2018-01-01T09:45:00-07:00","devices_reporting":1,"wh_del":250},{"end_at":"2018-01-01T10:00:00-07:00","devices_reporting":1,"wh_del":255},{"end_at":"2018-01-01T10:15:00-07:00","devices_reporting":1,"wh_del":254},{"end_at":"2018-01-01T10:30:00-07:00","devices_reporting":1,"wh_del":447},{"end_at":"2018-01-01T10:45:00-07:00","devices_reporting":1,"wh_del":529},{"end_at":"2018-01-01T11:00:00-07:00","devices_reporting":1,"wh_del":515},{"end_at":"2018-01-01T11:15:00-07:00","devices_reporting":1,"wh_del":495},{"end_at":"2018-01-01T11:30:00-07:00","devices_reporting":1,"wh_del":498},{"end_at":"2018-01-01T11:45:00-07:00","devices_reporting":1,"wh_del":294},{"end_at":"2018-01-01T12:00:00-07:00","devices_reporting":1,"wh_del":351},{"end_at":"2018-01-01T12:15:00-07:00","devices_reporting":1,"wh_del":373},{"end_at":"2018-01-01T12:30:00-07:00","devices_reporting":1,"wh_del":364},{"end_at":"2018-01-01T12:45:00-07:00","devices_reporting":1,"wh_del":333},{"end_at":"2018-01-01T13:00:00-07:00","devices_reporting":1,"wh_del":288},{"end_at":"2018-01-01T13:15:00-07:00","devices_reporting":1,"wh_del":261},{"end_at":"2018-01-01T13:30:00-07:00","devices_reporting":1,"wh_del":238},{"end_at":"2018-01-01T13:45:00-07:00","devices_reporting":1,"wh_del":200},{"end_at":"2018-01-01T14:00:00-07:00","devices_reporting":1,"wh_del":178},{"end_at":"2018-01-01T14:15:00-07:00","devices_reporting":1,"wh_del":154},{"end_at":"2018-01-01T14:30:00-07:00","devices_reporting":1,"wh_del":125},{"end_at":"2018-01-01T14:45:00-07:00","devices_reporting":1,"wh_del":104},{"end_at":"2018-01-01T15:00:00-07:00","devices_reporting":1,"wh_del":82},{"end_at":"2018-01-01T15:15:00-07:00","devices_reporting":1,"wh_del":71},{"end_at":"2018-01-01T15:30:00-07:00","devices_reporting":1,"wh_del":78},{"end_at":"2018-01-01T15:45:00-07:00","devices_reporting":1,"wh_del":76},{"end_at":"2018-01-01T16:00:00-07:00","devices_reporting":1,"wh_del":63},{"end_at":"2018-01-01T16:15:00-07:00","devices_reporting":1,"wh_del":47},{"end_at":"2018-01-01T16:30:00-07:00","devices_reporting":1,"wh_del":32},{"end_at":"2018-01-01T16:45:00-07:00","devices_reporting":1,"wh_del":11},{"end_at":"2018-01-01T17:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-01T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-01T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T07:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T07:45:00-07:00","devices_reporting":1,"wh_del":80},{"end_at":"2018-01-02T08:00:00-07:00","devices_reporting":1,"wh_del":169},{"end_at":"2018-01-02T08:15:00-07:00","devices_reporting":1,"wh_del":226},{"end_at":"2018-01-02T08:30:00-07:00","devices_reporting":1,"wh_del":274},{"end_at":"2018-01-02T08:45:00-07:00","devices_reporting":1,"wh_del":314},{"end_at":"2018-01-02T09:00:00-07:00","devices_reporting":1,"wh_del":357},{"end_at":"2018-01-02T09:15:00-07:00","devices_reporting":1,"wh_del":412},{"end_at":"2018-01-02T09:30:00-07:00","devices_reporting":1,"wh_del":468},{"end_at":"2018-01-02T09:45:00-07:00","devices_reporting":1,"wh_del":490},{"end_at":"2018-01-02T10:00:00-07:00","devices_reporting":1,"wh_del":499},{"end_at":"2018-01-02T10:15:00-07:00","devices_reporting":1,"wh_del":505},{"end_at":"2018-01-02T10:30:00-07:00","devices_reporting":1,"wh_del":504},{"end_at":"2018-01-02T10:45:00-07:00","devices_reporting":1,"wh_del":501},{"end_at":"2018-01-02T11:00:00-07:00","devices_reporting":1,"wh_del":490},{"end_at":"2018-01-02T11:15:00-07:00","devices_reporting":1,"wh_del":480},{"end_at":"2018-01-02T11:30:00-07:00","devices_reporting":1,"wh_del":463},{"end_at":"2018-01-02T11:45:00-07:00","devices_reporting":1,"wh_del":442},{"end_at":"2018-01-02T12:00:00-07:00","devices_reporting":1,"wh_del":418},{"end_at":"2018-01-02T12:15:00-07:00","devices_reporting":1,"wh_del":388},{"end_at":"2018-01-02T12:30:00-07:00","devices_reporting":1,"wh_del":354},{"end_at":"2018-01-02T12:45:00-07:00","devices_reporting":1,"wh_del":320},{"end_at":"2018-01-02T13:00:00-07:00","devices_reporting":1,"wh_del":283},{"end_at":"2018-01-02T13:15:00-07:00","devices_reporting":1,"wh_del":242},{"end_at":"2018-01-02T13:30:00-07:00","devices_reporting":1,"wh_del":204},{"end_at":"2018-01-02T13:45:00-07:00","devices_reporting":1,"wh_del":161},{"end_at":"2018-01-02T14:00:00-07:00","devices_reporting":1,"wh_del":122},{"end_at":"2018-01-02T14:15:00-07:00","devices_reporting":1,"wh_del":84},{"end_at":"2018-01-02T14:30:00-07:00","devices_reporting":1,"wh_del":54},{"end_at":"2018-01-02T14:45:00-07:00","devices_reporting":1,"wh_del":33},{"end_at":"2018-01-02T15:00:00-07:00","devices_reporting":1,"wh_del":29},{"end_at":"2018-01-02T15:15:00-07:00","devices_reporting":1,"wh_del":27},{"end_at":"2018-01-02T15:30:00-07:00","devices_reporting":1,"wh_del":25},{"end_at":"2018-01-02T15:45:00-07:00","devices_reporting":1,"wh_del":22},{"end_at":"2018-01-02T16:00:00-07:00","devices_reporting":1,"wh_del":19},{"end_at":"2018-01-02T16:15:00-07:00","devices_reporting":1,"wh_del":15},{"end_at":"2018-01-02T16:30:00-07:00","devices_reporting":1,"wh_del":7},{"end_at":"2018-01-02T16:45:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-02T17:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-02T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T07:30:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-03T07:45:00-07:00","devices_reporting":1,"wh_del":106},{"end_at":"2018-01-03T08:00:00-07:00","devices_reporting":1,"wh_del":225},{"end_at":"2018-01-03T08:15:00-07:00","devices_reporting":1,"wh_del":288},{"end_at":"2018-01-03T08:30:00-07:00","devices_reporting":1,"wh_del":336},{"end_at":"2018-01-03T08:45:00-07:00","devices_reporting":1,"wh_del":373},{"end_at":"2018-01-03T09:00:00-07:00","devices_reporting":1,"wh_del":403},{"end_at":"2018-01-03T09:15:00-07:00","devices_reporting":1,"wh_del":427},{"end_at":"2018-01-03T09:30:00-07:00","devices_reporting":1,"wh_del":450},{"end_at":"2018-01-03T09:45:00-07:00","devices_reporting":1,"wh_del":456},{"end_at":"2018-01-03T10:00:00-07:00","devices_reporting":1,"wh_del":472},{"end_at":"2018-01-03T10:15:00-07:00","devices_reporting":1,"wh_del":484},{"end_at":"2018-01-03T10:30:00-07:00","devices_reporting":1,"wh_del":488},{"end_at":"2018-01-03T10:45:00-07:00","devices_reporting":1,"wh_del":480},{"end_at":"2018-01-03T11:00:00-07:00","devices_reporting":1,"wh_del":478},{"end_at":"2018-01-03T11:15:00-07:00","devices_reporting":1,"wh_del":457},{"end_at":"2018-01-03T11:30:00-07:00","devices_reporting":1,"wh_del":440},{"end_at":"2018-01-03T11:45:00-07:00","devices_reporting":1,"wh_del":427},{"end_at":"2018-01-03T12:00:00-07:00","devices_reporting":1,"wh_del":405},{"end_at":"2018-01-03T12:15:00-07:00","devices_reporting":1,"wh_del":369},{"end_at":"2018-01-03T12:30:00-07:00","devices_reporting":1,"wh_del":352},{"end_at":"2018-01-03T12:45:00-07:00","devices_reporting":1,"wh_del":314},{"end_at":"2018-01-03T13:00:00-07:00","devices_reporting":1,"wh_del":284},{"end_at":"2018-01-03T13:15:00-07:00","devices_reporting":1,"wh_del":243},{"end_at":"2018-01-03T13:30:00-07:00","devices_reporting":1,"wh_del":197},{"end_at":"2018-01-03T13:45:00-07:00","devices_reporting":1,"wh_del":197},{"end_at":"2018-01-03T14:00:00-07:00","devices_reporting":1,"wh_del":160},{"end_at":"2018-01-03T14:15:00-07:00","devices_reporting":1,"wh_del":182},{"end_at":"2018-01-03T14:30:00-07:00","devices_reporting":1,"wh_del":139},{"end_at":"2018-01-03T14:45:00-07:00","devices_reporting":1,"wh_del":131},{"end_at":"2018-01-03T15:00:00-07:00","devices_reporting":1,"wh_del":132},{"end_at":"2018-01-03T15:15:00-07:00","devices_reporting":1,"wh_del":112},{"end_at":"2018-01-03T15:30:00-07:00","devices_reporting":1,"wh_del":87},{"end_at":"2018-01-03T15:45:00-07:00","devices_reporting":1,"wh_del":70},{"end_at":"2018-01-03T16:00:00-07:00","devices_reporting":1,"wh_del":45},{"end_at":"2018-01-03T16:15:00-07:00","devices_reporting":1,"wh_del":38},{"end_at":"2018-01-03T16:30:00-07:00","devices_reporting":1,"wh_del":27},{"end_at":"2018-01-03T16:45:00-07:00","devices_reporting":1,"wh_del":7},{"end_at":"2018-01-03T17:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-03T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T07:30:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-04T07:45:00-07:00","devices_reporting":1,"wh_del":107},{"end_at":"2018-01-04T08:00:00-07:00","devices_reporting":1,"wh_del":222},{"end_at":"2018-01-04T08:15:00-07:00","devices_reporting":1,"wh_del":290},{"end_at":"2018-01-04T08:30:00-07:00","devices_reporting":1,"wh_del":339},{"end_at":"2018-01-04T08:45:00-07:00","devices_reporting":1,"wh_del":380},{"end_at":"2018-01-04T09:00:00-07:00","devices_reporting":1,"wh_del":410},{"end_at":"2018-01-04T09:15:00-07:00","devices_reporting":1,"wh_del":435},{"end_at":"2018-01-04T09:30:00-07:00","devices_reporting":1,"wh_del":452},{"end_at":"2018-01-04T09:45:00-07:00","devices_reporting":1,"wh_del":465},{"end_at":"2018-01-04T10:00:00-07:00","devices_reporting":1,"wh_del":474},{"end_at":"2018-01-04T10:15:00-07:00","devices_reporting":1,"wh_del":483},{"end_at":"2018-01-04T10:30:00-07:00","devices_reporting":1,"wh_del":479},{"end_at":"2018-01-04T10:45:00-07:00","devices_reporting":1,"wh_del":473},{"end_at":"2018-01-04T11:00:00-07:00","devices_reporting":1,"wh_del":463},{"end_at":"2018-01-04T11:15:00-07:00","devices_reporting":1,"wh_del":454},{"end_at":"2018-01-04T11:30:00-07:00","devices_reporting":1,"wh_del":438},{"end_at":"2018-01-04T11:45:00-07:00","devices_reporting":1,"wh_del":420},{"end_at":"2018-01-04T12:00:00-07:00","devices_reporting":1,"wh_del":401},{"end_at":"2018-01-04T12:15:00-07:00","devices_reporting":1,"wh_del":377},{"end_at":"2018-01-04T12:30:00-07:00","devices_reporting":1,"wh_del":348},{"end_at":"2018-01-04T12:45:00-07:00","devices_reporting":1,"wh_del":316},{"end_at":"2018-01-04T13:00:00-07:00","devices_reporting":1,"wh_del":281},{"end_at":"2018-01-04T13:15:00-07:00","devices_reporting":1,"wh_del":242},{"end_at":"2018-01-04T13:30:00-07:00","devices_reporting":1,"wh_del":203},{"end_at":"2018-01-04T13:45:00-07:00","devices_reporting":1,"wh_del":161},{"end_at":"2018-01-04T14:00:00-07:00","devices_reporting":1,"wh_del":122},{"end_at":"2018-01-04T14:15:00-07:00","devices_reporting":1,"wh_del":86},{"end_at":"2018-01-04T14:30:00-07:00","devices_reporting":1,"wh_del":55},{"end_at":"2018-01-04T14:45:00-07:00","devices_reporting":1,"wh_del":34},{"end_at":"2018-01-04T15:00:00-07:00","devices_reporting":1,"wh_del":27},{"end_at":"2018-01-04T15:15:00-07:00","devices_reporting":1,"wh_del":26},{"end_at":"2018-01-04T15:30:00-07:00","devices_reporting":1,"wh_del":24},{"end_at":"2018-01-04T15:45:00-07:00","devices_reporting":1,"wh_del":21},{"end_at":"2018-01-04T16:00:00-07:00","devices_reporting":1,"wh_del":19},{"end_at":"2018-01-04T16:15:00-07:00","devices_reporting":1,"wh_del":14},{"end_at":"2018-01-04T16:30:00-07:00","devices_reporting":1,"wh_del":8},{"end_at":"2018-01-04T16:45:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-04T17:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-04T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T07:30:00-07:00","devices_reporting":1,"wh_del":6},{"end_at":"2018-01-05T07:45:00-07:00","devices_reporting":1,"wh_del":120},{"end_at":"2018-01-05T08:00:00-07:00","devices_reporting":1,"wh_del":98},{"end_at":"2018-01-05T08:15:00-07:00","devices_reporting":1,"wh_del":35},{"end_at":"2018-01-05T08:30:00-07:00","devices_reporting":1,"wh_del":64},{"end_at":"2018-01-05T08:45:00-07:00","devices_reporting":1,"wh_del":189},{"end_at":"2018-01-05T09:00:00-07:00","devices_reporting":1,"wh_del":152},{"end_at":"2018-01-05T09:15:00-07:00","devices_reporting":1,"wh_del":126},{"end_at":"2018-01-05T09:30:00-07:00","devices_reporting":1,"wh_del":127},{"end_at":"2018-01-05T09:45:00-07:00","devices_reporting":1,"wh_del":107},{"end_at":"2018-01-05T10:00:00-07:00","devices_reporting":1,"wh_del":133},{"end_at":"2018-01-05T10:15:00-07:00","devices_reporting":1,"wh_del":255},{"end_at":"2018-01-05T10:30:00-07:00","devices_reporting":1,"wh_del":255},{"end_at":"2018-01-05T10:45:00-07:00","devices_reporting":1,"wh_del":391},{"end_at":"2018-01-05T11:00:00-07:00","devices_reporting":1,"wh_del":202},{"end_at":"2018-01-05T11:15:00-07:00","devices_reporting":1,"wh_del":160},{"end_at":"2018-01-05T11:30:00-07:00","devices_reporting":1,"wh_del":153},{"end_at":"2018-01-05T11:45:00-07:00","devices_reporting":1,"wh_del":153},{"end_at":"2018-01-05T12:00:00-07:00","devices_reporting":1,"wh_del":156},{"end_at":"2018-01-05T12:15:00-07:00","devices_reporting":1,"wh_del":166},{"end_at":"2018-01-05T12:30:00-07:00","devices_reporting":1,"wh_del":163},{"end_at":"2018-01-05T12:45:00-07:00","devices_reporting":1,"wh_del":182},{"end_at":"2018-01-05T13:00:00-07:00","devices_reporting":1,"wh_del":147},{"end_at":"2018-01-05T13:15:00-07:00","devices_reporting":1,"wh_del":132},{"end_at":"2018-01-05T13:30:00-07:00","devices_reporting":1,"wh_del":99},{"end_at":"2018-01-05T13:45:00-07:00","devices_reporting":1,"wh_del":74},{"end_at":"2018-01-05T14:00:00-07:00","devices_reporting":1,"wh_del":87},{"end_at":"2018-01-05T14:15:00-07:00","devices_reporting":1,"wh_del":130},{"end_at":"2018-01-05T14:30:00-07:00","devices_reporting":1,"wh_del":118},{"end_at":"2018-01-05T14:45:00-07:00","devices_reporting":1,"wh_del":89},{"end_at":"2018-01-05T15:00:00-07:00","devices_reporting":1,"wh_del":96},{"end_at":"2018-01-05T15:15:00-07:00","devices_reporting":1,"wh_del":71},{"end_at":"2018-01-05T15:30:00-07:00","devices_reporting":1,"wh_del":58},{"end_at":"2018-01-05T15:45:00-07:00","devices_reporting":1,"wh_del":65},{"end_at":"2018-01-05T16:00:00-07:00","devices_reporting":1,"wh_del":50},{"end_at":"2018-01-05T16:15:00-07:00","devices_reporting":1,"wh_del":34},{"end_at":"2018-01-05T16:30:00-07:00","devices_reporting":1,"wh_del":33},{"end_at":"2018-01-05T16:45:00-07:00","devices_reporting":1,"wh_del":12},{"end_at":"2018-01-05T17:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-05T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-05T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T07:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T07:45:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-06T08:00:00-07:00","devices_reporting":1,"wh_del":20},{"end_at":"2018-01-06T08:15:00-07:00","devices_reporting":1,"wh_del":41},{"end_at":"2018-01-06T08:30:00-07:00","devices_reporting":1,"wh_del":74},{"end_at":"2018-01-06T08:45:00-07:00","devices_reporting":1,"wh_del":94},{"end_at":"2018-01-06T09:00:00-07:00","devices_reporting":1,"wh_del":92},{"end_at":"2018-01-06T09:15:00-07:00","devices_reporting":1,"wh_del":115},{"end_at":"2018-01-06T09:30:00-07:00","devices_reporting":1,"wh_del":157},{"end_at":"2018-01-06T09:45:00-07:00","devices_reporting":1,"wh_del":270},{"end_at":"2018-01-06T10:00:00-07:00","devices_reporting":1,"wh_del":276},{"end_at":"2018-01-06T10:15:00-07:00","devices_reporting":1,"wh_del":219},{"end_at":"2018-01-06T10:30:00-07:00","devices_reporting":1,"wh_del":198},{"end_at":"2018-01-06T10:45:00-07:00","devices_reporting":1,"wh_del":297},{"end_at":"2018-01-06T11:00:00-07:00","devices_reporting":1,"wh_del":312},{"end_at":"2018-01-06T11:15:00-07:00","devices_reporting":1,"wh_del":346},{"end_at":"2018-01-06T11:30:00-07:00","devices_reporting":1,"wh_del":294},{"end_at":"2018-01-06T11:45:00-07:00","devices_reporting":1,"wh_del":372},{"end_at":"2018-01-06T12:00:00-07:00","devices_reporting":1,"wh_del":387},{"end_at":"2018-01-06T12:15:00-07:00","devices_reporting":1,"wh_del":354},{"end_at":"2018-01-06T12:30:00-07:00","devices_reporting":1,"wh_del":337},{"end_at":"2018-01-06T12:45:00-07:00","devices_reporting":1,"wh_del":304},{"end_at":"2018-01-06T13:00:00-07:00","devices_reporting":1,"wh_del":305},{"end_at":"2018-01-06T13:15:00-07:00","devices_reporting":1,"wh_del":263},{"end_at":"2018-01-06T13:30:00-07:00","devices_reporting":1,"wh_del":230},{"end_at":"2018-01-06T13:45:00-07:00","devices_reporting":1,"wh_del":178},{"end_at":"2018-01-06T14:00:00-07:00","devices_reporting":1,"wh_del":137},{"end_at":"2018-01-06T14:15:00-07:00","devices_reporting":1,"wh_del":97},{"end_at":"2018-01-06T14:30:00-07:00","devices_reporting":1,"wh_del":98},{"end_at":"2018-01-06T14:45:00-07:00","devices_reporting":1,"wh_del":60},{"end_at":"2018-01-06T15:00:00-07:00","devices_reporting":1,"wh_del":43},{"end_at":"2018-01-06T15:15:00-07:00","devices_reporting":1,"wh_del":44},{"end_at":"2018-01-06T15:30:00-07:00","devices_reporting":1,"wh_del":52},{"end_at":"2018-01-06T15:45:00-07:00","devices_reporting":1,"wh_del":40},{"end_at":"2018-01-06T16:00:00-07:00","devices_reporting":1,"wh_del":35},{"end_at":"2018-01-06T16:15:00-07:00","devices_reporting":1,"wh_del":27},{"end_at":"2018-01-06T16:30:00-07:00","devices_reporting":1,"wh_del":16},{"end_at":"2018-01-06T16:45:00-07:00","devices_reporting":1,"wh_del":7},{"end_at":"2018-01-06T17:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-06T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T07:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T07:45:00-07:00","devices_reporting":1,"wh_del":5},{"end_at":"2018-01-07T08:00:00-07:00","devices_reporting":1,"wh_del":136},{"end_at":"2018-01-07T08:15:00-07:00","devices_reporting":1,"wh_del":206},{"end_at":"2018-01-07T08:30:00-07:00","devices_reporting":1,"wh_del":317},{"end_at":"2018-01-07T08:45:00-07:00","devices_reporting":1,"wh_del":363},{"end_at":"2018-01-07T09:00:00-07:00","devices_reporting":1,"wh_del":396},{"end_at":"2018-01-07T09:15:00-07:00","devices_reporting":1,"wh_del":425},{"end_at":"2018-01-07T09:30:00-07:00","devices_reporting":1,"wh_del":478},{"end_at":"2018-01-07T09:45:00-07:00","devices_reporting":1,"wh_del":338},{"end_at":"2018-01-07T10:00:00-07:00","devices_reporting":1,"wh_del":424},{"end_at":"2018-01-07T10:15:00-07:00","devices_reporting":1,"wh_del":485},{"end_at":"2018-01-07T10:30:00-07:00","devices_reporting":1,"wh_del":388},{"end_at":"2018-01-07T10:45:00-07:00","devices_reporting":1,"wh_del":437},{"end_at":"2018-01-07T11:00:00-07:00","devices_reporting":1,"wh_del":462},{"end_at":"2018-01-07T11:15:00-07:00","devices_reporting":1,"wh_del":464},{"end_at":"2018-01-07T11:30:00-07:00","devices_reporting":1,"wh_del":447},{"end_at":"2018-01-07T11:45:00-07:00","devices_reporting":1,"wh_del":428},{"end_at":"2018-01-07T12:00:00-07:00","devices_reporting":1,"wh_del":402},{"end_at":"2018-01-07T12:15:00-07:00","devices_reporting":1,"wh_del":381},{"end_at":"2018-01-07T12:30:00-07:00","devices_reporting":1,"wh_del":350},{"end_at":"2018-01-07T12:45:00-07:00","devices_reporting":1,"wh_del":319},{"end_at":"2018-01-07T13:00:00-07:00","devices_reporting":1,"wh_del":285},{"end_at":"2018-01-07T13:15:00-07:00","devices_reporting":1,"wh_del":244},{"end_at":"2018-01-07T13:30:00-07:00","devices_reporting":1,"wh_del":209},{"end_at":"2018-01-07T13:45:00-07:00","devices_reporting":1,"wh_del":166},{"end_at":"2018-01-07T14:00:00-07:00","devices_reporting":1,"wh_del":130},{"end_at":"2018-01-07T14:15:00-07:00","devices_reporting":1,"wh_del":91},{"end_at":"2018-01-07T14:30:00-07:00","devices_reporting":1,"wh_del":58},{"end_at":"2018-01-07T14:45:00-07:00","devices_reporting":1,"wh_del":35},{"end_at":"2018-01-07T15:00:00-07:00","devices_reporting":1,"wh_del":27},{"end_at":"2018-01-07T15:15:00-07:00","devices_reporting":1,"wh_del":25},{"end_at":"2018-01-07T15:30:00-07:00","devices_reporting":1,"wh_del":24},{"end_at":"2018-01-07T15:45:00-07:00","devices_reporting":1,"wh_del":21},{"end_at":"2018-01-07T16:00:00-07:00","devices_reporting":1,"wh_del":19},{"end_at":"2018-01-07T16:15:00-07:00","devices_reporting":1,"wh_del":16},{"end_at":"2018-01-07T16:30:00-07:00","devices_reporting":1,"wh_del":9},{"end_at":"2018-01-07T16:45:00-07:00","devices_reporting":1,"wh_del":3},{"end_at":"2018-01-07T17:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-07T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T07:15:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-08T07:30:00-07:00","devices_reporting":1,"wh_del":4},{"end_at":"2018-01-08T07:45:00-07:00","devices_reporting":1,"wh_del":33},{"end_at":"2018-01-08T08:00:00-07:00","devices_reporting":1,"wh_del":59},{"end_at":"2018-01-08T08:15:00-07:00","devices_reporting":1,"wh_del":64},{"end_at":"2018-01-08T08:30:00-07:00","devices_reporting":1,"wh_del":50},{"end_at":"2018-01-08T08:45:00-07:00","devices_reporting":1,"wh_del":57},{"end_at":"2018-01-08T09:00:00-07:00","devices_reporting":1,"wh_del":82},{"end_at":"2018-01-08T09:15:00-07:00","devices_reporting":1,"wh_del":93},{"end_at":"2018-01-08T09:30:00-07:00","devices_reporting":1,"wh_del":112},{"end_at":"2018-01-08T09:45:00-07:00","devices_reporting":1,"wh_del":125},{"end_at":"2018-01-08T10:00:00-07:00","devices_reporting":1,"wh_del":168},{"end_at":"2018-01-08T10:15:00-07:00","devices_reporting":1,"wh_del":173},{"end_at":"2018-01-08T10:30:00-07:00","devices_reporting":1,"wh_del":172},{"end_at":"2018-01-08T10:45:00-07:00","devices_reporting":1,"wh_del":177},{"end_at":"2018-01-08T11:00:00-07:00","devices_reporting":1,"wh_del":180},{"end_at":"2018-01-08T11:15:00-07:00","devices_reporting":1,"wh_del":177},{"end_at":"2018-01-08T11:30:00-07:00","devices_reporting":1,"wh_del":168},{"end_at":"2018-01-08T11:45:00-07:00","devices_reporting":1,"wh_del":176},{"end_at":"2018-01-08T12:00:00-07:00","devices_reporting":1,"wh_del":169},{"end_at":"2018-01-08T12:15:00-07:00","devices_reporting":1,"wh_del":140},{"end_at":"2018-01-08T12:30:00-07:00","devices_reporting":1,"wh_del":107},{"end_at":"2018-01-08T12:45:00-07:00","devices_reporting":1,"wh_del":106},{"end_at":"2018-01-08T13:00:00-07:00","devices_reporting":1,"wh_del":115},{"end_at":"2018-01-08T13:15:00-07:00","devices_reporting":1,"wh_del":120},{"end_at":"2018-01-08T13:30:00-07:00","devices_reporting":1,"wh_del":119},{"end_at":"2018-01-08T13:45:00-07:00","devices_reporting":1,"wh_del":108},{"end_at":"2018-01-08T14:00:00-07:00","devices_reporting":1,"wh_del":98},{"end_at":"2018-01-08T14:15:00-07:00","devices_reporting":1,"wh_del":73},{"end_at":"2018-01-08T14:30:00-07:00","devices_reporting":1,"wh_del":65},{"end_at":"2018-01-08T14:45:00-07:00","devices_reporting":1,"wh_del":61},{"end_at":"2018-01-08T15:00:00-07:00","devices_reporting":1,"wh_del":55},{"end_at":"2018-01-08T15:15:00-07:00","devices_reporting":1,"wh_del":57},{"end_at":"2018-01-08T15:30:00-07:00","devices_reporting":1,"wh_del":74},{"end_at":"2018-01-08T15:45:00-07:00","devices_reporting":1,"wh_del":56},{"end_at":"2018-01-08T16:00:00-07:00","devices_reporting":1,"wh_del":45},{"end_at":"2018-01-08T16:15:00-07:00","devices_reporting":1,"wh_del":36},{"end_at":"2018-01-08T16:30:00-07:00","devices_reporting":1,"wh_del":19},{"end_at":"2018-01-08T16:45:00-07:00","devices_reporting":1,"wh_del":6},{"end_at":"2018-01-08T17:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-08T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-08T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T07:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T07:45:00-07:00","devices_reporting":1,"wh_del":114},{"end_at":"2018-01-09T08:00:00-07:00","devices_reporting":1,"wh_del":215},{"end_at":"2018-01-09T08:15:00-07:00","devices_reporting":1,"wh_del":275},{"end_at":"2018-01-09T08:30:00-07:00","devices_reporting":1,"wh_del":326},{"end_at":"2018-01-09T08:45:00-07:00","devices_reporting":1,"wh_del":363},{"end_at":"2018-01-09T09:00:00-07:00","devices_reporting":1,"wh_del":384},{"end_at":"2018-01-09T09:15:00-07:00","devices_reporting":1,"wh_del":372},{"end_at":"2018-01-09T09:30:00-07:00","devices_reporting":1,"wh_del":453},{"end_at":"2018-01-09T09:45:00-07:00","devices_reporting":1,"wh_del":412},{"end_at":"2018-01-09T10:00:00-07:00","devices_reporting":1,"wh_del":461},{"end_at":"2018-01-09T10:15:00-07:00","devices_reporting":1,"wh_del":465},{"end_at":"2018-01-09T10:30:00-07:00","devices_reporting":1,"wh_del":464},{"end_at":"2018-01-09T10:45:00-07:00","devices_reporting":1,"wh_del":446},{"end_at":"2018-01-09T11:00:00-07:00","devices_reporting":1,"wh_del":273},{"end_at":"2018-01-09T11:15:00-07:00","devices_reporting":1,"wh_del":284},{"end_at":"2018-01-09T11:30:00-07:00","devices_reporting":1,"wh_del":373},{"end_at":"2018-01-09T11:45:00-07:00","devices_reporting":1,"wh_del":411},{"end_at":"2018-01-09T12:00:00-07:00","devices_reporting":1,"wh_del":325},{"end_at":"2018-01-09T12:15:00-07:00","devices_reporting":1,"wh_del":334},{"end_at":"2018-01-09T12:30:00-07:00","devices_reporting":1,"wh_del":359},{"end_at":"2018-01-09T12:45:00-07:00","devices_reporting":1,"wh_del":310},{"end_at":"2018-01-09T13:00:00-07:00","devices_reporting":1,"wh_del":273},{"end_at":"2018-01-09T13:15:00-07:00","devices_reporting":1,"wh_del":237},{"end_at":"2018-01-09T13:30:00-07:00","devices_reporting":1,"wh_del":176},{"end_at":"2018-01-09T13:45:00-07:00","devices_reporting":1,"wh_del":162},{"end_at":"2018-01-09T14:00:00-07:00","devices_reporting":1,"wh_del":125},{"end_at":"2018-01-09T14:15:00-07:00","devices_reporting":1,"wh_del":89},{"end_at":"2018-01-09T14:30:00-07:00","devices_reporting":1,"wh_del":60},{"end_at":"2018-01-09T14:45:00-07:00","devices_reporting":1,"wh_del":36},{"end_at":"2018-01-09T15:00:00-07:00","devices_reporting":1,"wh_del":26},{"end_at":"2018-01-09T15:15:00-07:00","devices_reporting":1,"wh_del":25},{"end_at":"2018-01-09T15:30:00-07:00","devices_reporting":1,"wh_del":26},{"end_at":"2018-01-09T15:45:00-07:00","devices_reporting":1,"wh_del":21},{"end_at":"2018-01-09T16:00:00-07:00","devices_reporting":1,"wh_del":20},{"end_at":"2018-01-09T16:15:00-07:00","devices_reporting":1,"wh_del":14},{"end_at":"2018-01-09T16:30:00-07:00","devices_reporting":1,"wh_del":11},{"end_at":"2018-01-09T16:45:00-07:00","devices_reporting":1,"wh_del":4},{"end_at":"2018-01-09T17:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-09T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-09T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T07:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T07:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T08:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-10T08:15:00-07:00","devices_reporting":1,"wh_del":4},{"end_at":"2018-01-10T08:30:00-07:00","devices_reporting":1,"wh_del":10},{"end_at":"2018-01-10T08:45:00-07:00","devices_reporting":1,"wh_del":9},{"end_at":"2018-01-10T09:00:00-07:00","devices_reporting":1,"wh_del":14},{"end_at":"2018-01-10T09:15:00-07:00","devices_reporting":1,"wh_del":24},{"end_at":"2018-01-10T09:30:00-07:00","devices_reporting":1,"wh_del":36},{"end_at":"2018-01-10T09:45:00-07:00","devices_reporting":1,"wh_del":49},{"end_at":"2018-01-10T10:00:00-07:00","devices_reporting":1,"wh_del":63},{"end_at":"2018-01-10T10:15:00-07:00","devices_reporting":1,"wh_del":102},{"end_at":"2018-01-10T10:30:00-07:00","devices_reporting":1,"wh_del":137},{"end_at":"2018-01-10T10:45:00-07:00","devices_reporting":1,"wh_del":146},{"end_at":"2018-01-10T11:00:00-07:00","devices_reporting":1,"wh_del":145},{"end_at":"2018-01-10T11:15:00-07:00","devices_reporting":1,"wh_del":176},{"end_at":"2018-01-10T11:30:00-07:00","devices_reporting":1,"wh_del":169},{"end_at":"2018-01-10T11:45:00-07:00","devices_reporting":1,"wh_del":182},{"end_at":"2018-01-10T12:00:00-07:00","devices_reporting":1,"wh_del":190},{"end_at":"2018-01-10T12:15:00-07:00","devices_reporting":1,"wh_del":233},{"end_at":"2018-01-10T12:30:00-07:00","devices_reporting":1,"wh_del":163},{"end_at":"2018-01-10T12:45:00-07:00","devices_reporting":1,"wh_del":180},{"end_at":"2018-01-10T13:00:00-07:00","devices_reporting":1,"wh_del":194},{"end_at":"2018-01-10T13:15:00-07:00","devices_reporting":1,"wh_del":219},{"end_at":"2018-01-10T13:30:00-07:00","devices_reporting":1,"wh_del":253},{"end_at":"2018-01-10T13:45:00-07:00","devices_reporting":1,"wh_del":295},{"end_at":"2018-01-10T14:00:00-07:00","devices_reporting":1,"wh_del":194},{"end_at":"2018-01-10T14:15:00-07:00","devices_reporting":1,"wh_del":147},{"end_at":"2018-01-10T14:30:00-07:00","devices_reporting":1,"wh_del":118},{"end_at":"2018-01-10T14:45:00-07:00","devices_reporting":1,"wh_del":111},{"end_at":"2018-01-10T15:00:00-07:00","devices_reporting":1,"wh_del":78},{"end_at":"2018-01-10T15:15:00-07:00","devices_reporting":1,"wh_del":44},{"end_at":"2018-01-10T15:30:00-07:00","devices_reporting":1,"wh_del":23},{"end_at":"2018-01-10T15:45:00-07:00","devices_reporting":1,"wh_del":13},{"end_at":"2018-01-10T16:00:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-10T16:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T16:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T16:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T17:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-10T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T07:30:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-11T07:45:00-07:00","devices_reporting":1,"wh_del":7},{"end_at":"2018-01-11T08:00:00-07:00","devices_reporting":1,"wh_del":26},{"end_at":"2018-01-11T08:15:00-07:00","devices_reporting":1,"wh_del":43},{"end_at":"2018-01-11T08:30:00-07:00","devices_reporting":1,"wh_del":180},{"end_at":"2018-01-11T08:45:00-07:00","devices_reporting":1,"wh_del":395},{"end_at":"2018-01-11T09:00:00-07:00","devices_reporting":1,"wh_del":425},{"end_at":"2018-01-11T09:15:00-07:00","devices_reporting":1,"wh_del":452},{"end_at":"2018-01-11T09:30:00-07:00","devices_reporting":1,"wh_del":476},{"end_at":"2018-01-11T09:45:00-07:00","devices_reporting":1,"wh_del":489},{"end_at":"2018-01-11T10:00:00-07:00","devices_reporting":1,"wh_del":497},{"end_at":"2018-01-11T10:15:00-07:00","devices_reporting":1,"wh_del":504},{"end_at":"2018-01-11T10:30:00-07:00","devices_reporting":1,"wh_del":511},{"end_at":"2018-01-11T10:45:00-07:00","devices_reporting":1,"wh_del":510},{"end_at":"2018-01-11T11:00:00-07:00","devices_reporting":1,"wh_del":508},{"end_at":"2018-01-11T11:15:00-07:00","devices_reporting":1,"wh_del":495},{"end_at":"2018-01-11T11:30:00-07:00","devices_reporting":1,"wh_del":477},{"end_at":"2018-01-11T11:45:00-07:00","devices_reporting":1,"wh_del":461},{"end_at":"2018-01-11T12:00:00-07:00","devices_reporting":1,"wh_del":438},{"end_at":"2018-01-11T12:15:00-07:00","devices_reporting":1,"wh_del":409},{"end_at":"2018-01-11T12:30:00-07:00","devices_reporting":1,"wh_del":381},{"end_at":"2018-01-11T12:45:00-07:00","devices_reporting":1,"wh_del":348},{"end_at":"2018-01-11T13:00:00-07:00","devices_reporting":1,"wh_del":315},{"end_at":"2018-01-11T13:15:00-07:00","devices_reporting":1,"wh_del":275},{"end_at":"2018-01-11T13:30:00-07:00","devices_reporting":1,"wh_del":234},{"end_at":"2018-01-11T13:45:00-07:00","devices_reporting":1,"wh_del":189},{"end_at":"2018-01-11T14:00:00-07:00","devices_reporting":1,"wh_del":145},{"end_at":"2018-01-11T14:15:00-07:00","devices_reporting":1,"wh_del":106},{"end_at":"2018-01-11T14:30:00-07:00","devices_reporting":1,"wh_del":70},{"end_at":"2018-01-11T14:45:00-07:00","devices_reporting":1,"wh_del":43},{"end_at":"2018-01-11T15:00:00-07:00","devices_reporting":1,"wh_del":30},{"end_at":"2018-01-11T15:15:00-07:00","devices_reporting":1,"wh_del":28},{"end_at":"2018-01-11T15:30:00-07:00","devices_reporting":1,"wh_del":26},{"end_at":"2018-01-11T15:45:00-07:00","devices_reporting":1,"wh_del":24},{"end_at":"2018-01-11T16:00:00-07:00","devices_reporting":1,"wh_del":22},{"end_at":"2018-01-11T16:15:00-07:00","devices_reporting":1,"wh_del":16},{"end_at":"2018-01-11T16:30:00-07:00","devices_reporting":1,"wh_del":12},{"end_at":"2018-01-11T16:45:00-07:00","devices_reporting":1,"wh_del":5},{"end_at":"2018-01-11T17:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-11T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-11T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T07:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T07:45:00-07:00","devices_reporting":1,"wh_del":3},{"end_at":"2018-01-12T08:00:00-07:00","devices_reporting":1,"wh_del":29},{"end_at":"2018-01-12T08:15:00-07:00","devices_reporting":1,"wh_del":54},{"end_at":"2018-01-12T08:30:00-07:00","devices_reporting":1,"wh_del":125},{"end_at":"2018-01-12T08:45:00-07:00","devices_reporting":1,"wh_del":92},{"end_at":"2018-01-12T09:00:00-07:00","devices_reporting":1,"wh_del":100},{"end_at":"2018-01-12T09:15:00-07:00","devices_reporting":1,"wh_del":101},{"end_at":"2018-01-12T09:30:00-07:00","devices_reporting":1,"wh_del":94},{"end_at":"2018-01-12T09:45:00-07:00","devices_reporting":1,"wh_del":81},{"end_at":"2018-01-12T10:00:00-07:00","devices_reporting":1,"wh_del":100},{"end_at":"2018-01-12T10:15:00-07:00","devices_reporting":1,"wh_del":120},{"end_at":"2018-01-12T10:30:00-07:00","devices_reporting":1,"wh_del":131},{"end_at":"2018-01-12T10:45:00-07:00","devices_reporting":1,"wh_del":132},{"end_at":"2018-01-12T11:00:00-07:00","devices_reporting":1,"wh_del":147},{"end_at":"2018-01-12T11:15:00-07:00","devices_reporting":1,"wh_del":129},{"end_at":"2018-01-12T11:30:00-07:00","devices_reporting":1,"wh_del":96},{"end_at":"2018-01-12T11:45:00-07:00","devices_reporting":1,"wh_del":76},{"end_at":"2018-01-12T12:00:00-07:00","devices_reporting":1,"wh_del":85},{"end_at":"2018-01-12T12:15:00-07:00","devices_reporting":1,"wh_del":197},{"end_at":"2018-01-12T12:30:00-07:00","devices_reporting":1,"wh_del":190},{"end_at":"2018-01-12T12:45:00-07:00","devices_reporting":1,"wh_del":174},{"end_at":"2018-01-12T13:00:00-07:00","devices_reporting":1,"wh_del":173},{"end_at":"2018-01-12T13:15:00-07:00","devices_reporting":1,"wh_del":161},{"end_at":"2018-01-12T13:30:00-07:00","devices_reporting":1,"wh_del":139},{"end_at":"2018-01-12T13:45:00-07:00","devices_reporting":1,"wh_del":173},{"end_at":"2018-01-12T14:00:00-07:00","devices_reporting":1,"wh_del":163},{"end_at":"2018-01-12T14:15:00-07:00","devices_reporting":1,"wh_del":129},{"end_at":"2018-01-12T14:30:00-07:00","devices_reporting":1,"wh_del":154},{"end_at":"2018-01-12T14:45:00-07:00","devices_reporting":1,"wh_del":108},{"end_at":"2018-01-12T15:00:00-07:00","devices_reporting":1,"wh_del":63},{"end_at":"2018-01-12T15:15:00-07:00","devices_reporting":1,"wh_del":54},{"end_at":"2018-01-12T15:30:00-07:00","devices_reporting":1,"wh_del":62},{"end_at":"2018-01-12T15:45:00-07:00","devices_reporting":1,"wh_del":100},{"end_at":"2018-01-12T16:00:00-07:00","devices_reporting":1,"wh_del":36},{"end_at":"2018-01-12T16:15:00-07:00","devices_reporting":1,"wh_del":29},{"end_at":"2018-01-12T16:30:00-07:00","devices_reporting":1,"wh_del":24},{"end_at":"2018-01-12T16:45:00-07:00","devices_reporting":1,"wh_del":7},{"end_at":"2018-01-12T17:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-12T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T07:30:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-13T07:45:00-07:00","devices_reporting":1,"wh_del":55},{"end_at":"2018-01-13T08:00:00-07:00","devices_reporting":1,"wh_del":17},{"end_at":"2018-01-13T08:15:00-07:00","devices_reporting":1,"wh_del":40},{"end_at":"2018-01-13T08:30:00-07:00","devices_reporting":1,"wh_del":40},{"end_at":"2018-01-13T08:45:00-07:00","devices_reporting":1,"wh_del":137},{"end_at":"2018-01-13T09:00:00-07:00","devices_reporting":1,"wh_del":300},{"end_at":"2018-01-13T09:15:00-07:00","devices_reporting":1,"wh_del":427},{"end_at":"2018-01-13T09:30:00-07:00","devices_reporting":1,"wh_del":432},{"end_at":"2018-01-13T09:45:00-07:00","devices_reporting":1,"wh_del":319},{"end_at":"2018-01-13T10:00:00-07:00","devices_reporting":1,"wh_del":186},{"end_at":"2018-01-13T10:15:00-07:00","devices_reporting":1,"wh_del":229},{"end_at":"2018-01-13T10:30:00-07:00","devices_reporting":1,"wh_del":211},{"end_at":"2018-01-13T10:45:00-07:00","devices_reporting":1,"wh_del":236},{"end_at":"2018-01-13T11:00:00-07:00","devices_reporting":1,"wh_del":276},{"end_at":"2018-01-13T11:15:00-07:00","devices_reporting":1,"wh_del":481},{"end_at":"2018-01-13T11:30:00-07:00","devices_reporting":1,"wh_del":462},{"end_at":"2018-01-13T11:45:00-07:00","devices_reporting":1,"wh_del":449},{"end_at":"2018-01-13T12:00:00-07:00","devices_reporting":1,"wh_del":423},{"end_at":"2018-01-13T12:15:00-07:00","devices_reporting":1,"wh_del":400},{"end_at":"2018-01-13T12:30:00-07:00","devices_reporting":1,"wh_del":369},{"end_at":"2018-01-13T12:45:00-07:00","devices_reporting":1,"wh_del":401},{"end_at":"2018-01-13T13:00:00-07:00","devices_reporting":1,"wh_del":265},{"end_at":"2018-01-13T13:15:00-07:00","devices_reporting":1,"wh_del":272},{"end_at":"2018-01-13T13:30:00-07:00","devices_reporting":1,"wh_del":296},{"end_at":"2018-01-13T13:45:00-07:00","devices_reporting":1,"wh_del":209},{"end_at":"2018-01-13T14:00:00-07:00","devices_reporting":1,"wh_del":167},{"end_at":"2018-01-13T14:15:00-07:00","devices_reporting":1,"wh_del":138},{"end_at":"2018-01-13T14:30:00-07:00","devices_reporting":1,"wh_del":135},{"end_at":"2018-01-13T14:45:00-07:00","devices_reporting":1,"wh_del":111},{"end_at":"2018-01-13T15:00:00-07:00","devices_reporting":1,"wh_del":82},{"end_at":"2018-01-13T15:15:00-07:00","devices_reporting":1,"wh_del":70},{"end_at":"2018-01-13T15:30:00-07:00","devices_reporting":1,"wh_del":38},{"end_at":"2018-01-13T15:45:00-07:00","devices_reporting":1,"wh_del":23},{"end_at":"2018-01-13T16:00:00-07:00","devices_reporting":1,"wh_del":18},{"end_at":"2018-01-13T16:15:00-07:00","devices_reporting":1,"wh_del":30},{"end_at":"2018-01-13T16:30:00-07:00","devices_reporting":1,"wh_del":23},{"end_at":"2018-01-13T16:45:00-07:00","devices_reporting":1,"wh_del":5},{"end_at":"2018-01-13T17:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-13T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-13T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T07:30:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-14T07:45:00-07:00","devices_reporting":1,"wh_del":121},{"end_at":"2018-01-14T08:00:00-07:00","devices_reporting":1,"wh_del":210},{"end_at":"2018-01-14T08:15:00-07:00","devices_reporting":1,"wh_del":282},{"end_at":"2018-01-14T08:30:00-07:00","devices_reporting":1,"wh_del":335},{"end_at":"2018-01-14T08:45:00-07:00","devices_reporting":1,"wh_del":374},{"end_at":"2018-01-14T09:00:00-07:00","devices_reporting":1,"wh_del":426},{"end_at":"2018-01-14T09:15:00-07:00","devices_reporting":1,"wh_del":455},{"end_at":"2018-01-14T09:30:00-07:00","devices_reporting":1,"wh_del":474},{"end_at":"2018-01-14T09:45:00-07:00","devices_reporting":1,"wh_del":487},{"end_at":"2018-01-14T10:00:00-07:00","devices_reporting":1,"wh_del":495},{"end_at":"2018-01-14T10:15:00-07:00","devices_reporting":1,"wh_del":502},{"end_at":"2018-01-14T10:30:00-07:00","devices_reporting":1,"wh_del":496},{"end_at":"2018-01-14T10:45:00-07:00","devices_reporting":1,"wh_del":498},{"end_at":"2018-01-14T11:00:00-07:00","devices_reporting":1,"wh_del":487},{"end_at":"2018-01-14T11:15:00-07:00","devices_reporting":1,"wh_del":474},{"end_at":"2018-01-14T11:30:00-07:00","devices_reporting":1,"wh_del":456},{"end_at":"2018-01-14T11:45:00-07:00","devices_reporting":1,"wh_del":440},{"end_at":"2018-01-14T12:00:00-07:00","devices_reporting":1,"wh_del":418},{"end_at":"2018-01-14T12:15:00-07:00","devices_reporting":1,"wh_del":399},{"end_at":"2018-01-14T12:30:00-07:00","devices_reporting":1,"wh_del":369},{"end_at":"2018-01-14T12:45:00-07:00","devices_reporting":1,"wh_del":342},{"end_at":"2018-01-14T13:00:00-07:00","devices_reporting":1,"wh_del":311},{"end_at":"2018-01-14T13:15:00-07:00","devices_reporting":1,"wh_del":269},{"end_at":"2018-01-14T13:30:00-07:00","devices_reporting":1,"wh_del":230},{"end_at":"2018-01-14T13:45:00-07:00","devices_reporting":1,"wh_del":162},{"end_at":"2018-01-14T14:00:00-07:00","devices_reporting":1,"wh_del":179},{"end_at":"2018-01-14T14:15:00-07:00","devices_reporting":1,"wh_del":150},{"end_at":"2018-01-14T14:30:00-07:00","devices_reporting":1,"wh_del":133},{"end_at":"2018-01-14T14:45:00-07:00","devices_reporting":1,"wh_del":103},{"end_at":"2018-01-14T15:00:00-07:00","devices_reporting":1,"wh_del":88},{"end_at":"2018-01-14T15:15:00-07:00","devices_reporting":1,"wh_del":60},{"end_at":"2018-01-14T15:30:00-07:00","devices_reporting":1,"wh_del":51},{"end_at":"2018-01-14T15:45:00-07:00","devices_reporting":1,"wh_del":37},{"end_at":"2018-01-14T16:00:00-07:00","devices_reporting":1,"wh_del":27},{"end_at":"2018-01-14T16:15:00-07:00","devices_reporting":1,"wh_del":20},{"end_at":"2018-01-14T16:30:00-07:00","devices_reporting":1,"wh_del":17},{"end_at":"2018-01-14T16:45:00-07:00","devices_reporting":1,"wh_del":9},{"end_at":"2018-01-14T17:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-14T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-14T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T07:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T07:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T08:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-15T08:15:00-07:00","devices_reporting":1,"wh_del":5},{"end_at":"2018-01-15T08:30:00-07:00","devices_reporting":1,"wh_del":14},{"end_at":"2018-01-15T08:45:00-07:00","devices_reporting":1,"wh_del":19},{"end_at":"2018-01-15T09:00:00-07:00","devices_reporting":1,"wh_del":24},{"end_at":"2018-01-15T09:15:00-07:00","devices_reporting":1,"wh_del":32},{"end_at":"2018-01-15T09:30:00-07:00","devices_reporting":1,"wh_del":43},{"end_at":"2018-01-15T09:45:00-07:00","devices_reporting":1,"wh_del":57},{"end_at":"2018-01-15T10:00:00-07:00","devices_reporting":1,"wh_del":66},{"end_at":"2018-01-15T10:15:00-07:00","devices_reporting":1,"wh_del":96},{"end_at":"2018-01-15T10:30:00-07:00","devices_reporting":1,"wh_del":113},{"end_at":"2018-01-15T10:45:00-07:00","devices_reporting":1,"wh_del":129},{"end_at":"2018-01-15T11:00:00-07:00","devices_reporting":1,"wh_del":191},{"end_at":"2018-01-15T11:15:00-07:00","devices_reporting":1,"wh_del":227},{"end_at":"2018-01-15T11:30:00-07:00","devices_reporting":1,"wh_del":234},{"end_at":"2018-01-15T11:45:00-07:00","devices_reporting":1,"wh_del":226},{"end_at":"2018-01-15T12:00:00-07:00","devices_reporting":1,"wh_del":211},{"end_at":"2018-01-15T12:15:00-07:00","devices_reporting":1,"wh_del":204},{"end_at":"2018-01-15T12:30:00-07:00","devices_reporting":1,"wh_del":173},{"end_at":"2018-01-15T12:45:00-07:00","devices_reporting":1,"wh_del":172},{"end_at":"2018-01-15T13:00:00-07:00","devices_reporting":1,"wh_del":168},{"end_at":"2018-01-15T13:15:00-07:00","devices_reporting":1,"wh_del":161},{"end_at":"2018-01-15T13:30:00-07:00","devices_reporting":1,"wh_del":155},{"end_at":"2018-01-15T13:45:00-07:00","devices_reporting":1,"wh_del":130},{"end_at":"2018-01-15T14:00:00-07:00","devices_reporting":1,"wh_del":106},{"end_at":"2018-01-15T14:15:00-07:00","devices_reporting":1,"wh_del":103},{"end_at":"2018-01-15T14:30:00-07:00","devices_reporting":1,"wh_del":90},{"end_at":"2018-01-15T14:45:00-07:00","devices_reporting":1,"wh_del":58},{"end_at":"2018-01-15T15:00:00-07:00","devices_reporting":1,"wh_del":58},{"end_at":"2018-01-15T15:15:00-07:00","devices_reporting":1,"wh_del":54},{"end_at":"2018-01-15T15:30:00-07:00","devices_reporting":1,"wh_del":37},{"end_at":"2018-01-15T15:45:00-07:00","devices_reporting":1,"wh_del":29},{"end_at":"2018-01-15T16:00:00-07:00","devices_reporting":1,"wh_del":32},{"end_at":"2018-01-15T16:15:00-07:00","devices_reporting":1,"wh_del":22},{"end_at":"2018-01-15T16:30:00-07:00","devices_reporting":1,"wh_del":13},{"end_at":"2018-01-15T16:45:00-07:00","devices_reporting":1,"wh_del":8},{"end_at":"2018-01-15T17:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-15T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-15T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T07:30:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-16T07:45:00-07:00","devices_reporting":1,"wh_del":90},{"end_at":"2018-01-16T08:00:00-07:00","devices_reporting":1,"wh_del":151},{"end_at":"2018-01-16T08:15:00-07:00","devices_reporting":1,"wh_del":190},{"end_at":"2018-01-16T08:30:00-07:00","devices_reporting":1,"wh_del":195},{"end_at":"2018-01-16T08:45:00-07:00","devices_reporting":1,"wh_del":246},{"end_at":"2018-01-16T09:00:00-07:00","devices_reporting":1,"wh_del":277},{"end_at":"2018-01-16T09:15:00-07:00","devices_reporting":1,"wh_del":306},{"end_at":"2018-01-16T09:30:00-07:00","devices_reporting":1,"wh_del":369},{"end_at":"2018-01-16T09:45:00-07:00","devices_reporting":1,"wh_del":421},{"end_at":"2018-01-16T10:00:00-07:00","devices_reporting":1,"wh_del":481},{"end_at":"2018-01-16T10:15:00-07:00","devices_reporting":1,"wh_del":524},{"end_at":"2018-01-16T10:30:00-07:00","devices_reporting":1,"wh_del":531},{"end_at":"2018-01-16T10:45:00-07:00","devices_reporting":1,"wh_del":550},{"end_at":"2018-01-16T11:00:00-07:00","devices_reporting":1,"wh_del":519},{"end_at":"2018-01-16T11:15:00-07:00","devices_reporting":1,"wh_del":511},{"end_at":"2018-01-16T11:30:00-07:00","devices_reporting":1,"wh_del":499},{"end_at":"2018-01-16T11:45:00-07:00","devices_reporting":1,"wh_del":483},{"end_at":"2018-01-16T12:00:00-07:00","devices_reporting":1,"wh_del":467},{"end_at":"2018-01-16T12:15:00-07:00","devices_reporting":1,"wh_del":442},{"end_at":"2018-01-16T12:30:00-07:00","devices_reporting":1,"wh_del":414},{"end_at":"2018-01-16T12:45:00-07:00","devices_reporting":1,"wh_del":380},{"end_at":"2018-01-16T13:00:00-07:00","devices_reporting":1,"wh_del":343},{"end_at":"2018-01-16T13:15:00-07:00","devices_reporting":1,"wh_del":301},{"end_at":"2018-01-16T13:30:00-07:00","devices_reporting":1,"wh_del":258},{"end_at":"2018-01-16T13:45:00-07:00","devices_reporting":1,"wh_del":211},{"end_at":"2018-01-16T14:00:00-07:00","devices_reporting":1,"wh_del":168},{"end_at":"2018-01-16T14:15:00-07:00","devices_reporting":1,"wh_del":124},{"end_at":"2018-01-16T14:30:00-07:00","devices_reporting":1,"wh_del":83},{"end_at":"2018-01-16T14:45:00-07:00","devices_reporting":1,"wh_del":50},{"end_at":"2018-01-16T15:00:00-07:00","devices_reporting":1,"wh_del":33},{"end_at":"2018-01-16T15:15:00-07:00","devices_reporting":1,"wh_del":29},{"end_at":"2018-01-16T15:30:00-07:00","devices_reporting":1,"wh_del":27},{"end_at":"2018-01-16T15:45:00-07:00","devices_reporting":1,"wh_del":26},{"end_at":"2018-01-16T16:00:00-07:00","devices_reporting":1,"wh_del":23},{"end_at":"2018-01-16T16:15:00-07:00","devices_reporting":1,"wh_del":19},{"end_at":"2018-01-16T16:30:00-07:00","devices_reporting":1,"wh_del":15},{"end_at":"2018-01-16T16:45:00-07:00","devices_reporting":1,"wh_del":8},{"end_at":"2018-01-16T17:00:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-16T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-16T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T07:30:00-07:00","devices_reporting":1,"wh_del":3},{"end_at":"2018-01-17T07:45:00-07:00","devices_reporting":1,"wh_del":166},{"end_at":"2018-01-17T08:00:00-07:00","devices_reporting":1,"wh_del":263},{"end_at":"2018-01-17T08:15:00-07:00","devices_reporting":1,"wh_del":328},{"end_at":"2018-01-17T08:30:00-07:00","devices_reporting":1,"wh_del":374},{"end_at":"2018-01-17T08:45:00-07:00","devices_reporting":1,"wh_del":416},{"end_at":"2018-01-17T09:00:00-07:00","devices_reporting":1,"wh_del":449},{"end_at":"2018-01-17T09:15:00-07:00","devices_reporting":1,"wh_del":477},{"end_at":"2018-01-17T09:30:00-07:00","devices_reporting":1,"wh_del":498},{"end_at":"2018-01-17T09:45:00-07:00","devices_reporting":1,"wh_del":511},{"end_at":"2018-01-17T10:00:00-07:00","devices_reporting":1,"wh_del":519},{"end_at":"2018-01-17T10:15:00-07:00","devices_reporting":1,"wh_del":522},{"end_at":"2018-01-17T10:30:00-07:00","devices_reporting":1,"wh_del":527},{"end_at":"2018-01-17T10:45:00-07:00","devices_reporting":1,"wh_del":517},{"end_at":"2018-01-17T11:00:00-07:00","devices_reporting":1,"wh_del":509},{"end_at":"2018-01-17T11:15:00-07:00","devices_reporting":1,"wh_del":498},{"end_at":"2018-01-17T11:30:00-07:00","devices_reporting":1,"wh_del":481},{"end_at":"2018-01-17T11:45:00-07:00","devices_reporting":1,"wh_del":461},{"end_at":"2018-01-17T12:00:00-07:00","devices_reporting":1,"wh_del":439},{"end_at":"2018-01-17T12:15:00-07:00","devices_reporting":1,"wh_del":420},{"end_at":"2018-01-17T12:30:00-07:00","devices_reporting":1,"wh_del":395},{"end_at":"2018-01-17T12:45:00-07:00","devices_reporting":1,"wh_del":363},{"end_at":"2018-01-17T13:00:00-07:00","devices_reporting":1,"wh_del":329},{"end_at":"2018-01-17T13:15:00-07:00","devices_reporting":1,"wh_del":290},{"end_at":"2018-01-17T13:30:00-07:00","devices_reporting":1,"wh_del":249},{"end_at":"2018-01-17T13:45:00-07:00","devices_reporting":1,"wh_del":207},{"end_at":"2018-01-17T14:00:00-07:00","devices_reporting":1,"wh_del":164},{"end_at":"2018-01-17T14:15:00-07:00","devices_reporting":1,"wh_del":120},{"end_at":"2018-01-17T14:30:00-07:00","devices_reporting":1,"wh_del":81},{"end_at":"2018-01-17T14:45:00-07:00","devices_reporting":1,"wh_del":50},{"end_at":"2018-01-17T15:00:00-07:00","devices_reporting":1,"wh_del":31},{"end_at":"2018-01-17T15:15:00-07:00","devices_reporting":1,"wh_del":28},{"end_at":"2018-01-17T15:30:00-07:00","devices_reporting":1,"wh_del":26},{"end_at":"2018-01-17T15:45:00-07:00","devices_reporting":1,"wh_del":25},{"end_at":"2018-01-17T16:00:00-07:00","devices_reporting":1,"wh_del":22},{"end_at":"2018-01-17T16:15:00-07:00","devices_reporting":1,"wh_del":19},{"end_at":"2018-01-17T16:30:00-07:00","devices_reporting":1,"wh_del":13},{"end_at":"2018-01-17T16:45:00-07:00","devices_reporting":1,"wh_del":8},{"end_at":"2018-01-17T17:00:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-17T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-17T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T07:30:00-07:00","devices_reporting":1,"wh_del":8},{"end_at":"2018-01-18T07:45:00-07:00","devices_reporting":1,"wh_del":46},{"end_at":"2018-01-18T08:00:00-07:00","devices_reporting":1,"wh_del":170},{"end_at":"2018-01-18T08:15:00-07:00","devices_reporting":1,"wh_del":207},{"end_at":"2018-01-18T08:30:00-07:00","devices_reporting":1,"wh_del":278},{"end_at":"2018-01-18T08:45:00-07:00","devices_reporting":1,"wh_del":333},{"end_at":"2018-01-18T09:00:00-07:00","devices_reporting":1,"wh_del":156},{"end_at":"2018-01-18T09:15:00-07:00","devices_reporting":1,"wh_del":299},{"end_at":"2018-01-18T09:30:00-07:00","devices_reporting":1,"wh_del":392},{"end_at":"2018-01-18T09:45:00-07:00","devices_reporting":1,"wh_del":433},{"end_at":"2018-01-18T10:00:00-07:00","devices_reporting":1,"wh_del":506},{"end_at":"2018-01-18T10:15:00-07:00","devices_reporting":1,"wh_del":511},{"end_at":"2018-01-18T10:30:00-07:00","devices_reporting":1,"wh_del":525},{"end_at":"2018-01-18T10:45:00-07:00","devices_reporting":1,"wh_del":438},{"end_at":"2018-01-18T11:00:00-07:00","devices_reporting":1,"wh_del":434},{"end_at":"2018-01-18T11:15:00-07:00","devices_reporting":1,"wh_del":483},{"end_at":"2018-01-18T11:30:00-07:00","devices_reporting":1,"wh_del":429},{"end_at":"2018-01-18T11:45:00-07:00","devices_reporting":1,"wh_del":390},{"end_at":"2018-01-18T12:00:00-07:00","devices_reporting":1,"wh_del":381},{"end_at":"2018-01-18T12:15:00-07:00","devices_reporting":1,"wh_del":358},{"end_at":"2018-01-18T12:30:00-07:00","devices_reporting":1,"wh_del":319},{"end_at":"2018-01-18T12:45:00-07:00","devices_reporting":1,"wh_del":246},{"end_at":"2018-01-18T13:00:00-07:00","devices_reporting":1,"wh_del":231},{"end_at":"2018-01-18T13:15:00-07:00","devices_reporting":1,"wh_del":208},{"end_at":"2018-01-18T13:30:00-07:00","devices_reporting":1,"wh_del":229},{"end_at":"2018-01-18T13:45:00-07:00","devices_reporting":1,"wh_del":188},{"end_at":"2018-01-18T14:00:00-07:00","devices_reporting":1,"wh_del":167},{"end_at":"2018-01-18T14:15:00-07:00","devices_reporting":1,"wh_del":168},{"end_at":"2018-01-18T14:30:00-07:00","devices_reporting":1,"wh_del":154},{"end_at":"2018-01-18T14:45:00-07:00","devices_reporting":1,"wh_del":118},{"end_at":"2018-01-18T15:00:00-07:00","devices_reporting":1,"wh_del":58},{"end_at":"2018-01-18T15:15:00-07:00","devices_reporting":1,"wh_del":44},{"end_at":"2018-01-18T15:30:00-07:00","devices_reporting":1,"wh_del":42},{"end_at":"2018-01-18T15:45:00-07:00","devices_reporting":1,"wh_del":38},{"end_at":"2018-01-18T16:00:00-07:00","devices_reporting":1,"wh_del":29},{"end_at":"2018-01-18T16:15:00-07:00","devices_reporting":1,"wh_del":20},{"end_at":"2018-01-18T16:30:00-07:00","devices_reporting":1,"wh_del":13},{"end_at":"2018-01-18T16:45:00-07:00","devices_reporting":1,"wh_del":5},{"end_at":"2018-01-18T17:00:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-18T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-18T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T07:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T07:45:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-19T08:00:00-07:00","devices_reporting":1,"wh_del":9},{"end_at":"2018-01-19T08:15:00-07:00","devices_reporting":1,"wh_del":20},{"end_at":"2018-01-19T08:30:00-07:00","devices_reporting":1,"wh_del":28},{"end_at":"2018-01-19T08:45:00-07:00","devices_reporting":1,"wh_del":33},{"end_at":"2018-01-19T09:00:00-07:00","devices_reporting":1,"wh_del":44},{"end_at":"2018-01-19T09:15:00-07:00","devices_reporting":1,"wh_del":51},{"end_at":"2018-01-19T09:30:00-07:00","devices_reporting":1,"wh_del":54},{"end_at":"2018-01-19T09:45:00-07:00","devices_reporting":1,"wh_del":59},{"end_at":"2018-01-19T10:00:00-07:00","devices_reporting":1,"wh_del":70},{"end_at":"2018-01-19T10:15:00-07:00","devices_reporting":1,"wh_del":96},{"end_at":"2018-01-19T10:30:00-07:00","devices_reporting":1,"wh_del":131},{"end_at":"2018-01-19T10:45:00-07:00","devices_reporting":1,"wh_del":158},{"end_at":"2018-01-19T11:00:00-07:00","devices_reporting":1,"wh_del":175},{"end_at":"2018-01-19T11:15:00-07:00","devices_reporting":1,"wh_del":178},{"end_at":"2018-01-19T11:30:00-07:00","devices_reporting":1,"wh_del":178},{"end_at":"2018-01-19T11:45:00-07:00","devices_reporting":1,"wh_del":181},{"end_at":"2018-01-19T12:00:00-07:00","devices_reporting":1,"wh_del":196},{"end_at":"2018-01-19T12:15:00-07:00","devices_reporting":1,"wh_del":202},{"end_at":"2018-01-19T12:30:00-07:00","devices_reporting":1,"wh_del":207},{"end_at":"2018-01-19T12:45:00-07:00","devices_reporting":1,"wh_del":234},{"end_at":"2018-01-19T13:00:00-07:00","devices_reporting":1,"wh_del":233},{"end_at":"2018-01-19T13:15:00-07:00","devices_reporting":1,"wh_del":228},{"end_at":"2018-01-19T13:30:00-07:00","devices_reporting":1,"wh_del":205},{"end_at":"2018-01-19T13:45:00-07:00","devices_reporting":1,"wh_del":207},{"end_at":"2018-01-19T14:00:00-07:00","devices_reporting":1,"wh_del":202},{"end_at":"2018-01-19T14:15:00-07:00","devices_reporting":1,"wh_del":187},{"end_at":"2018-01-19T14:30:00-07:00","devices_reporting":1,"wh_del":157},{"end_at":"2018-01-19T14:45:00-07:00","devices_reporting":1,"wh_del":146},{"end_at":"2018-01-19T15:00:00-07:00","devices_reporting":1,"wh_del":128},{"end_at":"2018-01-19T15:15:00-07:00","devices_reporting":1,"wh_del":101},{"end_at":"2018-01-19T15:30:00-07:00","devices_reporting":1,"wh_del":82},{"end_at":"2018-01-19T15:45:00-07:00","devices_reporting":1,"wh_del":70},{"end_at":"2018-01-19T16:00:00-07:00","devices_reporting":1,"wh_del":59},{"end_at":"2018-01-19T16:15:00-07:00","devices_reporting":1,"wh_del":42},{"end_at":"2018-01-19T16:30:00-07:00","devices_reporting":1,"wh_del":34},{"end_at":"2018-01-19T16:45:00-07:00","devices_reporting":1,"wh_del":23},{"end_at":"2018-01-19T17:00:00-07:00","devices_reporting":1,"wh_del":11},{"end_at":"2018-01-19T17:15:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-19T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-19T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T07:15:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-20T07:30:00-07:00","devices_reporting":1,"wh_del":11},{"end_at":"2018-01-20T07:45:00-07:00","devices_reporting":1,"wh_del":44},{"end_at":"2018-01-20T08:00:00-07:00","devices_reporting":1,"wh_del":60},{"end_at":"2018-01-20T08:15:00-07:00","devices_reporting":1,"wh_del":99},{"end_at":"2018-01-20T08:30:00-07:00","devices_reporting":1,"wh_del":118},{"end_at":"2018-01-20T08:45:00-07:00","devices_reporting":1,"wh_del":131},{"end_at":"2018-01-20T09:00:00-07:00","devices_reporting":1,"wh_del":190},{"end_at":"2018-01-20T09:15:00-07:00","devices_reporting":1,"wh_del":260},{"end_at":"2018-01-20T09:30:00-07:00","devices_reporting":1,"wh_del":214},{"end_at":"2018-01-20T09:45:00-07:00","devices_reporting":1,"wh_del":247},{"end_at":"2018-01-20T10:00:00-07:00","devices_reporting":1,"wh_del":263},{"end_at":"2018-01-20T10:15:00-07:00","devices_reporting":1,"wh_del":262},{"end_at":"2018-01-20T10:30:00-07:00","devices_reporting":1,"wh_del":296},{"end_at":"2018-01-20T10:45:00-07:00","devices_reporting":1,"wh_del":289},{"end_at":"2018-01-20T11:00:00-07:00","devices_reporting":1,"wh_del":230},{"end_at":"2018-01-20T11:15:00-07:00","devices_reporting":1,"wh_del":218},{"end_at":"2018-01-20T11:30:00-07:00","devices_reporting":1,"wh_del":170},{"end_at":"2018-01-20T11:45:00-07:00","devices_reporting":1,"wh_del":143},{"end_at":"2018-01-20T12:00:00-07:00","devices_reporting":1,"wh_del":219},{"end_at":"2018-01-20T12:15:00-07:00","devices_reporting":1,"wh_del":461},{"end_at":"2018-01-20T12:30:00-07:00","devices_reporting":1,"wh_del":417},{"end_at":"2018-01-20T12:45:00-07:00","devices_reporting":1,"wh_del":406},{"end_at":"2018-01-20T13:00:00-07:00","devices_reporting":1,"wh_del":377},{"end_at":"2018-01-20T13:15:00-07:00","devices_reporting":1,"wh_del":322},{"end_at":"2018-01-20T13:30:00-07:00","devices_reporting":1,"wh_del":279},{"end_at":"2018-01-20T13:45:00-07:00","devices_reporting":1,"wh_del":233},{"end_at":"2018-01-20T14:00:00-07:00","devices_reporting":1,"wh_del":194},{"end_at":"2018-01-20T14:15:00-07:00","devices_reporting":1,"wh_del":154},{"end_at":"2018-01-20T14:30:00-07:00","devices_reporting":1,"wh_del":120},{"end_at":"2018-01-20T14:45:00-07:00","devices_reporting":1,"wh_del":91},{"end_at":"2018-01-20T15:00:00-07:00","devices_reporting":1,"wh_del":91},{"end_at":"2018-01-20T15:15:00-07:00","devices_reporting":1,"wh_del":96},{"end_at":"2018-01-20T15:30:00-07:00","devices_reporting":1,"wh_del":98},{"end_at":"2018-01-20T15:45:00-07:00","devices_reporting":1,"wh_del":83},{"end_at":"2018-01-20T16:00:00-07:00","devices_reporting":1,"wh_del":57},{"end_at":"2018-01-20T16:15:00-07:00","devices_reporting":1,"wh_del":47},{"end_at":"2018-01-20T16:30:00-07:00","devices_reporting":1,"wh_del":43},{"end_at":"2018-01-20T16:45:00-07:00","devices_reporting":1,"wh_del":22},{"end_at":"2018-01-20T17:00:00-07:00","devices_reporting":1,"wh_del":5},{"end_at":"2018-01-20T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-20T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T07:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T07:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T08:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T08:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T08:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T08:45:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-21T09:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T09:15:00-07:00","devices_reporting":1,"wh_del":7},{"end_at":"2018-01-21T09:30:00-07:00","devices_reporting":1,"wh_del":25},{"end_at":"2018-01-21T09:45:00-07:00","devices_reporting":1,"wh_del":29},{"end_at":"2018-01-21T10:00:00-07:00","devices_reporting":1,"wh_del":42},{"end_at":"2018-01-21T10:15:00-07:00","devices_reporting":1,"wh_del":58},{"end_at":"2018-01-21T10:30:00-07:00","devices_reporting":1,"wh_del":69},{"end_at":"2018-01-21T10:45:00-07:00","devices_reporting":1,"wh_del":96},{"end_at":"2018-01-21T11:00:00-07:00","devices_reporting":1,"wh_del":118},{"end_at":"2018-01-21T11:15:00-07:00","devices_reporting":1,"wh_del":117},{"end_at":"2018-01-21T11:30:00-07:00","devices_reporting":1,"wh_del":134},{"end_at":"2018-01-21T11:45:00-07:00","devices_reporting":1,"wh_del":178},{"end_at":"2018-01-21T12:00:00-07:00","devices_reporting":1,"wh_del":211},{"end_at":"2018-01-21T12:15:00-07:00","devices_reporting":1,"wh_del":172},{"end_at":"2018-01-21T12:30:00-07:00","devices_reporting":1,"wh_del":160},{"end_at":"2018-01-21T12:45:00-07:00","devices_reporting":1,"wh_del":148},{"end_at":"2018-01-21T13:00:00-07:00","devices_reporting":1,"wh_del":125},{"end_at":"2018-01-21T13:15:00-07:00","devices_reporting":1,"wh_del":101},{"end_at":"2018-01-21T13:30:00-07:00","devices_reporting":1,"wh_del":90},{"end_at":"2018-01-21T13:45:00-07:00","devices_reporting":1,"wh_del":82},{"end_at":"2018-01-21T14:00:00-07:00","devices_reporting":1,"wh_del":99},{"end_at":"2018-01-21T14:15:00-07:00","devices_reporting":1,"wh_del":90},{"end_at":"2018-01-21T14:30:00-07:00","devices_reporting":1,"wh_del":85},{"end_at":"2018-01-21T14:45:00-07:00","devices_reporting":1,"wh_del":110},{"end_at":"2018-01-21T15:00:00-07:00","devices_reporting":1,"wh_del":83},{"end_at":"2018-01-21T15:15:00-07:00","devices_reporting":1,"wh_del":80},{"end_at":"2018-01-21T15:30:00-07:00","devices_reporting":1,"wh_del":60},{"end_at":"2018-01-21T15:45:00-07:00","devices_reporting":1,"wh_del":56},{"end_at":"2018-01-21T16:00:00-07:00","devices_reporting":1,"wh_del":44},{"end_at":"2018-01-21T16:15:00-07:00","devices_reporting":1,"wh_del":35},{"end_at":"2018-01-21T16:30:00-07:00","devices_reporting":1,"wh_del":27},{"end_at":"2018-01-21T16:45:00-07:00","devices_reporting":1,"wh_del":15},{"end_at":"2018-01-21T17:00:00-07:00","devices_reporting":1,"wh_del":4},{"end_at":"2018-01-21T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-21T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T07:30:00-07:00","devices_reporting":1,"wh_del":13},{"end_at":"2018-01-22T07:45:00-07:00","devices_reporting":1,"wh_del":141},{"end_at":"2018-01-22T08:00:00-07:00","devices_reporting":1,"wh_del":202},{"end_at":"2018-01-22T08:15:00-07:00","devices_reporting":1,"wh_del":252},{"end_at":"2018-01-22T08:30:00-07:00","devices_reporting":1,"wh_del":299},{"end_at":"2018-01-22T08:45:00-07:00","devices_reporting":1,"wh_del":343},{"end_at":"2018-01-22T09:00:00-07:00","devices_reporting":1,"wh_del":378},{"end_at":"2018-01-22T09:15:00-07:00","devices_reporting":1,"wh_del":391},{"end_at":"2018-01-22T09:30:00-07:00","devices_reporting":1,"wh_del":422},{"end_at":"2018-01-22T09:45:00-07:00","devices_reporting":1,"wh_del":444},{"end_at":"2018-01-22T10:00:00-07:00","devices_reporting":1,"wh_del":471},{"end_at":"2018-01-22T10:15:00-07:00","devices_reporting":1,"wh_del":520},{"end_at":"2018-01-22T10:30:00-07:00","devices_reporting":1,"wh_del":539},{"end_at":"2018-01-22T10:45:00-07:00","devices_reporting":1,"wh_del":548},{"end_at":"2018-01-22T11:00:00-07:00","devices_reporting":1,"wh_del":551},{"end_at":"2018-01-22T11:15:00-07:00","devices_reporting":1,"wh_del":540},{"end_at":"2018-01-22T11:30:00-07:00","devices_reporting":1,"wh_del":529},{"end_at":"2018-01-22T11:45:00-07:00","devices_reporting":1,"wh_del":510},{"end_at":"2018-01-22T12:00:00-07:00","devices_reporting":1,"wh_del":487},{"end_at":"2018-01-22T12:15:00-07:00","devices_reporting":1,"wh_del":466},{"end_at":"2018-01-22T12:30:00-07:00","devices_reporting":1,"wh_del":438},{"end_at":"2018-01-22T12:45:00-07:00","devices_reporting":1,"wh_del":407},{"end_at":"2018-01-22T13:00:00-07:00","devices_reporting":1,"wh_del":373},{"end_at":"2018-01-22T13:15:00-07:00","devices_reporting":1,"wh_del":334},{"end_at":"2018-01-22T13:30:00-07:00","devices_reporting":1,"wh_del":291},{"end_at":"2018-01-22T13:45:00-07:00","devices_reporting":1,"wh_del":244},{"end_at":"2018-01-22T14:00:00-07:00","devices_reporting":1,"wh_del":200},{"end_at":"2018-01-22T14:15:00-07:00","devices_reporting":1,"wh_del":155},{"end_at":"2018-01-22T14:30:00-07:00","devices_reporting":1,"wh_del":112},{"end_at":"2018-01-22T14:45:00-07:00","devices_reporting":1,"wh_del":75},{"end_at":"2018-01-22T15:00:00-07:00","devices_reporting":1,"wh_del":50},{"end_at":"2018-01-22T15:15:00-07:00","devices_reporting":1,"wh_del":39},{"end_at":"2018-01-22T15:30:00-07:00","devices_reporting":1,"wh_del":37},{"end_at":"2018-01-22T15:45:00-07:00","devices_reporting":1,"wh_del":33},{"end_at":"2018-01-22T16:00:00-07:00","devices_reporting":1,"wh_del":30},{"end_at":"2018-01-22T16:15:00-07:00","devices_reporting":1,"wh_del":25},{"end_at":"2018-01-22T16:30:00-07:00","devices_reporting":1,"wh_del":19},{"end_at":"2018-01-22T16:45:00-07:00","devices_reporting":1,"wh_del":8},{"end_at":"2018-01-22T17:00:00-07:00","devices_reporting":1,"wh_del":3},{"end_at":"2018-01-22T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-22T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T07:30:00-07:00","devices_reporting":1,"wh_del":31},{"end_at":"2018-01-23T07:45:00-07:00","devices_reporting":1,"wh_del":185},{"end_at":"2018-01-23T08:00:00-07:00","devices_reporting":1,"wh_del":266},{"end_at":"2018-01-23T08:15:00-07:00","devices_reporting":1,"wh_del":334},{"end_at":"2018-01-23T08:30:00-07:00","devices_reporting":1,"wh_del":390},{"end_at":"2018-01-23T08:45:00-07:00","devices_reporting":1,"wh_del":430},{"end_at":"2018-01-23T09:00:00-07:00","devices_reporting":1,"wh_del":462},{"end_at":"2018-01-23T09:15:00-07:00","devices_reporting":1,"wh_del":488},{"end_at":"2018-01-23T09:30:00-07:00","devices_reporting":1,"wh_del":509},{"end_at":"2018-01-23T09:45:00-07:00","devices_reporting":1,"wh_del":525},{"end_at":"2018-01-23T10:00:00-07:00","devices_reporting":1,"wh_del":535},{"end_at":"2018-01-23T10:15:00-07:00","devices_reporting":1,"wh_del":540},{"end_at":"2018-01-23T10:30:00-07:00","devices_reporting":1,"wh_del":543},{"end_at":"2018-01-23T10:45:00-07:00","devices_reporting":1,"wh_del":536},{"end_at":"2018-01-23T11:00:00-07:00","devices_reporting":1,"wh_del":536},{"end_at":"2018-01-23T11:15:00-07:00","devices_reporting":1,"wh_del":527},{"end_at":"2018-01-23T11:30:00-07:00","devices_reporting":1,"wh_del":511},{"end_at":"2018-01-23T11:45:00-07:00","devices_reporting":1,"wh_del":497},{"end_at":"2018-01-23T12:00:00-07:00","devices_reporting":1,"wh_del":475},{"end_at":"2018-01-23T12:15:00-07:00","devices_reporting":1,"wh_del":455},{"end_at":"2018-01-23T12:30:00-07:00","devices_reporting":1,"wh_del":432},{"end_at":"2018-01-23T12:45:00-07:00","devices_reporting":1,"wh_del":396},{"end_at":"2018-01-23T13:00:00-07:00","devices_reporting":1,"wh_del":364},{"end_at":"2018-01-23T13:15:00-07:00","devices_reporting":1,"wh_del":325},{"end_at":"2018-01-23T13:30:00-07:00","devices_reporting":1,"wh_del":285},{"end_at":"2018-01-23T13:45:00-07:00","devices_reporting":1,"wh_del":243},{"end_at":"2018-01-23T14:00:00-07:00","devices_reporting":1,"wh_del":199},{"end_at":"2018-01-23T14:15:00-07:00","devices_reporting":1,"wh_del":154},{"end_at":"2018-01-23T14:30:00-07:00","devices_reporting":1,"wh_del":111},{"end_at":"2018-01-23T14:45:00-07:00","devices_reporting":1,"wh_del":75},{"end_at":"2018-01-23T15:00:00-07:00","devices_reporting":1,"wh_del":48},{"end_at":"2018-01-23T15:15:00-07:00","devices_reporting":1,"wh_del":39},{"end_at":"2018-01-23T15:30:00-07:00","devices_reporting":1,"wh_del":36},{"end_at":"2018-01-23T15:45:00-07:00","devices_reporting":1,"wh_del":32},{"end_at":"2018-01-23T16:00:00-07:00","devices_reporting":1,"wh_del":28},{"end_at":"2018-01-23T16:15:00-07:00","devices_reporting":1,"wh_del":25},{"end_at":"2018-01-23T16:30:00-07:00","devices_reporting":1,"wh_del":20},{"end_at":"2018-01-23T16:45:00-07:00","devices_reporting":1,"wh_del":12},{"end_at":"2018-01-23T17:00:00-07:00","devices_reporting":1,"wh_del":6},{"end_at":"2018-01-23T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-23T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T07:15:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-24T07:30:00-07:00","devices_reporting":1,"wh_del":49},{"end_at":"2018-01-24T07:45:00-07:00","devices_reporting":1,"wh_del":198},{"end_at":"2018-01-24T08:00:00-07:00","devices_reporting":1,"wh_del":231},{"end_at":"2018-01-24T08:15:00-07:00","devices_reporting":1,"wh_del":278},{"end_at":"2018-01-24T08:30:00-07:00","devices_reporting":1,"wh_del":327},{"end_at":"2018-01-24T08:45:00-07:00","devices_reporting":1,"wh_del":308},{"end_at":"2018-01-24T09:00:00-07:00","devices_reporting":1,"wh_del":400},{"end_at":"2018-01-24T09:15:00-07:00","devices_reporting":1,"wh_del":413},{"end_at":"2018-01-24T09:30:00-07:00","devices_reporting":1,"wh_del":472},{"end_at":"2018-01-24T09:45:00-07:00","devices_reporting":1,"wh_del":499},{"end_at":"2018-01-24T10:00:00-07:00","devices_reporting":1,"wh_del":517},{"end_at":"2018-01-24T10:15:00-07:00","devices_reporting":1,"wh_del":516},{"end_at":"2018-01-24T10:30:00-07:00","devices_reporting":1,"wh_del":526},{"end_at":"2018-01-24T10:45:00-07:00","devices_reporting":1,"wh_del":543},{"end_at":"2018-01-24T11:00:00-07:00","devices_reporting":1,"wh_del":531},{"end_at":"2018-01-24T11:15:00-07:00","devices_reporting":1,"wh_del":279},{"end_at":"2018-01-24T11:30:00-07:00","devices_reporting":1,"wh_del":249},{"end_at":"2018-01-24T11:45:00-07:00","devices_reporting":1,"wh_del":226},{"end_at":"2018-01-24T12:00:00-07:00","devices_reporting":1,"wh_del":199},{"end_at":"2018-01-24T12:15:00-07:00","devices_reporting":1,"wh_del":182},{"end_at":"2018-01-24T12:30:00-07:00","devices_reporting":1,"wh_del":172},{"end_at":"2018-01-24T12:45:00-07:00","devices_reporting":1,"wh_del":165},{"end_at":"2018-01-24T13:00:00-07:00","devices_reporting":1,"wh_del":152},{"end_at":"2018-01-24T13:15:00-07:00","devices_reporting":1,"wh_del":143},{"end_at":"2018-01-24T13:30:00-07:00","devices_reporting":1,"wh_del":134},{"end_at":"2018-01-24T13:45:00-07:00","devices_reporting":1,"wh_del":131},{"end_at":"2018-01-24T14:00:00-07:00","devices_reporting":1,"wh_del":134},{"end_at":"2018-01-24T14:15:00-07:00","devices_reporting":1,"wh_del":125},{"end_at":"2018-01-24T14:30:00-07:00","devices_reporting":1,"wh_del":123},{"end_at":"2018-01-24T14:45:00-07:00","devices_reporting":1,"wh_del":134},{"end_at":"2018-01-24T15:00:00-07:00","devices_reporting":1,"wh_del":137},{"end_at":"2018-01-24T15:15:00-07:00","devices_reporting":1,"wh_del":138},{"end_at":"2018-01-24T15:30:00-07:00","devices_reporting":1,"wh_del":124},{"end_at":"2018-01-24T15:45:00-07:00","devices_reporting":1,"wh_del":93},{"end_at":"2018-01-24T16:00:00-07:00","devices_reporting":1,"wh_del":72},{"end_at":"2018-01-24T16:15:00-07:00","devices_reporting":1,"wh_del":55},{"end_at":"2018-01-24T16:30:00-07:00","devices_reporting":1,"wh_del":35},{"end_at":"2018-01-24T16:45:00-07:00","devices_reporting":1,"wh_del":19},{"end_at":"2018-01-24T17:00:00-07:00","devices_reporting":1,"wh_del":8},{"end_at":"2018-01-24T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-24T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T07:15:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-25T07:30:00-07:00","devices_reporting":1,"wh_del":29},{"end_at":"2018-01-25T07:45:00-07:00","devices_reporting":1,"wh_del":86},{"end_at":"2018-01-25T08:00:00-07:00","devices_reporting":1,"wh_del":184},{"end_at":"2018-01-25T08:15:00-07:00","devices_reporting":1,"wh_del":333},{"end_at":"2018-01-25T08:30:00-07:00","devices_reporting":1,"wh_del":457},{"end_at":"2018-01-25T08:45:00-07:00","devices_reporting":1,"wh_del":503},{"end_at":"2018-01-25T09:00:00-07:00","devices_reporting":1,"wh_del":413},{"end_at":"2018-01-25T09:15:00-07:00","devices_reporting":1,"wh_del":413},{"end_at":"2018-01-25T09:30:00-07:00","devices_reporting":1,"wh_del":432},{"end_at":"2018-01-25T09:45:00-07:00","devices_reporting":1,"wh_del":310},{"end_at":"2018-01-25T10:00:00-07:00","devices_reporting":1,"wh_del":288},{"end_at":"2018-01-25T10:15:00-07:00","devices_reporting":1,"wh_del":295},{"end_at":"2018-01-25T10:30:00-07:00","devices_reporting":1,"wh_del":270},{"end_at":"2018-01-25T10:45:00-07:00","devices_reporting":1,"wh_del":255},{"end_at":"2018-01-25T11:00:00-07:00","devices_reporting":1,"wh_del":240},{"end_at":"2018-01-25T11:15:00-07:00","devices_reporting":1,"wh_del":231},{"end_at":"2018-01-25T11:30:00-07:00","devices_reporting":1,"wh_del":232},{"end_at":"2018-01-25T11:45:00-07:00","devices_reporting":1,"wh_del":246},{"end_at":"2018-01-25T12:00:00-07:00","devices_reporting":1,"wh_del":220},{"end_at":"2018-01-25T12:15:00-07:00","devices_reporting":1,"wh_del":199},{"end_at":"2018-01-25T12:30:00-07:00","devices_reporting":1,"wh_del":189},{"end_at":"2018-01-25T12:45:00-07:00","devices_reporting":1,"wh_del":192},{"end_at":"2018-01-25T13:00:00-07:00","devices_reporting":1,"wh_del":191},{"end_at":"2018-01-25T13:15:00-07:00","devices_reporting":1,"wh_del":182},{"end_at":"2018-01-25T13:30:00-07:00","devices_reporting":1,"wh_del":157},{"end_at":"2018-01-25T13:45:00-07:00","devices_reporting":1,"wh_del":138},{"end_at":"2018-01-25T14:00:00-07:00","devices_reporting":1,"wh_del":133},{"end_at":"2018-01-25T14:15:00-07:00","devices_reporting":1,"wh_del":136},{"end_at":"2018-01-25T14:30:00-07:00","devices_reporting":1,"wh_del":129},{"end_at":"2018-01-25T14:45:00-07:00","devices_reporting":1,"wh_del":136},{"end_at":"2018-01-25T15:00:00-07:00","devices_reporting":1,"wh_del":115},{"end_at":"2018-01-25T15:15:00-07:00","devices_reporting":1,"wh_del":110},{"end_at":"2018-01-25T15:30:00-07:00","devices_reporting":1,"wh_del":137},{"end_at":"2018-01-25T15:45:00-07:00","devices_reporting":1,"wh_del":117},{"end_at":"2018-01-25T16:00:00-07:00","devices_reporting":1,"wh_del":106},{"end_at":"2018-01-25T16:15:00-07:00","devices_reporting":1,"wh_del":75},{"end_at":"2018-01-25T16:30:00-07:00","devices_reporting":1,"wh_del":44},{"end_at":"2018-01-25T16:45:00-07:00","devices_reporting":1,"wh_del":30},{"end_at":"2018-01-25T17:00:00-07:00","devices_reporting":1,"wh_del":15},{"end_at":"2018-01-25T17:15:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-25T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-25T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T07:30:00-07:00","devices_reporting":1,"wh_del":31},{"end_at":"2018-01-26T07:45:00-07:00","devices_reporting":1,"wh_del":36},{"end_at":"2018-01-26T08:00:00-07:00","devices_reporting":1,"wh_del":178},{"end_at":"2018-01-26T08:15:00-07:00","devices_reporting":1,"wh_del":68},{"end_at":"2018-01-26T08:30:00-07:00","devices_reporting":1,"wh_del":63},{"end_at":"2018-01-26T08:45:00-07:00","devices_reporting":1,"wh_del":37},{"end_at":"2018-01-26T09:00:00-07:00","devices_reporting":1,"wh_del":56},{"end_at":"2018-01-26T09:15:00-07:00","devices_reporting":1,"wh_del":101},{"end_at":"2018-01-26T09:30:00-07:00","devices_reporting":1,"wh_del":151},{"end_at":"2018-01-26T09:45:00-07:00","devices_reporting":1,"wh_del":122},{"end_at":"2018-01-26T10:00:00-07:00","devices_reporting":1,"wh_del":116},{"end_at":"2018-01-26T10:15:00-07:00","devices_reporting":1,"wh_del":160},{"end_at":"2018-01-26T10:30:00-07:00","devices_reporting":1,"wh_del":193},{"end_at":"2018-01-26T10:45:00-07:00","devices_reporting":1,"wh_del":248},{"end_at":"2018-01-26T11:00:00-07:00","devices_reporting":1,"wh_del":369},{"end_at":"2018-01-26T11:15:00-07:00","devices_reporting":1,"wh_del":374},{"end_at":"2018-01-26T11:30:00-07:00","devices_reporting":1,"wh_del":221},{"end_at":"2018-01-26T11:45:00-07:00","devices_reporting":1,"wh_del":212},{"end_at":"2018-01-26T12:00:00-07:00","devices_reporting":1,"wh_del":207},{"end_at":"2018-01-26T12:15:00-07:00","devices_reporting":1,"wh_del":234},{"end_at":"2018-01-26T12:30:00-07:00","devices_reporting":1,"wh_del":291},{"end_at":"2018-01-26T12:45:00-07:00","devices_reporting":1,"wh_del":303},{"end_at":"2018-01-26T13:00:00-07:00","devices_reporting":1,"wh_del":274},{"end_at":"2018-01-26T13:15:00-07:00","devices_reporting":1,"wh_del":373},{"end_at":"2018-01-26T13:30:00-07:00","devices_reporting":1,"wh_del":358},{"end_at":"2018-01-26T13:45:00-07:00","devices_reporting":1,"wh_del":273},{"end_at":"2018-01-26T14:00:00-07:00","devices_reporting":1,"wh_del":208},{"end_at":"2018-01-26T14:15:00-07:00","devices_reporting":1,"wh_del":161},{"end_at":"2018-01-26T14:30:00-07:00","devices_reporting":1,"wh_del":116},{"end_at":"2018-01-26T14:45:00-07:00","devices_reporting":1,"wh_del":77},{"end_at":"2018-01-26T15:00:00-07:00","devices_reporting":1,"wh_del":48},{"end_at":"2018-01-26T15:15:00-07:00","devices_reporting":1,"wh_del":35},{"end_at":"2018-01-26T15:30:00-07:00","devices_reporting":1,"wh_del":32},{"end_at":"2018-01-26T15:45:00-07:00","devices_reporting":1,"wh_del":30},{"end_at":"2018-01-26T16:00:00-07:00","devices_reporting":1,"wh_del":26},{"end_at":"2018-01-26T16:15:00-07:00","devices_reporting":1,"wh_del":25},{"end_at":"2018-01-26T16:30:00-07:00","devices_reporting":1,"wh_del":18},{"end_at":"2018-01-26T16:45:00-07:00","devices_reporting":1,"wh_del":13},{"end_at":"2018-01-26T17:00:00-07:00","devices_reporting":1,"wh_del":5},{"end_at":"2018-01-26T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-26T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T07:15:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-27T07:30:00-07:00","devices_reporting":1,"wh_del":73},{"end_at":"2018-01-27T07:45:00-07:00","devices_reporting":1,"wh_del":224},{"end_at":"2018-01-27T08:00:00-07:00","devices_reporting":1,"wh_del":119},{"end_at":"2018-01-27T08:15:00-07:00","devices_reporting":1,"wh_del":150},{"end_at":"2018-01-27T08:30:00-07:00","devices_reporting":1,"wh_del":220},{"end_at":"2018-01-27T08:45:00-07:00","devices_reporting":1,"wh_del":307},{"end_at":"2018-01-27T09:00:00-07:00","devices_reporting":1,"wh_del":354},{"end_at":"2018-01-27T09:15:00-07:00","devices_reporting":1,"wh_del":454},{"end_at":"2018-01-27T09:30:00-07:00","devices_reporting":1,"wh_del":409},{"end_at":"2018-01-27T09:45:00-07:00","devices_reporting":1,"wh_del":486},{"end_at":"2018-01-27T10:00:00-07:00","devices_reporting":1,"wh_del":468},{"end_at":"2018-01-27T10:15:00-07:00","devices_reporting":1,"wh_del":492},{"end_at":"2018-01-27T10:30:00-07:00","devices_reporting":1,"wh_del":499},{"end_at":"2018-01-27T10:45:00-07:00","devices_reporting":1,"wh_del":499},{"end_at":"2018-01-27T11:00:00-07:00","devices_reporting":1,"wh_del":436},{"end_at":"2018-01-27T11:15:00-07:00","devices_reporting":1,"wh_del":504},{"end_at":"2018-01-27T11:30:00-07:00","devices_reporting":1,"wh_del":544},{"end_at":"2018-01-27T11:45:00-07:00","devices_reporting":1,"wh_del":492},{"end_at":"2018-01-27T12:00:00-07:00","devices_reporting":1,"wh_del":435},{"end_at":"2018-01-27T12:15:00-07:00","devices_reporting":1,"wh_del":444},{"end_at":"2018-01-27T12:30:00-07:00","devices_reporting":1,"wh_del":363},{"end_at":"2018-01-27T12:45:00-07:00","devices_reporting":1,"wh_del":411},{"end_at":"2018-01-27T13:00:00-07:00","devices_reporting":1,"wh_del":422},{"end_at":"2018-01-27T13:15:00-07:00","devices_reporting":1,"wh_del":371},{"end_at":"2018-01-27T13:30:00-07:00","devices_reporting":1,"wh_del":298},{"end_at":"2018-01-27T13:45:00-07:00","devices_reporting":1,"wh_del":234},{"end_at":"2018-01-27T14:00:00-07:00","devices_reporting":1,"wh_del":244},{"end_at":"2018-01-27T14:15:00-07:00","devices_reporting":1,"wh_del":213},{"end_at":"2018-01-27T14:30:00-07:00","devices_reporting":1,"wh_del":155},{"end_at":"2018-01-27T14:45:00-07:00","devices_reporting":1,"wh_del":149},{"end_at":"2018-01-27T15:00:00-07:00","devices_reporting":1,"wh_del":105},{"end_at":"2018-01-27T15:15:00-07:00","devices_reporting":1,"wh_del":65},{"end_at":"2018-01-27T15:30:00-07:00","devices_reporting":1,"wh_del":83},{"end_at":"2018-01-27T15:45:00-07:00","devices_reporting":1,"wh_del":85},{"end_at":"2018-01-27T16:00:00-07:00","devices_reporting":1,"wh_del":74},{"end_at":"2018-01-27T16:15:00-07:00","devices_reporting":1,"wh_del":48},{"end_at":"2018-01-27T16:30:00-07:00","devices_reporting":1,"wh_del":31},{"end_at":"2018-01-27T16:45:00-07:00","devices_reporting":1,"wh_del":16},{"end_at":"2018-01-27T17:00:00-07:00","devices_reporting":1,"wh_del":5},{"end_at":"2018-01-27T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-27T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T07:30:00-07:00","devices_reporting":1,"wh_del":6},{"end_at":"2018-01-28T07:45:00-07:00","devices_reporting":1,"wh_del":29},{"end_at":"2018-01-28T08:00:00-07:00","devices_reporting":1,"wh_del":53},{"end_at":"2018-01-28T08:15:00-07:00","devices_reporting":1,"wh_del":120},{"end_at":"2018-01-28T08:30:00-07:00","devices_reporting":1,"wh_del":312},{"end_at":"2018-01-28T08:45:00-07:00","devices_reporting":1,"wh_del":370},{"end_at":"2018-01-28T09:00:00-07:00","devices_reporting":1,"wh_del":463},{"end_at":"2018-01-28T09:15:00-07:00","devices_reporting":1,"wh_del":463},{"end_at":"2018-01-28T09:30:00-07:00","devices_reporting":1,"wh_del":494},{"end_at":"2018-01-28T09:45:00-07:00","devices_reporting":1,"wh_del":490},{"end_at":"2018-01-28T10:00:00-07:00","devices_reporting":1,"wh_del":493},{"end_at":"2018-01-28T10:15:00-07:00","devices_reporting":1,"wh_del":499},{"end_at":"2018-01-28T10:30:00-07:00","devices_reporting":1,"wh_del":440},{"end_at":"2018-01-28T10:45:00-07:00","devices_reporting":1,"wh_del":487},{"end_at":"2018-01-28T11:00:00-07:00","devices_reporting":1,"wh_del":472},{"end_at":"2018-01-28T11:15:00-07:00","devices_reporting":1,"wh_del":446},{"end_at":"2018-01-28T11:30:00-07:00","devices_reporting":1,"wh_del":407},{"end_at":"2018-01-28T11:45:00-07:00","devices_reporting":1,"wh_del":438},{"end_at":"2018-01-28T12:00:00-07:00","devices_reporting":1,"wh_del":431},{"end_at":"2018-01-28T12:15:00-07:00","devices_reporting":1,"wh_del":417},{"end_at":"2018-01-28T12:30:00-07:00","devices_reporting":1,"wh_del":401},{"end_at":"2018-01-28T12:45:00-07:00","devices_reporting":1,"wh_del":368},{"end_at":"2018-01-28T13:00:00-07:00","devices_reporting":1,"wh_del":379},{"end_at":"2018-01-28T13:15:00-07:00","devices_reporting":1,"wh_del":341},{"end_at":"2018-01-28T13:30:00-07:00","devices_reporting":1,"wh_del":302},{"end_at":"2018-01-28T13:45:00-07:00","devices_reporting":1,"wh_del":252},{"end_at":"2018-01-28T14:00:00-07:00","devices_reporting":1,"wh_del":227},{"end_at":"2018-01-28T14:15:00-07:00","devices_reporting":1,"wh_del":182},{"end_at":"2018-01-28T14:30:00-07:00","devices_reporting":1,"wh_del":149},{"end_at":"2018-01-28T14:45:00-07:00","devices_reporting":1,"wh_del":112},{"end_at":"2018-01-28T15:00:00-07:00","devices_reporting":1,"wh_del":70},{"end_at":"2018-01-28T15:15:00-07:00","devices_reporting":1,"wh_del":45},{"end_at":"2018-01-28T15:30:00-07:00","devices_reporting":1,"wh_del":42},{"end_at":"2018-01-28T15:45:00-07:00","devices_reporting":1,"wh_del":43},{"end_at":"2018-01-28T16:00:00-07:00","devices_reporting":1,"wh_del":36},{"end_at":"2018-01-28T16:15:00-07:00","devices_reporting":1,"wh_del":36},{"end_at":"2018-01-28T16:30:00-07:00","devices_reporting":1,"wh_del":36},{"end_at":"2018-01-28T16:45:00-07:00","devices_reporting":1,"wh_del":18},{"end_at":"2018-01-28T17:00:00-07:00","devices_reporting":1,"wh_del":8},{"end_at":"2018-01-28T17:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-28T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T07:15:00-07:00","devices_reporting":1,"wh_del":1},{"end_at":"2018-01-29T07:30:00-07:00","devices_reporting":1,"wh_del":62},{"end_at":"2018-01-29T07:45:00-07:00","devices_reporting":1,"wh_del":207},{"end_at":"2018-01-29T08:00:00-07:00","devices_reporting":1,"wh_del":274},{"end_at":"2018-01-29T08:15:00-07:00","devices_reporting":1,"wh_del":294},{"end_at":"2018-01-29T08:30:00-07:00","devices_reporting":1,"wh_del":347},{"end_at":"2018-01-29T08:45:00-07:00","devices_reporting":1,"wh_del":412},{"end_at":"2018-01-29T09:00:00-07:00","devices_reporting":1,"wh_del":439},{"end_at":"2018-01-29T09:15:00-07:00","devices_reporting":1,"wh_del":470},{"end_at":"2018-01-29T09:30:00-07:00","devices_reporting":1,"wh_del":416},{"end_at":"2018-01-29T09:45:00-07:00","devices_reporting":1,"wh_del":469},{"end_at":"2018-01-29T10:00:00-07:00","devices_reporting":1,"wh_del":512},{"end_at":"2018-01-29T10:15:00-07:00","devices_reporting":1,"wh_del":521},{"end_at":"2018-01-29T10:30:00-07:00","devices_reporting":1,"wh_del":524},{"end_at":"2018-01-29T10:45:00-07:00","devices_reporting":1,"wh_del":522},{"end_at":"2018-01-29T11:00:00-07:00","devices_reporting":1,"wh_del":524},{"end_at":"2018-01-29T11:15:00-07:00","devices_reporting":1,"wh_del":513},{"end_at":"2018-01-29T11:30:00-07:00","devices_reporting":1,"wh_del":493},{"end_at":"2018-01-29T11:45:00-07:00","devices_reporting":1,"wh_del":488},{"end_at":"2018-01-29T12:00:00-07:00","devices_reporting":1,"wh_del":466},{"end_at":"2018-01-29T12:15:00-07:00","devices_reporting":1,"wh_del":443},{"end_at":"2018-01-29T12:30:00-07:00","devices_reporting":1,"wh_del":415},{"end_at":"2018-01-29T12:45:00-07:00","devices_reporting":1,"wh_del":389},{"end_at":"2018-01-29T13:00:00-07:00","devices_reporting":1,"wh_del":385},{"end_at":"2018-01-29T13:15:00-07:00","devices_reporting":1,"wh_del":334},{"end_at":"2018-01-29T13:30:00-07:00","devices_reporting":1,"wh_del":311},{"end_at":"2018-01-29T13:45:00-07:00","devices_reporting":1,"wh_del":242},{"end_at":"2018-01-29T14:00:00-07:00","devices_reporting":1,"wh_del":198},{"end_at":"2018-01-29T14:15:00-07:00","devices_reporting":1,"wh_del":172},{"end_at":"2018-01-29T14:30:00-07:00","devices_reporting":1,"wh_del":184},{"end_at":"2018-01-29T14:45:00-07:00","devices_reporting":1,"wh_del":149},{"end_at":"2018-01-29T15:00:00-07:00","devices_reporting":1,"wh_del":108},{"end_at":"2018-01-29T15:15:00-07:00","devices_reporting":1,"wh_del":65},{"end_at":"2018-01-29T15:30:00-07:00","devices_reporting":1,"wh_del":52},{"end_at":"2018-01-29T15:45:00-07:00","devices_reporting":1,"wh_del":58},{"end_at":"2018-01-29T16:00:00-07:00","devices_reporting":1,"wh_del":69},{"end_at":"2018-01-29T16:15:00-07:00","devices_reporting":1,"wh_del":59},{"end_at":"2018-01-29T16:30:00-07:00","devices_reporting":1,"wh_del":34},{"end_at":"2018-01-29T16:45:00-07:00","devices_reporting":1,"wh_del":22},{"end_at":"2018-01-29T17:00:00-07:00","devices_reporting":1,"wh_del":11},{"end_at":"2018-01-29T17:15:00-07:00","devices_reporting":1,"wh_del":2},{"end_at":"2018-01-29T17:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T17:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T18:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T18:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T18:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T18:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T19:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T19:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T19:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T19:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T20:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T20:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T20:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T20:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T21:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T21:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T21:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T21:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T22:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T22:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T22:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T22:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T23:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T23:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T23:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-29T23:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T00:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T00:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T00:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T00:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T01:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T01:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T01:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T01:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T02:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T02:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T02:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T02:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T03:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T03:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T03:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T03:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T04:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T04:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T04:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T04:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T05:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T05:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T05:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T05:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T06:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T06:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T06:30:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T06:45:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T07:00:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T07:15:00-07:00","devices_reporting":1,"wh_del":0},{"end_at":"2018-01-30T07:30:00-07:00","devices_reporting":1,"wh_del":16},{"end_at":"2018-01-30T07:45:00-07:00","devices_reporting":1,"wh_del":54},{"end_at":"2018-01-30T08:00:00-07:00","devices_reporting":1,"wh_del":98},{"end_at":"2018-01-30T08:15:00-07:00","devices_reporting":1,"wh_del":98},{"end_at":"2018-01-30T08:30:00-07:00","devices_reporting":1,"wh_del":88},{"end_at":"2018-01-30T08:45:00-07:00","devices_reporting":1,"wh_del":69},{"end_at":"2018-01-30T09:00:00-07:00","devices_reporting":1,"wh_del":74},{"end_at":"2018-01-30T09:15:00-07:00","devices_reporting":1,"wh_del":77},{"end_at":"2018-01-30T09:30:00-07:00","devices_reporting":1,"wh_del":72},{"end_at":"2018-01-30T09:45:00-07:00","devices_reporting":1,"wh_del":82},{"end_at":"2018-01-30T10:00:00-07:00","devices_reporting":1,"wh_del":77},{"end_at":"2018-01-30T10:15:00-07:00","devices_reporting":1,"wh_del":72},{"end_at":"2018-01-30T10:30:00-07:00","devices_reporting":1,"wh_del":73},{"end_at":"2018-01-30T10:45:00-07:00","devices_reporting":1,"wh_del":78},{"end_at":"2018-01-30T11:00:00-07:00","devices_reporting":1,"wh_del":85},{"end_at":"2018-01-30T11:15:00-07:00","devices_reporting":1,"wh_del":82},{"end_at":"2018-01-30T11:30:00-07:00","devices_reporting":1,"wh_del":83},{"end_at":"2018-01-30T11:45:00-07:00","devices_reporting":1,"wh_del":88},{"end_at":"2018-01-30T12:00:00-07:00","devices_reporting":1,"wh_del":96},{"end_at":"2018-01-30T12:15:00-07:00","devices_reporting":1,"wh_del":99},{"end_at":"2018-01-30T12:30:00-07:00","devices_reporting":1,"wh_del":102},{"end_at":"2018-01-30T12:45:00-07:00","devices_reporting":1,"wh_del":99},{"end_at":"2018-01-30T13:00:00-07:00","devices_reporting":1,"wh_del":105},{"end_at":"2018-01-30T13:15:00-07:00","devices_reporting":1,"wh_del":100},{"end_at":"2018-01-30T13:30:00-07:00","devices_reporting":1,"wh_del":114},{"end_at":"2018-01-30T13:45:00-07:00","devices_reporting":1,"wh_del":115},{"end_at":"2018-01-30T14:00:00-07:00","devices_reporting":1,"wh_del":118},{"end_at":"2018-01-30T14:15:00-07:00","devices_reporting":1,"wh_del":135},{"end_at":"2018-01-30T14:30:00-07:00","devices_reporting":1,"wh_del":158},{"end_at":"2018-01-30T14:45:00-07:00","devices_reporting":1,"wh_del":152},{"end_at":"2018-01-30T15:00:00-07:00","devices_reporting":1,"wh_del":138},{"end_at":"2018-01-30T15:15:00-07:00","devices_reporting":1,"wh_del":122},{"end_at":"2018-01-30T15:30:00-07:00","devices_reporting":1,"wh_del":100},{"end_at":"2018-01-30T15:45:00-07:00","devices_reporting":1,"wh_del":76},{"end_at":"2018-01-30T16:00:00-07:00","devices_reporting":1,"wh_del":59},{"end_at":"2018-01-30T16:15:00-07:00","devices_reporting":1,"wh_del":51},{"end_at":"2018-01-30T16:30:00-07:00","devices_reporting":1,"wh_del":39},{"end_at":"2018-01-30T16:45:00-07:00","devices_reporting":1,"wh_del":26},{"end_at":"2018-01-30T17:00:00-07:00","devices_reporting":1,"wh_del":12}],"meta":{"status":"normal","last_report_at":"2018-03-03T21:07:18-07:00","last_energy_at":"2018-03-03T21:00:00-07:00","operational_at":"2017-09-14T16:39:46-06:00"}}

What I tried so far

source="rest://RGM Lifetime Stats"
| spath intervals{} output=intervals
| rename intervals{}.end_at as Date, intervals{}.wh_del as Production
| eval temp=mvzip(Date,Production)
| stats count by _time temp
| eval Date=replace(replace(mvindex(split(temp,","),0),"-07:00",""),"T"," "),Production=mvindex(split(temp,","),1)
| table Date Production 
| eventstats sum(Production) as total
| dedup total
| fields total

Any help is appreciated it.

Tags (2)
0 Karma

niketn
Legend

alt text

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

niketn
Legend

@bora9, whichever breakdown time span you need like hourly, daily or monthly, you can add the same as a dropdown and show the sum of Production by using timechart command with span.

Following is a run anywhere dashboard with some of your older sample data. In the following dashboard <query> you would need to use your current base search instead of first two pipes i.e. makeresults and eval _raw

<form>
  <label>Stats by different Time Duration</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="tokSpan" searchWhenChanged="true">
      <label>Breakdown Span</label>
      <choice value="1h">Hourly</choice>
      <choice value="1d">Daily</choice>
      <choice value="1mon">Monthly</choice>
      <default>1h</default>
    </input>
  </fieldset>
  <row>
    <panel>
      <chart>
        <search>
          <query>| makeresults
 | eval _raw="{
     \"system_id\":\"00092384\",
     \"total_devices\":1,
     \"intervals\":[
        {
           \"end_at\":\"2018-03-01T00:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T00:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T00:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T01:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T01:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T01:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T01:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T02:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T02:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T02:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T02:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T03:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T03:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T03:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T03:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T04:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T04:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T04:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T04:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T05:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T05:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T05:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T05:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T06:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T06:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T06:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T06:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":10
        },
        {
           \"end_at\":\"2018-03-01T07:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":142
        },
        {
           \"end_at\":\"2018-03-01T07:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":273
        },
        {
           \"end_at\":\"2018-03-01T07:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":356
        },
        {
           \"end_at\":\"2018-03-01T07:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":428
        },
        {
           \"end_at\":\"2018-03-01T08:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":483
        },
        {
           \"end_at\":\"2018-03-01T08:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":525
        },
        {
           \"end_at\":\"2018-03-01T08:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":566
        },
        {
           \"end_at\":\"2018-03-01T08:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":593
        },
        {
           \"end_at\":\"2018-03-01T09:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":621
        }
     ],
     \"meta\":{
        \"status\":\"normal\",
        \"last_report_at\":\"2018-03-01T09:03:29-07:00\",
        \"last_energy_at\":\"2018-03-01T09:02:51-07:00\",
        \"operational_at\":\"2017-09-14T16:39:46-06:00\"
     }
  }"
 | rex "\"end_at\":\"(?<end_at>[^\"]+)\"\,\s+\"devices_reporting\":(?<devices_reporting>[^\,]+)\,\s+\"wh_del\":(?<wh_del>\d+)\s+\}" max_match=0
 | fields - _time _raw
 | eval data=mvzip(end_at,wh_del)
 | fields data
 | mvexpand data
 | eval data=split(data,",")
 | eval _time=strptime(mvindex(data,0),"%Y-%m-%dT%H:%M:%S"), Production=mvindex(data,1)
 | fields - data
 | timechart sum(Production) as Total span="$tokSpan$"</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
          <sampleRatio>1</sampleRatio>
        </search>
        <option name="charting.chart">column</option>
        <option name="charting.drilldown">none</option>
        <option name="refresh.display">progressbar</option>
      </chart>
    </panel>
  </row>
</form>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

bora9
Explorer

I keep getting the following error message with your solution

Error in 'search' command: Unable to parse the search: Comparator '<' is missing a term on the left hand side.

can you please advise.

0 Karma

niketn
Legend

@bora9, for the Less than and Greater than symbols in Simple XML use &lt; and &gt; instead

| rex "\"end_at\":\"(?&lt;end_at&gt;[^\"]+)\"\,\s+\"devices_reporting\":(?&lt;devices_reporting&gt;[^\,]+)\,\s+\"wh_del\":(?&lt;wh_del&gt;\d+)\s+\}" max_match=0

On Splunk Answers even inside the code block it got changed.

Alternatively you can run the query inside the <query> block in search and then save to the dashboard.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

bora9
Explorer

I'm still getting the same error if I try replacing the less than and greater than with &lt and &gt or even if I run my original query inside the block in search.

Any other ideas? I checked that every <> combination was started and closed correctly but still the same issue.

0 Karma

niketn
Legend

@bora9, I have updated a screenshot with code snippet for rex command. Make sure you have escaped also double quotes inside regular expression should be prefixed with backslash

Try the following in Splunk Search and see if it working. If it does, edit the dashboard Panel and Add the following Query from UI Edit option instead of Simple XML source code.

| makeresults
 | eval _raw="{
     \"system_id\":\"00092384\",
     \"total_devices\":1,
     \"intervals\":[
        {
           \"end_at\":\"2018-03-01T00:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T00:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T00:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T01:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T01:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T01:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T01:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T02:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T02:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T02:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T02:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T03:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T03:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T03:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T03:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T04:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T04:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T04:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T04:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T05:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T05:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T05:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T05:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T06:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T06:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T06:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":0
        },
        {
           \"end_at\":\"2018-03-01T06:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":10
        },
        {
           \"end_at\":\"2018-03-01T07:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":142
        },
        {
           \"end_at\":\"2018-03-01T07:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":273
        },
        {
           \"end_at\":\"2018-03-01T07:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":356
        },
        {
           \"end_at\":\"2018-03-01T07:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":428
        },
        {
           \"end_at\":\"2018-03-01T08:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":483
        },
        {
           \"end_at\":\"2018-03-01T08:15:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":525
        },
        {
           \"end_at\":\"2018-03-01T08:30:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":566
        },
        {
           \"end_at\":\"2018-03-01T08:45:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":593
        },
        {
           \"end_at\":\"2018-03-01T09:00:00-07:00\",
           \"devices_reporting\":1,
           \"wh_del\":621
        }
     ],
     \"meta\":{
        \"status\":\"normal\",
        \"last_report_at\":\"2018-03-01T09:03:29-07:00\",
        \"last_energy_at\":\"2018-03-01T09:02:51-07:00\",
        \"operational_at\":\"2017-09-14T16:39:46-06:00\"
     }
  }"
 | rex "\"end_at\":\"(?<end_at>[^\"]+)\"\,\s+\"devices_reporting\":(?<devices_reporting>[^\,]+)\,\s+\"wh_del\":(?<wh_del>\d+)\s+\}" max_match=0
 | fields - _time _raw
 | eval data=mvzip(end_at,wh_del)
 | fields data
 | mvexpand data
 | eval data=split(data,",")
 | eval _time=strptime(mvindex(data,0),"%Y-%m-%dT%H:%M:%S"), Production=mvindex(data,1)
 | fields - data
 | timechart sum(Production) as Total span="1h"
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi bora9,
have you seen this blog article https://www.splunk.com/blog/2014/04/30/adding-a-subtotal-to-your-report.html ?

Bye.
Giuseppe

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...